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

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

There is a newer version: 1.3.76
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

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

import aws.smithy.kotlin.runtime.SdkDsl

public class CreateConnectionRequest private constructor(builder: Builder) {
    /**
     * The ID of the Data Catalog in which to create the connection. If none is provided, the Amazon Web Services account ID is used by default.
     */
    public val catalogId: kotlin.String? = builder.catalogId
    /**
     * A `ConnectionInput` object defining the connection to create.
     */
    public val connectionInput: aws.sdk.kotlin.services.glue.model.ConnectionInput? = builder.connectionInput
    /**
     * The tags you assign to the connection.
     */
    public val tags: Map? = builder.tags

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

    override fun toString(): kotlin.String = buildString {
        append("CreateConnectionRequest(")
        append("catalogId=$catalogId,")
        append("connectionInput=$connectionInput,")
        append("tags=$tags")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = catalogId?.hashCode() ?: 0
        result = 31 * result + (connectionInput?.hashCode() ?: 0)
        result = 31 * result + (tags?.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 CreateConnectionRequest

        if (catalogId != other.catalogId) return false
        if (connectionInput != other.connectionInput) return false
        if (tags != other.tags) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The ID of the Data Catalog in which to create the connection. If none is provided, the Amazon Web Services account ID is used by default.
         */
        public var catalogId: kotlin.String? = null
        /**
         * A `ConnectionInput` object defining the connection to create.
         */
        public var connectionInput: aws.sdk.kotlin.services.glue.model.ConnectionInput? = null
        /**
         * The tags you assign to the connection.
         */
        public var tags: Map? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.glue.model.CreateConnectionRequest) : this() {
            this.catalogId = x.catalogId
            this.connectionInput = x.connectionInput
            this.tags = x.tags
        }

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

        /**
         * construct an [aws.sdk.kotlin.services.glue.model.ConnectionInput] inside the given [block]
         */
        public fun connectionInput(block: aws.sdk.kotlin.services.glue.model.ConnectionInput.Builder.() -> kotlin.Unit) {
            this.connectionInput = aws.sdk.kotlin.services.glue.model.ConnectionInput.invoke(block)
        }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy