commonMain.aws.sdk.kotlin.services.devopsguru.model.AccountInsightHealth.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devopsguru-jvm Show documentation
Show all versions of devopsguru-jvm Show documentation
The AWS SDK for Kotlin client for DevOps Guru
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.devopsguru.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Information about the number of open reactive and proactive insights that can be used to gauge the health of your system.
*/
public class AccountInsightHealth private constructor(builder: Builder) {
/**
* An integer that specifies the number of open proactive insights in your Amazon Web Services account.
*/
public val openProactiveInsights: kotlin.Int = builder.openProactiveInsights
/**
* An integer that specifies the number of open reactive insights in your Amazon Web Services account.
*/
public val openReactiveInsights: kotlin.Int = builder.openReactiveInsights
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.devopsguru.model.AccountInsightHealth = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("AccountInsightHealth(")
append("openProactiveInsights=$openProactiveInsights,")
append("openReactiveInsights=$openReactiveInsights")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = openProactiveInsights
result = 31 * result + (openReactiveInsights)
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 AccountInsightHealth
if (openProactiveInsights != other.openProactiveInsights) return false
if (openReactiveInsights != other.openReactiveInsights) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.devopsguru.model.AccountInsightHealth = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* An integer that specifies the number of open proactive insights in your Amazon Web Services account.
*/
public var openProactiveInsights: kotlin.Int = 0
/**
* An integer that specifies the number of open reactive insights in your Amazon Web Services account.
*/
public var openReactiveInsights: kotlin.Int = 0
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.devopsguru.model.AccountInsightHealth) : this() {
this.openProactiveInsights = x.openProactiveInsights
this.openReactiveInsights = x.openReactiveInsights
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.devopsguru.model.AccountInsightHealth = AccountInsightHealth(this)
internal fun correctErrors(): Builder {
return this
}
}
}