
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateGeospatialMapConfiguration.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.outputs
import kotlin.Suppress
/**
*
* @property fieldWells The field wells of the visual.
* @property legend The legend display setup of the visual.
* @property mapStyleOptions The map style options of the geospatial map.
* @property pointStyleOptions The point style options of the geospatial map.
* @property tooltip The tooltip display setup of the visual.
* @property visualPalette
* @property windowOptions The window options of the geospatial map.
*/
public data class TemplateGeospatialMapConfiguration(
public val fieldWells: TemplateGeospatialMapFieldWells? = null,
public val legend: TemplateLegendOptions? = null,
public val mapStyleOptions: TemplateGeospatialMapStyleOptions? = null,
public val pointStyleOptions: TemplateGeospatialPointStyleOptions? = null,
public val tooltip: TemplateTooltipOptions? = null,
public val visualPalette: TemplateVisualPalette? = null,
public val windowOptions: TemplateGeospatialWindowOptions? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.quicksight.outputs.TemplateGeospatialMapConfiguration): TemplateGeospatialMapConfiguration = TemplateGeospatialMapConfiguration(
fieldWells = javaType.fieldWells().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateGeospatialMapFieldWells.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),
mapStyleOptions = javaType.mapStyleOptions().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateGeospatialMapStyleOptions.Companion.toKotlin(args0)
})
}).orElse(null),
pointStyleOptions = javaType.pointStyleOptions().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateGeospatialPointStyleOptions.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),
visualPalette = javaType.visualPalette().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateVisualPalette.Companion.toKotlin(args0)
})
}).orElse(null),
windowOptions = javaType.windowOptions().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.quicksight.kotlin.outputs.TemplateGeospatialWindowOptions.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy