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

Ami

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

Details of an Amazon EC2 AMI.

interface Ami {
accountId?: string | null;
description?: string | null;
image?: string | null;
name?: string | null;
region?: string | null;
state?: ImageState | null;
}

§Properties

§
accountId?: string | null
[src]

The account ID of the owner of the AMI.

§
description?: string | null
[src]

The description of the Amazon EC2 AMI. Minimum and maximum length are in characters.

§
image?: string | null
[src]

The AMI ID of the Amazon EC2 AMI.

§
name?: string | null
[src]

The name of the Amazon EC2 AMI.

§
region?: string | null
[src]

The Amazon Web Services Region of the Amazon EC2 AMI.

§
state?: ImageState | null
[src]