commonMain.aws.sdk.kotlin.services.lookoutmetrics.model.DimensionValueContribution.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lookoutmetrics-jvm Show documentation
Show all versions of lookoutmetrics-jvm Show documentation
The AWS SDK for Kotlin client for LookoutMetrics
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.lookoutmetrics.model
/**
* The severity of a value of a dimension that contributed to an anomaly.
*/
public class DimensionValueContribution private constructor(builder: Builder) {
/**
* The severity score of the value.
*/
public val contributionScore: kotlin.Double? = builder.contributionScore
/**
* The value of the dimension.
*/
public val dimensionValue: kotlin.String? = builder.dimensionValue
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.lookoutmetrics.model.DimensionValueContribution = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DimensionValueContribution(")
append("contributionScore=$contributionScore,")
append("dimensionValue=$dimensionValue")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = contributionScore?.hashCode() ?: 0
result = 31 * result + (dimensionValue?.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 DimensionValueContribution
if (contributionScore != other.contributionScore) return false
if (dimensionValue != other.dimensionValue) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.lookoutmetrics.model.DimensionValueContribution = Builder(this).apply(block).build()
public class Builder {
/**
* The severity score of the value.
*/
public var contributionScore: kotlin.Double? = null
/**
* The value of the dimension.
*/
public var dimensionValue: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.lookoutmetrics.model.DimensionValueContribution) : this() {
this.contributionScore = x.contributionScore
this.dimensionValue = x.dimensionValue
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.lookoutmetrics.model.DimensionValueContribution = DimensionValueContribution(this)
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy