Skip to content

Describe Address Transfers

ec2_describe_address_transfers R Documentation

Describes an Elastic IP address transfer

Description

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

When you transfer an Elastic IP address, there is a two-step handshake between the source and transfer Amazon Web Services accounts. When the source account starts the transfer, the transfer account has seven days to accept the Elastic IP address transfer. During those seven days, the source account can view the pending transfer by using this action. After seven days, the transfer expires and ownership of the Elastic IP address returns to the source account. Accepted transfers are visible to the source account for 14 days after the transfers have been accepted.

Usage

ec2_describe_address_transfers(AllocationIds, NextToken, MaxResults,
  DryRun)

Arguments

AllocationIds

The allocation IDs of Elastic IP addresses.

NextToken

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

MaxResults

The maximum number of address transfers to return in one page of results.

DryRun

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.

Value

A list with the following syntax:

list(
  AddressTransfers = list(
    list(
      PublicIp = "string",
      AllocationId = "string",
      TransferAccountId = "string",
      TransferOfferExpirationTimestamp = as.POSIXct(
        "2015-01-01"
      ),
      TransferOfferAcceptedTimestamp = as.POSIXct(
        "2015-01-01"
      ),
      AddressTransferStatus = "pending"|"disabled"|"accepted"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_address_transfers(
  AllocationIds = list(
    "string"
  ),
  NextToken = "string",
  MaxResults = 123,
  DryRun = TRUE|FALSE
)