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

commonMain.aws.sdk.kotlin.services.opensearch.model.ConnectionProperties.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.opensearch.model



/**
 * The connection properties of an outbound connection.
 */
public class ConnectionProperties private constructor(builder: Builder) {
    /**
     * The connection properties for cross cluster search.
     */
    public val crossClusterSearch: aws.sdk.kotlin.services.opensearch.model.CrossClusterSearchConnectionProperties? = builder.crossClusterSearch
    /**
     * The Endpoint attribute cannot be modified.
     *
     * The endpoint of the remote domain. Applicable for VPC_ENDPOINT connection mode.
     */
    public val endpoint: kotlin.String? = builder.endpoint

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

    override fun toString(): kotlin.String = buildString {
        append("ConnectionProperties(")
        append("crossClusterSearch=$crossClusterSearch,")
        append("endpoint=$endpoint")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = crossClusterSearch?.hashCode() ?: 0
        result = 31 * result + (endpoint?.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 ConnectionProperties

        if (crossClusterSearch != other.crossClusterSearch) return false
        if (endpoint != other.endpoint) return false

        return true
    }

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

    public class Builder {
        /**
         * The connection properties for cross cluster search.
         */
        public var crossClusterSearch: aws.sdk.kotlin.services.opensearch.model.CrossClusterSearchConnectionProperties? = null
        /**
         * The Endpoint attribute cannot be modified.
         *
         * The endpoint of the remote domain. Applicable for VPC_ENDPOINT connection mode.
         */
        public var endpoint: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.opensearch.model.ConnectionProperties) : this() {
            this.crossClusterSearch = x.crossClusterSearch
            this.endpoint = x.endpoint
        }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy