commonMain.aws.sdk.kotlin.services.glue.model.Predecessor.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
/**
* A job run that was used in the predicate of a conditional trigger that triggered this job run.
*/
public class Predecessor private constructor(builder: Builder) {
/**
* The name of the job definition used by the predecessor job run.
*/
public val jobName: kotlin.String? = builder.jobName
/**
* The job-run ID of the predecessor 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.Predecessor = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("Predecessor(")
append("jobName=$jobName,")
append("runId=$runId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = jobName?.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 Predecessor
if (jobName != other.jobName) return false
if (runId != other.runId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.Predecessor = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the job definition used by the predecessor job run.
*/
public var jobName: kotlin.String? = null
/**
* The job-run ID of the predecessor job run.
*/
public var runId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.Predecessor) : this() {
this.jobName = x.jobName
this.runId = x.runId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.Predecessor = Predecessor(this)
internal fun correctErrors(): Builder {
return this
}
}
}