commonMain.aws.sdk.kotlin.services.glue.model.UpdateTableOptimizerRequest.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
public class UpdateTableOptimizerRequest 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
/**
* A `TableOptimizerConfiguration` object representing the configuration of a table optimizer.
*/
public val tableOptimizerConfiguration: aws.sdk.kotlin.services.glue.model.TableOptimizerConfiguration? = builder.tableOptimizerConfiguration
/**
* 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.UpdateTableOptimizerRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateTableOptimizerRequest(")
append("catalogId=$catalogId,")
append("databaseName=$databaseName,")
append("tableName=$tableName,")
append("tableOptimizerConfiguration=$tableOptimizerConfiguration,")
append("type=$type")
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 + (tableOptimizerConfiguration?.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 UpdateTableOptimizerRequest
if (catalogId != other.catalogId) return false
if (databaseName != other.databaseName) return false
if (tableName != other.tableName) return false
if (tableOptimizerConfiguration != other.tableOptimizerConfiguration) return false
if (type != other.type) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.UpdateTableOptimizerRequest = 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
/**
* A `TableOptimizerConfiguration` object representing the configuration of a table optimizer.
*/
public var tableOptimizerConfiguration: aws.sdk.kotlin.services.glue.model.TableOptimizerConfiguration? = 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.UpdateTableOptimizerRequest) : this() {
this.catalogId = x.catalogId
this.databaseName = x.databaseName
this.tableName = x.tableName
this.tableOptimizerConfiguration = x.tableOptimizerConfiguration
this.type = x.type
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.UpdateTableOptimizerRequest = UpdateTableOptimizerRequest(this)
/**
* construct an [aws.sdk.kotlin.services.glue.model.TableOptimizerConfiguration] inside the given [block]
*/
public fun tableOptimizerConfiguration(block: aws.sdk.kotlin.services.glue.model.TableOptimizerConfiguration.Builder.() -> kotlin.Unit) {
this.tableOptimizerConfiguration = aws.sdk.kotlin.services.glue.model.TableOptimizerConfiguration.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}