commonMain.aws.sdk.kotlin.services.redshift.model.HsmStatus.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redshift-jvm Show documentation
Show all versions of redshift-jvm Show documentation
The AWS SDK for Kotlin client for Redshift
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.redshift.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Describes the status of changes to HSM settings.
*/
public class HsmStatus private constructor(builder: Builder) {
/**
* Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.
*/
public val hsmClientCertificateIdentifier: kotlin.String? = builder.hsmClientCertificateIdentifier
/**
* Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.
*/
public val hsmConfigurationIdentifier: kotlin.String? = builder.hsmConfigurationIdentifier
/**
* Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.
*
* Values: active, applying
*/
public val status: kotlin.String? = builder.status
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.HsmStatus = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("HsmStatus(")
append("hsmClientCertificateIdentifier=$hsmClientCertificateIdentifier,")
append("hsmConfigurationIdentifier=$hsmConfigurationIdentifier,")
append("status=$status")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = hsmClientCertificateIdentifier?.hashCode() ?: 0
result = 31 * result + (hsmConfigurationIdentifier?.hashCode() ?: 0)
result = 31 * result + (status?.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 HsmStatus
if (hsmClientCertificateIdentifier != other.hsmClientCertificateIdentifier) return false
if (hsmConfigurationIdentifier != other.hsmConfigurationIdentifier) return false
if (status != other.status) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.HsmStatus = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Specifies the name of the HSM client certificate the Amazon Redshift cluster uses to retrieve the data encryption keys stored in an HSM.
*/
public var hsmClientCertificateIdentifier: kotlin.String? = null
/**
* Specifies the name of the HSM configuration that contains the information the Amazon Redshift cluster can use to retrieve and store keys in an HSM.
*/
public var hsmConfigurationIdentifier: kotlin.String? = null
/**
* Reports whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.
*
* Values: active, applying
*/
public var status: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.HsmStatus) : this() {
this.hsmClientCertificateIdentifier = x.hsmClientCertificateIdentifier
this.hsmConfigurationIdentifier = x.hsmConfigurationIdentifier
this.status = x.status
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.HsmStatus = HsmStatus(this)
internal fun correctErrors(): Builder {
return this
}
}
}