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

LaunchTemplateInstanceNetworkInterfaceSpecificationRequest

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

The parameters for a network interface.

interface LaunchTemplateInstanceNetworkInterfaceSpecificationRequest {
AssociateCarrierIpAddress?: boolean | null;
AssociatePublicIpAddress?: boolean | null;
DeleteOnTermination?: boolean | null;
Description?: string | null;
DeviceIndex?: number | null;
Groups?: string[] | null;
InterfaceType?: string | null;
Ipv4PrefixCount?: number | null;
Ipv4Prefixes?: Ipv4PrefixSpecificationRequest[] | null;
Ipv6AddressCount?: number | null;
Ipv6Addresses?: InstanceIpv6AddressRequest[] | null;
Ipv6PrefixCount?: number | null;
Ipv6Prefixes?: Ipv6PrefixSpecificationRequest[] | null;
NetworkCardIndex?: number | null;
NetworkInterfaceId?: string | null;
PrivateIpAddress?: string | null;
PrivateIpAddresses?: PrivateIpAddressSpecification[] | null;
SecondaryPrivateIpAddressCount?: number | null;
SubnetId?: string | null;
}

§Properties

§
AssociateCarrierIpAddress?: boolean | null
[src]

Associates a Carrier IP address with eth0 for a new network interface.

Use this option when you launch an instance in a Wavelength Zone and want to associate a Carrier IP address with the network interface. For more information about Carrier IP addresses, see Carrier IP addresses in the Wavelength Developer Guide.

§
AssociatePublicIpAddress?: boolean | null
[src]

Associates a public IPv4 address with eth0 for a new network interface.

§
DeleteOnTermination?: boolean | null
[src]

Indicates whether the network interface is deleted when the instance is terminated.

§
Description?: string | null
[src]

A description for the network interface.

§
DeviceIndex?: number | null
[src]

The device index for the network interface attachment.

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

The IDs of one or more security groups.

§
InterfaceType?: string | null
[src]

The type of network interface. To create an Elastic Fabric Adapter (EFA), specify efa. For more information, see Elastic Fabric Adapter in the Amazon Elastic Compute Cloud User Guide.

If you are not creating an EFA, specify interface or omit this parameter.

Valid values: interface | efa

§
Ipv4PrefixCount?: number | null
[src]

The number of IPv4 prefixes to be automatically assigned to the network interface. You cannot use this option if you use the Ipv4Prefix option.

§
Ipv4Prefixes?: Ipv4PrefixSpecificationRequest[] | null
[src]

One or more IPv4 prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv4PrefixCount option.

§
Ipv6AddressCount?: number | null
[src]

The number of IPv6 addresses to assign to a network interface. Amazon EC2 automatically selects the IPv6 addresses from the subnet range. You can't use this option if specifying specific IPv6 addresses.

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

One or more specific IPv6 addresses from the IPv6 CIDR block range of your subnet. You can't use this option if you're specifying a number of IPv6 addresses.

§
Ipv6PrefixCount?: number | null
[src]

The number of IPv6 prefixes to be automatically assigned to the network interface. You cannot use this option if you use the Ipv6Prefix option.

§
Ipv6Prefixes?: Ipv6PrefixSpecificationRequest[] | null
[src]

One or more IPv6 prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv6PrefixCount option.

§
NetworkCardIndex?: number | null
[src]

The index of the network card. Some instance types support multiple network cards. The primary network interface must be assigned to network card index 0. The default is network card index 0.

§
NetworkInterfaceId?: string | null
[src]

The ID of the network interface.

§
PrivateIpAddress?: string | null
[src]

The primary private IPv4 address of the network interface.

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

One or more private IPv4 addresses.

§
SecondaryPrivateIpAddressCount?: number | null
[src]

The number of secondary private IPv4 addresses to assign to a network interface.

§
SubnetId?: string | null
[src]

The ID of the subnet for the network interface.