DatabaseReference
- class aws_cdk.aws_timestream.DatabaseReference(*, database_arn, database_name)
Bases:
object
A 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 import aws_timestream as timestream database_reference = 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.