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

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

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 0.122.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

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

import com.pulumi.awsnative.quicksight.inputs.AnalysisScatterPlotUnaggregatedFieldWellsArgs.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 category The category field well of a scatter plot.
 * @property label The label field well of a scatter plot.
 * @property size The size field well of a scatter plot.
 * @property xAxis The x-axis field well of a scatter plot.
 * The x-axis is a dimension field and cannot be aggregated.
 * @property yAxis The y-axis field well of a scatter plot.
 * The y-axis is a dimension field and cannot be aggregated.
 */
public data class AnalysisScatterPlotUnaggregatedFieldWellsArgs(
    public val category: Output>? = null,
    public val label: Output>? = null,
    public val size: Output>? = null,
    public val xAxis: Output>? = null,
    public val yAxis: Output>? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisScatterPlotUnaggregatedFieldWellsArgs =
        com.pulumi.awsnative.quicksight.inputs.AnalysisScatterPlotUnaggregatedFieldWellsArgs.builder()
            .category(
                category?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            )
            .label(label?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
            .size(size?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
            .xAxis(xAxis?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
            .yAxis(
                yAxis?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            ).build()
}

/**
 * Builder for [AnalysisScatterPlotUnaggregatedFieldWellsArgs].
 */
@PulumiTagMarker
public class AnalysisScatterPlotUnaggregatedFieldWellsArgsBuilder internal constructor() {
    private var category: Output>? = null

    private var label: Output>? = null

    private var size: Output>? = null

    private var xAxis: Output>? = null

    private var yAxis: Output>? = null

    /**
     * @param value The category field well of a scatter plot.
     */
    @JvmName("eivfnnmmvevaegpa")
    public suspend fun category(`value`: Output>) {
        this.category = value
    }

    @JvmName("fnriyjfrwyfswrhr")
    public suspend fun category(vararg values: Output) {
        this.category = Output.all(values.asList())
    }

    /**
     * @param values The category field well of a scatter plot.
     */
    @JvmName("vbwotftuisyooahh")
    public suspend fun category(values: List>) {
        this.category = Output.all(values)
    }

    /**
     * @param value The label field well of a scatter plot.
     */
    @JvmName("utiieyicqlpeurea")
    public suspend fun label(`value`: Output>) {
        this.label = value
    }

    @JvmName("xknodukhlcteudho")
    public suspend fun label(vararg values: Output) {
        this.label = Output.all(values.asList())
    }

    /**
     * @param values The label field well of a scatter plot.
     */
    @JvmName("bfikijsjvlwltpgx")
    public suspend fun label(values: List>) {
        this.label = Output.all(values)
    }

    /**
     * @param value The size field well of a scatter plot.
     */
    @JvmName("gtsfbwqtdcrlytmg")
    public suspend fun size(`value`: Output>) {
        this.size = value
    }

    @JvmName("wvrjclamaagfclsc")
    public suspend fun size(vararg values: Output) {
        this.size = Output.all(values.asList())
    }

    /**
     * @param values The size field well of a scatter plot.
     */
    @JvmName("ruanjdornwilbiyk")
    public suspend fun size(values: List>) {
        this.size = Output.all(values)
    }

    /**
     * @param value The x-axis field well of a scatter plot.
     * The x-axis is a dimension field and cannot be aggregated.
     */
    @JvmName("jciokrcudxegngrm")
    public suspend fun xAxis(`value`: Output>) {
        this.xAxis = value
    }

    @JvmName("uweigvoayjbcpfvw")
    public suspend fun xAxis(vararg values: Output) {
        this.xAxis = Output.all(values.asList())
    }

    /**
     * @param values The x-axis field well of a scatter plot.
     * The x-axis is a dimension field and cannot be aggregated.
     */
    @JvmName("svspqqmpesmhyiuo")
    public suspend fun xAxis(values: List>) {
        this.xAxis = Output.all(values)
    }

    /**
     * @param value The y-axis field well of a scatter plot.
     * The y-axis is a dimension field and cannot be aggregated.
     */
    @JvmName("hglupdxxfsdpfgqk")
    public suspend fun yAxis(`value`: Output>) {
        this.yAxis = value
    }

    @JvmName("xxineinlngmdgaui")
    public suspend fun yAxis(vararg values: Output) {
        this.yAxis = Output.all(values.asList())
    }

    /**
     * @param values The y-axis field well of a scatter plot.
     * The y-axis is a dimension field and cannot be aggregated.
     */
    @JvmName("fmrukyyavghvhavs")
    public suspend fun yAxis(values: List>) {
        this.yAxis = Output.all(values)
    }

    /**
     * @param value The category field well of a scatter plot.
     */
    @JvmName("uejglgflsbusltqh")
    public suspend fun category(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.category = mapped
    }

    /**
     * @param argument The category field well of a scatter plot.
     */
    @JvmName("irputwrouevbwhxu")
    public suspend fun category(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            AnalysisDimensionFieldArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.category = mapped
    }

    /**
     * @param argument The category field well of a scatter plot.
     */
    @JvmName("sfuwqwjkbjxkueqo")
    public suspend fun category(vararg argument: suspend AnalysisDimensionFieldArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map {
            AnalysisDimensionFieldArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.category = mapped
    }

    /**
     * @param argument The category field well of a scatter plot.
     */
    @JvmName("hfglqqwdbnxsfeyn")
    public suspend fun category(argument: suspend AnalysisDimensionFieldArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(AnalysisDimensionFieldArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.category = mapped
    }

    /**
     * @param values The category field well of a scatter plot.
     */
    @JvmName("dvgpuljlkgpnaxhr")
    public suspend fun category(vararg values: AnalysisDimensionFieldArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.category = mapped
    }

    /**
     * @param value The label field well of a scatter plot.
     */
    @JvmName("mlpkhcljkkkkkyej")
    public suspend fun label(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.label = mapped
    }

    /**
     * @param argument The label field well of a scatter plot.
     */
    @JvmName("wolverkmfhexdnsf")
    public suspend fun label(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            AnalysisDimensionFieldArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.label = mapped
    }

    /**
     * @param argument The label field well of a scatter plot.
     */
    @JvmName("nqukqxlidapfvnbt")
    public suspend fun label(vararg argument: suspend AnalysisDimensionFieldArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map {
            AnalysisDimensionFieldArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.label = mapped
    }

    /**
     * @param argument The label field well of a scatter plot.
     */
    @JvmName("hodnuhpbvgptgxbh")
    public suspend fun label(argument: suspend AnalysisDimensionFieldArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(AnalysisDimensionFieldArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.label = mapped
    }

    /**
     * @param values The label field well of a scatter plot.
     */
    @JvmName("wepftqeyqknmjoyq")
    public suspend fun label(vararg values: AnalysisDimensionFieldArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.label = mapped
    }

    /**
     * @param value The size field well of a scatter plot.
     */
    @JvmName("gbdttsymnqvmntfg")
    public suspend fun size(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.size = mapped
    }

    /**
     * @param argument The size field well of a scatter plot.
     */
    @JvmName("knpoohymrytxknrm")
    public suspend fun size(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            AnalysisMeasureFieldArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.size = mapped
    }

    /**
     * @param argument The size field well of a scatter plot.
     */
    @JvmName("oanrqouyflbijaup")
    public suspend fun size(vararg argument: suspend AnalysisMeasureFieldArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map {
            AnalysisMeasureFieldArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.size = mapped
    }

    /**
     * @param argument The size field well of a scatter plot.
     */
    @JvmName("vrderwxjwhjyiadt")
    public suspend fun size(argument: suspend AnalysisMeasureFieldArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(AnalysisMeasureFieldArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.size = mapped
    }

    /**
     * @param values The size field well of a scatter plot.
     */
    @JvmName("vwifwyqpnjftsocq")
    public suspend fun size(vararg values: AnalysisMeasureFieldArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.size = mapped
    }

    /**
     * @param value The x-axis field well of a scatter plot.
     * The x-axis is a dimension field and cannot be aggregated.
     */
    @JvmName("robovcvpqfqjuhur")
    public suspend fun xAxis(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.xAxis = mapped
    }

    /**
     * @param argument The x-axis field well of a scatter plot.
     * The x-axis is a dimension field and cannot be aggregated.
     */
    @JvmName("ohrsuwtsymnmoorf")
    public suspend fun xAxis(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            AnalysisDimensionFieldArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.xAxis = mapped
    }

    /**
     * @param argument The x-axis field well of a scatter plot.
     * The x-axis is a dimension field and cannot be aggregated.
     */
    @JvmName("woygxboikolabwau")
    public suspend fun xAxis(vararg argument: suspend AnalysisDimensionFieldArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map {
            AnalysisDimensionFieldArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.xAxis = mapped
    }

    /**
     * @param argument The x-axis field well of a scatter plot.
     * The x-axis is a dimension field and cannot be aggregated.
     */
    @JvmName("pvddievqlnpbrqml")
    public suspend fun xAxis(argument: suspend AnalysisDimensionFieldArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(AnalysisDimensionFieldArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.xAxis = mapped
    }

    /**
     * @param values The x-axis field well of a scatter plot.
     * The x-axis is a dimension field and cannot be aggregated.
     */
    @JvmName("agdxvyehyetggckl")
    public suspend fun xAxis(vararg values: AnalysisDimensionFieldArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.xAxis = mapped
    }

    /**
     * @param value The y-axis field well of a scatter plot.
     * The y-axis is a dimension field and cannot be aggregated.
     */
    @JvmName("hwjmispvmupgffjn")
    public suspend fun yAxis(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.yAxis = mapped
    }

    /**
     * @param argument The y-axis field well of a scatter plot.
     * The y-axis is a dimension field and cannot be aggregated.
     */
    @JvmName("cfpdgxjtcftajdwd")
    public suspend fun yAxis(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            AnalysisDimensionFieldArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.yAxis = mapped
    }

    /**
     * @param argument The y-axis field well of a scatter plot.
     * The y-axis is a dimension field and cannot be aggregated.
     */
    @JvmName("rckkwbhyufsbftbm")
    public suspend fun yAxis(vararg argument: suspend AnalysisDimensionFieldArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map {
            AnalysisDimensionFieldArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.yAxis = mapped
    }

    /**
     * @param argument The y-axis field well of a scatter plot.
     * The y-axis is a dimension field and cannot be aggregated.
     */
    @JvmName("otqidtctbdkkcsax")
    public suspend fun yAxis(argument: suspend AnalysisDimensionFieldArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(AnalysisDimensionFieldArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.yAxis = mapped
    }

    /**
     * @param values The y-axis field well of a scatter plot.
     * The y-axis is a dimension field and cannot be aggregated.
     */
    @JvmName("omvlwhrmqfufnsrb")
    public suspend fun yAxis(vararg values: AnalysisDimensionFieldArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.yAxis = mapped
    }

    internal fun build(): AnalysisScatterPlotUnaggregatedFieldWellsArgs =
        AnalysisScatterPlotUnaggregatedFieldWellsArgs(
            category = category,
            label = label,
            size = size,
            xAxis = xAxis,
            yAxis = yAxis,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy