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

Describes a network interface.

interface NetworkInterface {
Association?: NetworkInterfaceAssociation | null;
Attachment?: NetworkInterfaceAttachment | null;
AvailabilityZone?: string | null;
DenyAllIgwTraffic?: boolean | null;
Description?: string | null;
Groups: GroupIdentifier[];
InterfaceType?: NetworkInterfaceType | null;
Ipv4Prefixes: Ipv4PrefixSpecification[];
Ipv6Address?: string | null;
Ipv6Addresses: NetworkInterfaceIpv6Address[];
Ipv6Native?: boolean | null;
Ipv6Prefixes: Ipv6PrefixSpecification[];
MacAddress?: string | null;
NetworkInterfaceId?: string | null;
OutpostArn?: string | null;
OwnerId?: string | null;
PrivateDnsName?: string | null;
PrivateIpAddress?: string | null;
PrivateIpAddresses: NetworkInterfacePrivateIpAddress[];
RequesterId?: string | null;
RequesterManaged?: boolean | null;
SourceDestCheck?: boolean | null;
Status?: NetworkInterfaceStatus | null;
SubnetId?: string | null;
TagSet: Tag[];
VpcId?: string | null;
}

§Properties

§

The association information for an Elastic IP address (IPv4) associated with the network interface.

§

The network interface attachment.

§
AvailabilityZone?: string | null
[src]

The Availability Zone.

§
DenyAllIgwTraffic?: boolean | null
[src]

Indicates whether a network interface with an IPv6 address is unreachable from the public internet. If the value is true, inbound traffic from the internet is dropped and you cannot assign an elastic IP address to the network interface. The network interface is reachable from peered VPCs and resources connected through a transit gateway, including on-premises networks.

§
Description?: string | null
[src]

A description.

§

Any security groups for the network interface.

§
InterfaceType?: NetworkInterfaceType | null
[src]

The type of network interface.

§

The IPv4 prefixes that are assigned to the network interface.

§
Ipv6Address?: string | null
[src]

The IPv6 globally unique address associated with the network interface.

§

The IPv6 addresses associated with the network interface.

§
Ipv6Native?: boolean | null
[src]

Indicates whether this is an IPv6 only network interface.

§

The IPv6 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.

§
OutpostArn?: string | null
[src]

The Amazon Resource Name (ARN) of the Outpost.

§
OwnerId?: string | null
[src]

The Amazon Web Services account ID of the owner of 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.

§

The private IPv4 addresses associated with the network interface.

§
RequesterId?: string | null
[src]

The alias or Amazon Web Services account ID of the principal or service that created the network interface.

§
RequesterManaged?: boolean | null
[src]

Indicates whether the network interface is being managed by Amazon Web Services.

§
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.

§
TagSet: Tag[]
[src]

Any tags assigned to the network interface.

§
VpcId?: string | null
[src]

The ID of the VPC.