
com.pulumi.awsnative.quicksight.kotlin.inputs.TemplateGeospatialHeatmapConfigurationArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.TemplateGeospatialHeatmapConfigurationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property heatmapColor The color scale specification for the heatmap point style.
*/
public data class TemplateGeospatialHeatmapConfigurationArgs(
public val heatmapColor: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.TemplateGeospatialHeatmapConfigurationArgs =
com.pulumi.awsnative.quicksight.inputs.TemplateGeospatialHeatmapConfigurationArgs.builder()
.heatmapColor(heatmapColor?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [TemplateGeospatialHeatmapConfigurationArgs].
*/
@PulumiTagMarker
public class TemplateGeospatialHeatmapConfigurationArgsBuilder internal constructor() {
private var heatmapColor: Output? = null
/**
* @param value The color scale specification for the heatmap point style.
*/
@JvmName("jvmjwltrppwjvxpw")
public suspend fun heatmapColor(`value`: Output) {
this.heatmapColor = value
}
/**
* @param value The color scale specification for the heatmap point style.
*/
@JvmName("axsfleruleqsvtfy")
public suspend fun heatmapColor(`value`: TemplateGeospatialHeatmapColorScaleArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.heatmapColor = mapped
}
/**
* @param argument The color scale specification for the heatmap point style.
*/
@JvmName("qtnsidxbviuhmqly")
public suspend fun heatmapColor(argument: suspend TemplateGeospatialHeatmapColorScaleArgsBuilder.() -> Unit) {
val toBeMapped = TemplateGeospatialHeatmapColorScaleArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.heatmapColor = mapped
}
internal fun build(): TemplateGeospatialHeatmapConfigurationArgs =
TemplateGeospatialHeatmapConfigurationArgs(
heatmapColor = heatmapColor,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy