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

****************
get_table_bucket
****************



.. py:method:: S3Tables.Client.get_table_bucket(**kwargs)

  

  Gets details on a table bucket. For more information, see `Viewing details about an Amazon S3 table bucket <https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets-details.html>`__ in the *Amazon Simple Storage Service User Guide*.

    Permissions  

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

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableBucket>`_  


  **Request Syntax**
  ::

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

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

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'arn': 'string',
          'name': 'string',
          'ownerAccountId': 'string',
          'createdAt': datetime(2015, 1, 1),
          'tableBucketId': 'string',
          'type': 'customer'|'aws'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **arn** *(string) --* 

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

        
      

      - **name** *(string) --* 

        The name of the table bucket

        
      

      - **ownerAccountId** *(string) --* 

        The ID of the account that owns the table bucket.

        
      

      - **createdAt** *(datetime) --* 

        The date and time the table bucket was created.

        
      

      - **tableBucketId** *(string) --* 

        The unique identifier of the table bucket.

        
      

      - **type** *(string) --* 

        The type of the table bucket.

        
  
  **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.ConflictException`

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

  