commonMain.aws.sdk.kotlin.services.computeoptimizer.model.Summary.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of computeoptimizer-jvm Show documentation
Show all versions of computeoptimizer-jvm Show documentation
The AWS SDK for Kotlin client for Compute Optimizer
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.computeoptimizer.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* The summary of a recommendation.
*/
public class Summary private constructor(builder: Builder) {
/**
* The finding classification of the recommendation.
*/
public val name: aws.sdk.kotlin.services.computeoptimizer.model.Finding? = builder.name
/**
* An array of objects that summarize a finding reason code.
*/
public val reasonCodeSummaries: List? = builder.reasonCodeSummaries
/**
* The value of the recommendation summary.
*/
public val value: kotlin.Double = builder.value
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.computeoptimizer.model.Summary = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("Summary(")
append("name=$name,")
append("reasonCodeSummaries=$reasonCodeSummaries,")
append("value=$value")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = name?.hashCode() ?: 0
result = 31 * result + (reasonCodeSummaries?.hashCode() ?: 0)
result = 31 * result + (value.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 Summary
if (name != other.name) return false
if (reasonCodeSummaries != other.reasonCodeSummaries) return false
if (!(value?.equals(other.value) ?: (other.value == null))) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.computeoptimizer.model.Summary = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The finding classification of the recommendation.
*/
public var name: aws.sdk.kotlin.services.computeoptimizer.model.Finding? = null
/**
* An array of objects that summarize a finding reason code.
*/
public var reasonCodeSummaries: List? = null
/**
* The value of the recommendation summary.
*/
public var value: kotlin.Double = 0.0
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.computeoptimizer.model.Summary) : this() {
this.name = x.name
this.reasonCodeSummaries = x.reasonCodeSummaries
this.value = x.value
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.computeoptimizer.model.Summary = Summary(this)
internal fun correctErrors(): Builder {
return this
}
}
}