Package-level declarations

Types

Link copied to clipboard

Provides a Timestream database resource.

Link copied to clipboard
data class DatabaseArgs(val databaseName: Output<String>? = null, val kmsKeyId: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<DatabaseArgs>

Provides a Timestream database resource.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Provides a Timestream table resource.

Link copied to clipboard
data class TableArgs(val databaseName: Output<String>? = null, val magneticStoreWriteProperties: Output<TableMagneticStoreWritePropertiesArgs>? = null, val retentionProperties: Output<TableRetentionPropertiesArgs>? = null, val tableName: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<TableArgs>

Provides a Timestream table resource.

Link copied to clipboard

Builder for TableArgs.

Link copied to clipboard
Link copied to clipboard

Builder for Table.

Functions

Link copied to clipboard
suspend fun databaseResource(name: String, block: suspend DatabaseResourceBuilder.() -> Unit): Database
Link copied to clipboard
suspend fun tableResource(name: String, block: suspend TableResourceBuilder.() -> Unit): Table