/* 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::Workspace */ export interface AwsIottwinmakerWorkspace { /** * The ID of the workspace. */ WorkspaceId: string; /** * The ARN of the workspace. */ Arn?: string; /** * The description of the workspace. */ Description?: string; /** * The ARN of the execution role associated with the workspace. */ Role: string; /** * The ARN of the S3 bucket where resources associated with the workspace are stored. */ S3Location: string; /** * The date and time when the workspace was created. */ CreationDateTime?: string; /** * The date and time of the current update. */ UpdateDateTime?: string; /** * A map of key-value pairs 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; }; }