commonMain.aws.sdk.kotlin.services.pinpointsmsvoicev2.model.ResourceNotFoundException.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
/**
* A requested resource couldn't be found.
*/
public class ResourceNotFoundException private constructor(builder: Builder) : PinpointSmsVoiceV2Exception(builder.message) {
/**
* The unique identifier of the resource.
*/
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.ResourceNotFoundException = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ResourceNotFoundException(")
append("message=$message,")
append("resourceId=$resourceId,")
append("resourceType=$resourceType")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = message?.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 ResourceNotFoundException
if (message != other.message) 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.ResourceNotFoundException = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
public var message: kotlin.String? = null
/**
* The unique identifier of the resource.
*/
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.ResourceNotFoundException) : this() {
this.message = x.message
this.resourceId = x.resourceId
this.resourceType = x.resourceType
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.pinpointsmsvoicev2.model.ResourceNotFoundException = ResourceNotFoundException(this)
internal fun correctErrors(): Builder {
return this
}
}
}