commonMain.aws.sdk.kotlin.services.athena.model.StartCalculationExecutionResponse.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 StartCalculationExecutionResponse private constructor(builder: Builder) {
/**
* The calculation execution UUID.
*/
public val calculationExecutionId: kotlin.String? = builder.calculationExecutionId
/**
* `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.StartCalculationExecutionResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("StartCalculationExecutionResponse(")
append("calculationExecutionId=$calculationExecutionId,")
append("state=$state")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = calculationExecutionId?.hashCode() ?: 0
result = 31 * 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 StartCalculationExecutionResponse
if (calculationExecutionId != other.calculationExecutionId) return false
if (state != other.state) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.athena.model.StartCalculationExecutionResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The calculation execution UUID.
*/
public var calculationExecutionId: kotlin.String? = null
/**
* `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.StartCalculationExecutionResponse) : this() {
this.calculationExecutionId = x.calculationExecutionId
this.state = x.state
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.athena.model.StartCalculationExecutionResponse = StartCalculationExecutionResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}