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

NetworkInterface

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

Contains information about the elastic network interface of the EC2 instance.

interface NetworkInterface {
Ipv6Addresses?: string[] | null;
NetworkInterfaceId?: string | null;
PrivateDnsName?: string | null;
PrivateIpAddress?: string | null;
PrivateIpAddresses?: PrivateIpAddressDetails[] | null;
PublicDnsName?: string | null;
PublicIp?: string | null;
SecurityGroups?: SecurityGroup[] | null;
SubnetId?: string | null;
VpcId?: string | null;
}

§Properties

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

A list of IPv6 addresses for the EC2 instance.

§
NetworkInterfaceId?: string | null
[src]

The ID of the network interface.

§
PrivateDnsName?: string | null
[src]

The private DNS name of the EC2 instance.

§
PrivateIpAddress?: string | null
[src]

The private IP address of the EC2 instance.

§
PrivateIpAddresses?: PrivateIpAddressDetails[] | null
[src]

Other private IP address information of the EC2 instance.

§
PublicDnsName?: string | null
[src]

The public DNS name of the EC2 instance.

§
PublicIp?: string | null
[src]

The public IP address of the EC2 instance.

§
SecurityGroups?: SecurityGroup[] | null
[src]

The security groups associated with the EC2 instance.

§
SubnetId?: string | null
[src]

The subnet ID of the EC2 instance.

§
VpcId?: string | null
[src]

The VPC ID of the EC2 instance.