getTableBucketReplication method
Future<GetTableBucketReplicationResponse>
getTableBucketReplication({
- required String tableBucketARN,
Retrieves the replication configuration for a table bucket.This operation
returns the IAM role, versionToken, and replication rules
that define how tables in this bucket are replicated to other buckets.
- Permissions
-
You must have the
s3tables:GetTableBucketReplicationpermission to use this operation.
May throw AccessDeniedException.
May throw BadRequestException.
May throw ConflictException.
May throw ForbiddenException.
May throw InternalServerErrorException.
May throw NotFoundException.
May throw TooManyRequestsException.
Parameter tableBucketARN :
The Amazon Resource Name (ARN) of the table bucket.
Implementation
Future<GetTableBucketReplicationResponse> getTableBucketReplication({
required String tableBucketARN,
}) async {
final $query = <String, List<String>>{
'tableBucketARN': [tableBucketARN],
};
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/table-bucket-replication',
queryParams: $query,
exceptionFnMap: _exceptionFns,
);
return GetTableBucketReplicationResponse.fromJson(response);
}