S3Tables / Client / get_table_bucket_storage_class

get_table_bucket_storage_class

S3Tables.Client.get_table_bucket_storage_class(**kwargs)

Retrieves the storage class configuration for a specific table. This allows you to view the storage class settings that apply to an individual table, which may differ from the table bucket’s default configuration.

Permissions

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

See also: AWS API Documentation

Request Syntax

response = client.get_table_bucket_storage_class(
    tableBucketARN='string'
)
Parameters:

tableBucketARN (string) –

[REQUIRED]

The Amazon Resource Name (ARN) of the table bucket.

Return type:

dict

Returns:

Response Syntax

{
    'storageClassConfiguration': {
        'storageClass': 'STANDARD'|'INTELLIGENT_TIERING'
    }
}

Response Structure

  • (dict) –

    • storageClassConfiguration (dict) –

      The storage class configuration for the table bucket.

      • storageClass (string) –

        The storage class for the table or table bucket. Valid values include storage classes optimized for different access patterns and cost profiles.

Exceptions

  • S3Tables.Client.exceptions.InternalServerErrorException

  • S3Tables.Client.exceptions.ForbiddenException

  • S3Tables.Client.exceptions.NotFoundException

  • S3Tables.Client.exceptions.AccessDeniedException

  • S3Tables.Client.exceptions.TooManyRequestsException

  • S3Tables.Client.exceptions.BadRequestException