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

ExportToS3TaskSpecification

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

Describes an export instance task.

interface ExportToS3TaskSpecification {
ContainerFormat?: ContainerFormat | null;
DiskImageFormat?: DiskImageFormat | null;
S3Bucket?: string | null;
S3Prefix?: string | null;
}

§Properties

§
ContainerFormat?: ContainerFormat | null
[src]

The container format used to combine disk images with metadata (such as OVF). If absent, only the disk image is exported.

§
DiskImageFormat?: DiskImageFormat | null
[src]

The format for the exported image.

§
S3Bucket?: string | null
[src]

The Amazon S3 bucket for the destination image. The destination bucket must exist and grant WRITE and READ_ACP permissions to the Amazon Web Services account vm-import-export@amazon.com.

§
S3Prefix?: string | null
[src]

The image is written to a single object in the Amazon S3 bucket at the S3 key s3prefix + exportTaskId + '.' + diskImageFormat.