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

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

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

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

import com.pulumi.awsnative.quicksight.inputs.DashboardScatterPlotFieldWellsArgs.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 scatterPlotCategoricallyAggregatedFieldWells The aggregated field wells of a scatter plot. The x and y-axes of scatter plots with aggregated field wells are aggregated by category, label, or both.
 * @property scatterPlotUnaggregatedFieldWells The unaggregated field wells of a scatter plot. The x and y-axes of these scatter plots are unaggregated.
 */
public data class DashboardScatterPlotFieldWellsArgs(
    public val scatterPlotCategoricallyAggregatedFieldWells: Output? = null,
    public val scatterPlotUnaggregatedFieldWells: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.DashboardScatterPlotFieldWellsArgs =
        com.pulumi.awsnative.quicksight.inputs.DashboardScatterPlotFieldWellsArgs.builder()
            .scatterPlotCategoricallyAggregatedFieldWells(
                scatterPlotCategoricallyAggregatedFieldWells?.applyValue({ args0 ->
                    args0.let({ args0 -> args0.toJava() })
                }),
            )
            .scatterPlotUnaggregatedFieldWells(
                scatterPlotUnaggregatedFieldWells?.applyValue({ args0 ->
                    args0.let({ args0 -> args0.toJava() })
                }),
            ).build()
}

/**
 * Builder for [DashboardScatterPlotFieldWellsArgs].
 */
@PulumiTagMarker
public class DashboardScatterPlotFieldWellsArgsBuilder internal constructor() {
    private var scatterPlotCategoricallyAggregatedFieldWells:
        Output? = null

    private var scatterPlotUnaggregatedFieldWells:
        Output? = null

    /**
     * @param value The aggregated field wells of a scatter plot. The x and y-axes of scatter plots with aggregated field wells are aggregated by category, label, or both.
     */
    @JvmName("ywgfadncsfvwuvtv")
    public suspend fun scatterPlotCategoricallyAggregatedFieldWells(`value`: Output) {
        this.scatterPlotCategoricallyAggregatedFieldWells = value
    }

    /**
     * @param value The unaggregated field wells of a scatter plot. The x and y-axes of these scatter plots are unaggregated.
     */
    @JvmName("blkgveuortpfqwsy")
    public suspend fun scatterPlotUnaggregatedFieldWells(`value`: Output) {
        this.scatterPlotUnaggregatedFieldWells = value
    }

    /**
     * @param value The aggregated field wells of a scatter plot. The x and y-axes of scatter plots with aggregated field wells are aggregated by category, label, or both.
     */
    @JvmName("kmmjdgvtnpvehvhs")
    public suspend fun scatterPlotCategoricallyAggregatedFieldWells(`value`: DashboardScatterPlotCategoricallyAggregatedFieldWellsArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.scatterPlotCategoricallyAggregatedFieldWells = mapped
    }

    /**
     * @param argument The aggregated field wells of a scatter plot. The x and y-axes of scatter plots with aggregated field wells are aggregated by category, label, or both.
     */
    @JvmName("rslsnnulcgglkrng")
    public suspend fun scatterPlotCategoricallyAggregatedFieldWells(argument: suspend DashboardScatterPlotCategoricallyAggregatedFieldWellsArgsBuilder.() -> Unit) {
        val toBeMapped =
            DashboardScatterPlotCategoricallyAggregatedFieldWellsArgsBuilder().applySuspend {
                argument()
            }.build()
        val mapped = of(toBeMapped)
        this.scatterPlotCategoricallyAggregatedFieldWells = mapped
    }

    /**
     * @param value The unaggregated field wells of a scatter plot. The x and y-axes of these scatter plots are unaggregated.
     */
    @JvmName("bgaurdfslhjlhqem")
    public suspend fun scatterPlotUnaggregatedFieldWells(`value`: DashboardScatterPlotUnaggregatedFieldWellsArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.scatterPlotUnaggregatedFieldWells = mapped
    }

    /**
     * @param argument The unaggregated field wells of a scatter plot. The x and y-axes of these scatter plots are unaggregated.
     */
    @JvmName("yvxsolavvyydnbwu")
    public suspend fun scatterPlotUnaggregatedFieldWells(argument: suspend DashboardScatterPlotUnaggregatedFieldWellsArgsBuilder.() -> Unit) {
        val toBeMapped = DashboardScatterPlotUnaggregatedFieldWellsArgsBuilder().applySuspend {
            argument()
        }.build()
        val mapped = of(toBeMapped)
        this.scatterPlotUnaggregatedFieldWells = mapped
    }

    internal fun build(): DashboardScatterPlotFieldWellsArgs = DashboardScatterPlotFieldWellsArgs(
        scatterPlotCategoricallyAggregatedFieldWells = scatterPlotCategoricallyAggregatedFieldWells,
        scatterPlotUnaggregatedFieldWells = scatterPlotUnaggregatedFieldWells,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy