![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateHeatMapConfiguration.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.outputs
import kotlin.Suppress
/**
*
* @property colorScale The color options (gradient color, point of divergence) in a heat map.
* @property columnLabelOptions The label options of the column that is displayed in a heat map.
* @property dataLabels The options that determine if visual data labels are displayed.
* @property fieldWells The field wells of the visual.
* @property legend The legend display setup of the visual.
* @property rowLabelOptions The label options of the row that is displayed in a `heat map` .
* @property sortConfiguration The sort configuration of a heat map.
* @property tooltip The tooltip display setup of the visual.
*/
public data class TemplateHeatMapConfiguration(
public val colorScale: TemplateColorScale? = null,
public val columnLabelOptions: TemplateChartAxisLabelOptions? = null,
public val dataLabels: TemplateDataLabelOptions? = null,
public val fieldWells: TemplateHeatMapFieldWells? = null,
public val legend: TemplateLegendOptions? = null,
public val rowLabelOptions: TemplateChartAxisLabelOptions? = null,
public val sortConfiguration: TemplateHeatMapSortConfiguration? = null,
public val tooltip: TemplateTooltipOptions? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.quicksight.outputs.TemplateHeatMapConfiguration): TemplateHeatMapConfiguration = TemplateHeatMapConfiguration(
colorScale = javaType.colorScale().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateColorScale.Companion.toKotlin(args0)
})
}).orElse(null),
columnLabelOptions = javaType.columnLabelOptions().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateChartAxisLabelOptions.Companion.toKotlin(args0)
})
}).orElse(null),
dataLabels = javaType.dataLabels().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateDataLabelOptions.Companion.toKotlin(args0)
})
}).orElse(null),
fieldWells = javaType.fieldWells().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateHeatMapFieldWells.Companion.toKotlin(args0)
})
}).orElse(null),
legend = javaType.legend().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateLegendOptions.Companion.toKotlin(args0)
})
}).orElse(null),
rowLabelOptions = javaType.rowLabelOptions().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateChartAxisLabelOptions.Companion.toKotlin(args0)
})
}).orElse(null),
sortConfiguration = javaType.sortConfiguration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateHeatMapSortConfiguration.Companion.toKotlin(args0)
})
}).orElse(null),
tooltip = javaType.tooltip().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateTooltipOptions.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy