commonMain.aws.sdk.kotlin.services.iotfleetwise.model.DecoderManifestValidationException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iotfleetwise-jvm Show documentation
Show all versions of iotfleetwise-jvm Show documentation
The AWS SDK for Kotlin client for IoTFleetWise
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.iotfleetwise.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.ServiceErrorMetadata
/**
* The request couldn't be completed because it contains signal decoders with one or more validation errors.
*/
public class DecoderManifestValidationException private constructor(builder: Builder) : IotFleetWiseException(builder.message) {
/**
* The request couldn't be completed because of invalid network interfaces in the request.
*/
public val invalidNetworkInterfaces: List? = builder.invalidNetworkInterfaces
/**
* The request couldn't be completed because of invalid signals in the request.
*/
public val invalidSignals: List? = builder.invalidSignals
init {
sdkErrorMetadata.attributes[ServiceErrorMetadata.ErrorType] = ErrorType.Client
}
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.iotfleetwise.model.DecoderManifestValidationException = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DecoderManifestValidationException(")
append("invalidNetworkInterfaces=$invalidNetworkInterfaces,")
append("invalidSignals=$invalidSignals,")
append("message=$message")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = invalidNetworkInterfaces?.hashCode() ?: 0
result = 31 * result + (invalidSignals?.hashCode() ?: 0)
result = 31 * result + (message?.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 DecoderManifestValidationException
if (invalidNetworkInterfaces != other.invalidNetworkInterfaces) return false
if (invalidSignals != other.invalidSignals) return false
if (message != other.message) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.iotfleetwise.model.DecoderManifestValidationException = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The request couldn't be completed because of invalid network interfaces in the request.
*/
public var invalidNetworkInterfaces: List? = null
/**
* The request couldn't be completed because of invalid signals in the request.
*/
public var invalidSignals: List? = null
public var message: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.iotfleetwise.model.DecoderManifestValidationException) : this() {
this.invalidNetworkInterfaces = x.invalidNetworkInterfaces
this.invalidSignals = x.invalidSignals
this.message = x.message
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.iotfleetwise.model.DecoderManifestValidationException = DecoderManifestValidationException(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy