AWS SDK Version 3 for .NET
API Reference

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.

Unassigns one or more secondary private IP addresses, or IPv4 Prefix Delegation prefixes from a network interface.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to UnassignPrivateIpAddressesAsync.

Namespace: Amazon.EC2
Assembly: AWSSDK.EC2.dll
Version: 3.x.y.z

Syntax

C#
public virtual UnassignPrivateIpAddressesResponse UnassignPrivateIpAddresses(
         UnassignPrivateIpAddressesRequest request
)

Parameters

request
Type: Amazon.EC2.Model.UnassignPrivateIpAddressesRequest

Container for the necessary parameters to execute the UnassignPrivateIpAddresses service method.

Return Value


The response from the UnassignPrivateIpAddresses service method, as returned by EC2.

Examples

This example unassigns the specified private IP address from the specified network interface.

To unassign a secondary private IP address from a network interface


var client = new AmazonEC2Client();
var response = client.UnassignPrivateIpAddresses(new UnassignPrivateIpAddressesRequest 
{
    NetworkInterfaceId = "eni-e5aa89a3",
    PrivateIpAddresses = new List<string> {
        "10.0.0.82"
    }
});


            

Version Information

.NET Framework:
Supported in: 4.5 and newer, 3.5

See Also