AWS SDK Version 4 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.

Allocates an Elastic IP address to your Amazon Web Services account. After you allocate the Elastic IP address you can associate it with an instance or network interface. After you release an Elastic IP address, it is released to the IP address pool and can be allocated to a different Amazon Web Services account.

You can allocate an Elastic IP address from one of the following address pools:

For more information, see Elastic IP Addresses in the Amazon EC2 User Guide.

If you release an Elastic IP address, you might be able to recover it. You cannot recover an Elastic IP address that you released after it is allocated to another Amazon Web Services account. To attempt to recover an Elastic IP address that you released, specify it in this operation.

You can allocate a carrier IP address which is a public IP address from a telecommunication carrier, to a network interface which resides in a subnet in a Wavelength Zone (for example an EC2 instance).

Note:

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

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

Syntax

C#
public virtual AllocateAddressResponse AllocateAddress(
         AllocateAddressRequest request
)

Parameters

request
Type: Amazon.EC2.Model.AllocateAddressRequest

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

Return Value


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

Examples

This example allocates an Elastic IP address.

To allocate an Elastic IP address


var client = new AmazonEC2Client();
var response = client.AllocateAddress(new AllocateAddressRequest 
{
});

string allocationId = response.AllocationId;
string domain = response.Domain;
string networkBorderGroup = response.NetworkBorderGroup;
string publicIp = response.PublicIp;
string publicIpv4Pool = response.PublicIpv4Pool;

            

Version Information

.NET Framework:
Supported in: 4.7.2 and newer

See Also