commonMain.aws.sdk.kotlin.services.resiliencehub.model.FailurePolicy.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resiliencehub-jvm Show documentation
Show all versions of resiliencehub-jvm Show documentation
The AWS SDK for Kotlin client for resiliencehub
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.resiliencehub.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Defines a failure policy.
*/
public class FailurePolicy private constructor(builder: Builder) {
/**
* Recovery Point Objective (RPO) in seconds.
*/
public val rpoInSecs: kotlin.Int = builder.rpoInSecs
/**
* Recovery Time Objective (RTO) in seconds.
*/
public val rtoInSecs: kotlin.Int = builder.rtoInSecs
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.resiliencehub.model.FailurePolicy = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("FailurePolicy(")
append("rpoInSecs=$rpoInSecs,")
append("rtoInSecs=$rtoInSecs")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = rpoInSecs
result = 31 * result + (rtoInSecs)
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 FailurePolicy
if (rpoInSecs != other.rpoInSecs) return false
if (rtoInSecs != other.rtoInSecs) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.resiliencehub.model.FailurePolicy = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Recovery Point Objective (RPO) in seconds.
*/
public var rpoInSecs: kotlin.Int = 0
/**
* Recovery Time Objective (RTO) in seconds.
*/
public var rtoInSecs: kotlin.Int = 0
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.resiliencehub.model.FailurePolicy) : this() {
this.rpoInSecs = x.rpoInSecs
this.rtoInSecs = x.rtoInSecs
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.resiliencehub.model.FailurePolicy = FailurePolicy(this)
internal fun correctErrors(): Builder {
return this
}
}
}