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

commonMain.aws.sdk.kotlin.services.redshift.model.AddPartnerRequest.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.redshift.model

import aws.smithy.kotlin.runtime.SdkDsl

public class AddPartnerRequest private constructor(builder: Builder) {
    /**
     * The Amazon Web Services account ID that owns the cluster.
     */
    public val accountId: kotlin.String? = builder.accountId
    /**
     * The cluster identifier of the cluster that receives data from the partner.
     */
    public val clusterIdentifier: kotlin.String? = builder.clusterIdentifier
    /**
     * The name of the database that receives data from the partner.
     */
    public val databaseName: kotlin.String? = builder.databaseName
    /**
     * The name of the partner that is authorized to send data.
     */
    public val partnerName: kotlin.String? = builder.partnerName

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

    override fun toString(): kotlin.String = buildString {
        append("AddPartnerRequest(")
        append("accountId=$accountId,")
        append("clusterIdentifier=$clusterIdentifier,")
        append("databaseName=$databaseName,")
        append("partnerName=$partnerName")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = accountId?.hashCode() ?: 0
        result = 31 * result + (clusterIdentifier?.hashCode() ?: 0)
        result = 31 * result + (databaseName?.hashCode() ?: 0)
        result = 31 * result + (partnerName?.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 AddPartnerRequest

        if (accountId != other.accountId) return false
        if (clusterIdentifier != other.clusterIdentifier) return false
        if (databaseName != other.databaseName) return false
        if (partnerName != other.partnerName) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The Amazon Web Services account ID that owns the cluster.
         */
        public var accountId: kotlin.String? = null
        /**
         * The cluster identifier of the cluster that receives data from the partner.
         */
        public var clusterIdentifier: kotlin.String? = null
        /**
         * The name of the database that receives data from the partner.
         */
        public var databaseName: kotlin.String? = null
        /**
         * The name of the partner that is authorized to send data.
         */
        public var partnerName: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.redshift.model.AddPartnerRequest) : this() {
            this.accountId = x.accountId
            this.clusterIdentifier = x.clusterIdentifier
            this.databaseName = x.databaseName
            this.partnerName = x.partnerName
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy