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

com.pulumi.awsnative.cleanroomsml.kotlin.inputs.TrainingDatasetGlueDataSourceArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.cleanroomsml.kotlin.inputs

import com.pulumi.awsnative.cleanroomsml.inputs.TrainingDatasetGlueDataSourceArgs.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 catalogId The Glue catalog that contains the training data.
 * @property databaseName The Glue database that contains the training data.
 * @property tableName The Glue table that contains the training data.
 */
public data class TrainingDatasetGlueDataSourceArgs(
    public val catalogId: Output? = null,
    public val databaseName: Output,
    public val tableName: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.cleanroomsml.inputs.TrainingDatasetGlueDataSourceArgs = com.pulumi.awsnative.cleanroomsml.inputs.TrainingDatasetGlueDataSourceArgs.builder()
        .catalogId(catalogId?.applyValue({ args0 -> args0 }))
        .databaseName(databaseName.applyValue({ args0 -> args0 }))
        .tableName(tableName.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [TrainingDatasetGlueDataSourceArgs].
 */
@PulumiTagMarker
public class TrainingDatasetGlueDataSourceArgsBuilder internal constructor() {
    private var catalogId: Output? = null

    private var databaseName: Output? = null

    private var tableName: Output? = null

    /**
     * @param value The Glue catalog that contains the training data.
     */
    @JvmName("xgttfpsljwixlgbs")
    public suspend fun catalogId(`value`: Output) {
        this.catalogId = value
    }

    /**
     * @param value The Glue database that contains the training data.
     */
    @JvmName("hflxksplbnjyujqf")
    public suspend fun databaseName(`value`: Output) {
        this.databaseName = value
    }

    /**
     * @param value The Glue table that contains the training data.
     */
    @JvmName("ruajticblihvccxt")
    public suspend fun tableName(`value`: Output) {
        this.tableName = value
    }

    /**
     * @param value The Glue catalog that contains the training data.
     */
    @JvmName("btvqyeeudsifefcb")
    public suspend fun catalogId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.catalogId = mapped
    }

    /**
     * @param value The Glue database that contains the training data.
     */
    @JvmName("jauuaareppkawekh")
    public suspend fun databaseName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.databaseName = mapped
    }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy