commonMain.aws.sdk.kotlin.services.cloudwatchlogs.model.MalformedQueryException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudwatchlogs-jvm Show documentation
Show all versions of cloudwatchlogs-jvm Show documentation
The AWS SDK for Kotlin client for CloudWatch Logs
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cloudwatchlogs.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.ServiceErrorMetadata
/**
* The query string is not valid. Details about this error are displayed in a `QueryCompileError` object. For more information, see [QueryCompileError](https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_QueryCompileError.html).
*
* For more information about valid query syntax, see [CloudWatch Logs Insights Query Syntax](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CWL_QuerySyntax.html).
*/
public class MalformedQueryException private constructor(builder: Builder) : CloudWatchLogsException(builder.message) {
/**
* Reserved.
*/
public val queryCompileError: aws.sdk.kotlin.services.cloudwatchlogs.model.QueryCompileError? = builder.queryCompileError
init {
sdkErrorMetadata.attributes[ServiceErrorMetadata.ErrorType] = ErrorType.Client
}
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.cloudwatchlogs.model.MalformedQueryException = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("MalformedQueryException(")
append("message=$message,")
append("queryCompileError=$queryCompileError")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = message?.hashCode() ?: 0
result = 31 * result + (queryCompileError?.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 MalformedQueryException
if (message != other.message) return false
if (queryCompileError != other.queryCompileError) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.cloudwatchlogs.model.MalformedQueryException = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
public var message: kotlin.String? = null
/**
* Reserved.
*/
public var queryCompileError: aws.sdk.kotlin.services.cloudwatchlogs.model.QueryCompileError? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.cloudwatchlogs.model.MalformedQueryException) : this() {
this.message = x.message
this.queryCompileError = x.queryCompileError
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.cloudwatchlogs.model.MalformedQueryException = MalformedQueryException(this)
/**
* construct an [aws.sdk.kotlin.services.cloudwatchlogs.model.QueryCompileError] inside the given [block]
*/
public fun queryCompileError(block: aws.sdk.kotlin.services.cloudwatchlogs.model.QueryCompileError.Builder.() -> kotlin.Unit) {
this.queryCompileError = aws.sdk.kotlin.services.cloudwatchlogs.model.QueryCompileError.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}