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

AwsEc2InstanceDetails

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

The details of an Amazon EC2 instance.

interface AwsEc2InstanceDetails {
IamInstanceProfileArn?: string | null;
ImageId?: string | null;
IpV4Addresses?: string[] | null;
IpV6Addresses?: string[] | null;
KeyName?: string | null;
LaunchedAt?: string | null;
MetadataOptions?: AwsEc2InstanceMetadataOptions | null;
NetworkInterfaces?: AwsEc2InstanceNetworkInterfacesDetails[] | null;
SubnetId?: string | null;
Type?: string | null;
VirtualizationType?: string | null;
VpcId?: string | null;
}

§Properties

§
IamInstanceProfileArn?: string | null
[src]

The IAM profile ARN of the instance.

§
ImageId?: string | null
[src]

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

§
IpV4Addresses?: string[] | null
[src]

The IPv4 addresses associated with the instance.

§
IpV6Addresses?: string[] | null
[src]

The IPv6 addresses associated with the instance.

§
KeyName?: string | null
[src]

The key name associated with the instance.

§
LaunchedAt?: string | null
[src]

Indicates when the instance was launched.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces, and date and time should be separated by T. For example, 2020-03-22T13:22:13.933Z.

§
MetadataOptions?: AwsEc2InstanceMetadataOptions | null
[src]

Details about the metadata options for the Amazon EC2 instance.

§
NetworkInterfaces?: AwsEc2InstanceNetworkInterfacesDetails[] | null
[src]

The identifiers of the network interfaces for the EC2 instance. The details for each network interface are in a corresponding AwsEc2NetworkInterfacesDetails object.

§
SubnetId?: string | null
[src]

The identifier of the subnet that the instance was launched in.

§
Type?: string | null
[src]

The instance type of the instance.

§
VirtualizationType?: string | null
[src]

The virtualization type of the Amazon Machine Image (AMI) required to launch the instance.

§
VpcId?: string | null
[src]

The identifier of the VPC that the instance was launched in.