aws-cdk-lib.aws_timestream.CfnDatabaseProps

interface CfnDatabaseProps

LanguageType name
.NETAmazon.CDK.AWS.Timestream.CfnDatabaseProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awstimestream#CfnDatabaseProps
Javasoftware.amazon.awscdk.services.timestream.CfnDatabaseProps
Pythonaws_cdk.aws_timestream.CfnDatabaseProps
TypeScript aws-cdk-lib » 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 { aws_timestream as timestream } from 'aws-cdk-lib';
const cfnDatabaseProps: timestream.CfnDatabaseProps = {
  databaseName: 'databaseName',
  kmsKeyId: 'kmsKeyId',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
databaseName?stringThe name of the Timestream database.
kmsKeyId?stringThe identifier of the AWS KMS key used to encrypt the data stored in the database.
tags?CfnTag[]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: CfnTag[] (optional)

The tags to add to the database.