:doc:`S3Tables <../../s3tables>` / Client / get_table_bucket_storage_class

******************************
get_table_bucket_storage_class
******************************



.. py:method:: 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 <https://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableBucketStorageClass>`_  


  **Request Syntax**
  ::

    response = client.get_table_bucket_storage_class(
        tableBucketARN='string'
    )
    
  :type tableBucketARN: string
  :param tableBucketARN: **[REQUIRED]** 

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

    

  
  
  :rtype: 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**
  
  *   :py:class:`S3Tables.Client.exceptions.InternalServerErrorException`

  
  *   :py:class:`S3Tables.Client.exceptions.ForbiddenException`

  
  *   :py:class:`S3Tables.Client.exceptions.NotFoundException`

  
  *   :py:class:`S3Tables.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`S3Tables.Client.exceptions.TooManyRequestsException`

  
  *   :py:class:`S3Tables.Client.exceptions.BadRequestException`

  