commonMain.aws.sdk.kotlin.services.glue.model.SchemaColumn.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
/**
* A key-value pair representing a column and data type that this transform can run against. The `Schema` parameter of the `MLTransform` may contain up to 100 of these structures.
*/
public class SchemaColumn private constructor(builder: Builder) {
/**
* The type of data in the column.
*/
public val dataType: kotlin.String? = builder.dataType
/**
* The name of the column.
*/
public val name: kotlin.String? = builder.name
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.SchemaColumn = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("SchemaColumn(")
append("dataType=$dataType,")
append("name=$name")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = dataType?.hashCode() ?: 0
result = 31 * result + (name?.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 SchemaColumn
if (dataType != other.dataType) return false
if (name != other.name) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.SchemaColumn = Builder(this).apply(block).build()
public class Builder {
/**
* The type of data in the column.
*/
public var dataType: kotlin.String? = null
/**
* The name of the column.
*/
public var name: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.SchemaColumn) : this() {
this.dataType = x.dataType
this.name = x.name
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.SchemaColumn = SchemaColumn(this)
internal fun correctErrors(): Builder {
return this
}
}
}