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

commonMain.aws.sdk.kotlin.services.wisdom.model.DeleteAssistantAssociationRequest.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.wisdom.model

import aws.smithy.kotlin.runtime.SdkDsl

public class DeleteAssistantAssociationRequest private constructor(builder: Builder) {
    /**
     * The identifier of the assistant association. Can be either the ID or the ARN. URLs cannot contain the ARN.
     */
    public val assistantAssociationId: kotlin.String = requireNotNull(builder.assistantAssociationId) { "A non-null value must be provided for assistantAssociationId" }
    /**
     * The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
     */
    public val assistantId: kotlin.String = requireNotNull(builder.assistantId) { "A non-null value must be provided for assistantId" }

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

    override fun toString(): kotlin.String = buildString {
        append("DeleteAssistantAssociationRequest(")
        append("assistantAssociationId=$assistantAssociationId,")
        append("assistantId=$assistantId")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = assistantAssociationId.hashCode()
        result = 31 * result + (assistantId.hashCode())
        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 DeleteAssistantAssociationRequest

        if (assistantAssociationId != other.assistantAssociationId) return false
        if (assistantId != other.assistantId) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The identifier of the assistant association. Can be either the ID or the ARN. URLs cannot contain the ARN.
         */
        public var assistantAssociationId: kotlin.String? = null
        /**
         * The identifier of the Wisdom assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
         */
        public var assistantId: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.wisdom.model.DeleteAssistantAssociationRequest) : this() {
            this.assistantAssociationId = x.assistantAssociationId
            this.assistantId = x.assistantId
        }

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

        internal fun correctErrors(): Builder {
            if (assistantAssociationId == null) assistantAssociationId = ""
            if (assistantId == null) assistantId = ""
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy