commonMain.aws.sdk.kotlin.services.shield.model.InvalidParameterException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shield Show documentation
Show all versions of shield Show documentation
The AWS SDK for Kotlin client for Shield
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.shield.model
import aws.smithy.kotlin.runtime.ServiceErrorMetadata
/**
* Exception that indicates that the parameters passed to the API are invalid. If available, this exception includes details in additional properties.
*/
public class InvalidParameterException private constructor(builder: Builder) : ShieldException() {
/**
* Fields that caused the exception.
*/
public val fields: List? = builder.fields
override val message: kotlin.String? = builder.message
/**
* Additional information about the exception.
*/
public val reason: aws.sdk.kotlin.services.shield.model.ValidationExceptionReason? = builder.reason
init {
sdkErrorMetadata.attributes[ServiceErrorMetadata.ErrorType] = ErrorType.Client
}
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.shield.model.InvalidParameterException = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("InvalidParameterException(")
append("fields=$fields,")
append("message=$message,")
append("reason=$reason")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = fields?.hashCode() ?: 0
result = 31 * result + (message?.hashCode() ?: 0)
result = 31 * result + (reason?.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 InvalidParameterException
if (fields != other.fields) return false
if (message != other.message) return false
if (reason != other.reason) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.shield.model.InvalidParameterException = Builder(this).apply(block).build()
public class Builder {
/**
* Fields that caused the exception.
*/
public var fields: List? = null
public var message: kotlin.String? = null
/**
* Additional information about the exception.
*/
public var reason: aws.sdk.kotlin.services.shield.model.ValidationExceptionReason? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.shield.model.InvalidParameterException) : this() {
this.fields = x.fields
this.message = x.message
this.reason = x.reason
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.shield.model.InvalidParameterException = InvalidParameterException(this)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy