Skip to content

List Inbound Responsibility Transfers

organizations_list_inbound_responsibility_transfers R Documentation

Lists transfers that allow you to manage the specified responsibilities for another organization

Description

Lists transfers that allow you to manage the specified responsibilities for another organization. This operation returns both transfer invitations and transfers.

When calling List* operations, always check the NextToken response parameter value, even if you receive an empty result set. These operations can occasionally return an empty set of results even when more results are available. Continue making requests until NextToken returns null. A null NextToken value indicates that you have retrieved all available results.

Usage

organizations_list_inbound_responsibility_transfers(Type, Id, NextToken,
  MaxResults)

Arguments

Type

[required] The type of responsibility. Currently, only BILLING is supported.

Id

ID for the transfer.

NextToken

The parameter for receiving additional results if you receive a NextToken response in a previous request. A NextToken response indicates that more output is available. Set this parameter to the value of the previous call's NextToken response to indicate where the output should continue from.

MaxResults

The maximum number of items to return in the response. If more results exist than the specified MaxResults value, a token is included in the response so that you can retrieve the remaining results.

Value

A list with the following syntax:

list(
  ResponsibilityTransfers = list(
    list(
      Arn = "string",
      Name = "string",
      Id = "string",
      Type = "BILLING",
      Status = "REQUESTED"|"DECLINED"|"CANCELED"|"EXPIRED"|"ACCEPTED"|"WITHDRAWN",
      Source = list(
        ManagementAccountId = "string",
        ManagementAccountEmail = "string"
      ),
      Target = list(
        ManagementAccountId = "string",
        ManagementAccountEmail = "string"
      ),
      StartTimestamp = as.POSIXct(
        "2015-01-01"
      ),
      EndTimestamp = as.POSIXct(
        "2015-01-01"
      ),
      ActiveHandshakeId = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_inbound_responsibility_transfers(
  Type = "BILLING",
  Id = "string",
  NextToken = "string",
  MaxResults = 123
)