interface CfnDatabaseProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Timestream.CfnDatabaseProps |
Java | software.amazon.awscdk.services.timestream.CfnDatabaseProps |
Python | aws_cdk.aws_timestream.CfnDatabaseProps |
TypeScript | @aws-cdk/aws-timestream » CfnDatabaseProps |
Properties for defining a CfnDatabase
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as timestream from '@aws-cdk/aws-timestream';
const cfnDatabaseProps: timestream.CfnDatabaseProps = {
databaseName: 'databaseName',
kmsKeyId: 'kmsKeyId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
database | string | The name of the Timestream database. |
kms | string | The identifier of the AWS KMS key used to encrypt the data stored in the database. |
tags? | Cfn [] | The tags to add to the database. |
databaseName?
Type:
string
(optional)
The name of the Timestream database.
Length Constraints : Minimum length of 3 bytes. Maximum length of 256 bytes.
kmsKeyId?
Type:
string
(optional)
The identifier of the AWS KMS key used to encrypt the data stored in the database.
tags?
Type:
Cfn
[]
(optional)
The tags to add to the database.