![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.quicksight.kotlin.outputs.AnalysisGeospatialPointStyleOptions.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.outputs
import com.pulumi.awsnative.quicksight.kotlin.enums.AnalysisGeospatialSelectedPointStyle
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 AnalysisGeospatialPointStyleOptions(
public val clusterMarkerConfiguration: AnalysisClusterMarkerConfiguration? = null,
public val heatmapConfiguration: AnalysisGeospatialHeatmapConfiguration? = null,
public val selectedPointStyle: AnalysisGeospatialSelectedPointStyle? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.quicksight.outputs.AnalysisGeospatialPointStyleOptions): AnalysisGeospatialPointStyleOptions = AnalysisGeospatialPointStyleOptions(
clusterMarkerConfiguration = javaType.clusterMarkerConfiguration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.AnalysisClusterMarkerConfiguration.Companion.toKotlin(args0)
})
}).orElse(null),
heatmapConfiguration = javaType.heatmapConfiguration().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.AnalysisGeospatialHeatmapConfiguration.Companion.toKotlin(args0)
})
}).orElse(null),
selectedPointStyle = javaType.selectedPointStyle().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.enums.AnalysisGeospatialSelectedPointStyle.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy