S3Tables / Client / get_table

get_table#

S3Tables.Client.get_table(**kwargs)#

Gets details about a table.

See also: AWS API Documentation

Request Syntax

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

    [REQUIRED]

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

  • namespace (string) –

    [REQUIRED]

    The name of the namespace the table is associated with.

  • name (string) –

    [REQUIRED]

    The name of the table.

Return type:

dict

Returns:

Response Syntax

{
    'name': 'string',
    'type': 'customer'|'aws',
    'tableARN': 'string',
    'namespace': [
        'string',
    ],
    'versionToken': 'string',
    'metadataLocation': 'string',
    'warehouseLocation': 'string',
    'createdAt': datetime(2015, 1, 1),
    'createdBy': 'string',
    'managedByService': 'string',
    'modifiedAt': datetime(2015, 1, 1),
    'modifiedBy': 'string',
    'ownerAccountId': 'string',
    'format': 'ICEBERG'
}

Response Structure

  • (dict) –

    • name (string) –

      The name of the table.

    • type (string) –

      The type of the table.

    • tableARN (string) –

      The Amazon Resource Name (ARN) of the table.

    • namespace (list) –

      The namespace associated with the table.

      • (string) –

    • versionToken (string) –

      The version token of the table.

    • metadataLocation (string) –

      The metadata location of the table.

    • warehouseLocation (string) –

      The warehouse location of the table.

    • createdAt (datetime) –

      The date and time the table bucket was created at.

    • createdBy (string) –

      The ID of the account that created the table.

    • managedByService (string) –

      The service that manages the table.

    • modifiedAt (datetime) –

      The date and time the table was last modified on.

    • modifiedBy (string) –

      The ID of the account that last modified the table.

    • ownerAccountId (string) –

      The ID of the account that owns the table.

    • format (string) –

      The format of the table.

Exceptions