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

commonMain.aws.sdk.kotlin.services.cleanrooms.model.SchemaStatusReason.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.cleanrooms.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * A reason why the schema status is set to its current value.
 */
public class SchemaStatusReason private constructor(builder: Builder) {
    /**
     * The schema status reason code.
     */
    public val code: aws.sdk.kotlin.services.cleanrooms.model.SchemaStatusReasonCode = requireNotNull(builder.code) { "A non-null value must be provided for code" }
    /**
     * An explanation of the schema status reason code.
     */
    public val message: kotlin.String = requireNotNull(builder.message) { "A non-null value must be provided for message" }

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

    override fun toString(): kotlin.String = buildString {
        append("SchemaStatusReason(")
        append("code=$code,")
        append("message=$message")
        append(")")
    }

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

        if (code != other.code) return false
        if (message != other.message) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * The schema status reason code.
         */
        public var code: aws.sdk.kotlin.services.cleanrooms.model.SchemaStatusReasonCode? = null
        /**
         * An explanation of the schema status reason code.
         */
        public var message: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.cleanrooms.model.SchemaStatusReason) : this() {
            this.code = x.code
            this.message = x.message
        }

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

        internal fun correctErrors(): Builder {
            if (code == null) code = SchemaStatusReasonCode.SdkUnknown("no value provided")
            if (message == null) message = ""
            return this
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy