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

CreateUpdatedImageRequest

import type { CreateUpdatedImageRequest } from "https://aws-api.deno.dev/v0.3/services/appstream.ts?docs=full";
interface CreateUpdatedImageRequest {
dryRun?: boolean | null;
existingImageName: string;
newImageDescription?: string | null;
newImageDisplayName?: string | null;
newImageName: string;
newImageTags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
dryRun?: boolean | null
[src]

Indicates whether to display the status of image update availability before AppStream 2.0 initiates the process of creating a new updated image. If this value is set to true, AppStream 2.0 displays whether image updates are available. If this value is set to false, AppStream 2.0 initiates the process of creating a new updated image without displaying whether image updates are available.

§
existingImageName: string
[src]

The name of the image to update.

§
newImageDescription?: string | null
[src]

The description to display for the new image.

§
newImageDisplayName?: string | null
[src]

The name to display for the new image.

§
newImageName: string
[src]

The name of the new image. The name must be unique within the AWS account and Region.

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

The tags to associate with the new image. A tag is a key-value pair, and the value is optional. For example, Environment=Test. If you do not specify a value, Environment=.

Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters:

_ . : / = + \ - @

If you do not specify a value, the value is set to an empty string.

For more information about tags, see Tagging Your Resources in the Amazon AppStream 2.0 Administration Guide.