/* 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 Arn = string; export type PlatformType = string; export type ApplicationAttribute = string; /** * Resource Type definition for AWS::AppStream::Application */ export interface AwsAppstreamApplication { Name: string; DisplayName?: string; Description?: string; LaunchPath: string; LaunchParameters?: string; WorkingDirectory?: string; InstanceFamilies: string[]; IconS3Location: S3Location; Arn?: Arn; AppBlockArn: Arn; Platforms: PlatformType[]; Tags?: Tag[]; AttributesToDelete?: ApplicationAttribute[]; CreatedTime?: string; } export interface S3Location { S3Bucket: string; S3Key: string; } export interface Tag { TagKey: string; TagValue: string; }