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.
This is the response object from the CreateNetworkInterface operation.
Namespace: Amazon.EC2.Model
Assembly: AWSSDK.EC2.dll
Version: 3.x.y.z
public class CreateNetworkInterfaceResponse : AmazonWebServiceResponse
The CreateNetworkInterfaceResponse type exposes the following members
| Name | Description | |
|---|---|---|
|
CreateNetworkInterfaceResponse() |
| Name | Type | Description | |
|---|---|---|---|
|
ClientToken | System.String |
Gets and sets the property ClientToken.
The token to use to retrieve the next page of results. This value is |
|
ContentLength | System.Int64 | Inherited from Amazon.Runtime.AmazonWebServiceResponse. |
|
HttpStatusCode | System.Net.HttpStatusCode | Inherited from Amazon.Runtime.AmazonWebServiceResponse. |
|
NetworkInterface | Amazon.EC2.Model.NetworkInterface |
Gets and sets the property NetworkInterface. Information about the network interface. |
|
ResponseMetadata | Amazon.Runtime.ResponseMetadata | Inherited from Amazon.Runtime.AmazonWebServiceResponse. |
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:
Supported in: 8.0 and newer, Core 3.1
.NET Standard:
Supported in: 2.0
.NET Framework:
Supported in: 4.5 and newer, 3.5