S3Tables / Client / get_table_storage_class

get_table_storage_class

S3Tables.Client.get_table_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:GetTableStorageClass permission to use this operation.

See also: AWS API Documentation

Request Syntax

response = client.get_table_storage_class(
    tableBucketARN='string',
    namespace='string',
    name='string'
)
Parameters:
  • tableBucketARN (string) –

    [REQUIRED]

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

  • namespace (string) –

    [REQUIRED]

    The namespace associated with the table.

  • name (string) –

    [REQUIRED]

    The name of the table.

Return type:

dict

Returns:

Response Syntax

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

Response Structure

  • (dict) –

    • storageClassConfiguration (dict) –

      The storage class configuration for the table.

      • 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