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

commonMain.aws.sdk.kotlin.services.glue.model.SerDeInfo.kt Maven / Gradle / Ivy

The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.glue.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Information about a serialization/deserialization program (SerDe) that serves as an extractor and loader.
 */
public class SerDeInfo private constructor(builder: Builder) {
    /**
     * Name of the SerDe.
     */
    public val name: kotlin.String? = builder.name
    /**
     * These key-value pairs define initialization parameters for the SerDe.
     */
    public val parameters: Map? = builder.parameters
    /**
     * Usually the class that implements the SerDe. An example is `org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe`.
     */
    public val serializationLibrary: kotlin.String? = builder.serializationLibrary

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

    override fun toString(): kotlin.String = buildString {
        append("SerDeInfo(")
        append("name=$name,")
        append("parameters=$parameters,")
        append("serializationLibrary=$serializationLibrary")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = name?.hashCode() ?: 0
        result = 31 * result + (parameters?.hashCode() ?: 0)
        result = 31 * result + (serializationLibrary?.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 SerDeInfo

        if (name != other.name) return false
        if (parameters != other.parameters) return false
        if (serializationLibrary != other.serializationLibrary) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * Name of the SerDe.
         */
        public var name: kotlin.String? = null
        /**
         * These key-value pairs define initialization parameters for the SerDe.
         */
        public var parameters: Map? = null
        /**
         * Usually the class that implements the SerDe. An example is `org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe`.
         */
        public var serializationLibrary: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.glue.model.SerDeInfo) : this() {
            this.name = x.name
            this.parameters = x.parameters
            this.serializationLibrary = x.serializationLibrary
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy