commonMain.aws.sdk.kotlin.services.glue.model.DataQualityTargetTable.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glue-jvm Show documentation
Show all versions of glue-jvm Show documentation
The AWS SDK for Kotlin client for Glue
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.glue.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* An object representing an Glue table.
*/
public class DataQualityTargetTable private constructor(builder: Builder) {
/**
* The catalog id where the Glue table exists.
*/
public val catalogId: kotlin.String? = builder.catalogId
/**
* The name of the database where the Glue table exists.
*/
public val databaseName: kotlin.String = requireNotNull(builder.databaseName) { "A non-null value must be provided for databaseName" }
/**
* The name of the Glue table.
*/
public val tableName: kotlin.String = requireNotNull(builder.tableName) { "A non-null value must be provided for tableName" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.DataQualityTargetTable = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DataQualityTargetTable(")
append("catalogId=$catalogId,")
append("databaseName=$databaseName,")
append("tableName=$tableName")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = catalogId?.hashCode() ?: 0
result = 31 * result + (databaseName.hashCode())
result = 31 * result + (tableName.hashCode())
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 DataQualityTargetTable
if (catalogId != other.catalogId) return false
if (databaseName != other.databaseName) return false
if (tableName != other.tableName) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.DataQualityTargetTable = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The catalog id where the Glue table exists.
*/
public var catalogId: kotlin.String? = null
/**
* The name of the database where the Glue table exists.
*/
public var databaseName: kotlin.String? = null
/**
* The name of the Glue table.
*/
public var tableName: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.DataQualityTargetTable) : this() {
this.catalogId = x.catalogId
this.databaseName = x.databaseName
this.tableName = x.tableName
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.DataQualityTargetTable = DataQualityTargetTable(this)
internal fun correctErrors(): Builder {
if (databaseName == null) databaseName = ""
if (tableName == null) tableName = ""
return this
}
}
}