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

commonMain.aws.sdk.kotlin.services.cleanrooms.model.GlueTableReference.kt Maven / Gradle / Ivy

There is a newer version: 1.3.31
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.cleanrooms.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * A reference to a table within an Glue data catalog.
 */
public class GlueTableReference private constructor(builder: Builder) {
    /**
     * The name of the database the Glue table belongs to.
     */
    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.cleanrooms.model.GlueTableReference = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("GlueTableReference(")
        append("databaseName=$databaseName,")
        append("tableName=$tableName")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var 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 GlueTableReference

        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.cleanrooms.model.GlueTableReference = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The name of the database the Glue table belongs to.
         */
        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.cleanrooms.model.GlueTableReference) : this() {
            this.databaseName = x.databaseName
            this.tableName = x.tableName
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.cleanrooms.model.GlueTableReference = GlueTableReference(this)

        internal fun correctErrors(): Builder {
            if (databaseName == null) databaseName = ""
            if (tableName == null) tableName = ""
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy