Interface CfnTemplate.PrivateKeyFlagsV4Property

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

@Stability(Stable) public static interface CfnTemplate.PrivateKeyFlagsV4Property extends software.amazon.jsii.JsiiSerializable
Private key flags for v4 templates specify the client compatibility, if the private key can be exported, if user input is required when using a private key, if an alternate signature algorithm should be used, and if certificates are renewed using the same private key.

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.*;
 PrivateKeyFlagsV4Property privateKeyFlagsV4Property = PrivateKeyFlagsV4Property.builder()
         .clientVersion("clientVersion")
         // the properties below are optional
         .exportableKey(false)
         .requireAlternateSignatureAlgorithm(false)
         .requireSameKeyRenewal(false)
         .strongKeyProtectionRequired(false)
         .useLegacyProvider(false)
         .build();
 

See Also: