commonMain.aws.sdk.kotlin.services.glue.model.GlueStudioSchemaColumn.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
/**
* Specifies a single column in a Glue schema definition.
*/
public class GlueStudioSchemaColumn private constructor(builder: Builder) {
/**
* The name of the column in the Glue Studio schema.
*/
public val name: kotlin.String = requireNotNull(builder.name) { "A non-null value must be provided for name" }
/**
* The hive type for this column in the Glue Studio schema.
*/
public val type: kotlin.String? = builder.type
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.GlueStudioSchemaColumn = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GlueStudioSchemaColumn(")
append("name=$name,")
append("type=$type")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = name.hashCode()
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 GlueStudioSchemaColumn
if (name != other.name) return false
if (type != other.type) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.GlueStudioSchemaColumn = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the column in the Glue Studio schema.
*/
public var name: kotlin.String? = null
/**
* The hive type for this column in the Glue Studio schema.
*/
public var type: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.GlueStudioSchemaColumn) : this() {
this.name = x.name
this.type = x.type
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.GlueStudioSchemaColumn = GlueStudioSchemaColumn(this)
internal fun correctErrors(): Builder {
if (name == null) name = ""
return this
}
}
}