commonMain.aws.sdk.kotlin.services.secretsmanager.model.CancelRotateSecretResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of secretsmanager-jvm Show documentation
Show all versions of secretsmanager-jvm Show documentation
The AWS SDK for Kotlin client for Secrets Manager
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.secretsmanager.model
import aws.smithy.kotlin.runtime.SdkDsl
public class CancelRotateSecretResponse private constructor(builder: Builder) {
/**
* The ARN of the secret.
*/
public val arn: kotlin.String? = builder.arn
/**
* The name of the secret.
*/
public val name: kotlin.String? = builder.name
/**
* The unique identifier of the version of the secret created during the rotation. This version might not be complete, and should be evaluated for possible deletion. We recommend that you remove the `VersionStage` value `AWSPENDING` from this version so that Secrets Manager can delete it. Failing to clean up a cancelled rotation can block you from starting future rotations.
*/
public val versionId: kotlin.String? = builder.versionId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.secretsmanager.model.CancelRotateSecretResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CancelRotateSecretResponse(")
append("arn=$arn,")
append("name=$name,")
append("versionId=$versionId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = arn?.hashCode() ?: 0
result = 31 * result + (name?.hashCode() ?: 0)
result = 31 * result + (versionId?.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 CancelRotateSecretResponse
if (arn != other.arn) return false
if (name != other.name) return false
if (versionId != other.versionId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.secretsmanager.model.CancelRotateSecretResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The ARN of the secret.
*/
public var arn: kotlin.String? = null
/**
* The name of the secret.
*/
public var name: kotlin.String? = null
/**
* The unique identifier of the version of the secret created during the rotation. This version might not be complete, and should be evaluated for possible deletion. We recommend that you remove the `VersionStage` value `AWSPENDING` from this version so that Secrets Manager can delete it. Failing to clean up a cancelled rotation can block you from starting future rotations.
*/
public var versionId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.secretsmanager.model.CancelRotateSecretResponse) : this() {
this.arn = x.arn
this.name = x.name
this.versionId = x.versionId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.secretsmanager.model.CancelRotateSecretResponse = CancelRotateSecretResponse(this)
internal fun correctErrors(): Builder {
return this
}
}
}