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

commonMain.aws.sdk.kotlin.services.athena.model.StopCalculationExecutionResponse.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

public class StopCalculationExecutionResponse private constructor(builder: Builder) {
    /**
     * `CREATING` - The calculation is in the process of being created.
     *
     * `CREATED` - The calculation has been created and is ready to run.
     *
     * `QUEUED` - The calculation has been queued for processing.
     *
     * `RUNNING` - The calculation is running.
     *
     * `CANCELING` - A request to cancel the calculation has been received and the system is working to stop it.
     *
     * `CANCELED` - The calculation is no longer running as the result of a cancel request.
     *
     * `COMPLETED` - The calculation has completed without error.
     *
     * `FAILED` - The calculation failed and is no longer running.
     */
    public val state: aws.sdk.kotlin.services.athena.model.CalculationExecutionState? = builder.state

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

    override fun toString(): kotlin.String = buildString {
        append("StopCalculationExecutionResponse(")
        append("state=$state")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = state?.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 StopCalculationExecutionResponse

        if (state != other.state) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * `CREATING` - The calculation is in the process of being created.
         *
         * `CREATED` - The calculation has been created and is ready to run.
         *
         * `QUEUED` - The calculation has been queued for processing.
         *
         * `RUNNING` - The calculation is running.
         *
         * `CANCELING` - A request to cancel the calculation has been received and the system is working to stop it.
         *
         * `CANCELED` - The calculation is no longer running as the result of a cancel request.
         *
         * `COMPLETED` - The calculation has completed without error.
         *
         * `FAILED` - The calculation failed and is no longer running.
         */
        public var state: aws.sdk.kotlin.services.athena.model.CalculationExecutionState? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.athena.model.StopCalculationExecutionResponse) : this() {
            this.state = x.state
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy