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

Image

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

An Image Builder image. You must specify exactly one recipe for the image – either a container recipe (containerRecipe), which creates a container image, or an image recipe (imageRecipe), which creates an AMI.

interface Image {
arn?: string | null;
buildType?: BuildType | null;
containerRecipe?: ContainerRecipe | null;
dateCreated?: string | null;
distributionConfiguration?: DistributionConfiguration | null;
enhancedImageMetadataEnabled?: boolean | null;
imageRecipe?: ImageRecipe | null;
imageTestsConfiguration?: ImageTestsConfiguration | null;
infrastructureConfiguration?: InfrastructureConfiguration | null;
name?: string | null;
osVersion?: string | null;
outputResources?: OutputResources | null;
platform?: Platform | null;
sourcePipelineArn?: string | null;
sourcePipelineName?: string | null;
state?: ImageState | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
type?: ImageType | null;
version?: string | null;
}

§Properties

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the image.

Note: Semantic versioning is included in each object's Amazon Resource Name (ARN), at the level that applies to that object as follows:

  1. Versionless ARNs and Name ARNs do not include specific values in any of the nodes. The nodes are either left off entirely, or they are specified as wildcards, for example: x.x.x.
  2. Version ARNs have only the first three nodes: ..
  3. Build version ARNs have all four nodes, and point to a specific build for a specific version of an object.
§
buildType?: BuildType | null
[src]

Indicates the type of build that created this image. The build can be initiated in the following ways:

  • USER_INITIATED – A manual pipeline build request.
  • SCHEDULED – A pipeline build initiated by a cron expression in the Image Builder pipeline, or from EventBridge.
  • IMPORT – A VM import created the image to use as the base image for the recipe.
§
containerRecipe?: ContainerRecipe | null
[src]

The recipe that is used to create an Image Builder container image.

§
dateCreated?: string | null
[src]

The date on which this image was created.

§
distributionConfiguration?: DistributionConfiguration | null
[src]

The distribution configuration used when creating this image.

§
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.

§
imageRecipe?: ImageRecipe | null
[src]

The image recipe used when creating the image.

§
imageTestsConfiguration?: ImageTestsConfiguration | null
[src]

The image tests configuration used when creating this image.

§
infrastructureConfiguration?: InfrastructureConfiguration | null
[src]

The infrastructure used when creating this image.

§
name?: string | null
[src]

The name of the image.

§
osVersion?: string | null
[src]

The operating system version of the instance. For example, Amazon Linux 2, Ubuntu 18, or Microsoft Windows Server 2019.

§
outputResources?: OutputResources | null
[src]

The output resources produced when creating this image.

§
platform?: Platform | null
[src]

The platform of the image.

§
sourcePipelineArn?: string | null
[src]

The Amazon Resource Name (ARN) of the image pipeline that created this image.

§
sourcePipelineName?: string | null
[src]

The name of the image pipeline that created this image.

§
state?: ImageState | null
[src]

The state of the image.

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

The tags of the image.

§
type?: ImageType | null
[src]

Specifies whether this is an AMI or container image.

§
version?: string | null
[src]

The semantic version of the image.

Note: The semantic version has four nodes: ../. You can assign values for the first three, and can filter on all of them. Assignment: For the first three nodes you can assign any positive integer value, including zero, with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number to the fourth node. Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as 2021.01.01. Filtering: With semantic versioning, you have the flexibility to use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.