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

ContainerRecipeSummary

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

A summary of a container recipe

interface ContainerRecipeSummary {
arn?: string | null;
containerType?: ContainerType | null;
dateCreated?: string | null;
name?: string | null;
owner?: string | null;
parentImage?: string | null;
platform?: Platform | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the container recipe.

§
containerType?: ContainerType | null
[src]

Specifies the type of container, such as "Docker".

§
dateCreated?: string | null
[src]

The date when this container recipe was created.

§
name?: string | null
[src]

The name of the container recipe.

§
owner?: string | null
[src]

The owner of the container recipe.

§
parentImage?: string | null
[src]

The base image for the container recipe.

§
platform?: Platform | null
[src]

The system platform for the container, such as Windows or Linux.

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

Tags that are attached to the container recipe.