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

ExportImageRequest

import type { ExportImageRequest } from "https://aws-api.deno.dev/v0.4/services/ec2.ts?docs=full";
interface ExportImageRequest {
ClientToken?: string | null;
Description?: string | null;
DiskImageFormat: DiskImageFormat;
DryRun?: boolean | null;
ImageId: string;
RoleName?: string | null;
S3ExportLocation: ExportTaskS3LocationRequest;
TagSpecifications?: TagSpecification[] | null;
}

§Properties

§
ClientToken?: string | null
[src]

Token to enable idempotency for export image requests.

§
Description?: string | null
[src]

A description of the image being exported. The maximum length is 255 characters.

§
DiskImageFormat: DiskImageFormat
[src]

The disk image format.

§
DryRun?: boolean | null
[src]

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

§
ImageId: string
[src]

The ID of the image.

§
RoleName?: string | null
[src]

The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket. If this parameter is not specified, the default role is named 'vmimport'.

§

The Amazon S3 bucket for the destination image. The destination bucket must exist.

§
TagSpecifications?: TagSpecification[] | null
[src]

The tags to apply to the export image task during creation.