Skip to main content

multi_region_access_point_operations

Creates, updates, deletes, gets or lists a multi_region_access_point_operations resource.

Overview

Namemulti_region_access_point_operations
TypeResource
Idaws.s3control.multi_region_access_point_operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
creation_timestringThe time that the request was sent to the service.
operationstringThe specific operation for the asynchronous request.
request_parametersstringThe parameters associated with the request.
request_statusstringThe current status of the request.
request_token_arnstringThe request token associated with the request.
response_detailsstringThe details of the response.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_multi_region_access_point_operationselectx-amz-account-id, request_token, regionThis 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
request_tokenstringThe 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-idstringThe Amazon Web Services account ID for the owner of the Multi-Region Access Point.

SELECT examples

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
;