interface DatabaseReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Timestream.DatabaseReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awstimestream#DatabaseReference |
Java | software.amazon.awscdk.interfaces.timestream.DatabaseReference |
Python | aws_cdk.interfaces.aws_timestream.DatabaseReference |
TypeScript | aws-cdk-lib » interfaces » aws_timestream » DatabaseReference |
A reference to a Database resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_timestream as interfaces_aws_timestream } from 'aws-cdk-lib/interfaces';
const databaseReference: interfaces_aws_timestream.DatabaseReference = {
databaseArn: 'databaseArn',
databaseName: 'databaseName',
};
Properties
| Name | Type | Description |
|---|---|---|
| database | string | The ARN of the Database resource. |
| database | string | The DatabaseName of the Database resource. |
databaseArn
Type:
string
The ARN of the Database resource.
databaseName
Type:
string
The DatabaseName of the Database resource.

.NET
Go
Java
Python
TypeScript