commonMain.aws.sdk.kotlin.services.athena.model.QueryExecutionContext.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
/**
* The database and data catalog context in which the query execution occurs.
*/
public class QueryExecutionContext private constructor(builder: Builder) {
/**
* The name of the data catalog used in the query execution.
*/
public val catalog: kotlin.String? = builder.catalog
/**
* The name of the database used in the query execution. The database must exist in the catalog.
*/
public val database: kotlin.String? = builder.database
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.athena.model.QueryExecutionContext = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("QueryExecutionContext(")
append("catalog=$catalog,")
append("database=$database")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = catalog?.hashCode() ?: 0
result = 31 * result + (database?.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 QueryExecutionContext
if (catalog != other.catalog) return false
if (database != other.database) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.athena.model.QueryExecutionContext = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the data catalog used in the query execution.
*/
public var catalog: kotlin.String? = null
/**
* The name of the database used in the query execution. The database must exist in the catalog.
*/
public var database: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.athena.model.QueryExecutionContext) : this() {
this.catalog = x.catalog
this.database = x.database
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.athena.model.QueryExecutionContext = QueryExecutionContext(this)
internal fun correctErrors(): Builder {
return this
}
}
}