Skip to main content

outbound_responsibility_transfers

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

Overview

Nameoutbound_responsibility_transfers
TypeResource
Idaws.organizations.outbound_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_transfersarrayAn array of ResponsibilityTransfer objects. Contains details for a transfer.

Methods

The following methods are available for this resource:

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

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 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.

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