
commonMain.aws.sdk.kotlin.services.translate.model.EncryptionKey.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.translate.model
/**
* 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? = builder.id
/**
* The type of encryption key used by Amazon Translate to encrypt this object.
*/
public val type: aws.sdk.kotlin.services.translate.model.EncryptionKeyType? = builder.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() ?: 0
result = 31 * result + (type?.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 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()
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)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy