commonMain.aws.sdk.kotlin.services.transfer.model.DescribeExecutionResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of transfer-jvm Show documentation
Show all versions of transfer-jvm Show documentation
The AWS SDK for Kotlin client for Transfer
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.transfer.model
import aws.smithy.kotlin.runtime.SdkDsl
public class DescribeExecutionResponse private constructor(builder: Builder) {
/**
* The structure that contains the details of the workflow' execution.
*/
public val execution: aws.sdk.kotlin.services.transfer.model.DescribedExecution? = builder.execution
/**
* A unique identifier for the workflow.
*/
public val workflowId: kotlin.String = requireNotNull(builder.workflowId) { "A non-null value must be provided for workflowId" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.transfer.model.DescribeExecutionResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DescribeExecutionResponse(")
append("execution=$execution,")
append("workflowId=$workflowId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = execution?.hashCode() ?: 0
result = 31 * result + (workflowId.hashCode())
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 DescribeExecutionResponse
if (execution != other.execution) return false
if (workflowId != other.workflowId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.transfer.model.DescribeExecutionResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The structure that contains the details of the workflow' execution.
*/
public var execution: aws.sdk.kotlin.services.transfer.model.DescribedExecution? = null
/**
* A unique identifier for the workflow.
*/
public var workflowId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.transfer.model.DescribeExecutionResponse) : this() {
this.execution = x.execution
this.workflowId = x.workflowId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.transfer.model.DescribeExecutionResponse = DescribeExecutionResponse(this)
/**
* construct an [aws.sdk.kotlin.services.transfer.model.DescribedExecution] inside the given [block]
*/
public fun execution(block: aws.sdk.kotlin.services.transfer.model.DescribedExecution.Builder.() -> kotlin.Unit) {
this.execution = aws.sdk.kotlin.services.transfer.model.DescribedExecution.invoke(block)
}
internal fun correctErrors(): Builder {
if (workflowId == null) workflowId = ""
return this
}
}
}