describe_address_transfers

EC2.Client.describe_address_transfers(**kwargs)

Describes an Elastic IP address transfer. For more information, see Transfer Elastic IP addresses in the Amazon Virtual Private Cloud User Guide .

See also: AWS API Documentation

Request Syntax

response = client.describe_address_transfers(
    AllocationIds=[
        'string',
    ],
    NextToken='string',
    MaxResults=123,
    DryRun=True|False
)
Parameters
  • AllocationIds (list) --

    The allocation IDs of Elastic IP addresses.

    • (string) --
  • NextToken (string) -- Specify the pagination token from a previous request to retrieve the next page of results.
  • MaxResults (integer) -- The maximum number of address transfers to return in one page of results.
  • DryRun (boolean) -- 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 .
Return type

dict

Returns

Response Syntax

{
    'AddressTransfers': [
        {
            'PublicIp': 'string',
            'AllocationId': 'string',
            'TransferAccountId': 'string',
            'TransferOfferExpirationTimestamp': datetime(2015, 1, 1),
            'TransferOfferAcceptedTimestamp': datetime(2015, 1, 1),
            'AddressTransferStatus': 'pending'|'disabled'|'accepted'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • AddressTransfers (list) --

      The Elastic IP address transfer.

      • (dict) --

        Details on the Elastic IP address transfer. For more information, see Transfer Elastic IP addresses in the Amazon Virtual Private Cloud User Guide .

        • PublicIp (string) --

          The Elastic IP address being transferred.

        • AllocationId (string) --

          The allocation ID of an Elastic IP address.

        • TransferAccountId (string) --

          The ID of the account that you want to transfer the Elastic IP address to.

        • TransferOfferExpirationTimestamp (datetime) --

          The timestamp when the Elastic IP address transfer expired. When the source account starts the transfer, the transfer account has seven hours to allocate the Elastic IP address to complete the transfer, or the Elastic IP address will return to its original owner.

        • TransferOfferAcceptedTimestamp (datetime) --

          The timestamp when the Elastic IP address transfer was accepted.

        • AddressTransferStatus (string) --

          The Elastic IP address transfer status.

    • NextToken (string) --

      Specify the pagination token from a previous request to retrieve the next page of results.