awscc_timestream_table (Resource)

The AWS::Timestream::Table resource creates a Timestream Table.

Example Usage

Create Table

Create a Timestream table in a database named "MyTimestreamDB"

resource "awscc_timestream_table" "this" {
  database_name = "MyTimestreamDB"
  table_name    = "MyTimestreamTable"
  tags = [{
    key   = "Managed By"
    value = "AWSCC"
  }]
}

Schema

Required

Optional

Read-Only

Nested Schema for magnetic_store_write_properties

Required:

Optional:

Nested Schema for magnetic_store_write_properties.magnetic_store_rejected_data_location

Optional:

Nested Schema for magnetic_store_write_properties.magnetic_store_rejected_data_location.s3_configuration

Required:

Optional:

Nested Schema for retention_properties

Optional:

Nested Schema for schema

Optional:

Nested Schema for schema.composite_partition_key

Required:

Optional:

Nested Schema for tags

Optional:

Import

Import is supported using the following syntax:

$ terraform import awscc_timestream_table.example <resource ID>