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

Instance

import type { Instance } from "https://aws-api.deno.dev/v0.4/services/snowdevicemanagement.ts?docs=full";

The description of an instance. Currently, Amazon EC2 instances are the only supported instance type.

interface Instance {
amiLaunchIndex?: number | null;
blockDeviceMappings?: InstanceBlockDeviceMapping[] | null;
cpuOptions?: CpuOptions | null;
createdAt?: Date | number | null;
imageId?: string | null;
instanceId?: string | null;
instanceType?: string | null;
privateIpAddress?: string | null;
publicIpAddress?: string | null;
rootDeviceName?: string | null;
securityGroups?: SecurityGroupIdentifier[] | null;
state?: InstanceState | null;
updatedAt?: Date | number | null;
}

§Properties

§
amiLaunchIndex?: number | null
[src]

The Amazon Machine Image (AMI) launch index, which you can use to find this instance in the launch group.

§
blockDeviceMappings?: InstanceBlockDeviceMapping[] | null
[src]

Any block device mapping entries for the instance.

§
cpuOptions?: CpuOptions | null
[src]

The CPU options for the instance.

§
createdAt?: Date | number | null
[src]

When the instance was created.

§
imageId?: string | null
[src]

The ID of the AMI used to launch the instance.

§
instanceId?: string | null
[src]

The ID of the instance.

§
instanceType?: string | null
[src]

The instance type.

§
privateIpAddress?: string | null
[src]

The private IPv4 address assigned to the instance.

§
publicIpAddress?: string | null
[src]

The public IPv4 address assigned to the instance.

§
rootDeviceName?: string | null
[src]

The device name of the root device volume (for example, /dev/sda1).

§
securityGroups?: SecurityGroupIdentifier[] | null
[src]

The security groups for the instance.

§
state?: InstanceState | null
[src]
§
updatedAt?: Date | number | null
[src]

When the instance was last updated.