commonMain.aws.sdk.kotlin.services.devopsguru.model.ServiceInsightHealth.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
/**
* Contains the number of open proactive and reactive insights in an analyzed Amazon Web Services service.
*/
public class ServiceInsightHealth private constructor(builder: Builder) {
/**
* The number of open proactive insights in the Amazon Web Services service
*/
public val openProactiveInsights: kotlin.Int = builder.openProactiveInsights
/**
* The number of open reactive insights in the Amazon Web Services service
*/
public val openReactiveInsights: kotlin.Int = builder.openReactiveInsights
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.devopsguru.model.ServiceInsightHealth = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("ServiceInsightHealth(")
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 ServiceInsightHealth
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.ServiceInsightHealth = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The number of open proactive insights in the Amazon Web Services service
*/
public var openProactiveInsights: kotlin.Int = 0
/**
* The number of open reactive insights in the Amazon Web Services service
*/
public var openReactiveInsights: kotlin.Int = 0
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.devopsguru.model.ServiceInsightHealth) : this() {
this.openProactiveInsights = x.openProactiveInsights
this.openReactiveInsights = x.openReactiveInsights
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.devopsguru.model.ServiceInsightHealth = ServiceInsightHealth(this)
internal fun correctErrors(): Builder {
return this
}
}
}