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

CreateNetworkInterfaceRequest

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

Contains the parameters for CreateNetworkInterface.

interface CreateNetworkInterfaceRequest {
ClientToken?: string | null;
Description?: string | null;
DryRun?: boolean | null;
Groups?: string[] | null;
InterfaceType?: NetworkInterfaceCreationType | null;
Ipv4PrefixCount?: number | null;
Ipv4Prefixes?: Ipv4PrefixSpecificationRequest[] | null;
Ipv6AddressCount?: number | null;
Ipv6Addresses?: InstanceIpv6Address[] | null;
Ipv6PrefixCount?: number | null;
Ipv6Prefixes?: Ipv6PrefixSpecificationRequest[] | null;
PrivateIpAddress?: string | null;
PrivateIpAddresses?: PrivateIpAddressSpecification[] | null;
SecondaryPrivateIpAddressCount?: number | null;
SubnetId: string;
TagSpecifications?: TagSpecification[] | null;
}

§Properties

§
ClientToken?: string | null
[src]

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

§
Description?: string | null
[src]

A description for the network interface.

§
DryRun?: boolean | null
[src]

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

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

The IDs of one or more security groups.

§
InterfaceType?: NetworkInterfaceCreationType | null
[src]

Indicates 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. To create a trunk network interface, specify trunk.

§
Ipv4PrefixCount?: number | null
[src]

The number of IPv4 prefixes that Amazon Web Services automatically assigns to the network interface. You cannot use this option if you use the Ipv4 Prefixes option.

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

One or more IPv4 prefixes 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. If your subnet has the AssignIpv6AddressOnCreation attribute set to true, you can specify 0 to override this setting.

§
Ipv6Addresses?: InstanceIpv6Address[] | 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 that Amazon Web Services automatically assigns to the network interface. You cannot use this option if you use the Ipv6Prefixes option.

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

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

§
PrivateIpAddress?: string | null
[src]

The primary private IPv4 address of the network interface. If you don't specify an IPv4 address, Amazon EC2 selects one for you from the subnet's IPv4 CIDR range. If you specify an IP address, you cannot indicate any IP addresses specified in privateIpAddresses as primary (only one IP address can be designated as primary).

§
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. When you specify a number of secondary IPv4 addresses, Amazon EC2 selects these IP addresses within the subnet's IPv4 CIDR range. You can't specify this option and specify more than one private IP address using privateIpAddresses.

The number of IP addresses you can assign to a network interface varies by instance type. For more information, see IP Addresses Per ENI Per Instance Type in the Amazon Virtual Private Cloud User Guide.

§
SubnetId: string
[src]

The ID of the subnet to associate with the network interface.

§
TagSpecifications?: TagSpecification[] | null
[src]

The tags to apply to the new network interface.