ScheduledQueryTargetConfigurationTimestreamConfiguration

data class ScheduledQueryTargetConfigurationTimestreamConfiguration(val databaseName: String, val dimensionMappings: List<ScheduledQueryTargetConfigurationTimestreamConfigurationDimensionMapping>? = null, val measureNameColumn: String? = null, val mixedMeasureMappings: List<ScheduledQueryTargetConfigurationTimestreamConfigurationMixedMeasureMapping>? = null, val multiMeasureMappings: ScheduledQueryTargetConfigurationTimestreamConfigurationMultiMeasureMappings? = null, val tableName: String, val timeColumn: String)

Constructors

constructor(databaseName: String, dimensionMappings: List<ScheduledQueryTargetConfigurationTimestreamConfigurationDimensionMapping>? = null, measureNameColumn: String? = null, mixedMeasureMappings: List<ScheduledQueryTargetConfigurationTimestreamConfigurationMixedMeasureMapping>? = null, multiMeasureMappings: ScheduledQueryTargetConfigurationTimestreamConfigurationMultiMeasureMappings? = null, tableName: String, timeColumn: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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

Link copied to clipboard

Configuration block for mapping of column(s) from the query result to the dimension in the destination table. See below.

Link copied to clipboard

Name of the measure column.

Link copied to clipboard

Configuration block for how to map measures to multi-measure records. See below.

Link copied to clipboard

Configuration block for multi-measure mappings. Only one of mixed_measure_mappings or multi_measure_mappings can be provided. multi_measure_mappings can be used to ingest data as multi measures in the derived table. See below.

Link copied to clipboard

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

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