DatabaseReference
- class aws_cdk.interfaces.aws_timestream.DatabaseReference(*, database_arn, database_name)
Bases:
objectA reference to a Database resource.
- Parameters:
database_arn (
str) – The ARN of the Database resource.database_name (
str) – The DatabaseName of the Database 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.interfaces import aws_timestream as interfaces_aws_timestream database_reference = interfaces_aws_timestream.DatabaseReference( database_arn="databaseArn", database_name="databaseName" )
Attributes
- database_arn
The ARN of the Database resource.
- database_name
The DatabaseName of the Database resource.