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

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

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

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

import com.pulumi.awsnative.quicksight.inputs.DashboardDataSetIdentifierDeclarationArgs.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 dataSetArn The Amazon Resource Name (ARN) of the data set.
 * @property identifier The identifier of the data set, typically the data set's name.
 */
public data class DashboardDataSetIdentifierDeclarationArgs(
    public val dataSetArn: Output,
    public val identifier: Output,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.quicksight.inputs.DashboardDataSetIdentifierDeclarationArgs =
        com.pulumi.awsnative.quicksight.inputs.DashboardDataSetIdentifierDeclarationArgs.builder()
            .dataSetArn(dataSetArn.applyValue({ args0 -> args0 }))
            .identifier(identifier.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [DashboardDataSetIdentifierDeclarationArgs].
 */
@PulumiTagMarker
public class DashboardDataSetIdentifierDeclarationArgsBuilder internal constructor() {
    private var dataSetArn: Output? = null

    private var identifier: Output? = null

    /**
     * @param value The Amazon Resource Name (ARN) of the data set.
     */
    @JvmName("urgmolmfrjrbdisf")
    public suspend fun dataSetArn(`value`: Output) {
        this.dataSetArn = value
    }

    /**
     * @param value The identifier of the data set, typically the data set's name.
     */
    @JvmName("piyruedmxgyxsfap")
    public suspend fun identifier(`value`: Output) {
        this.identifier = value
    }

    /**
     * @param value The Amazon Resource Name (ARN) of the data set.
     */
    @JvmName("rbbooxsyphtqskga")
    public suspend fun dataSetArn(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.dataSetArn = mapped
    }

    /**
     * @param value The identifier of the data set, typically the data set's name.
     */
    @JvmName("qtuetmqqcvgctoox")
    public suspend fun identifier(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.identifier = mapped
    }

    internal fun build(): DashboardDataSetIdentifierDeclarationArgs =
        DashboardDataSetIdentifierDeclarationArgs(
            dataSetArn = dataSetArn ?: throw PulumiNullFieldException("dataSetArn"),
            identifier = identifier ?: throw PulumiNullFieldException("identifier"),
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy