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

commonMain.aws.sdk.kotlin.services.glue.model.GetTableOptimizerResponse.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.glue.model

import aws.smithy.kotlin.runtime.SdkDsl

public class GetTableOptimizerResponse private constructor(builder: Builder) {
    /**
     * The Catalog ID of the table.
     */
    public val catalogId: kotlin.String? = builder.catalogId
    /**
     * The name of the database in the catalog in which the table resides.
     */
    public val databaseName: kotlin.String? = builder.databaseName
    /**
     * The name of the table.
     */
    public val tableName: kotlin.String? = builder.tableName
    /**
     * The optimizer associated with the specified table.
     */
    public val tableOptimizer: aws.sdk.kotlin.services.glue.model.TableOptimizer? = builder.tableOptimizer

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.GetTableOptimizerResponse = Builder().apply(block).build()
    }

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

    override fun hashCode(): kotlin.Int {
        var result = catalogId?.hashCode() ?: 0
        result = 31 * result + (databaseName?.hashCode() ?: 0)
        result = 31 * result + (tableName?.hashCode() ?: 0)
        result = 31 * result + (tableOptimizer?.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 GetTableOptimizerResponse

        if (catalogId != other.catalogId) return false
        if (databaseName != other.databaseName) return false
        if (tableName != other.tableName) return false
        if (tableOptimizer != other.tableOptimizer) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.GetTableOptimizerResponse = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The Catalog ID of the table.
         */
        public var catalogId: kotlin.String? = null
        /**
         * The name of the database in the catalog in which the table resides.
         */
        public var databaseName: kotlin.String? = null
        /**
         * The name of the table.
         */
        public var tableName: kotlin.String? = null
        /**
         * The optimizer associated with the specified table.
         */
        public var tableOptimizer: aws.sdk.kotlin.services.glue.model.TableOptimizer? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.glue.model.GetTableOptimizerResponse) : this() {
            this.catalogId = x.catalogId
            this.databaseName = x.databaseName
            this.tableName = x.tableName
            this.tableOptimizer = x.tableOptimizer
        }

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

        /**
         * construct an [aws.sdk.kotlin.services.glue.model.TableOptimizer] inside the given [block]
         */
        public fun tableOptimizer(block: aws.sdk.kotlin.services.glue.model.TableOptimizer.Builder.() -> kotlin.Unit) {
            this.tableOptimizer = aws.sdk.kotlin.services.glue.model.TableOptimizer.invoke(block)
        }

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy