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

InstanceConfiguration

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

Defines a custom base AMI and block device mapping configurations of an instance used for building and testing container images.

interface InstanceConfiguration {
blockDeviceMappings?: InstanceBlockDeviceMapping[] | null;
image?: string | null;
}

§Properties

§
blockDeviceMappings?: InstanceBlockDeviceMapping[] | null
[src]

Defines the block devices to attach for building an instance from this Image Builder AMI.

§
image?: string | null
[src]

The AMI ID to use as the base image for a container build and test instance. If not specified, Image Builder will use the appropriate ECS-optimized AMI as a base image.