TableReference
- class aws_cdk.aws_timestream.TableReference(*, database_name, table_arn, table_name)
Bases:
object
A reference to a Table resource.
- Parameters:
database_name (
str
) – The DatabaseName of the Table resource.table_arn (
str
) – The ARN of the Table resource.table_name (
str
) – The TableName of the Table resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_timestream as timestream table_reference = timestream.TableReference( database_name="databaseName", table_arn="tableArn", table_name="tableName" )
Attributes
- database_name
The DatabaseName of the Table resource.
- table_arn
The ARN of the Table resource.
- table_name
The TableName of the Table resource.