Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CreateApplicationRequest

import type { CreateApplicationRequest } from "https://aws-api.deno.dev/v0.3/services/appstream.ts?docs=full";
interface CreateApplicationRequest {
AppBlockArn: string;
Description?: string | null;
DisplayName?: string | null;
IconS3Location: S3Location;
InstanceFamilies: string[];
LaunchParameters?: string | null;
LaunchPath: string;
Name: string;
Platforms: PlatformType[];
Tags?: {
[key: string]: string | null | undefined;
}
| null;
WorkingDirectory?: string | null;
}

§Properties

§
AppBlockArn: string
[src]

The app block ARN to which the application should be associated

§
Description?: string | null
[src]

The description of the application.

§
DisplayName?: string | null
[src]

The display name of the application. This name is visible to users in the application catalog.

§
IconS3Location: S3Location
[src]

The location in S3 of the application icon.

§
InstanceFamilies: string[]
[src]

The instance families the application supports. Valid values are GENERAL_PURPOSE and GRAPHICS_G4.

§
LaunchParameters?: string | null
[src]

The launch parameters of the application.

§
LaunchPath: string
[src]

The launch path of the application.

§
Name: string
[src]

The name of the application. This name is visible to users when display name is not specified.

§
Platforms: PlatformType[]
[src]

The platforms the application supports. WINDOWS_SERVER_2019 and AMAZON_LINUX2 are supported for Elastic fleets.

§
Tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The tags assigned to the application.

§
WorkingDirectory?: string | null
[src]

The working directory of the application.