get_configured_table
(**kwargs)¶Retrieves a configured table.
See also: AWS API Documentation
Request Syntax
response = client.get_configured_table(
configuredTableIdentifier='string'
)
[REQUIRED]
The unique ID for the configured table to retrieve.
{
'configuredTable': {
'id': 'string',
'arn': 'string',
'name': 'string',
'description': 'string',
'tableReference': {
'glue': {
'tableName': 'string',
'databaseName': 'string'
}
},
'createTime': datetime(2015, 1, 1),
'updateTime': datetime(2015, 1, 1),
'analysisRuleTypes': [
'AGGREGATION'|'LIST',
],
'analysisMethod': 'DIRECT_QUERY',
'allowedColumns': [
'string',
]
}
}
Response Structure
The retrieved configured table.
The unique ID for the configured table.
The unique ARN for the configured table.
A name for the configured table.
A description for the configured table.
The AWS Glue table that this configured table represents.
Note
This is a Tagged Union structure. Only one of the following top level keys will be set: glue
. If a client receives an unknown member it will set SDK_UNKNOWN_MEMBER
as the top level key, which maps to the name or tag of the unknown member. The structure of SDK_UNKNOWN_MEMBER
is as follows:
'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
If present, a reference to the AWS Glue table referred to by this table reference.
The name of the AWS Glue table.
The name of the database the AWS Glue table belongs to.
The time the configured table was created.
The time the configured table was last updated
The types of analysis rules associated with this configured table. Valid values are AGGREGATION and LIST. Currently, only one analysis rule may be associated with a configured table.
The analysis method for the configured table. The only valid value is currently DIRECT_QUERY.
The columns within the underlying AWS Glue table that can be utilized within collaborations.
Exceptions
CleanRoomsService.Client.exceptions.ResourceNotFoundException
CleanRoomsService.Client.exceptions.InternalServerException
CleanRoomsService.Client.exceptions.ValidationException
CleanRoomsService.Client.exceptions.ThrottlingException
CleanRoomsService.Client.exceptions.AccessDeniedException