commonMain.aws.sdk.kotlin.services.servicequotas.model.ErrorReason.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.servicequotas.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* An error that explains why an action did not succeed.
*/
public class ErrorReason private constructor(builder: Builder) {
/**
* Service Quotas returns the following error values:
* + `DEPENDENCY_ACCESS_DENIED_ERROR` - The caller does not have the required permissions to complete the action. To resolve the error, you must have permission to access the Amazon Web Service or quota.
* + `DEPENDENCY_THROTTLING_ERROR` - The Amazon Web Service is throttling Service Quotas.
* + `DEPENDENCY_SERVICE_ERROR` - The Amazon Web Service is not available.
* + `SERVICE_QUOTA_NOT_AVAILABLE_ERROR` - There was an error in Service Quotas.
*/
public val errorCode: aws.sdk.kotlin.services.servicequotas.model.ErrorCode? = builder.errorCode
/**
* The error message.
*/
public val errorMessage: kotlin.String? = builder.errorMessage
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.servicequotas.model.ErrorReason = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ErrorReason(")
append("errorCode=$errorCode,")
append("errorMessage=$errorMessage")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = errorCode?.hashCode() ?: 0
result = 31 * result + (errorMessage?.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 ErrorReason
if (errorCode != other.errorCode) return false
if (errorMessage != other.errorMessage) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.servicequotas.model.ErrorReason = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Service Quotas returns the following error values:
* + `DEPENDENCY_ACCESS_DENIED_ERROR` - The caller does not have the required permissions to complete the action. To resolve the error, you must have permission to access the Amazon Web Service or quota.
* + `DEPENDENCY_THROTTLING_ERROR` - The Amazon Web Service is throttling Service Quotas.
* + `DEPENDENCY_SERVICE_ERROR` - The Amazon Web Service is not available.
* + `SERVICE_QUOTA_NOT_AVAILABLE_ERROR` - There was an error in Service Quotas.
*/
public var errorCode: aws.sdk.kotlin.services.servicequotas.model.ErrorCode? = null
/**
* The error message.
*/
public var errorMessage: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.servicequotas.model.ErrorReason) : this() {
this.errorCode = x.errorCode
this.errorMessage = x.errorMessage
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.servicequotas.model.ErrorReason = ErrorReason(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy