List Outbound Responsibility Transfers
| organizations_list_outbound_responsibility_transfers | R Documentation |
Lists transfers that allow an account outside your organization to manage the specified responsibilities for your organization¶
Description¶
Lists transfers that allow an account outside your organization to manage the specified responsibilities for your 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_outbound_responsibility_transfers(Type, NextToken,
MaxResults)
Arguments¶
Type |
[required] The type of responsibility. Currently, only
|
NextToken |
The parameter for receiving additional results if you receive a
|
MaxResults |
The maximum number of items to return in the response. If more
results exist than the specified |
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_outbound_responsibility_transfers(
Type = "BILLING",
NextToken = "string",
MaxResults = 123
)