commonMain.aws.sdk.kotlin.services.elastictranscoder.model.UpdatePipelineStatusRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elastictranscoder-jvm Show documentation
Show all versions of elastictranscoder-jvm Show documentation
The AWS SDK for Kotlin client for Elastic Transcoder
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.elastictranscoder.model
/**
* The `UpdatePipelineStatusRequest` structure.
*/
public class UpdatePipelineStatusRequest private constructor(builder: Builder) {
/**
* The identifier of the pipeline to update.
*/
public val id: kotlin.String? = builder.id
/**
* The desired status of the pipeline:
* + `Active`: The pipeline is processing jobs.
* + `Paused`: The pipeline is not currently processing jobs.
*/
public val status: kotlin.String? = builder.status
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.elastictranscoder.model.UpdatePipelineStatusRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdatePipelineStatusRequest(")
append("id=$id,")
append("status=$status")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = id?.hashCode() ?: 0
result = 31 * result + (status?.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 UpdatePipelineStatusRequest
if (id != other.id) return false
if (status != other.status) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.elastictranscoder.model.UpdatePipelineStatusRequest = Builder(this).apply(block).build()
public class Builder {
/**
* The identifier of the pipeline to update.
*/
public var id: kotlin.String? = null
/**
* The desired status of the pipeline:
* + `Active`: The pipeline is processing jobs.
* + `Paused`: The pipeline is not currently processing jobs.
*/
public var status: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.elastictranscoder.model.UpdatePipelineStatusRequest) : this() {
this.id = x.id
this.status = x.status
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.elastictranscoder.model.UpdatePipelineStatusRequest = UpdatePipelineStatusRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy