Skip to main content

inbound_responsibility_transfers

Creates, updates, deletes, gets or lists an inbound_responsibility_transfers resource.

Overview

Nameinbound_responsibility_transfers
TypeResource
Idaws.organizations.inbound_responsibility_transfers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringIf present, indicates that more output is available than is included in the current response. Use this value in the NextToken request parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until the NextToken response element comes back as null. (pattern: <code>[\s\S]*</code>)
responsibility_transfersarrayA ResponsibilityTransfers object. Contains details for a transfer.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_inbound_responsibility_transfersselectregionLists 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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.

SELECT
next_token,
responsibility_transfers
FROM aws.organizations.inbound_responsibility_transfers
WHERE region = '{{ region }}' -- required
;