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

ImageRecipeSummary

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

A summary of an image recipe.

interface ImageRecipeSummary {
arn?: string | 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 image recipe.

§
dateCreated?: string | null
[src]

The date on which this image recipe was created.

§
name?: string | null
[src]

The name of the image recipe.

§
owner?: string | null
[src]

The owner of the image recipe.

§
parentImage?: string | null
[src]

The base image of the image recipe.

§
platform?: Platform | null
[src]

The platform of the image recipe.

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

The tags of the image recipe.