Certificate Key Usage Args
data class CertificateKeyUsageArgs(val crlSign: Output<Boolean>? = null, val dataEncipherment: Output<Boolean>? = null, val decipherOnly: Output<Boolean>? = null, val digitalSignature: Output<Boolean>? = null, val encipherOnly: Output<Boolean>? = null, val keyAgreement: Output<Boolean>? = null, val keyCertSign: Output<Boolean>? = null, val keyEncipherment: Output<Boolean>? = null, val nonRepudiation: Output<Boolean>? = null) : ConvertibleToJava<CertificateKeyUsageArgs>
Structure that contains X.509 KeyUsage information.
Constructors
Link copied to clipboard
fun CertificateKeyUsageArgs(crlSign: Output<Boolean>? = null, dataEncipherment: Output<Boolean>? = null, decipherOnly: Output<Boolean>? = null, digitalSignature: Output<Boolean>? = null, encipherOnly: Output<Boolean>? = null, keyAgreement: Output<Boolean>? = null, keyCertSign: Output<Boolean>? = null, keyEncipherment: Output<Boolean>? = null, nonRepudiation: Output<Boolean>? = null)