/* 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 VehicleAssociationBehavior = "CreateIotThing" | "ValidateIotThingExists"; /** * Definition of AWS::IoTFleetWise::Vehicle Resource Type */ export interface AwsIotfleetwiseVehicle { Arn?: string; AssociationBehavior?: VehicleAssociationBehavior; Attributes?: AttributesMap; CreationTime?: string; DecoderManifestArn: string; Name: string; LastModificationTime?: string; ModelManifestArn: string; /** * @minItems 0 * @maxItems 50 */ Tags?: Tag[]; } export interface AttributesMap { /** * This interface was referenced by `AttributesMap`'s JSON-Schema definition * via the `patternProperty` "^[a-zA-Z0-9_.-]+$". */ [k: string]: string; } export interface Tag { Key: string; Value: string; }