commonMain.aws.sdk.kotlin.services.pinpointsmsvoicev2.model.ConflictException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pinpointsmsvoicev2-jvm Show documentation
Show all versions of pinpointsmsvoicev2-jvm Show documentation
The AWS SDK for Kotlin client for Pinpoint SMS Voice V2
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.pinpointsmsvoicev2.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.ServiceErrorMetadata
/**
* Your request has conflicting operations. This can occur if you're trying to perform more than one operation on the same resource at the same time or it could be that the requested action isn't valid for the current state or configuration of the resource.
*/
public class ConflictException private constructor(builder: Builder) : PinpointSmsVoiceV2Exception(builder.message) {
/**
* The reason for the exception.
*/
public val reason: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.ConflictExceptionReason? = builder.reason
/**
* The unique identifier of the request.
*/
public val resourceId: kotlin.String? = builder.resourceId
/**
* The type of resource that caused the exception.
*/
public val resourceType: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.ResourceType? = builder.resourceType
init {
sdkErrorMetadata.attributes[ServiceErrorMetadata.ErrorType] = ErrorType.Client
}
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.ConflictException = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ConflictException(")
append("message=$message,")
append("reason=$reason,")
append("resourceId=$resourceId,")
append("resourceType=$resourceType")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = message?.hashCode() ?: 0
result = 31 * result + (reason?.hashCode() ?: 0)
result = 31 * result + (resourceId?.hashCode() ?: 0)
result = 31 * result + (resourceType?.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 ConflictException
if (message != other.message) return false
if (reason != other.reason) return false
if (resourceId != other.resourceId) return false
if (resourceType != other.resourceType) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.ConflictException = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
public var message: kotlin.String? = null
/**
* The reason for the exception.
*/
public var reason: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.ConflictExceptionReason? = null
/**
* The unique identifier of the request.
*/
public var resourceId: kotlin.String? = null
/**
* The type of resource that caused the exception.
*/
public var resourceType: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.ResourceType? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.pinpointsmsvoicev2.model.ConflictException) : this() {
this.message = x.message
this.reason = x.reason
this.resourceId = x.resourceId
this.resourceType = x.resourceType
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.ConflictException = ConflictException(this)
internal fun correctErrors(): Builder {
return this
}
}
}