getTableBucketEncryption method

Future<GetTableBucketEncryptionResponse> getTableBucketEncryption({
  1. required String tableBucketARN,
})

Gets the encryption configuration for a table bucket.

Permissions
You must have the s3tables:GetTableBucketEncryption permission to use this operation.

May throw AccessDeniedException. May throw BadRequestException. 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<GetTableBucketEncryptionResponse> getTableBucketEncryption({
  required String tableBucketARN,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/buckets/${Uri.encodeComponent(tableBucketARN)}/encryption',
    exceptionFnMap: _exceptionFns,
  );
  return GetTableBucketEncryptionResponse.fromJson(response);
}