
commonMain.aws.sdk.kotlin.services.mgn.model.ThrottlingException.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.mgn.model
import aws.smithy.kotlin.runtime.ServiceErrorMetadata
/**
* Reached throttling quota exception.
*/
class ThrottlingException private constructor(builder: Builder) : MgnException() {
override val message: kotlin.String? = builder.message
/**
* Reached throttling quota exception.
*/
val quotaCode: kotlin.String? = builder.quotaCode
/**
* Reached throttling quota exception will retry after x seconds.
*/
val retryAfterSeconds: kotlin.String? = builder.retryAfterSeconds
/**
* Reached throttling quota exception service code.
*/
val serviceCode: kotlin.String? = builder.serviceCode
init {
sdkErrorMetadata.attributes[ServiceErrorMetadata.ErrorType] = ErrorType.Client
}
companion object {
operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.mgn.model.ThrottlingException = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ThrottlingException(")
append("message=$message,")
append("quotaCode=$quotaCode,")
append("retryAfterSeconds=$retryAfterSeconds,")
append("serviceCode=$serviceCode)")
}
override fun hashCode(): kotlin.Int {
var result = message?.hashCode() ?: 0
result = 31 * result + (quotaCode?.hashCode() ?: 0)
result = 31 * result + (retryAfterSeconds?.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 ThrottlingException
if (message != other.message) return false
if (quotaCode != other.quotaCode) return false
if (retryAfterSeconds != other.retryAfterSeconds) return false
if (serviceCode != other.serviceCode) return false
return true
}
inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.mgn.model.ThrottlingException = Builder(this).apply(block).build()
class Builder {
var message: kotlin.String? = null
/**
* Reached throttling quota exception.
*/
var quotaCode: kotlin.String? = null
/**
* Reached throttling quota exception will retry after x seconds.
*/
var retryAfterSeconds: kotlin.String? = null
/**
* Reached throttling quota exception service code.
*/
var serviceCode: kotlin.String? = null
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.mgn.model.ThrottlingException) : this() {
this.message = x.message
this.quotaCode = x.quotaCode
this.retryAfterSeconds = x.retryAfterSeconds
this.serviceCode = x.serviceCode
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.mgn.model.ThrottlingException = ThrottlingException(this)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy