commonMain.aws.sdk.kotlin.services.route53recoveryreadiness.model.RuleResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of route53recoveryreadiness-jvm Show documentation
Show all versions of route53recoveryreadiness-jvm Show documentation
The AWS SDK for Kotlin client for Route53 Recovery Readiness
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.route53recoveryreadiness.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.time.Instant
/**
* The result of a successful Rule request, with status for an individual rule.
*/
public class RuleResult private constructor(builder: Builder) {
/**
* The time the resource was last checked for readiness, in ISO-8601 format, UTC.
*/
public val lastCheckedTimestamp: aws.smithy.kotlin.runtime.time.Instant? = builder.lastCheckedTimestamp
/**
* Details about the resource's readiness.
*/
public val messages: List? = builder.messages
/**
* The readiness at rule level.
*/
public val readiness: aws.sdk.kotlin.services.route53recoveryreadiness.model.Readiness? = builder.readiness
/**
* The identifier of the rule.
*/
public val ruleId: kotlin.String? = builder.ruleId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.route53recoveryreadiness.model.RuleResult = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("RuleResult(")
append("lastCheckedTimestamp=$lastCheckedTimestamp,")
append("messages=$messages,")
append("readiness=$readiness,")
append("ruleId=$ruleId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = lastCheckedTimestamp?.hashCode() ?: 0
result = 31 * result + (messages?.hashCode() ?: 0)
result = 31 * result + (readiness?.hashCode() ?: 0)
result = 31 * result + (ruleId?.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 RuleResult
if (lastCheckedTimestamp != other.lastCheckedTimestamp) return false
if (messages != other.messages) return false
if (readiness != other.readiness) return false
if (ruleId != other.ruleId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.route53recoveryreadiness.model.RuleResult = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The time the resource was last checked for readiness, in ISO-8601 format, UTC.
*/
public var lastCheckedTimestamp: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* Details about the resource's readiness.
*/
public var messages: List? = null
/**
* The readiness at rule level.
*/
public var readiness: aws.sdk.kotlin.services.route53recoveryreadiness.model.Readiness? = null
/**
* The identifier of the rule.
*/
public var ruleId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.route53recoveryreadiness.model.RuleResult) : this() {
this.lastCheckedTimestamp = x.lastCheckedTimestamp
this.messages = x.messages
this.readiness = x.readiness
this.ruleId = x.ruleId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.route53recoveryreadiness.model.RuleResult = RuleResult(this)
internal fun correctErrors(): Builder {
return this
}
}
}