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

com.pulumi.awsnative.cleanrooms.kotlin.inputs.GetConfiguredTableAssociationPlainArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.cleanrooms.kotlin.inputs

import com.pulumi.awsnative.cleanrooms.inputs.GetConfiguredTableAssociationPlainArgs.builder
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 configuredTableAssociationIdentifier Returns the unique identifier of the specified configured table association.
 * Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE33333`
 * @property membershipIdentifier The unique ID for the membership this configured table association belongs to.
 */
public data class GetConfiguredTableAssociationPlainArgs(
    public val configuredTableAssociationIdentifier: String,
    public val membershipIdentifier: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.cleanrooms.inputs.GetConfiguredTableAssociationPlainArgs =
        com.pulumi.awsnative.cleanrooms.inputs.GetConfiguredTableAssociationPlainArgs.builder()
            .configuredTableAssociationIdentifier(configuredTableAssociationIdentifier.let({ args0 -> args0 }))
            .membershipIdentifier(membershipIdentifier.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetConfiguredTableAssociationPlainArgs].
 */
@PulumiTagMarker
public class GetConfiguredTableAssociationPlainArgsBuilder internal constructor() {
    private var configuredTableAssociationIdentifier: String? = null

    private var membershipIdentifier: String? = null

    /**
     * @param value Returns the unique identifier of the specified configured table association.
     * Example: `a1b2c3d4-5678-90ab-cdef-EXAMPLE33333`
     */
    @JvmName("oosxxlfqohhpssxq")
    public suspend fun configuredTableAssociationIdentifier(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.configuredTableAssociationIdentifier = mapped
    }

    /**
     * @param value The unique ID for the membership this configured table association belongs to.
     */
    @JvmName("liinwmhraddrrhan")
    public suspend fun membershipIdentifier(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.membershipIdentifier = mapped
    }

    internal fun build(): GetConfiguredTableAssociationPlainArgs =
        GetConfiguredTableAssociationPlainArgs(
            configuredTableAssociationIdentifier = configuredTableAssociationIdentifier ?: throw
                PulumiNullFieldException("configuredTableAssociationIdentifier"),
            membershipIdentifier = membershipIdentifier ?: throw
                PulumiNullFieldException("membershipIdentifier"),
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy