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
)
The allocation IDs of Elastic IP addresses.
DryRunOperation
. Otherwise, it is UnauthorizedOperation
.dict
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.