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

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

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

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

import com.pulumi.awsnative.quicksight.inputs.DashboardDecimalParameterDeclarationArgs.builder
import com.pulumi.awsnative.quicksight.kotlin.enums.DashboardParameterValueType
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 *
 * @property defaultValues The default values of a parameter. If the parameter is a single-value parameter, a maximum of one default value can be provided.
 * @property mappedDataSetParameters
 * @property name The name of the parameter that is being declared.
 * @property parameterValueType The value type determines whether the parameter is a single-value or multi-value parameter.
 * @property valueWhenUnset The configuration that defines the default value of a `Decimal` parameter when a value has not been set.
 */
public data class DashboardDecimalParameterDeclarationArgs(
    public val defaultValues: Output? = null,
    public val mappedDataSetParameters: Output>? = null,
    public val name: Output,
    public val parameterValueType: Output,
    public val valueWhenUnset: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.DashboardDecimalParameterDeclarationArgs =
        com.pulumi.awsnative.quicksight.inputs.DashboardDecimalParameterDeclarationArgs.builder()
            .defaultValues(defaultValues?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .mappedDataSetParameters(
                mappedDataSetParameters?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 -> args0.toJava() })
                    })
                }),
            )
            .name(name.applyValue({ args0 -> args0 }))
            .parameterValueType(
                parameterValueType.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            )
            .valueWhenUnset(
                valueWhenUnset?.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            ).build()
}

/**
 * Builder for [DashboardDecimalParameterDeclarationArgs].
 */
@PulumiTagMarker
public class DashboardDecimalParameterDeclarationArgsBuilder internal constructor() {
    private var defaultValues: Output? = null

    private var mappedDataSetParameters: Output>? = null

    private var name: Output? = null

    private var parameterValueType: Output? = null

    private var valueWhenUnset: Output? = null

    /**
     * @param value The default values of a parameter. If the parameter is a single-value parameter, a maximum of one default value can be provided.
     */
    @JvmName("qqndlhafikvqprhn")
    public suspend fun defaultValues(`value`: Output) {
        this.defaultValues = value
    }

    /**
     * @param value
     */
    @JvmName("ahdttlgngmydsbet")
    public suspend fun mappedDataSetParameters(`value`: Output>) {
        this.mappedDataSetParameters = value
    }

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

    /**
     * @param values
     */
    @JvmName("ojiwndioyfankmat")
    public suspend fun mappedDataSetParameters(values: List>) {
        this.mappedDataSetParameters = Output.all(values)
    }

    /**
     * @param value The name of the parameter that is being declared.
     */
    @JvmName("sacnfvnpuridqxvi")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The value type determines whether the parameter is a single-value or multi-value parameter.
     */
    @JvmName("gnfrifurbpjpdmju")
    public suspend fun parameterValueType(`value`: Output) {
        this.parameterValueType = value
    }

    /**
     * @param value The configuration that defines the default value of a `Decimal` parameter when a value has not been set.
     */
    @JvmName("mihilypcjmkfgamt")
    public suspend fun valueWhenUnset(`value`: Output) {
        this.valueWhenUnset = value
    }

    /**
     * @param value The default values of a parameter. If the parameter is a single-value parameter, a maximum of one default value can be provided.
     */
    @JvmName("lumkdfamifstwxst")
    public suspend fun defaultValues(`value`: DashboardDecimalDefaultValuesArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.defaultValues = mapped
    }

    /**
     * @param argument The default values of a parameter. If the parameter is a single-value parameter, a maximum of one default value can be provided.
     */
    @JvmName("nblgubdtskrolsyl")
    public suspend fun defaultValues(argument: suspend DashboardDecimalDefaultValuesArgsBuilder.() -> Unit) {
        val toBeMapped = DashboardDecimalDefaultValuesArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.defaultValues = mapped
    }

    /**
     * @param value
     */
    @JvmName("lyhimnmhfmbchqti")
    public suspend fun mappedDataSetParameters(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.mappedDataSetParameters = mapped
    }

    /**
     * @param argument
     */
    @JvmName("lclcjqlkupvaxpuc")
    public suspend fun mappedDataSetParameters(argument: List Unit>) {
        val toBeMapped = argument.toList().map {
            DashboardMappedDataSetParameterArgsBuilder().applySuspend { it() }.build()
        }
        val mapped = of(toBeMapped)
        this.mappedDataSetParameters = mapped
    }

    /**
     * @param argument
     */
    @JvmName("wevmrobkmwlosxfc")
    public suspend fun mappedDataSetParameters(vararg argument: suspend DashboardMappedDataSetParameterArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map {
            DashboardMappedDataSetParameterArgsBuilder().applySuspend { it() }.build()
        }
        val mapped = of(toBeMapped)
        this.mappedDataSetParameters = mapped
    }

    /**
     * @param argument
     */
    @JvmName("pmmbtxascupwedhp")
    public suspend fun mappedDataSetParameters(argument: suspend DashboardMappedDataSetParameterArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(
            DashboardMappedDataSetParameterArgsBuilder().applySuspend {
                argument()
            }.build(),
        )
        val mapped = of(toBeMapped)
        this.mappedDataSetParameters = mapped
    }

    /**
     * @param values
     */
    @JvmName("fytssjkqqpeuxbve")
    public suspend fun mappedDataSetParameters(vararg values: DashboardMappedDataSetParameterArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.mappedDataSetParameters = mapped
    }

    /**
     * @param value The name of the parameter that is being declared.
     */
    @JvmName("axfajhpfqlqqhlkp")
    public suspend fun name(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value The value type determines whether the parameter is a single-value or multi-value parameter.
     */
    @JvmName("shxnksxdtnrbuwbh")
    public suspend fun parameterValueType(`value`: DashboardParameterValueType) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.parameterValueType = mapped
    }

    /**
     * @param value The configuration that defines the default value of a `Decimal` parameter when a value has not been set.
     */
    @JvmName("ngbjfgdpwyuuflgv")
    public suspend fun valueWhenUnset(`value`: DashboardDecimalValueWhenUnsetConfigurationArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.valueWhenUnset = mapped
    }

    /**
     * @param argument The configuration that defines the default value of a `Decimal` parameter when a value has not been set.
     */
    @JvmName("tqywxgldgjibtkgr")
    public suspend fun valueWhenUnset(argument: suspend DashboardDecimalValueWhenUnsetConfigurationArgsBuilder.() -> Unit) {
        val toBeMapped = DashboardDecimalValueWhenUnsetConfigurationArgsBuilder().applySuspend {
            argument()
        }.build()
        val mapped = of(toBeMapped)
        this.valueWhenUnset = mapped
    }

    internal fun build(): DashboardDecimalParameterDeclarationArgs =
        DashboardDecimalParameterDeclarationArgs(
            defaultValues = defaultValues,
            mappedDataSetParameters = mappedDataSetParameters,
            name = name ?: throw PulumiNullFieldException("name"),
            parameterValueType = parameterValueType ?: throw PulumiNullFieldException("parameterValueType"),
            valueWhenUnset = valueWhenUnset,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy