commonMain.aws.sdk.kotlin.services.mediaconvert.model.GetJobResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mediaconvert Show documentation
Show all versions of mediaconvert Show documentation
The AWS SDK for Kotlin client for MediaConvert
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.mediaconvert.model
public class GetJobResponse private constructor(builder: Builder) {
/**
* Each job converts an input file into an output file or files. For more information, see the User Guide at https://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
*/
public val job: aws.sdk.kotlin.services.mediaconvert.model.Job? = builder.job
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.mediaconvert.model.GetJobResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetJobResponse(")
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 GetJobResponse
if (job != other.job) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.mediaconvert.model.GetJobResponse = Builder(this).apply(block).build()
public class Builder {
/**
* Each job converts an input file into an output file or files. For more information, see the User Guide at https://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html
*/
public var job: aws.sdk.kotlin.services.mediaconvert.model.Job? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.mediaconvert.model.GetJobResponse) : this() {
this.job = x.job
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.mediaconvert.model.GetJobResponse = GetJobResponse(this)
/**
* construct an [aws.sdk.kotlin.services.mediaconvert.model.Job] inside the given [block]
*/
public fun job(block: aws.sdk.kotlin.services.mediaconvert.model.Job.Builder.() -> kotlin.Unit) {
this.job = aws.sdk.kotlin.services.mediaconvert.model.Job.invoke(block)
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy