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

commonMain.aws.sdk.kotlin.services.cognitoidentity.model.UnlinkIdentityRequest.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.cognitoidentity.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Input to the UnlinkIdentity action.
 */
public class UnlinkIdentityRequest private constructor(builder: Builder) {
    /**
     * A unique identifier in the format REGION:GUID.
     */
    public val identityId: kotlin.String? = builder.identityId
    /**
     * A set of optional name-value pairs that map provider names to provider tokens.
     */
    public val logins: Map? = builder.logins
    /**
     * Provider names to unlink from this identity.
     */
    public val loginsToRemove: List? = builder.loginsToRemove

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

    override fun toString(): kotlin.String = buildString {
        append("UnlinkIdentityRequest(")
        append("identityId=$identityId,")
        append("logins=*** Sensitive Data Redacted ***,")
        append("loginsToRemove=$loginsToRemove")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = identityId?.hashCode() ?: 0
        result = 31 * result + (logins?.hashCode() ?: 0)
        result = 31 * result + (loginsToRemove?.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 UnlinkIdentityRequest

        if (identityId != other.identityId) return false
        if (logins != other.logins) return false
        if (loginsToRemove != other.loginsToRemove) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * A unique identifier in the format REGION:GUID.
         */
        public var identityId: kotlin.String? = null
        /**
         * A set of optional name-value pairs that map provider names to provider tokens.
         */
        public var logins: Map? = null
        /**
         * Provider names to unlink from this identity.
         */
        public var loginsToRemove: List? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.cognitoidentity.model.UnlinkIdentityRequest) : this() {
            this.identityId = x.identityId
            this.logins = x.logins
            this.loginsToRemove = x.loginsToRemove
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy