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

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

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

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

import com.pulumi.awsnative.quicksight.inputs.TemplateFilledMapFieldWellsArgs.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 filledMapAggregatedFieldWells The aggregated field well of the filled map.
 */
public data class TemplateFilledMapFieldWellsArgs(
    public val filledMapAggregatedFieldWells: Output? =
        null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.TemplateFilledMapFieldWellsArgs =
        com.pulumi.awsnative.quicksight.inputs.TemplateFilledMapFieldWellsArgs.builder()
            .filledMapAggregatedFieldWells(
                filledMapAggregatedFieldWells?.applyValue({ args0 ->
                    args0.let({ args0 -> args0.toJava() })
                }),
            ).build()
}

/**
 * Builder for [TemplateFilledMapFieldWellsArgs].
 */
@PulumiTagMarker
public class TemplateFilledMapFieldWellsArgsBuilder internal constructor() {
    private var filledMapAggregatedFieldWells: Output? =
        null

    /**
     * @param value The aggregated field well of the filled map.
     */
    @JvmName("yiqicefgwrwmyarn")
    public suspend fun filledMapAggregatedFieldWells(`value`: Output) {
        this.filledMapAggregatedFieldWells = value
    }

    /**
     * @param value The aggregated field well of the filled map.
     */
    @JvmName("owrusffrpbcircat")
    public suspend fun filledMapAggregatedFieldWells(`value`: TemplateFilledMapAggregatedFieldWellsArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.filledMapAggregatedFieldWells = mapped
    }

    /**
     * @param argument The aggregated field well of the filled map.
     */
    @JvmName("rvuyppfllrohfwqj")
    public suspend fun filledMapAggregatedFieldWells(argument: suspend TemplateFilledMapAggregatedFieldWellsArgsBuilder.() -> Unit) {
        val toBeMapped = TemplateFilledMapAggregatedFieldWellsArgsBuilder().applySuspend {
            argument()
        }.build()
        val mapped = of(toBeMapped)
        this.filledMapAggregatedFieldWells = mapped
    }

    internal fun build(): TemplateFilledMapFieldWellsArgs = TemplateFilledMapFieldWellsArgs(
        filledMapAggregatedFieldWells = filledMapAggregatedFieldWells,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy