The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Paws::EC2::ReleaseAddress - Arguments for method ReleaseAddress on Paws::EC2

DESCRIPTION

This class represents the parameters used for calling the method ReleaseAddress on the Amazon Elastic Compute Cloud service. Use the attributes of this class as arguments to method ReleaseAddress.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ReleaseAddress.

SYNOPSIS

    my $ec2 = Paws->service('EC2');
  # To release an Elastic IP address for EC2-VPC
  # This example releases an Elastic IP address for use with instances in a VPC.
    $ec2->ReleaseAddress( 'AllocationId' => 'eipalloc-64d5890a' );

    # To release an Elastic IP addresses for EC2-Classic
    # This example releases an Elastic IP address for use with instances in
    # EC2-Classic.
    $ec2->ReleaseAddress( 'PublicIp' => '198.51.100.0' );

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/ec2/ReleaseAddress

ATTRIBUTES

AllocationId => Str

[EC2-VPC] The allocation ID. Required for EC2-VPC.

DryRun => Bool

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

NetworkBorderGroup => Str

The set of Availability Zones, Local Zones, or Wavelength Zones from which AWS advertises IP addresses.

If you provide an incorrect network border group, you will receive an InvalidAddress.NotFound error. For more information, see Error Codes (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/errors-overview.html).

You cannot use a network border group with EC2 Classic. If you attempt this operation on EC2 classic, you will receive an InvalidParameterCombination error. For more information, see Error Codes (https://docs.aws.amazon.com/AWSEC2/latest/APIReference/errors-overview.html).

PublicIp => Str

[EC2-Classic] The Elastic IP address. Required for EC2-Classic.

SEE ALSO

This class forms part of Paws, documenting arguments for method ReleaseAddress in Paws::EC2

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues