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.

Releases the specified Elastic IP address.

[Default VPC] Releasing an Elastic IP address automatically disassociates it from any instance that it's associated with. To disassociate an Elastic IP address without releasing it, use DisassociateAddress.

[Nondefault VPC] You must use DisassociateAddress to disassociate the Elastic IP address before you can release it. Otherwise, Amazon EC2 returns an error (InvalidIPAddress.InUse).

After releasing an Elastic IP address, it is released to the IP address pool. Be sure to update your DNS records and any servers or devices that communicate with the address. If you attempt to release an Elastic IP address that you already released, you'll get an AuthFailure error if the address is already allocated to another Amazon Web Services account.

After you release an Elastic IP address, you might be able to recover it. For more information, see AllocateAddress.

Note:

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

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

Syntax

C#
public virtual ReleaseAddressResponse ReleaseAddress(
         ReleaseAddressRequest request
)

Parameters

request
Type: Amazon.EC2.Model.ReleaseAddressRequest

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

Return Value


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

Examples

This example releases the specified Elastic IP address.

To release an Elastic IP address


var client = new AmazonEC2Client();
var response = client.ReleaseAddress(new ReleaseAddressRequest 
{
    AllocationId = "eipalloc-64d5890a"
});


            

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also