commonMain.aws.sdk.kotlin.services.iotsitewise.model.AssetErrorDetails.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 error details for the requested associate project asset action.
*/
public class AssetErrorDetails private constructor(builder: Builder) {
/**
* The ID of the asset, in UUID format.
*/
public val assetId: kotlin.String = requireNotNull(builder.assetId) { "A non-null value must be provided for assetId" }
/**
* The error code.
*/
public val code: aws.sdk.kotlin.services.iotsitewise.model.AssetErrorCode = 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.AssetErrorDetails = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("AssetErrorDetails(")
append("assetId=$assetId,")
append("code=$code,")
append("message=$message")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = assetId.hashCode()
result = 31 * 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 AssetErrorDetails
if (assetId != other.assetId) return false
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.AssetErrorDetails = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ID of the asset, in UUID format.
*/
public var assetId: kotlin.String? = null
/**
* The error code.
*/
public var code: aws.sdk.kotlin.services.iotsitewise.model.AssetErrorCode? = null
/**
* The error message.
*/
public var message: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.iotsitewise.model.AssetErrorDetails) : this() {
this.assetId = x.assetId
this.code = x.code
this.message = x.message
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.iotsitewise.model.AssetErrorDetails = AssetErrorDetails(this)
internal fun correctErrors(): Builder {
if (assetId == null) assetId = ""
if (code == null) code = AssetErrorCode.SdkUnknown("no value provided")
if (message == null) message = ""
return this
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy