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

commonMain.aws.sdk.kotlin.services.glue.model.DataQualityAnalyzerResult.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.glue.model

import aws.smithy.kotlin.runtime.SdkDsl

/**
 * Describes the result of the evaluation of a data quality analyzer.
 */
public class DataQualityAnalyzerResult private constructor(builder: Builder) {
    /**
     * A description of the data quality analyzer.
     */
    public val description: kotlin.String? = builder.description
    /**
     * A map of metrics associated with the evaluation of the analyzer.
     */
    public val evaluatedMetrics: Map? = builder.evaluatedMetrics
    /**
     * An evaluation message.
     */
    public val evaluationMessage: kotlin.String? = builder.evaluationMessage
    /**
     * The name of the data quality analyzer.
     */
    public val name: kotlin.String? = builder.name

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

    override fun toString(): kotlin.String = buildString {
        append("DataQualityAnalyzerResult(")
        append("description=*** Sensitive Data Redacted ***,")
        append("evaluatedMetrics=*** Sensitive Data Redacted ***,")
        append("evaluationMessage=*** Sensitive Data Redacted ***,")
        append("name=$name")
        append(")")
    }

    override fun hashCode(): kotlin.Int {
        var result = description?.hashCode() ?: 0
        result = 31 * result + (evaluatedMetrics?.hashCode() ?: 0)
        result = 31 * result + (evaluationMessage?.hashCode() ?: 0)
        result = 31 * result + (name?.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 DataQualityAnalyzerResult

        if (description != other.description) return false
        if (evaluatedMetrics != other.evaluatedMetrics) return false
        if (evaluationMessage != other.evaluationMessage) return false
        if (name != other.name) return false

        return true
    }

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

    @SdkDsl
    public class Builder {
        /**
         * A description of the data quality analyzer.
         */
        public var description: kotlin.String? = null
        /**
         * A map of metrics associated with the evaluation of the analyzer.
         */
        public var evaluatedMetrics: Map? = null
        /**
         * An evaluation message.
         */
        public var evaluationMessage: kotlin.String? = null
        /**
         * The name of the data quality analyzer.
         */
        public var name: kotlin.String? = null

        @PublishedApi
        internal constructor()
        @PublishedApi
        internal constructor(x: aws.sdk.kotlin.services.glue.model.DataQualityAnalyzerResult) : this() {
            this.description = x.description
            this.evaluatedMetrics = x.evaluatedMetrics
            this.evaluationMessage = x.evaluationMessage
            this.name = x.name
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy