commonMain.aws.sdk.kotlin.services.athena.model.CreatePreparedStatementRequest.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
public class CreatePreparedStatementRequest private constructor(builder: Builder) {
/**
* The description of the prepared statement.
*/
public val description: kotlin.String? = builder.description
/**
* The query string for the prepared statement.
*/
public val queryStatement: kotlin.String? = builder.queryStatement
/**
* The name of the prepared statement.
*/
public val statementName: kotlin.String? = builder.statementName
/**
* The name of the workgroup to which the prepared statement belongs.
*/
public val workGroup: kotlin.String? = builder.workGroup
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.athena.model.CreatePreparedStatementRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreatePreparedStatementRequest(")
append("description=$description,")
append("queryStatement=$queryStatement,")
append("statementName=$statementName,")
append("workGroup=$workGroup")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = description?.hashCode() ?: 0
result = 31 * result + (queryStatement?.hashCode() ?: 0)
result = 31 * result + (statementName?.hashCode() ?: 0)
result = 31 * result + (workGroup?.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 CreatePreparedStatementRequest
if (description != other.description) return false
if (queryStatement != other.queryStatement) return false
if (statementName != other.statementName) return false
if (workGroup != other.workGroup) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.athena.model.CreatePreparedStatementRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The description of the prepared statement.
*/
public var description: kotlin.String? = null
/**
* The query string for the prepared statement.
*/
public var queryStatement: kotlin.String? = null
/**
* The name of the prepared statement.
*/
public var statementName: kotlin.String? = null
/**
* The name of the workgroup to which the prepared statement belongs.
*/
public var workGroup: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.athena.model.CreatePreparedStatementRequest) : this() {
this.description = x.description
this.queryStatement = x.queryStatement
this.statementName = x.statementName
this.workGroup = x.workGroup
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.athena.model.CreatePreparedStatementRequest = CreatePreparedStatementRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}