commonMain.aws.sdk.kotlin.services.redshift.model.CreateHsmClientCertificateResponse.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
public class CreateHsmClientCertificateResponse private constructor(builder: Builder) {
/**
* Returns information about an HSM client certificate. The certificate is stored in a secure Hardware Storage Module (HSM), and used by the Amazon Redshift cluster to encrypt data files.
*/
public val hsmClientCertificate: aws.sdk.kotlin.services.redshift.model.HsmClientCertificate? = builder.hsmClientCertificate
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.redshift.model.CreateHsmClientCertificateResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("CreateHsmClientCertificateResponse(")
append("hsmClientCertificate=$hsmClientCertificate")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = hsmClientCertificate?.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 CreateHsmClientCertificateResponse
if (hsmClientCertificate != other.hsmClientCertificate) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.redshift.model.CreateHsmClientCertificateResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* Returns information about an HSM client certificate. The certificate is stored in a secure Hardware Storage Module (HSM), and used by the Amazon Redshift cluster to encrypt data files.
*/
public var hsmClientCertificate: aws.sdk.kotlin.services.redshift.model.HsmClientCertificate? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.redshift.model.CreateHsmClientCertificateResponse) : this() {
this.hsmClientCertificate = x.hsmClientCertificate
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.redshift.model.CreateHsmClientCertificateResponse = CreateHsmClientCertificateResponse(this)
/**
* construct an [aws.sdk.kotlin.services.redshift.model.HsmClientCertificate] inside the given [block]
*/
public fun hsmClientCertificate(block: aws.sdk.kotlin.services.redshift.model.HsmClientCertificate.Builder.() -> kotlin.Unit) {
this.hsmClientCertificate = aws.sdk.kotlin.services.redshift.model.HsmClientCertificate.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}