/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ export type NodePackageName = string; export type NodePackageId = string; export type NodePackageArn = string; export type Timestamp = number; export type TagList = Tag[]; /** * Schema for Package CloudFormation Resource */ export interface AwsPanoramaPackage { PackageName: NodePackageName; PackageId?: NodePackageId; Arn?: NodePackageArn; StorageLocation?: StorageLocation; CreatedTime?: Timestamp; Tags?: TagList; } export interface StorageLocation { Bucket?: string; RepoPrefixLocation?: string; GeneratedPrefixLocation?: string; BinaryPrefixLocation?: string; ManifestPrefixLocation?: string; } export interface Tag { Key: string; Value: string; }