Skip to content

Create database

async_boto.validation.timestream_write.create_database

CreateDatabaseRequest

Bases: BaseModel

Creates a new Timestream database. If the AWS KMS key is not specified, the database will be encrypted with a Timestream managed AWS KMS key located in your account.

ATTRIBUTE DESCRIPTION
DatabaseName

The name of the Timestream database.

TYPE: str

KmsKeyId

The AWS KMS key for the database.

TYPE: str | None

Tags

A list of key-value pairs to label the table.

TYPE: List[Tag] | None

DatabaseName instance-attribute

DatabaseName

KmsKeyId class-attribute instance-attribute

KmsKeyId = None

Tags class-attribute instance-attribute

Tags = None

CreateDatabaseResponse

Bases: BaseModel

The response returned by the service when a CreateDatabase action is successful.

ATTRIBUTE DESCRIPTION
Database

The newly created Timestream database.

TYPE: Database

Database instance-attribute

Database