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

S3ExportConfiguration

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

Properties that configure export from your build instance to a compatible file format for your VM.

interface S3ExportConfiguration {
diskImageFormat: DiskImageFormat;
roleName: string;
s3Bucket: string;
s3Prefix?: string | null;
}

§Properties

§
diskImageFormat: DiskImageFormat
[src]

Export the updated image to one of the following supported disk image formats:

  • Virtual Hard Disk (VHD) – Compatible with Citrix Xen and Microsoft Hyper-V virtualization products.
  • Stream-optimized ESX Virtual Machine Disk (VMDK) – Compatible with VMware ESX and VMware vSphere versions 4, 5, and 6.
  • Raw – Raw format.
§
roleName: string
[src]

The name of the role that grants VM Import/Export permission to export images to your S3 bucket.

§
s3Bucket: string
[src]

The S3 bucket in which to store the output disk images for your VM.

§
s3Prefix?: string | null
[src]

The Amazon S3 path for the bucket where the output disk images for your VM are stored.