Skip to content

Create table

async_boto.validation.timestream_write.create_table

CreateTableRequest

Bases: BaseModel

Adds a new table to an existing database in your account. In an AWS account, table names must be at least unique within each Region if they are in the same database.

ATTRIBUTE DESCRIPTION
DatabaseName

The name of the Timestream database.

TYPE: str

MagneticStoreWriteProperties

Properties to set on the table when enabling magnetic store writes.

TYPE: MagneticStoreWriteProperties | None

RetentionProperties

The duration for which your time-series data must be stored in the memory store and the magnetic store.

TYPE: RetentionProperties | None

Schema

The schema of the table.

TYPE: Schema | None

TableName

The name of the Timestream table.

TYPE: str

Tags

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

TYPE: List[Tag] | None

DatabaseName instance-attribute

DatabaseName

MagneticStoreWriteProperties class-attribute instance-attribute

MagneticStoreWriteProperties = None

RetentionProperties class-attribute instance-attribute

RetentionProperties = None

Schema class-attribute instance-attribute

Schema = None

TableName instance-attribute

TableName

Tags class-attribute instance-attribute

Tags = None

CreateTableResponse

Bases: BaseModel

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

ATTRIBUTE DESCRIPTION
Table

The newly created Timestream table.

TYPE: Table

Table instance-attribute

Table