Interface CfnTemplate.KeyUsagePropertyProperty

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

@Stability(Stable) public static interface CfnTemplate.KeyUsagePropertyProperty extends software.amazon.jsii.JsiiSerializable
The key usage property defines the purpose of the private key contained in the certificate.

You can specify specific purposes using property flags or all by using property type ALL.

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.pcaconnectorad.*;
 KeyUsagePropertyProperty keyUsagePropertyProperty = KeyUsagePropertyProperty.builder()
         .propertyFlags(KeyUsagePropertyFlagsProperty.builder()
                 .decrypt(false)
                 .keyAgreement(false)
                 .sign(false)
                 .build())
         .propertyType("propertyType")
         .build();
 

See Also: