replace_permission_associations_works
Creates, updates, deletes, gets or lists a replace_permission_associations_works resource.
Overview
| Name | replace_permission_associations_works |
| Type | Resource |
| Id | aws.ram.replace_permission_associations_works |
Fields
The following fields are returned by SELECT queries:
- list_replace_permission_associations_work
| Name | Datatype | Description |
|---|---|---|
next_token | string | If present, this value 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. This indicates that this is the last page of results. |
replace_permission_associations_works | array | An array of data structures that provide details of the matching work IDs. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_replace_permission_associations_work | select | region | Retrieves the current status of the asynchronous tasks performed by RAM when you perform the ReplacePermissionAssociationsWork operation. Always check the NextToken response parameter for a null value when calling a paginated operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display. |
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_replace_permission_associations_work
Retrieves the current status of the asynchronous tasks performed by RAM when you perform the ReplacePermissionAssociationsWork operation. Always check the NextToken response parameter for a null value when calling a paginated operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.
SELECT
next_token,
replace_permission_associations_works
FROM aws.ram.replace_permission_associations_works
WHERE region = '{{ region }}' -- required
;