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

AwsEc2LaunchTemplateDataNetworkInterfaceSetDetails

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

One or more network interfaces to attach to an Amazon EC2 instance. If you specify a network interface, you must specify security groups and subnets as part of the network interface.

interface AwsEc2LaunchTemplateDataNetworkInterfaceSetDetails {
AssociateCarrierIpAddress?: boolean | null;
AssociatePublicIpAddress?: boolean | null;
DeleteOnTermination?: boolean | null;
Description?: string | null;
DeviceIndex?: number | null;
Groups?: string[] | null;
InterfaceType?: string | null;
Ipv4PrefixCount?: number | null;
Ipv6AddressCount?: number | null;
Ipv6PrefixCount?: number | null;
NetworkCardIndex?: number | null;
NetworkInterfaceId?: string | null;
PrivateIpAddress?: string | null;
SecondaryPrivateIpAddressCount?: number | null;
SubnetId?: string | null;
}

§Properties

§
AssociateCarrierIpAddress?: boolean | null
[src]

Indicates whether to associate a Carrier IP address with eth0 for a new network interface. You 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, see Carrier IP address 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.

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

§

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 you use Ipv6Addresses.

§

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

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

§

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.

§

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.