com.pulumi.awsnative.quicksight.kotlin.inputs.DashboardGeospatialMapAggregatedFieldWellsArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.DashboardGeospatialMapAggregatedFieldWellsArgs.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.collections.List
import kotlin.jvm.JvmName
/**
*
* @property colors The color field wells of a geospatial map.
* @property geospatial The geospatial field wells of a geospatial map. Values are grouped by geospatial fields.
* @property values The size field wells of a geospatial map. Values are aggregated based on geospatial fields.
*/
public data class DashboardGeospatialMapAggregatedFieldWellsArgs(
public val colors: Output>? = null,
public val geospatial: Output>? = null,
public val values: Output>? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.DashboardGeospatialMapAggregatedFieldWellsArgs =
com.pulumi.awsnative.quicksight.inputs.DashboardGeospatialMapAggregatedFieldWellsArgs.builder()
.colors(colors?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.geospatial(
geospatial?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.values(
values?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [DashboardGeospatialMapAggregatedFieldWellsArgs].
*/
@PulumiTagMarker
public class DashboardGeospatialMapAggregatedFieldWellsArgsBuilder internal constructor() {
private var colors: Output>? = null
private var geospatial: Output>? = null
private var values: Output>? = null
/**
* @param value The color field wells of a geospatial map.
*/
@JvmName("fkedjtwrseblgnbl")
public suspend fun colors(`value`: Output>) {
this.colors = value
}
@JvmName("sqqshdlofngvoago")
public suspend fun colors(vararg values: Output) {
this.colors = Output.all(values.asList())
}
/**
* @param values The color field wells of a geospatial map.
*/
@JvmName("etewxnfiwmwlwqpd")
public suspend fun colors(values: List