All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.quicksight.kotlin.inputs.AnalysisBoxPlotFieldWellsArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.quicksight.kotlin.inputs

import com.pulumi.awsnative.quicksight.inputs.AnalysisBoxPlotFieldWellsArgs.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 AnalysisBoxPlotFieldWellsArgs(
    public val boxPlotAggregatedFieldWells: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisBoxPlotFieldWellsArgs =
        com.pulumi.awsnative.quicksight.inputs.AnalysisBoxPlotFieldWellsArgs.builder()
            .boxPlotAggregatedFieldWells(
                boxPlotAggregatedFieldWells?.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            ).build()
}

/**
 * Builder for [AnalysisBoxPlotFieldWellsArgs].
 */
@PulumiTagMarker
public class AnalysisBoxPlotFieldWellsArgsBuilder internal constructor() {
    private var boxPlotAggregatedFieldWells: Output? = null

    /**
     * @param value The aggregated field wells of a box plot.
     */
    @JvmName("wpdryktkrqbigcdh")
    public suspend fun boxPlotAggregatedFieldWells(`value`: Output) {
        this.boxPlotAggregatedFieldWells = value
    }

    /**
     * @param value The aggregated field wells of a box plot.
     */
    @JvmName("uwlqrerlslaquskg")
    public suspend fun boxPlotAggregatedFieldWells(`value`: AnalysisBoxPlotAggregatedFieldWellsArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.boxPlotAggregatedFieldWells = mapped
    }

    /**
     * @param argument The aggregated field wells of a box plot.
     */
    @JvmName("ptyhcipdwbouhnpm")
    public suspend fun boxPlotAggregatedFieldWells(argument: suspend AnalysisBoxPlotAggregatedFieldWellsArgsBuilder.() -> Unit) {
        val toBeMapped = AnalysisBoxPlotAggregatedFieldWellsArgsBuilder().applySuspend {
            argument()
        }.build()
        val mapped = of(toBeMapped)
        this.boxPlotAggregatedFieldWells = mapped
    }

    internal fun build(): AnalysisBoxPlotFieldWellsArgs = AnalysisBoxPlotFieldWellsArgs(
        boxPlotAggregatedFieldWells = boxPlotAggregatedFieldWells,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy