commonMain.aws.sdk.kotlin.services.textract.model.HumanLoopQuotaExceededException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of textract-jvm Show documentation
Show all versions of textract-jvm Show documentation
The AWS SDK for Kotlin client for Textract
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.textract.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.ServiceErrorMetadata
/**
* Indicates you have exceeded the maximum number of active human in the loop workflows available
*/
public class HumanLoopQuotaExceededException private constructor(builder: Builder) : TextractException(builder.message) {
public val code: kotlin.String? = builder.code
/**
* The quota code.
*/
public val quotaCode: kotlin.String? = builder.quotaCode
/**
* The resource type.
*/
public val resourceType: kotlin.String? = 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.textract.model.HumanLoopQuotaExceededException = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("HumanLoopQuotaExceededException(")
append("code=$code,")
append("message=$message,")
append("quotaCode=$quotaCode,")
append("resourceType=$resourceType,")
append("serviceCode=$serviceCode")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = code?.hashCode() ?: 0
result = 31 * result + (message?.hashCode() ?: 0)
result = 31 * result + (quotaCode?.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 HumanLoopQuotaExceededException
if (code != other.code) return false
if (message != other.message) return false
if (quotaCode != other.quotaCode) 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.textract.model.HumanLoopQuotaExceededException = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
public var code: kotlin.String? = null
public var message: kotlin.String? = null
/**
* The quota code.
*/
public var quotaCode: kotlin.String? = null
/**
* The resource type.
*/
public var resourceType: kotlin.String? = null
/**
* The service code.
*/
public var serviceCode: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.textract.model.HumanLoopQuotaExceededException) : this() {
this.code = x.code
this.message = x.message
this.quotaCode = x.quotaCode
this.resourceType = x.resourceType
this.serviceCode = x.serviceCode
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.textract.model.HumanLoopQuotaExceededException = HumanLoopQuotaExceededException(this)
internal fun correctErrors(): Builder {
return this
}
}
}