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

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

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

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

import com.pulumi.awsnative.quicksight.inputs.DashboardMappedDataSetParameterArgs.builder
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 kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property dataSetIdentifier A unique name that identifies a dataset within the analysis or dashboard.
 * @property dataSetParameterName The name of the dataset parameter.
 */
public data class DashboardMappedDataSetParameterArgs(
    public val dataSetIdentifier: Output,
    public val dataSetParameterName: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.DashboardMappedDataSetParameterArgs = com.pulumi.awsnative.quicksight.inputs.DashboardMappedDataSetParameterArgs.builder()
        .dataSetIdentifier(dataSetIdentifier.applyValue({ args0 -> args0 }))
        .dataSetParameterName(dataSetParameterName.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [DashboardMappedDataSetParameterArgs].
 */
@PulumiTagMarker
public class DashboardMappedDataSetParameterArgsBuilder internal constructor() {
    private var dataSetIdentifier: Output? = null

    private var dataSetParameterName: Output? = null

    /**
     * @param value A unique name that identifies a dataset within the analysis or dashboard.
     */
    @JvmName("folexnsgujokervt")
    public suspend fun dataSetIdentifier(`value`: Output) {
        this.dataSetIdentifier = value
    }

    /**
     * @param value The name of the dataset parameter.
     */
    @JvmName("surxbccsklajdwjn")
    public suspend fun dataSetParameterName(`value`: Output) {
        this.dataSetParameterName = value
    }

    /**
     * @param value A unique name that identifies a dataset within the analysis or dashboard.
     */
    @JvmName("sxfpkspcinyawviv")
    public suspend fun dataSetIdentifier(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.dataSetIdentifier = mapped
    }

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

    internal fun build(): DashboardMappedDataSetParameterArgs = DashboardMappedDataSetParameterArgs(
        dataSetIdentifier = dataSetIdentifier ?: throw PulumiNullFieldException("dataSetIdentifier"),
        dataSetParameterName = dataSetParameterName ?: throw
            PulumiNullFieldException("dataSetParameterName"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy