AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
Container for the parameters to the CreateNetworkInterface operation. Creates a network interface in the specified subnet.
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.
For more information about network interfaces, see Elastic network interfaces in the Amazon Elastic Compute Cloud User Guide.
Namespace: Amazon.EC2.Model
Assembly: AWSSDK.EC2.dll
Version: 3.x.y.z
public class CreateNetworkInterfaceRequest : AmazonEC2Request IAmazonWebServiceRequest
The CreateNetworkInterfaceRequest type exposes the following members
Name | Description | |
---|---|---|
![]() |
CreateNetworkInterfaceRequest() |
Name | Type | Description | |
---|---|---|---|
![]() |
ClientToken | System.String |
Gets and sets the property ClientToken. Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency. |
![]() |
Description | System.String |
Gets and sets the property Description. A description for the network interface. |
![]() |
Groups | System.Collections.Generic.List<System.String> |
Gets and sets the property Groups. The IDs of one or more security groups. |
![]() |
InterfaceType | Amazon.EC2.NetworkInterfaceCreationType |
Gets and sets the property InterfaceType.
The type of network interface. The default is
The only supported values are |
![]() |
Ipv4PrefixCount | System.Int32 |
Gets and sets the property Ipv4PrefixCount. The number of IPv4 prefixes that Amazon Web Services automatically assigns to the network interface. You can't specify a count of IPv4 prefixes if you've specified one of the following: specific IPv4 prefixes, specific private IPv4 addresses, or a count of private IPv4 addresses. |
![]() |
Ipv4Prefixes | System.Collections.Generic.List<Amazon.EC2.Model.Ipv4PrefixSpecificationRequest> |
Gets and sets the property Ipv4Prefixes. The IPv4 prefixes assigned to the network interface. You can't specify IPv4 prefixes if you've specified one of the following: a count of IPv4 prefixes, specific private IPv4 addresses, or a count of private IPv4 addresses. |
![]() |
Ipv6AddressCount | System.Int32 |
Gets and sets the property Ipv6AddressCount. 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 specify a count of IPv6 addresses using this parameter if you've specified one of the following: specific IPv6 addresses, specific IPv6 prefixes, or a count of IPv6 prefixes.
If your subnet has the |
![]() |
Ipv6Addresses | System.Collections.Generic.List<Amazon.EC2.Model.InstanceIpv6Address> |
Gets and sets the property Ipv6Addresses. The IPv6 addresses from the IPv6 CIDR block range of your subnet. You can't specify IPv6 addresses using this parameter if you've specified one of the following: a count of IPv6 addresses, specific IPv6 prefixes, or a count of IPv6 prefixes. |
![]() |
Ipv6PrefixCount | System.Int32 |
Gets and sets the property Ipv6PrefixCount. The number of IPv6 prefixes that Amazon Web Services automatically assigns to the network interface. You can't specify a count of IPv6 prefixes if you've specified one of the following: specific IPv6 prefixes, specific IPv6 addresses, or a count of IPv6 addresses. |
![]() |
Ipv6Prefixes | System.Collections.Generic.List<Amazon.EC2.Model.Ipv6PrefixSpecificationRequest> |
Gets and sets the property Ipv6Prefixes. The IPv6 prefixes assigned to the network interface. You can't specify IPv6 prefixes if you've specified one of the following: a count of IPv6 prefixes, specific IPv6 addresses, or a count of IPv6 addresses. |
![]() |
PrivateIpAddress | System.String |
Gets and sets the property PrivateIpAddress.
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 | System.Collections.Generic.List<Amazon.EC2.Model.PrivateIpAddressSpecification> |
Gets and sets the property PrivateIpAddresses. The private IPv4 addresses. You can't specify private IPv4 addresses if you've specified one of the following: a count of private IPv4 addresses, specific IPv4 prefixes, or a count of IPv4 prefixes. |
![]() |
SecondaryPrivateIpAddressCount | System.Int32 |
Gets and sets the property SecondaryPrivateIpAddressCount.
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 You can't specify a count of private IPv4 addresses if you've specified one of the following: specific private IPv4 addresses, specific IPv4 prefixes, or a count of IPv4 prefixes. |
![]() |
SubnetId | System.String |
Gets and sets the property SubnetId. The ID of the subnet to associate with the network interface. |
![]() |
TagSpecifications | System.Collections.Generic.List<Amazon.EC2.Model.TagSpecification> |
Gets and sets the property TagSpecifications. The tags to apply to the new network interface. |
This example creates a network interface for the specified subnet.
var client = new AmazonEC2Client(); var response = client.CreateNetworkInterface(new CreateNetworkInterfaceRequest { Description = "my network interface", Groups = new List<string> { "sg-903004f8" }, PrivateIpAddress = "10.0.2.17", SubnetId = "subnet-9d4a7b6c" }); NetworkInterface networkInterface = response.NetworkInterface;
.NET Core App:
Supported in: 3.1
.NET Standard:
Supported in: 2.0
.NET Framework:
Supported in: 4.5, 4.0, 3.5