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

commonMain.aws.sdk.kotlin.services.amplifybackend.model.CloneBackendResponse.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 CloneBackendResponse 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
    /**
     * 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

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

    override fun toString(): kotlin.String = buildString {
        append("CloneBackendResponse(")
        append("appId=$appId,")
        append("backendEnvironmentName=$backendEnvironmentName,")
        append("error=$error,")
        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 + (error?.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 CloneBackendResponse

        if (appId != other.appId) return false
        if (backendEnvironmentName != other.backendEnvironmentName) 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

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.amplifybackend.model.CloneBackendResponse = 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
        /**
         * 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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy