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

InstanceNetworkInterface

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

Describes a network interface.

interface InstanceNetworkInterface {
Description?: string | null;
Groups: GroupIdentifier[];
InterfaceType?: string | null;
Ipv4Prefixes: InstanceIpv4Prefix[];
Ipv6Addresses: InstanceIpv6Address[];
Ipv6Prefixes: InstanceIpv6Prefix[];
MacAddress?: string | null;
NetworkInterfaceId?: string | null;
OwnerId?: string | null;
PrivateDnsName?: string | null;
PrivateIpAddress?: string | null;
PrivateIpAddresses: InstancePrivateIpAddress[];
SourceDestCheck?: boolean | null;
Status?: NetworkInterfaceStatus | null;
SubnetId?: string | null;
VpcId?: string | null;
}

§Properties

§

The association information for an Elastic IPv4 associated with the network interface.

§

The network interface attachment.

§
Description?: string | null
[src]

The description.

§

One or more security groups.

§
InterfaceType?: string | null
[src]

Describes the type of network interface.

Valid values: interface | efa | trunk

§
Ipv4Prefixes: InstanceIpv4Prefix[]
[src]

The IPv4 delegated prefixes that are assigned to the network interface.

§
Ipv6Addresses: InstanceIpv6Address[]
[src]

One or more IPv6 addresses associated with the network interface.

§
Ipv6Prefixes: InstanceIpv6Prefix[]
[src]

The IPv6 delegated prefixes that are assigned to the network interface.

§
MacAddress?: string | null
[src]

The MAC address.

§
NetworkInterfaceId?: string | null
[src]

The ID of the network interface.

§
OwnerId?: string | null
[src]

The ID of the Amazon Web Services account that created the network interface.

§
PrivateDnsName?: string | null
[src]

The private DNS name.

§
PrivateIpAddress?: string | null
[src]

The IPv4 address of the network interface within the subnet.

§
PrivateIpAddresses: InstancePrivateIpAddress[]
[src]

One or more private IPv4 addresses associated with the network interface.

§
SourceDestCheck?: boolean | null
[src]

Indicates whether source/destination checking is enabled.

§

The status of the network interface.

§
SubnetId?: string | null
[src]

The ID of the subnet.

§
VpcId?: string | null
[src]

The ID of the VPC.