ScheduledQueryTimestreamConfigurationArgs

data class ScheduledQueryTimestreamConfigurationArgs(val databaseName: Output<String>, val dimensionMappings: Output<List<ScheduledQueryDimensionMappingArgs>>, val measureNameColumn: Output<String>? = null, val mixedMeasureMappings: Output<List<ScheduledQueryMixedMeasureMappingArgs>>? = null, val multiMeasureMappings: Output<ScheduledQueryMultiMeasureMappingsArgs>? = null, val tableName: Output<String>, val timeColumn: Output<String>) : ConvertibleToJava<ScheduledQueryTimestreamConfigurationArgs>

Configuration needed to write data into the Timestream database and table.

Constructors

constructor(databaseName: Output<String>, dimensionMappings: Output<List<ScheduledQueryDimensionMappingArgs>>, measureNameColumn: Output<String>? = null, mixedMeasureMappings: Output<List<ScheduledQueryMixedMeasureMappingArgs>>? = null, multiMeasureMappings: Output<ScheduledQueryMultiMeasureMappingsArgs>? = null, tableName: Output<String>, timeColumn: Output<String>)

Properties

Link copied to clipboard
val databaseName: Output<String>

Name of Timestream database to which the query result will be written.

Link copied to clipboard

This is to allow mapping column(s) from the query result to the dimension in the destination table.

Link copied to clipboard
val measureNameColumn: Output<String>? = null

Name of the measure column. Also see MultiMeasureMappings and MixedMeasureMappings for how measure name properties on those relate to MeasureNameColumn .

Link copied to clipboard

Specifies how to map measures to multi-measure records.

Link copied to clipboard

Multi-measure mappings.

Link copied to clipboard
val tableName: Output<String>

Name of Timestream table that the query result will be written to. The table should be within the same database that is provided in Timestream configuration.

Link copied to clipboard
val timeColumn: Output<String>

Column from query result that should be used as the time column in destination table. Column type for this should be TIMESTAMP.

Functions

Link copied to clipboard
open override fun toJava(): ScheduledQueryTimestreamConfigurationArgs