outbound_responsibility_transfers
Creates, updates, deletes, gets or lists an outbound_responsibility_transfers resource.
Overview
| Name | outbound_responsibility_transfers |
| Type | Resource |
| Id | aws.organizations.outbound_responsibility_transfers |
Fields
The following fields are returned by SELECT queries:
- list_outbound_responsibility_transfers
| Name | Datatype | Description |
|---|---|---|
next_token | string | If 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_transfers | array | An array of ResponsibilityTransfer objects. Contains details for a transfer. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_outbound_responsibility_transfers | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_outbound_responsibility_transfers
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
;