commonMain.aws.sdk.kotlin.services.glue.model.GetTableVersionResponse.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 GetTableVersionResponse private constructor(builder: Builder) {
/**
* The requested table version.
*/
public val tableVersion: aws.sdk.kotlin.services.glue.model.TableVersion? = builder.tableVersion
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.GetTableVersionResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetTableVersionResponse(")
append("tableVersion=$tableVersion")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = tableVersion?.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 GetTableVersionResponse
if (tableVersion != other.tableVersion) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.GetTableVersionResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The requested table version.
*/
public var tableVersion: aws.sdk.kotlin.services.glue.model.TableVersion? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.GetTableVersionResponse) : this() {
this.tableVersion = x.tableVersion
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.GetTableVersionResponse = GetTableVersionResponse(this)
/**
* construct an [aws.sdk.kotlin.services.glue.model.TableVersion] inside the given [block]
*/
public fun tableVersion(block: aws.sdk.kotlin.services.glue.model.TableVersion.Builder.() -> kotlin.Unit) {
this.tableVersion = aws.sdk.kotlin.services.glue.model.TableVersion.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}