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

ImageSummary

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

An image summary.

interface ImageSummary {
arn?: string | null;
buildType?: BuildType | null;
dateCreated?: string | null;
name?: string | null;
osVersion?: string | null;
outputResources?: OutputResources | null;
owner?: string | null;
platform?: Platform | 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.

§
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.
§
dateCreated?: string | null
[src]

The date on which this image was created.

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

§
owner?: string | null
[src]

The owner of the image.

§
platform?: Platform | null
[src]

The platform of the 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 version of the image.