
commonMain.aws.sdk.kotlin.services.s3control.model.DescribeJobResponse.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.s3control.model
public class DescribeJobResponse private constructor(builder: Builder) {
/**
* Contains the configuration parameters and status for the job specified in the `Describe Job` request.
*/
public val job: aws.sdk.kotlin.services.s3control.model.JobDescriptor? = builder.job
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.s3control.model.DescribeJobResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DescribeJobResponse(")
append("job=$job")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = job?.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 DescribeJobResponse
if (job != other.job) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.s3control.model.DescribeJobResponse = Builder(this).apply(block).build()
public class Builder {
/**
* Contains the configuration parameters and status for the job specified in the `Describe Job` request.
*/
public var job: aws.sdk.kotlin.services.s3control.model.JobDescriptor? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.s3control.model.DescribeJobResponse) : this() {
this.job = x.job
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.s3control.model.DescribeJobResponse = DescribeJobResponse(this)
/**
* construct an [aws.sdk.kotlin.services.s3control.model.JobDescriptor] inside the given [block]
*/
public fun job(block: aws.sdk.kotlin.services.s3control.model.JobDescriptor.Builder.() -> kotlin.Unit) {
this.job = aws.sdk.kotlin.services.s3control.model.JobDescriptor.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy