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

commonMain.aws.sdk.kotlin.services.medicalimaging.model.CreateDatastoreResponse.kt Maven / Gradle / Ivy

The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.medicalimaging.model

import aws.smithy.kotlin.runtime.SdkDsl

public class CreateDatastoreResponse private constructor(builder: Builder) {
    /**
     * The data store identifier.
     */
    public val datastoreId: kotlin.String = requireNotNull(builder.datastoreId) { "A non-null value must be provided for datastoreId" }
    /**
     * The data store status.
     */
    public val datastoreStatus: aws.sdk.kotlin.services.medicalimaging.model.DatastoreStatus = requireNotNull(builder.datastoreStatus) { "A non-null value must be provided for datastoreStatus" }

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

    override fun toString(): kotlin.String = buildString {
        append("CreateDatastoreResponse(")
        append("datastoreId=$datastoreId,")
        append("datastoreStatus=$datastoreStatus")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = datastoreId.hashCode()
        result = 31 * result + (datastoreStatus.hashCode())
        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 CreateDatastoreResponse

        if (datastoreId != other.datastoreId) return false
        if (datastoreStatus != other.datastoreStatus) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The data store identifier.
         */
        public var datastoreId: kotlin.String? = null
        /**
         * The data store status.
         */
        public var datastoreStatus: aws.sdk.kotlin.services.medicalimaging.model.DatastoreStatus? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.medicalimaging.model.CreateDatastoreResponse) : this() {
            this.datastoreId = x.datastoreId
            this.datastoreStatus = x.datastoreStatus
        }

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

        internal fun correctErrors(): Builder {
            if (datastoreId == null) datastoreId = ""
            if (datastoreStatus == null) datastoreStatus = DatastoreStatus.SdkUnknown("no value provided")
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy