![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateGeospatialPointStyleOptions.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.outputs
import com.pulumi.awsnative.quicksight.kotlin.enums.TemplateGeospatialSelectedPointStyle
import kotlin.Suppress
/**
*
* @property clusterMarkerConfiguration The cluster marker configuration of the geospatial point style.
* @property heatmapConfiguration The heatmap configuration of the geospatial point style.
* @property selectedPointStyle The selected point styles (point, cluster) of the geospatial map.
*/
public data class TemplateGeospatialPointStyleOptions(
public val clusterMarkerConfiguration: TemplateClusterMarkerConfiguration? = null,
public val heatmapConfiguration: TemplateGeospatialHeatmapConfiguration? = null,
public val selectedPointStyle: TemplateGeospatialSelectedPointStyle? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.quicksight.outputs.TemplateGeospatialPointStyleOptions): TemplateGeospatialPointStyleOptions = TemplateGeospatialPointStyleOptions(
clusterMarkerConfiguration = javaType.clusterMarkerConfiguration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateClusterMarkerConfiguration.Companion.toKotlin(args0)
})
}).orElse(null),
heatmapConfiguration = javaType.heatmapConfiguration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateGeospatialHeatmapConfiguration.Companion.toKotlin(args0)
})
}).orElse(null),
selectedPointStyle = javaType.selectedPointStyle().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.enums.TemplateGeospatialSelectedPointStyle.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy