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

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

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

package aws.sdk.kotlin.services.lookoutvision.model

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

/**
 * A service quota was exceeded the allowed limit. For more information, see Limits in Amazon Lookout for Vision in the Amazon Lookout for Vision Developer Guide.
 */
public class ServiceQuotaExceededException private constructor(builder: Builder) : LookoutVisionException(builder.message) {

    /**
     * The quota code.
     */
    public val quotaCode: kotlin.String? = builder.quotaCode
    /**
     * The ID of the resource.
     */
    public val resourceId: kotlin.String? = builder.resourceId
    /**
     * The type of the resource.
     */
    public val resourceType: aws.sdk.kotlin.services.lookoutvision.model.ResourceType? = builder.resourceType
    /**
     * The service code.
     */
    public val serviceCode: kotlin.String? = builder.serviceCode

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

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

    override fun toString(): kotlin.String = buildString {
        append("ServiceQuotaExceededException(")
        append("message=$message,")
        append("quotaCode=$quotaCode,")
        append("resourceId=$resourceId,")
        append("resourceType=$resourceType,")
        append("serviceCode=$serviceCode")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = message?.hashCode() ?: 0
        result = 31 * result + (quotaCode?.hashCode() ?: 0)
        result = 31 * result + (resourceId?.hashCode() ?: 0)
        result = 31 * result + (resourceType?.hashCode() ?: 0)
        result = 31 * result + (serviceCode?.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 ServiceQuotaExceededException

        if (message != other.message) return false
        if (quotaCode != other.quotaCode) return false
        if (resourceId != other.resourceId) return false
        if (resourceType != other.resourceType) return false
        if (serviceCode != other.serviceCode) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        public var message: kotlin.String? = null
        /**
         * The quota code.
         */
        public var quotaCode: kotlin.String? = null
        /**
         * The ID of the resource.
         */
        public var resourceId: kotlin.String? = null
        /**
         * The type of the resource.
         */
        public var resourceType: aws.sdk.kotlin.services.lookoutvision.model.ResourceType? = null
        /**
         * The service code.
         */
        public var serviceCode: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.lookoutvision.model.ServiceQuotaExceededException) : this() {
            this.message = x.message
            this.quotaCode = x.quotaCode
            this.resourceId = x.resourceId
            this.resourceType = x.resourceType
            this.serviceCode = x.serviceCode
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy