AsymmetricEncryptedSecretArgs

data class AsymmetricEncryptedSecretArgs(val encryptionAlgorithm: Output<Either<String, EncryptionAlgorithm>>, val encryptionCertThumbprint: Output<String>? = null, val value: Output<String>) : ConvertibleToJava<AsymmetricEncryptedSecretArgs>

Represent the secrets intended for encryption with asymmetric key pair.

Constructors

Link copied to clipboard
constructor(encryptionAlgorithm: Output<Either<String, EncryptionAlgorithm>>, encryptionCertThumbprint: Output<String>? = null, value: Output<String>)

Properties

Link copied to clipboard

The algorithm used to encrypt "Value".

Link copied to clipboard
val encryptionCertThumbprint: Output<String>? = null

Thumbprint certificate used to encrypt \"Value\". If the value is unencrypted, it will be null.

Link copied to clipboard
val value: Output<String>

The value of the secret.

Functions

Link copied to clipboard
open override fun toJava(): AsymmetricEncryptedSecretArgs