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

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

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

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

import com.pulumi.awsnative.quicksight.inputs.AnalysisFilledMapAggregatedFieldWellsArgs.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 geospatial The aggregated location field well of the filled map. Values are grouped by location fields.
 * @property values The aggregated color field well of a filled map. Values are aggregated based on location fields.
 */
public data class AnalysisFilledMapAggregatedFieldWellsArgs(
    public val geospatial: Output>? = null,
    public val values: Output>? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.AnalysisFilledMapAggregatedFieldWellsArgs =
        com.pulumi.awsnative.quicksight.inputs.AnalysisFilledMapAggregatedFieldWellsArgs.builder()
            .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 [AnalysisFilledMapAggregatedFieldWellsArgs].
 */
@PulumiTagMarker
public class AnalysisFilledMapAggregatedFieldWellsArgsBuilder internal constructor() {
    private var geospatial: Output>? = null

    private var values: Output>? = null

    /**
     * @param value The aggregated location field well of the filled map. Values are grouped by location fields.
     */
    @JvmName("tfysfmsfbjguqdyg")
    public suspend fun geospatial(`value`: Output>) {
        this.geospatial = value
    }

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

    /**
     * @param values The aggregated location field well of the filled map. Values are grouped by location fields.
     */
    @JvmName("ecbcrkitrohdfkde")
    public suspend fun geospatial(values: List>) {
        this.geospatial = Output.all(values)
    }

    /**
     * @param value The aggregated color field well of a filled map. Values are aggregated based on location fields.
     */
    @JvmName("wvlikdjsssadbdgc")
    public suspend fun values(`value`: Output>) {
        this.values = value
    }

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

    /**
     * @param values The aggregated color field well of a filled map. Values are aggregated based on location fields.
     */
    @JvmName("yswjolxhrywefdmi")
    public suspend fun values(values: List>) {
        this.values = Output.all(values)
    }

    /**
     * @param value The aggregated location field well of the filled map. Values are grouped by location fields.
     */
    @JvmName("repktkwsskcqyytu")
    public suspend fun geospatial(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.geospatial = mapped
    }

    /**
     * @param argument The aggregated location field well of the filled map. Values are grouped by location fields.
     */
    @JvmName("qgipkpopjpfkruuv")
    public suspend fun geospatial(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            AnalysisDimensionFieldArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.geospatial = mapped
    }

    /**
     * @param argument The aggregated location field well of the filled map. Values are grouped by location fields.
     */
    @JvmName("xepafanpnmlsufiq")
    public suspend fun geospatial(vararg argument: suspend AnalysisDimensionFieldArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map {
            AnalysisDimensionFieldArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.geospatial = mapped
    }

    /**
     * @param argument The aggregated location field well of the filled map. Values are grouped by location fields.
     */
    @JvmName("hqaialqnmqtcrxdi")
    public suspend fun geospatial(argument: suspend AnalysisDimensionFieldArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(AnalysisDimensionFieldArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.geospatial = mapped
    }

    /**
     * @param values The aggregated location field well of the filled map. Values are grouped by location fields.
     */
    @JvmName("uqxwbgtuevoxpmbn")
    public suspend fun geospatial(vararg values: AnalysisDimensionFieldArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.geospatial = mapped
    }

    /**
     * @param value The aggregated color field well of a filled map. Values are aggregated based on location fields.
     */
    @JvmName("jbpuvfarkrpabpke")
    public suspend fun values(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.values = mapped
    }

    /**
     * @param argument The aggregated color field well of a filled map. Values are aggregated based on location fields.
     */
    @JvmName("ymujogxkeryyuosr")
    public suspend fun values(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            AnalysisMeasureFieldArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.values = mapped
    }

    /**
     * @param argument The aggregated color field well of a filled map. Values are aggregated based on location fields.
     */
    @JvmName("ghrtymsykmnmwlvm")
    public suspend fun values(vararg argument: suspend AnalysisMeasureFieldArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map {
            AnalysisMeasureFieldArgsBuilder().applySuspend {
                it()
            }.build()
        }
        val mapped = of(toBeMapped)
        this.values = mapped
    }

    /**
     * @param argument The aggregated color field well of a filled map. Values are aggregated based on location fields.
     */
    @JvmName("pqumgipncucropac")
    public suspend fun values(argument: suspend AnalysisMeasureFieldArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(AnalysisMeasureFieldArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.values = mapped
    }

    /**
     * @param values The aggregated color field well of a filled map. Values are aggregated based on location fields.
     */
    @JvmName("joxrwwombrulhpnb")
    public suspend fun values(vararg values: AnalysisMeasureFieldArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.values = mapped
    }

    internal fun build(): AnalysisFilledMapAggregatedFieldWellsArgs =
        AnalysisFilledMapAggregatedFieldWellsArgs(
            geospatial = geospatial,
            values = values,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy