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

CreateImagePipelineRequest

import type { CreateImagePipelineRequest } from "https://aws-api.deno.dev/v0.3/services/imagebuilder.ts?docs=full";
interface CreateImagePipelineRequest {
clientToken: string;
containerRecipeArn?: string | null;
description?: string | null;
distributionConfigurationArn?: string | null;
enhancedImageMetadataEnabled?: boolean | null;
imageRecipeArn?: string | null;
imageTestsConfiguration?: ImageTestsConfiguration | null;
infrastructureConfigurationArn: string;
name: string;
schedule?: Schedule | null;
status?: PipelineStatus | null;
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 is used to configure images created by this container pipeline.

§
description?: string | null
[src]

The description of the image pipeline.

§
distributionConfigurationArn?: string | null
[src]

The Amazon Resource Name (ARN) of the distribution configuration that will be used to configure and distribute images created by this image 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 will be used to configure images created by this image pipeline.

§
imageTestsConfiguration?: ImageTestsConfiguration | null
[src]

The image test configuration of the image pipeline.

§
infrastructureConfigurationArn: string
[src]

The Amazon Resource Name (ARN) of the infrastructure configuration that will be used to build images created by this image pipeline.

§
name: string
[src]

The name of the image pipeline.

§
schedule?: Schedule | null
[src]

The schedule of the image pipeline.

§
status?: PipelineStatus | null
[src]

The status of the image pipeline.

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

The tags of the image pipeline.