commonMain.aws.sdk.kotlin.services.glue.model.GetJobRunsRequest.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 GetJobRunsRequest private constructor(builder: Builder) {
/**
* The name of the job definition for which to retrieve all job runs.
*/
public val jobName: kotlin.String? = builder.jobName
/**
* The maximum size of the response.
*/
public val maxResults: kotlin.Int? = builder.maxResults
/**
* A continuation token, if this is a continuation call.
*/
public val nextToken: kotlin.String? = builder.nextToken
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.GetJobRunsRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetJobRunsRequest(")
append("jobName=$jobName,")
append("maxResults=$maxResults,")
append("nextToken=$nextToken")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = jobName?.hashCode() ?: 0
result = 31 * result + (maxResults ?: 0)
result = 31 * result + (nextToken?.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 GetJobRunsRequest
if (jobName != other.jobName) return false
if (maxResults != other.maxResults) return false
if (nextToken != other.nextToken) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.GetJobRunsRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the job definition for which to retrieve all job runs.
*/
public var jobName: kotlin.String? = null
/**
* The maximum size of the response.
*/
public var maxResults: kotlin.Int? = null
/**
* A continuation token, if this is a continuation call.
*/
public var nextToken: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.GetJobRunsRequest) : this() {
this.jobName = x.jobName
this.maxResults = x.maxResults
this.nextToken = x.nextToken
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.GetJobRunsRequest = GetJobRunsRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}