commonMain.aws.sdk.kotlin.services.glue.model.DataQualityRuleResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glue-jvm Show documentation
Show all versions of glue-jvm Show documentation
The AWS SDK for Kotlin client for Glue
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.glue.model
/**
* Describes the result of the evaluation of a data quality rule.
*/
public class DataQualityRuleResult private constructor(builder: Builder) {
/**
* A description of the data quality rule.
*/
public val description: kotlin.String? = builder.description
/**
* A map of metrics associated with the evaluation of the rule.
*/
public val evaluatedMetrics: Map? = builder.evaluatedMetrics
/**
* An evaluation message.
*/
public val evaluationMessage: kotlin.String? = builder.evaluationMessage
/**
* The name of the data quality rule.
*/
public val name: kotlin.String? = builder.name
/**
* A pass or fail status for the rule.
*/
public val result: aws.sdk.kotlin.services.glue.model.DataQualityRuleResultStatus? = builder.result
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.DataQualityRuleResult = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DataQualityRuleResult(")
append("description=$description,")
append("evaluatedMetrics=$evaluatedMetrics,")
append("evaluationMessage=$evaluationMessage,")
append("name=$name,")
append("result=$result")
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)
result = 31 * result + (result?.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 DataQualityRuleResult
if (description != other.description) return false
if (evaluatedMetrics != other.evaluatedMetrics) return false
if (evaluationMessage != other.evaluationMessage) return false
if (name != other.name) return false
if (result != other.result) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.DataQualityRuleResult = Builder(this).apply(block).build()
public class Builder {
/**
* A description of the data quality rule.
*/
public var description: kotlin.String? = null
/**
* A map of metrics associated with the evaluation of the rule.
*/
public var evaluatedMetrics: Map? = null
/**
* An evaluation message.
*/
public var evaluationMessage: kotlin.String? = null
/**
* The name of the data quality rule.
*/
public var name: kotlin.String? = null
/**
* A pass or fail status for the rule.
*/
public var result: aws.sdk.kotlin.services.glue.model.DataQualityRuleResultStatus? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.DataQualityRuleResult) : this() {
this.description = x.description
this.evaluatedMetrics = x.evaluatedMetrics
this.evaluationMessage = x.evaluationMessage
this.name = x.name
this.result = x.result
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.DataQualityRuleResult = DataQualityRuleResult(this)
internal fun correctErrors(): Builder {
return this
}
}
}