getTableReplication method
Retrieves the replication configuration for a specific table.
- Permissions
-
You must have the
s3tables:GetTableReplicationpermission 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 tableArn :
The Amazon Resource Name (ARN) of the table.
Implementation
Future<GetTableReplicationResponse> getTableReplication({
required String tableArn,
}) async {
final $query = <String, List<String>>{
'tableArn': [tableArn],
};
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/table-replication',
queryParams: $query,
exceptionFnMap: _exceptionFns,
);
return GetTableReplicationResponse.fromJson(response);
}