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

Image

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

Describes an image.

interface Image {
Applications?: Application[] | null;
AppstreamAgentVersion?: string | null;
Arn?: string | null;
BaseImageArn?: string | null;
CreatedTime?: Date | number | null;
Description?: string | null;
DisplayName?: string | null;
ImageBuilderName?: string | null;
ImageBuilderSupported?: boolean | null;
ImageErrors?: ResourceError[] | null;
ImagePermissions?: ImagePermissions | null;
Name: string;
Platform?: PlatformType | null;
PublicBaseImageReleasedDate?: Date | number | null;
State?: ImageState | null;
StateChangeReason?: ImageStateChangeReason | null;
Visibility?: VisibilityType | null;
}

§Properties

§
Applications?: Application[] | null
[src]

The applications associated with the image.

§
AppstreamAgentVersion?: string | null
[src]

The version of the AppStream 2.0 agent to use for instances that are launched from this image.

§
Arn?: string | null
[src]

The ARN of the image.

§
BaseImageArn?: string | null
[src]

The ARN of the image from which this image was created.

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

The time the image was created.

§
Description?: string | null
[src]

The description to display.

§
DisplayName?: string | null
[src]

The image name to display.

§
ImageBuilderName?: string | null
[src]

The name of the image builder that was used to create the private image. If the image is shared, this value is null.

§
ImageBuilderSupported?: boolean | null
[src]

Indicates whether an image builder can be launched from this image.

§
ImageErrors?: ResourceError[] | null
[src]

Describes the errors that are returned when a new image can't be created.

§
ImagePermissions?: ImagePermissions | null
[src]

The permissions to provide to the destination AWS account for the specified image.

§
Name: string
[src]

The name of the image.

§
Platform?: PlatformType | null
[src]

The operating system platform of the image.

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

The release date of the public base image. For private images, this date is the release date of the base image from which the image was created.

§
State?: ImageState | null
[src]

The image starts in the PENDING state. If image creation succeeds, the state is AVAILABLE. If image creation fails, the state is FAILED.

§
StateChangeReason?: ImageStateChangeReason | null
[src]

The reason why the last state change occurred.

§
Visibility?: VisibilityType | null
[src]

Indicates whether the image is public or private.