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

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

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 0.122.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

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

import com.pulumi.awsnative.cleanrooms.inputs.ConfiguredTableGlueTableReferenceArgs.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 databaseName The name of the database the AWS Glue table belongs to.
 * @property tableName The name of the AWS Glue table.
 */
public data class ConfiguredTableGlueTableReferenceArgs(
    public val databaseName: Output,
    public val tableName: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.cleanrooms.inputs.ConfiguredTableGlueTableReferenceArgs =
        com.pulumi.awsnative.cleanrooms.inputs.ConfiguredTableGlueTableReferenceArgs.builder()
            .databaseName(databaseName.applyValue({ args0 -> args0 }))
            .tableName(tableName.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ConfiguredTableGlueTableReferenceArgs].
 */
@PulumiTagMarker
public class ConfiguredTableGlueTableReferenceArgsBuilder internal constructor() {
    private var databaseName: Output? = null

    private var tableName: Output? = null

    /**
     * @param value The name of the database the AWS Glue table belongs to.
     */
    @JvmName("vyyohxjmpjankaqt")
    public suspend fun databaseName(`value`: Output) {
        this.databaseName = value
    }

    /**
     * @param value The name of the AWS Glue table.
     */
    @JvmName("gxjdwcyggubjamby")
    public suspend fun tableName(`value`: Output) {
        this.tableName = value
    }

    /**
     * @param value The name of the database the AWS Glue table belongs to.
     */
    @JvmName("enjgemgawkblroyq")
    public suspend fun databaseName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.databaseName = mapped
    }

    /**
     * @param value The name of the AWS Glue table.
     */
    @JvmName("btcwrqgpfqlmdine")
    public suspend fun tableName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tableName = mapped
    }

    internal fun build(): ConfiguredTableGlueTableReferenceArgs =
        ConfiguredTableGlueTableReferenceArgs(
            databaseName = databaseName ?: throw PulumiNullFieldException("databaseName"),
            tableName = tableName ?: throw PulumiNullFieldException("tableName"),
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy