commonMain.aws.sdk.kotlin.services.glue.model.JobBookmarksEncryption.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glue-jvm Show documentation
Show all versions of glue-jvm Show documentation
The AWS SDK for Kotlin client for Glue
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.glue.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Specifies how job bookmark data should be encrypted.
*/
public class JobBookmarksEncryption private constructor(builder: Builder) {
/**
* The encryption mode to use for job bookmarks data.
*/
public val jobBookmarksEncryptionMode: aws.sdk.kotlin.services.glue.model.JobBookmarksEncryptionMode? = builder.jobBookmarksEncryptionMode
/**
* The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.
*/
public val kmsKeyArn: kotlin.String? = builder.kmsKeyArn
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.glue.model.JobBookmarksEncryption = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("JobBookmarksEncryption(")
append("jobBookmarksEncryptionMode=$jobBookmarksEncryptionMode,")
append("kmsKeyArn=$kmsKeyArn")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = jobBookmarksEncryptionMode?.hashCode() ?: 0
result = 31 * result + (kmsKeyArn?.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 JobBookmarksEncryption
if (jobBookmarksEncryptionMode != other.jobBookmarksEncryptionMode) return false
if (kmsKeyArn != other.kmsKeyArn) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.glue.model.JobBookmarksEncryption = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The encryption mode to use for job bookmarks data.
*/
public var jobBookmarksEncryptionMode: aws.sdk.kotlin.services.glue.model.JobBookmarksEncryptionMode? = null
/**
* The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.
*/
public var kmsKeyArn: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.glue.model.JobBookmarksEncryption) : this() {
this.jobBookmarksEncryptionMode = x.jobBookmarksEncryptionMode
this.kmsKeyArn = x.kmsKeyArn
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.glue.model.JobBookmarksEncryption = JobBookmarksEncryption(this)
internal fun correctErrors(): Builder {
return this
}
}
}