commonMain.aws.sdk.kotlin.services.codegurureviewer.model.KmsKeyDetails.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codegurureviewer-jvm Show documentation
Show all versions of codegurureviewer-jvm Show documentation
The AWS SDK for Kotlin client for CodeGuru Reviewer
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.codegurureviewer.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* An object that contains:
* + The encryption option for a repository association. It is either owned by Amazon Web Services Key Management Service (KMS) (`AWS_OWNED_CMK`) or customer managed (`CUSTOMER_MANAGED_CMK`).
* + The ID of the Amazon Web Services KMS key that is associated with a repository association.
*/
public class KmsKeyDetails private constructor(builder: Builder) {
/**
* The encryption option for a repository association. It is either owned by Amazon Web Services Key Management Service (KMS) (`AWS_OWNED_CMK`) or customer managed (`CUSTOMER_MANAGED_CMK`).
*/
public val encryptionOption: aws.sdk.kotlin.services.codegurureviewer.model.EncryptionOption? = builder.encryptionOption
/**
* The ID of the Amazon Web Services KMS key that is associated with a repository association.
*/
public val kmsKeyId: kotlin.String? = builder.kmsKeyId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.codegurureviewer.model.KmsKeyDetails = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("KmsKeyDetails(")
append("encryptionOption=$encryptionOption,")
append("kmsKeyId=$kmsKeyId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = encryptionOption?.hashCode() ?: 0
result = 31 * result + (kmsKeyId?.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 KmsKeyDetails
if (encryptionOption != other.encryptionOption) return false
if (kmsKeyId != other.kmsKeyId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.codegurureviewer.model.KmsKeyDetails = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The encryption option for a repository association. It is either owned by Amazon Web Services Key Management Service (KMS) (`AWS_OWNED_CMK`) or customer managed (`CUSTOMER_MANAGED_CMK`).
*/
public var encryptionOption: aws.sdk.kotlin.services.codegurureviewer.model.EncryptionOption? = null
/**
* The ID of the Amazon Web Services KMS key that is associated with a repository association.
*/
public var kmsKeyId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.codegurureviewer.model.KmsKeyDetails) : this() {
this.encryptionOption = x.encryptionOption
this.kmsKeyId = x.kmsKeyId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.codegurureviewer.model.KmsKeyDetails = KmsKeyDetails(this)
internal fun correctErrors(): Builder {
return this
}
}
}