commonMain.aws.sdk.kotlin.services.glue.model.GetJobRunRequest.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
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.glue.model
import aws.smithy.kotlin.runtime.SdkDsl
public class GetJobRunRequest private constructor(builder: Builder) {
/**
* Name of the job definition being run.
*/
public val jobName: kotlin.String? = builder.jobName
/**
* True if a list of predecessor runs should be returned.
*/
public val predecessorsIncluded: kotlin.Boolean? = builder.predecessorsIncluded
/**
* The ID of the job 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.GetJobRunRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetJobRunRequest(")
append("jobName=$jobName,")
append("predecessorsIncluded=$predecessorsIncluded,")
append("runId=$runId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = jobName?.hashCode() ?: 0
result = 31 * result + (predecessorsIncluded?.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 GetJobRunRequest
if (jobName != other.jobName) return false
if (predecessorsIncluded != other.predecessorsIncluded) return false
if (runId != other.runId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.GetJobRunRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Name of the job definition being run.
*/
public var jobName: kotlin.String? = null
/**
* True if a list of predecessor runs should be returned.
*/
public var predecessorsIncluded: kotlin.Boolean? = null
/**
* The ID of the job run.
*/
public var runId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.GetJobRunRequest) : this() {
this.jobName = x.jobName
this.predecessorsIncluded = x.predecessorsIncluded
this.runId = x.runId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.GetJobRunRequest = GetJobRunRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}