commonMain.aws.sdk.kotlin.services.amplifybackend.model.UpdateBackendJobRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of amplifybackend-jvm Show documentation
Show all versions of amplifybackend-jvm Show documentation
The AWS SDK for Kotlin client for AmplifyBackend
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.amplifybackend.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* The request body for GetBackendJob.
*/
public class UpdateBackendJobRequest private constructor(builder: Builder) {
/**
* The app ID.
*/
public val appId: kotlin.String? = builder.appId
/**
* The name of the backend environment.
*/
public val backendEnvironmentName: kotlin.String? = builder.backendEnvironmentName
/**
* The ID for the job.
*/
public val jobId: kotlin.String? = builder.jobId
/**
* Filters the list of response objects to include only those with the specified operation name.
*/
public val operation: kotlin.String? = builder.operation
/**
* Filters the list of response objects to include only those with the specified status.
*/
public val status: kotlin.String? = builder.status
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.amplifybackend.model.UpdateBackendJobRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("UpdateBackendJobRequest(")
append("appId=$appId,")
append("backendEnvironmentName=$backendEnvironmentName,")
append("jobId=$jobId,")
append("operation=$operation,")
append("status=$status")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = appId?.hashCode() ?: 0
result = 31 * result + (backendEnvironmentName?.hashCode() ?: 0)
result = 31 * result + (jobId?.hashCode() ?: 0)
result = 31 * result + (operation?.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 UpdateBackendJobRequest
if (appId != other.appId) return false
if (backendEnvironmentName != other.backendEnvironmentName) return false
if (jobId != other.jobId) return false
if (operation != other.operation) return false
if (status != other.status) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.amplifybackend.model.UpdateBackendJobRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The app ID.
*/
public var appId: kotlin.String? = null
/**
* The name of the backend environment.
*/
public var backendEnvironmentName: kotlin.String? = null
/**
* The ID for the job.
*/
public var jobId: kotlin.String? = null
/**
* Filters the list of response objects to include only those with the specified operation name.
*/
public var operation: kotlin.String? = null
/**
* Filters the list of response objects to include only those with the specified status.
*/
public var status: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.amplifybackend.model.UpdateBackendJobRequest) : this() {
this.appId = x.appId
this.backendEnvironmentName = x.backendEnvironmentName
this.jobId = x.jobId
this.operation = x.operation
this.status = x.status
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.amplifybackend.model.UpdateBackendJobRequest = UpdateBackendJobRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}