
com.pulumi.awsnative.quicksight.kotlin.inputs.DashboardBoxPlotFieldWellsArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.quicksight.kotlin.inputs
import com.pulumi.awsnative.quicksight.inputs.DashboardBoxPlotFieldWellsArgs.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 boxPlotAggregatedFieldWells The aggregated field wells of a box plot.
*/
public data class DashboardBoxPlotFieldWellsArgs(
public val boxPlotAggregatedFieldWells: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.quicksight.inputs.DashboardBoxPlotFieldWellsArgs =
com.pulumi.awsnative.quicksight.inputs.DashboardBoxPlotFieldWellsArgs.builder()
.boxPlotAggregatedFieldWells(
boxPlotAggregatedFieldWells?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [DashboardBoxPlotFieldWellsArgs].
*/
@PulumiTagMarker
public class DashboardBoxPlotFieldWellsArgsBuilder internal constructor() {
private var boxPlotAggregatedFieldWells: Output? = null
/**
* @param value The aggregated field wells of a box plot.
*/
@JvmName("gvntgkjwqnxdxufd")
public suspend fun boxPlotAggregatedFieldWells(`value`: Output) {
this.boxPlotAggregatedFieldWells = value
}
/**
* @param value The aggregated field wells of a box plot.
*/
@JvmName("xkgjpihmabakvcgn")
public suspend fun boxPlotAggregatedFieldWells(`value`: DashboardBoxPlotAggregatedFieldWellsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.boxPlotAggregatedFieldWells = mapped
}
/**
* @param argument The aggregated field wells of a box plot.
*/
@JvmName("ihplrauyuarmvidr")
public suspend fun boxPlotAggregatedFieldWells(argument: suspend DashboardBoxPlotAggregatedFieldWellsArgsBuilder.() -> Unit) {
val toBeMapped = DashboardBoxPlotAggregatedFieldWellsArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.boxPlotAggregatedFieldWells = mapped
}
internal fun build(): DashboardBoxPlotFieldWellsArgs = DashboardBoxPlotFieldWellsArgs(
boxPlotAggregatedFieldWells = boxPlotAggregatedFieldWells,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy