S3Tables / Client / get_table
get_table¶
- S3Tables.Client.get_table(**kwargs)¶
- Gets details about a table. For more information, see S3 Tables in the Amazon Simple Storage Service User Guide. - Permissions - You must have the - s3tables:GetTablepermission to use this operation.- See also: AWS API Documentation - Request Syntax- response = client.get_table( tableBucketARN='string', namespace='string', name='string', tableArn='string' ) - Parameters:
- tableBucketARN (string) – The Amazon Resource Name (ARN) of the table bucket associated with the table. 
- namespace (string) – The name of the namespace the table is associated with. 
- name (string) – The name of the table. 
- tableArn (string) – The Amazon Resource Name (ARN) of the table. 
 
- Return type:
- dict 
- Returns:
- Response Syntax- { 'name': 'string', 'type': 'customer'|'aws', 'tableARN': 'string', 'namespace': [ 'string', ], 'namespaceId': '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', 'tableBucketId': 'string' } - 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) – 
 
- namespaceId (string) – - The unique identifier of the namespace containing this table. 
- 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. 
- tableBucketId (string) – - The unique identifier of the table bucket containing this table. 
 
 
 - Exceptions