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

commonMain.aws.sdk.kotlin.services.glue.model.TableOptimizer.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

/**
 * Contains details about an optimizer associated with a table.
 */
public class TableOptimizer private constructor(builder: Builder) {
    /**
     * A `TableOptimizerConfiguration` object that was specified when creating or updating a table optimizer.
     */
    public val configuration: aws.sdk.kotlin.services.glue.model.TableOptimizerConfiguration? = builder.configuration
    /**
     * A `TableOptimizerRun` object representing the last run of the table optimizer.
     */
    public val lastRun: aws.sdk.kotlin.services.glue.model.TableOptimizerRun? = builder.lastRun
    /**
     * The type of table optimizer. Currently, the only valid value is `compaction`.
     */
    public val type: aws.sdk.kotlin.services.glue.model.TableOptimizerType? = builder.type

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

    override fun toString(): kotlin.String = buildString {
        append("TableOptimizer(")
        append("configuration=$configuration,")
        append("lastRun=$lastRun,")
        append("type=$type")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = configuration?.hashCode() ?: 0
        result = 31 * result + (lastRun?.hashCode() ?: 0)
        result = 31 * result + (type?.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 TableOptimizer

        if (configuration != other.configuration) return false
        if (lastRun != other.lastRun) return false
        if (type != other.type) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * A `TableOptimizerConfiguration` object that was specified when creating or updating a table optimizer.
         */
        public var configuration: aws.sdk.kotlin.services.glue.model.TableOptimizerConfiguration? = null
        /**
         * A `TableOptimizerRun` object representing the last run of the table optimizer.
         */
        public var lastRun: aws.sdk.kotlin.services.glue.model.TableOptimizerRun? = null
        /**
         * The type of table optimizer. Currently, the only valid value is `compaction`.
         */
        public var type: aws.sdk.kotlin.services.glue.model.TableOptimizerType? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.glue.model.TableOptimizer) : this() {
            this.configuration = x.configuration
            this.lastRun = x.lastRun
            this.type = x.type
        }

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy