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

CreateImageRequest

import type { CreateImageRequest } from "https://aws-api.deno.dev/v0.3/services/imagebuilder.ts?docs=full";
interface CreateImageRequest {
clientToken: string;
containerRecipeArn?: string | null;
distributionConfigurationArn?: string | null;
enhancedImageMetadataEnabled?: boolean | null;
imageRecipeArn?: string | null;
imageTestsConfiguration?: ImageTestsConfiguration | null;
infrastructureConfigurationArn: string;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
clientToken: string
[src]

The idempotency token used to make this request idempotent.

§
containerRecipeArn?: string | null
[src]

The Amazon Resource Name (ARN) of the container recipe that defines how images are configured and tested.

§
distributionConfigurationArn?: string | null
[src]

The Amazon Resource Name (ARN) of the distribution configuration that defines and configures the outputs of your pipeline.

§
enhancedImageMetadataEnabled?: boolean | null
[src]

Collects additional information about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default.

§
imageRecipeArn?: string | null
[src]

The Amazon Resource Name (ARN) of the image recipe that defines how images are configured, tested, and assessed.

§
imageTestsConfiguration?: ImageTestsConfiguration | null
[src]

The image tests configuration of the image.

§
infrastructureConfigurationArn: string
[src]

The Amazon Resource Name (ARN) of the infrastructure configuration that defines the environment in which your image will be built and tested.

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

The tags of the image.