/* 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. */ /** * Resource schema for AWS::IoTTwinMaker::Scene */ export interface AwsIottwinmakerScene { /** * The ID of the scene. */ SceneId: string; /** * The ARN of the scene. */ Arn?: string; /** * The description of the scene. */ Description?: string; /** * The relative path that specifies the location of the content definition file. */ ContentLocation: string; /** * The date and time when the scene was created. */ CreationDateTime?: string; /** * The date and time of the current update. */ UpdateDateTime?: string; /** * A key-value pair to associate with a resource. */ Tags?: { /** * This interface was referenced by `undefined`'s JSON-Schema definition * via the `patternProperty` "^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$". */ [k: string]: string; }; /** * The ID of the scene. */ WorkspaceId: string; /** * A list of capabilities that the scene uses to render. * * @minItems 0 * @maxItems 50 */ Capabilities?: string[]; }