
com.pulumi.awsnative.iotanalytics.kotlin.inputs.DatasetGlueConfigurationArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.iotanalytics.kotlin.inputs
import com.pulumi.awsnative.iotanalytics.inputs.DatasetGlueConfigurationArgs.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 in your AWS Glue Data Catalog in which the table is located. An AWS Glue Data Catalog database contains metadata tables.
* @property tableName The name of the table in your AWS Glue Data Catalog that is used to perform the ETL operations. An AWS Glue Data Catalog table contains partitioned data and descriptions of data sources and targets.
*/
public data class DatasetGlueConfigurationArgs(
public val databaseName: Output,
public val tableName: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.iotanalytics.inputs.DatasetGlueConfigurationArgs =
com.pulumi.awsnative.iotanalytics.inputs.DatasetGlueConfigurationArgs.builder()
.databaseName(databaseName.applyValue({ args0 -> args0 }))
.tableName(tableName.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DatasetGlueConfigurationArgs].
*/
@PulumiTagMarker
public class DatasetGlueConfigurationArgsBuilder internal constructor() {
private var databaseName: Output? = null
private var tableName: Output? = null
/**
* @param value The name of the database in your AWS Glue Data Catalog in which the table is located. An AWS Glue Data Catalog database contains metadata tables.
*/
@JvmName("gsuxtyfhtkkwlrqo")
public suspend fun databaseName(`value`: Output) {
this.databaseName = value
}
/**
* @param value The name of the table in your AWS Glue Data Catalog that is used to perform the ETL operations. An AWS Glue Data Catalog table contains partitioned data and descriptions of data sources and targets.
*/
@JvmName("wkrymodkmqubroyq")
public suspend fun tableName(`value`: Output) {
this.tableName = value
}
/**
* @param value The name of the database in your AWS Glue Data Catalog in which the table is located. An AWS Glue Data Catalog database contains metadata tables.
*/
@JvmName("kyyblmhxtunvhttp")
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 table in your AWS Glue Data Catalog that is used to perform the ETL operations. An AWS Glue Data Catalog table contains partitioned data and descriptions of data sources and targets.
*/
@JvmName("bkxaftyqrbfmvebw")
public suspend fun tableName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.tableName = mapped
}
internal fun build(): DatasetGlueConfigurationArgs = DatasetGlueConfigurationArgs(
databaseName = databaseName ?: throw PulumiNullFieldException("databaseName"),
tableName = tableName ?: throw PulumiNullFieldException("tableName"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy