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.3/services/inspector2.ts?docs=full";

Details of the Amazon EC2 instance involved in a finding.

interface AwsEc2InstanceDetails {
iamInstanceProfileArn?: string | null;
imageId?: string | null;
ipV4Addresses?: string[] | null;
ipV6Addresses?: string[] | null;
keyName?: string | null;
launchedAt?: Date | number | null;
platform?: string | null;
subnetId?: string | null;
type?: string | null;
vpcId?: string | null;
}

§Properties

§
iamInstanceProfileArn?: string | null
[src]

The IAM instance profile ARN of the Amazon EC2 instance.

§
imageId?: string | null
[src]

The image ID of the Amazon EC2 instance.

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

The IPv4 addresses of the Amazon EC2 instance.

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

The IPv6 addresses of the Amazon EC2 instance.

§
keyName?: string | null
[src]

The name of the key pair used to launch the Amazon EC2 instance.

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

The date and time the Amazon EC2 instance was launched at.

§
platform?: string | null
[src]

The platform of the Amazon EC2 instance.

§
subnetId?: string | null
[src]

The subnet ID of the Amazon EC2 instance.

§
type?: string | null
[src]

The type of the Amazon EC2 instance.

§
vpcId?: string | null
[src]

The VPC ID of the Amazon EC2 instance.