/* 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 ManifestStatus = "ACTIVE" | "DRAFT"; /** * Definition of AWS::IoTFleetWise::ModelManifest Resource Type */ export interface AwsIotfleetwiseModelmanifest { Arn?: string; CreationTime?: string; Description?: string; LastModificationTime?: string; Name: string; /** * @minItems 1 */ Nodes?: [string, ...string[]]; SignalCatalogArn: string; Status?: ManifestStatus; /** * @minItems 0 * @maxItems 50 */ Tags?: Tag[]; } export interface Tag { Key: string; Value: string; }