commonMain.aws.sdk.kotlin.services.glue.model.GetWorkflowRunRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glue-jvm Show documentation
Show all versions of glue-jvm Show documentation
The AWS SDK for Kotlin client for Glue
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.glue.model
public class GetWorkflowRunRequest private constructor(builder: Builder) {
/**
* Specifies whether to include the workflow graph in response or not.
*/
public val includeGraph: kotlin.Boolean? = builder.includeGraph
/**
* Name of the workflow being run.
*/
public val name: kotlin.String? = builder.name
/**
* The ID of the workflow run.
*/
public val runId: kotlin.String? = builder.runId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.GetWorkflowRunRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetWorkflowRunRequest(")
append("includeGraph=$includeGraph,")
append("name=$name,")
append("runId=$runId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = includeGraph?.hashCode() ?: 0
result = 31 * result + (name?.hashCode() ?: 0)
result = 31 * result + (runId?.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 GetWorkflowRunRequest
if (includeGraph != other.includeGraph) return false
if (name != other.name) return false
if (runId != other.runId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.GetWorkflowRunRequest = Builder(this).apply(block).build()
public class Builder {
/**
* Specifies whether to include the workflow graph in response or not.
*/
public var includeGraph: kotlin.Boolean? = null
/**
* Name of the workflow being run.
*/
public var name: kotlin.String? = null
/**
* The ID of the workflow run.
*/
public var runId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.GetWorkflowRunRequest) : this() {
this.includeGraph = x.includeGraph
this.name = x.name
this.runId = x.runId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.GetWorkflowRunRequest = GetWorkflowRunRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}