All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.athena.model.PreparedStatement.kt Maven / Gradle / Ivy

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.time.Instant

/**
 * A prepared SQL statement for use with Athena.
 */
public class PreparedStatement private constructor(builder: Builder) {
    /**
     * The description of the prepared statement.
     */
    public val description: kotlin.String? = builder.description
    /**
     * The last modified time of the prepared statement.
     */
    public val lastModifiedTime: aws.smithy.kotlin.runtime.time.Instant? = builder.lastModifiedTime
    /**
     * 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 workGroupName: kotlin.String? = builder.workGroupName

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.athena.model.PreparedStatement = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("PreparedStatement(")
        append("description=$description,")
        append("lastModifiedTime=$lastModifiedTime,")
        append("queryStatement=$queryStatement,")
        append("statementName=$statementName,")
        append("workGroupName=$workGroupName")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = description?.hashCode() ?: 0
        result = 31 * result + (lastModifiedTime?.hashCode() ?: 0)
        result = 31 * result + (queryStatement?.hashCode() ?: 0)
        result = 31 * result + (statementName?.hashCode() ?: 0)
        result = 31 * result + (workGroupName?.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 PreparedStatement

        if (description != other.description) return false
        if (lastModifiedTime != other.lastModifiedTime) return false
        if (queryStatement != other.queryStatement) return false
        if (statementName != other.statementName) return false
        if (workGroupName != other.workGroupName) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.athena.model.PreparedStatement = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The description of the prepared statement.
         */
        public var description: kotlin.String? = null
        /**
         * The last modified time of the prepared statement.
         */
        public var lastModifiedTime: aws.smithy.kotlin.runtime.time.Instant? = 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 workGroupName: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.athena.model.PreparedStatement) : this() {
            this.description = x.description
            this.lastModifiedTime = x.lastModifiedTime
            this.queryStatement = x.queryStatement
            this.statementName = x.statementName
            this.workGroupName = x.workGroupName
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.athena.model.PreparedStatement = PreparedStatement(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy