commonMain.aws.sdk.kotlin.services.iotsitewise.model.DetailedError.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iotsitewise-jvm Show documentation
Show all versions of iotsitewise-jvm Show documentation
The AWS SDK for Kotlin client for IoTSiteWise
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.iotsitewise.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Contains detailed error information.
*/
public class DetailedError private constructor(builder: Builder) {
/**
* The error code.
*/
public val code: aws.sdk.kotlin.services.iotsitewise.model.DetailedErrorCode = requireNotNull(builder.code) { "A non-null value must be provided for code" }
/**
* The error message.
*/
public val message: kotlin.String = requireNotNull(builder.message) { "A non-null value must be provided for message" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.iotsitewise.model.DetailedError = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DetailedError(")
append("code=$code,")
append("message=$message")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = code.hashCode()
result = 31 * result + (message.hashCode())
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 DetailedError
if (code != other.code) return false
if (message != other.message) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.iotsitewise.model.DetailedError = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The error code.
*/
public var code: aws.sdk.kotlin.services.iotsitewise.model.DetailedErrorCode? = null
/**
* The error message.
*/
public var message: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.iotsitewise.model.DetailedError) : this() {
this.code = x.code
this.message = x.message
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.iotsitewise.model.DetailedError = DetailedError(this)
internal fun correctErrors(): Builder {
if (code == null) code = DetailedErrorCode.SdkUnknown("no value provided")
if (message == null) message = ""
return this
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy