interface CfnDatabaseProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Timestream.CfnDatabaseProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awstimestream#CfnDatabaseProps |
![]() | software.amazon.awscdk.services.timestream.CfnDatabaseProps |
![]() | aws_cdk.aws_timestream.CfnDatabaseProps |
![]() | aws-cdk-lib » aws_timestream » CfnDatabaseProps |
Properties for defining a CfnDatabase
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-timestream-database.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_timestream as timestream } from 'aws-cdk-lib';
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.