commonMain.aws.sdk.kotlin.services.resiliencehub.model.DescribeResiliencyPolicyResponse.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
public class DescribeResiliencyPolicyResponse private constructor(builder: Builder) {
/**
* Information about the specific resiliency policy, returned as an object. This object includes creation time, data location constraints, its name, description, tags, the recovery time objective (RTO) and recovery point objective (RPO) in seconds, and more.
*/
public val policy: aws.sdk.kotlin.services.resiliencehub.model.ResiliencyPolicy? = builder.policy
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.resiliencehub.model.DescribeResiliencyPolicyResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DescribeResiliencyPolicyResponse(")
append("policy=$policy")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = policy?.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 DescribeResiliencyPolicyResponse
if (policy != other.policy) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.resiliencehub.model.DescribeResiliencyPolicyResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Information about the specific resiliency policy, returned as an object. This object includes creation time, data location constraints, its name, description, tags, the recovery time objective (RTO) and recovery point objective (RPO) in seconds, and more.
*/
public var policy: aws.sdk.kotlin.services.resiliencehub.model.ResiliencyPolicy? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.resiliencehub.model.DescribeResiliencyPolicyResponse) : this() {
this.policy = x.policy
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.resiliencehub.model.DescribeResiliencyPolicyResponse = DescribeResiliencyPolicyResponse(this)
/**
* construct an [aws.sdk.kotlin.services.resiliencehub.model.ResiliencyPolicy] inside the given [block]
*/
public fun policy(block: aws.sdk.kotlin.services.resiliencehub.model.ResiliencyPolicy.Builder.() -> kotlin.Unit) {
this.policy = aws.sdk.kotlin.services.resiliencehub.model.ResiliencyPolicy.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}