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

Application

import type { Application } from "https://aws-api.deno.dev/v0.4/services/appstream.ts?docs=full";

Describes an application in the application catalog.

interface Application {
AppBlockArn?: string | null;
Arn?: string | null;
CreatedTime?: Date | number | null;
Description?: string | null;
DisplayName?: string | null;
Enabled?: boolean | null;
IconS3Location?: S3Location | null;
IconURL?: string | null;
InstanceFamilies?: string[] | null;
LaunchParameters?: string | null;
LaunchPath?: string | null;
Metadata?: {
[key: string]: string | null | undefined;
}
| null;
Name?: string | null;
Platforms?: PlatformType[] | null;
WorkingDirectory?: string | null;
}

§Properties

§
AppBlockArn?: string | null
[src]

The app block ARN of the application.

§
Arn?: string | null
[src]

The ARN of the application.

§
CreatedTime?: Date | number | null
[src]

The time at which the application was created within the app block.

§
Description?: string | null
[src]

The description of the application.

§
DisplayName?: string | null
[src]

The application name to display.

§
Enabled?: boolean | null
[src]

If there is a problem, the application can be disabled after image creation.

§
IconS3Location?: S3Location | null
[src]

The S3 location of the application icon.

§
IconURL?: string | null
[src]

The URL for the application icon. This URL might be time-limited.

§
InstanceFamilies?: string[] | null
[src]

The instance families for the application.

§
LaunchParameters?: string | null
[src]

The arguments that are passed to the application at launch.

§
LaunchPath?: string | null
[src]

The path to the application executable in the instance.

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

Additional attributes that describe the application.

§
Name?: string | null
[src]

The name of the application.

§
Platforms?: PlatformType[] | null
[src]

The platforms on which the application can run.

§
WorkingDirectory?: string | null
[src]

The working directory for the application.