Interface CfnTemplate.PrivateKeyAttributesV3Property

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

@Stability(Stable) public static interface CfnTemplate.PrivateKeyAttributesV3Property extends software.amazon.jsii.JsiiSerializable
Defines the attributes of the 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.*;
 PrivateKeyAttributesV3Property privateKeyAttributesV3Property = PrivateKeyAttributesV3Property.builder()
         .algorithm("algorithm")
         .keySpec("keySpec")
         .keyUsageProperty(KeyUsagePropertyProperty.builder()
                 .propertyFlags(KeyUsagePropertyFlagsProperty.builder()
                         .decrypt(false)
                         .keyAgreement(false)
                         .sign(false)
                         .build())
                 .propertyType("propertyType")
                 .build())
         .minimalKeyLength(123)
         // the properties below are optional
         .cryptoProviders(List.of("cryptoProviders"))
         .build();
 

See Also: