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

commonMain.aws.sdk.kotlin.services.dataexchange.model.GetJobResponse.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.dataexchange.model

import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.time.Instant

public class GetJobResponse private constructor(builder: Builder) {
    /**
     * The ARN for the job.
     */
    public val arn: kotlin.String? = builder.arn
    /**
     * The date and time that the job was created, in ISO 8601 format.
     */
    public val createdAt: aws.smithy.kotlin.runtime.time.Instant? = builder.createdAt
    /**
     * Details about the job.
     */
    public val details: aws.sdk.kotlin.services.dataexchange.model.ResponseDetails? = builder.details
    /**
     * The errors associated with jobs.
     */
    public val errors: List? = builder.errors
    /**
     * The unique identifier for the job.
     */
    public val id: kotlin.String? = builder.id
    /**
     * The state of the job.
     */
    public val state: aws.sdk.kotlin.services.dataexchange.model.State? = builder.state
    /**
     * The job type.
     */
    public val type: aws.sdk.kotlin.services.dataexchange.model.Type? = builder.type
    /**
     * The date and time that the job was last updated, in ISO 8601 format.
     */
    public val updatedAt: aws.smithy.kotlin.runtime.time.Instant? = builder.updatedAt

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

    override fun toString(): kotlin.String = buildString {
        append("GetJobResponse(")
        append("arn=$arn,")
        append("createdAt=$createdAt,")
        append("details=$details,")
        append("errors=$errors,")
        append("id=$id,")
        append("state=$state,")
        append("type=$type,")
        append("updatedAt=$updatedAt")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = arn?.hashCode() ?: 0
        result = 31 * result + (createdAt?.hashCode() ?: 0)
        result = 31 * result + (details?.hashCode() ?: 0)
        result = 31 * result + (errors?.hashCode() ?: 0)
        result = 31 * result + (id?.hashCode() ?: 0)
        result = 31 * result + (state?.hashCode() ?: 0)
        result = 31 * result + (type?.hashCode() ?: 0)
        result = 31 * result + (updatedAt?.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 (arn != other.arn) return false
        if (createdAt != other.createdAt) return false
        if (details != other.details) return false
        if (errors != other.errors) return false
        if (id != other.id) return false
        if (state != other.state) return false
        if (type != other.type) return false
        if (updatedAt != other.updatedAt) return false

        return true
    }

    public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.dataexchange.model.GetJobResponse = Builder(this).apply(block).build()

    @SdkDsl
    public class Builder {
        /**
         * The ARN for the job.
         */
        public var arn: kotlin.String? = null
        /**
         * The date and time that the job was created, in ISO 8601 format.
         */
        public var createdAt: aws.smithy.kotlin.runtime.time.Instant? = null
        /**
         * Details about the job.
         */
        public var details: aws.sdk.kotlin.services.dataexchange.model.ResponseDetails? = null
        /**
         * The errors associated with jobs.
         */
        public var errors: List? = null
        /**
         * The unique identifier for the job.
         */
        public var id: kotlin.String? = null
        /**
         * The state of the job.
         */
        public var state: aws.sdk.kotlin.services.dataexchange.model.State? = null
        /**
         * The job type.
         */
        public var type: aws.sdk.kotlin.services.dataexchange.model.Type? = null
        /**
         * The date and time that the job was last updated, in ISO 8601 format.
         */
        public var updatedAt: aws.smithy.kotlin.runtime.time.Instant? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.dataexchange.model.GetJobResponse) : this() {
            this.arn = x.arn
            this.createdAt = x.createdAt
            this.details = x.details
            this.errors = x.errors
            this.id = x.id
            this.state = x.state
            this.type = x.type
            this.updatedAt = x.updatedAt
        }

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

        /**
         * construct an [aws.sdk.kotlin.services.dataexchange.model.ResponseDetails] inside the given [block]
         */
        public fun details(block: aws.sdk.kotlin.services.dataexchange.model.ResponseDetails.Builder.() -> kotlin.Unit) {
            this.details = aws.sdk.kotlin.services.dataexchange.model.ResponseDetails.invoke(block)
        }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy