All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.amplifybackend.model.UpdateBackendJobResponse.kt Maven / Gradle / Ivy

There is a newer version: 1.3.76
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.amplifybackend.model

import aws.smithy.kotlin.runtime.SdkDsl

public class UpdateBackendJobResponse 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 time when the job was created.
     */
    public val createTime: kotlin.String? = builder.createTime
    /**
     * If the request fails, this error is returned.
     */
    public val error: kotlin.String? = builder.error
    /**
     * The ID for the job.
     */
    public val jobId: kotlin.String? = builder.jobId
    /**
     * The name of the operation.
     */
    public val operation: kotlin.String? = builder.operation
    /**
     * The current status of the request.
     */
    public val status: kotlin.String? = builder.status
    /**
     * The time when the job was last updated.
     */
    public val updateTime: kotlin.String? = builder.updateTime

    public companion object {
        public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.amplifybackend.model.UpdateBackendJobResponse = Builder().apply(block).build()
    }

    override fun toString(): kotlin.String = buildString {
        append("UpdateBackendJobResponse(")
        append("appId=$appId,")
        append("backendEnvironmentName=$backendEnvironmentName,")
        append("createTime=$createTime,")
        append("error=$error,")
        append("jobId=$jobId,")
        append("operation=$operation,")
        append("status=$status,")
        append("updateTime=$updateTime")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = appId?.hashCode() ?: 0
        result = 31 * result + (backendEnvironmentName?.hashCode() ?: 0)
        result = 31 * result + (createTime?.hashCode() ?: 0)
        result = 31 * result + (error?.hashCode() ?: 0)
        result = 31 * result + (jobId?.hashCode() ?: 0)
        result = 31 * result + (operation?.hashCode() ?: 0)
        result = 31 * result + (status?.hashCode() ?: 0)
        result = 31 * result + (updateTime?.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 UpdateBackendJobResponse

        if (appId != other.appId) return false
        if (backendEnvironmentName != other.backendEnvironmentName) return false
        if (createTime != other.createTime) return false
        if (error != other.error) return false
        if (jobId != other.jobId) return false
        if (operation != other.operation) return false
        if (status != other.status) return false
        if (updateTime != other.updateTime) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.amplifybackend.model.UpdateBackendJobResponse = 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 time when the job was created.
         */
        public var createTime: kotlin.String? = null
        /**
         * If the request fails, this error is returned.
         */
        public var error: kotlin.String? = null
        /**
         * The ID for the job.
         */
        public var jobId: kotlin.String? = null
        /**
         * The name of the operation.
         */
        public var operation: kotlin.String? = null
        /**
         * The current status of the request.
         */
        public var status: kotlin.String? = null
        /**
         * The time when the job was last updated.
         */
        public var updateTime: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.amplifybackend.model.UpdateBackendJobResponse) : this() {
            this.appId = x.appId
            this.backendEnvironmentName = x.backendEnvironmentName
            this.createTime = x.createTime
            this.error = x.error
            this.jobId = x.jobId
            this.operation = x.operation
            this.status = x.status
            this.updateTime = x.updateTime
        }

        @PublishedApi
        internal fun build(): aws.sdk.kotlin.services.amplifybackend.model.UpdateBackendJobResponse = UpdateBackendJobResponse(this)

        internal fun correctErrors(): Builder {
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy