com.pulumi.awsnative.cleanrooms.kotlin.inputs.ConfiguredTableGlueTableReferenceArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@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"),
)
}