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

commonMain.aws.sdk.kotlin.services.cleanrooms.model.ServiceQuotaExceededException.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.cleanrooms.model

import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.ServiceErrorMetadata

/**
 * Request denied because service quota has been exceeded.
 */
public class ServiceQuotaExceededException private constructor(builder: Builder) : CleanRoomsException(builder.message) {

    /**
     * The name of the quota.
     */
    public val quotaName: kotlin.String = requireNotNull(builder.quotaName) { "A non-null value must be provided for quotaName" }
    /**
     * The value of the quota.
     */
    public val quotaValue: kotlin.Double = requireNotNull(builder.quotaValue) { "A non-null value must be provided for quotaValue" }

    init {
        sdkErrorMetadata.attributes[ServiceErrorMetadata.ErrorType] = ErrorType.Client
    }

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

    override fun toString(): kotlin.String = buildString {
        append("ServiceQuotaExceededException(")
        append("message=$message,")
        append("quotaName=$quotaName,")
        append("quotaValue=$quotaValue")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = message.hashCode()
        result = 31 * result + (quotaName.hashCode())
        result = 31 * result + (quotaValue.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 ServiceQuotaExceededException

        if (message != other.message) return false
        if (quotaName != other.quotaName) return false
        if (!(quotaValue?.equals(other.quotaValue) ?: (other.quotaValue == null))) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        public var message: kotlin.String? = null
        /**
         * The name of the quota.
         */
        public var quotaName: kotlin.String? = null
        /**
         * The value of the quota.
         */
        public var quotaValue: kotlin.Double? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.cleanrooms.model.ServiceQuotaExceededException) : this() {
            this.message = x.message
            this.quotaName = x.quotaName
            this.quotaValue = x.quotaValue
        }

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

        internal fun correctErrors(): Builder {
            if (message == null) message = ""
            if (quotaName == null) quotaName = ""
            if (quotaValue == null) quotaValue = 0.0
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy