Interface CfnCertificate.KeyUsageProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCertificate.KeyUsageProperty.Jsii$Proxy
Enclosing class:
CfnCertificate

@Stability(Stable) public static interface CfnCertificate.KeyUsageProperty extends software.amazon.jsii.JsiiSerializable
Defines one or more purposes for which the key contained in the certificate can be used.

Default value for each option is false.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.acmpca.*;
 KeyUsageProperty keyUsageProperty = KeyUsageProperty.builder()
         .crlSign(false)
         .dataEncipherment(false)
         .decipherOnly(false)
         .digitalSignature(false)
         .encipherOnly(false)
         .keyAgreement(false)
         .keyCertSign(false)
         .keyEncipherment(false)
         .nonRepudiation(false)
         .build();
 

See Also: