commonMain.aws.sdk.kotlin.services.athena.model.InvalidRequestException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of athena-jvm Show documentation
Show all versions of athena-jvm Show documentation
The AWS SDK for Kotlin client for Athena
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.athena.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.ServiceErrorMetadata
/**
* Indicates that something is wrong with the input to the request. For example, a required parameter may be missing or out of range.
*/
public class InvalidRequestException private constructor(builder: Builder) : AthenaException(builder.message) {
/**
* The error code returned when the query execution failed to process, or when the processing request for the named query failed.
*/
public val athenaErrorCode: kotlin.String? = builder.athenaErrorCode
init {
sdkErrorMetadata.attributes[ServiceErrorMetadata.ErrorType] = ErrorType.Client
}
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.athena.model.InvalidRequestException = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("InvalidRequestException(")
append("athenaErrorCode=$athenaErrorCode,")
append("message=$message")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = athenaErrorCode?.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 InvalidRequestException
if (athenaErrorCode != other.athenaErrorCode) return false
if (message != other.message) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.athena.model.InvalidRequestException = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The error code returned when the query execution failed to process, or when the processing request for the named query failed.
*/
public var athenaErrorCode: kotlin.String? = null
public var message: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.athena.model.InvalidRequestException) : this() {
this.athenaErrorCode = x.athenaErrorCode
this.message = x.message
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.athena.model.InvalidRequestException = InvalidRequestException(this)
internal fun correctErrors(): Builder {
return this
}
}
}