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

Ec2Metadata

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

Meta data details of an Amazon EC2 instance.

interface Ec2Metadata {
amiId?: string | null;
platform?: Ec2Platform | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
amiId?: string | null
[src]

The ID of the Amazon Machine Image (AMI) used to launch the instance.

§
platform?: Ec2Platform | null
[src]

The platform of the instance.

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

The tags attached to the instance.