commonMain.aws.sdk.kotlin.services.cleanroomsml.model.DataSource.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cleanroomsml-jvm Show documentation
Show all versions of cleanroomsml-jvm Show documentation
The AWS SDK for Kotlin client for CleanRoomsML
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cleanroomsml.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Defines information about the Glue data source that contains the training data.
*/
public class DataSource private constructor(builder: Builder) {
/**
* A GlueDataSource object that defines the catalog ID, database name, and table name for the training data.
*/
public val glueDataSource: aws.sdk.kotlin.services.cleanroomsml.model.GlueDataSource? = builder.glueDataSource
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.cleanroomsml.model.DataSource = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DataSource(")
append("glueDataSource=$glueDataSource")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = glueDataSource?.hashCode() ?: 0
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as DataSource
if (glueDataSource != other.glueDataSource) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.cleanroomsml.model.DataSource = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* A GlueDataSource object that defines the catalog ID, database name, and table name for the training data.
*/
public var glueDataSource: aws.sdk.kotlin.services.cleanroomsml.model.GlueDataSource? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.cleanroomsml.model.DataSource) : this() {
this.glueDataSource = x.glueDataSource
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.cleanroomsml.model.DataSource = DataSource(this)
/**
* construct an [aws.sdk.kotlin.services.cleanroomsml.model.GlueDataSource] inside the given [block]
*/
public fun glueDataSource(block: aws.sdk.kotlin.services.cleanroomsml.model.GlueDataSource.Builder.() -> kotlin.Unit) {
this.glueDataSource = aws.sdk.kotlin.services.cleanroomsml.model.GlueDataSource.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}