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

***********************
get_table_storage_class
***********************



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


  **Request Syntax**
  ::

    response = client.get_table_storage_class(
        tableBucketARN='string',
        namespace='string',
        name='string'
    )
    
  :type tableBucketARN: string
  :param tableBucketARN: **[REQUIRED]** 

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

    

  
  :type namespace: string
  :param namespace: **[REQUIRED]** 

    The namespace associated with the table.

    

  
  :type name: string
  :param name: **[REQUIRED]** 

    The name of the table.

    

  
  
  :rtype: 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**
  
  *   :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`

  