deleteTableBucket method

Future<void> deleteTableBucket({
  1. required String tableBucketARN,
})

Deletes a table bucket. For more information, see Deleting a table bucket in the Amazon Simple Storage Service User Guide.

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

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<void> deleteTableBucket({
  required String tableBucketARN,
}) async {
  await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/buckets/${Uri.encodeComponent(tableBucketARN)}',
    exceptionFnMap: _exceptionFns,
  );
}