multi_region_access_point_operations
Creates, updates, deletes, gets or lists a multi_region_access_point_operations resource.
Overview
| Name | multi_region_access_point_operations |
| Type | Resource |
| Id | aws.s3control.multi_region_access_point_operations |
Fields
The following fields are returned by SELECT queries:
- describe_multi_region_access_point_operation
| Name | Datatype | Description |
|---|---|---|
creation_time | string | The time that the request was sent to the service. |
operation | string | The specific operation for the asynchronous request. |
request_parameters | string | The parameters associated with the request. |
request_status | string | The current status of the request. |
request_token_arn | string | The request token associated with the request. |
response_details | string | The details of the response. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_multi_region_access_point_operation | select | x-amz-account-id, request_token, region | This operation is not supported by directory buckets. Retrieves the status of an asynchronous request to manage a Multi-Region Access Point. For more information about managing Multi-Region Access Points and how asynchronous requests work, see Using Multi-Region Access Points in the Amazon S3 User Guide. The following actions are related to GetMultiRegionAccessPoint: CreateMultiRegionAccessPoint DeleteMultiRegionAccessPoint GetMultiRegionAccessPoint ListMultiRegionAccessPoints |
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) |
request_token | string | The request token associated with the request you want to know about. This request token is returned as part of the response when you make an asynchronous request. You provide this token to query about the status of the asynchronous action. |
x-amz-account-id | string | The Amazon Web Services account ID for the owner of the Multi-Region Access Point. |
SELECT examples
- describe_multi_region_access_point_operation
This operation is not supported by directory buckets. Retrieves the status of an asynchronous request to manage a Multi-Region Access Point. For more information about managing Multi-Region Access Points and how asynchronous requests work, see Using Multi-Region Access Points in the Amazon S3 User Guide. The following actions are related to GetMultiRegionAccessPoint: CreateMultiRegionAccessPoint DeleteMultiRegionAccessPoint GetMultiRegionAccessPoint ListMultiRegionAccessPoints
SELECT
creation_time,
operation,
request_parameters,
request_status,
request_token_arn,
response_details
FROM aws.s3control.multi_region_access_point_operations
WHERE `x-amz-account-id` = '{{ x-amz-account-id }}' -- required
AND request_token = '{{ request_token }}' -- required
AND region = '{{ region }}' -- required
;