commonMain.aws.sdk.kotlin.services.translate.model.EncryptionKey.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of translate-jvm Show documentation
Show all versions of translate-jvm Show documentation
The AWS SDK for Kotlin client for Translate
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.translate.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* The encryption key used to encrypt this object.
*/
public class EncryptionKey private constructor(builder: Builder) {
/**
* The Amazon Resource Name (ARN) of the encryption key being used to encrypt this object.
*/
public val id: kotlin.String = requireNotNull(builder.id) { "A non-null value must be provided for id" }
/**
* The type of encryption key used by Amazon Translate to encrypt this object.
*/
public val type: aws.sdk.kotlin.services.translate.model.EncryptionKeyType = requireNotNull(builder.type) { "A non-null value must be provided for type" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.translate.model.EncryptionKey = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("EncryptionKey(")
append("id=$id,")
append("type=$type")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = id.hashCode()
result = 31 * result + (type.hashCode())
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 EncryptionKey
if (id != other.id) return false
if (type != other.type) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.translate.model.EncryptionKey = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The Amazon Resource Name (ARN) of the encryption key being used to encrypt this object.
*/
public var id: kotlin.String? = null
/**
* The type of encryption key used by Amazon Translate to encrypt this object.
*/
public var type: aws.sdk.kotlin.services.translate.model.EncryptionKeyType? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.translate.model.EncryptionKey) : this() {
this.id = x.id
this.type = x.type
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.translate.model.EncryptionKey = EncryptionKey(this)
internal fun correctErrors(): Builder {
if (id == null) id = ""
if (type == null) type = EncryptionKeyType.SdkUnknown("no value provided")
return this
}
}
}