Interface CfnTemplatePropsMixin.ApplicationPoliciesProperty

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

@Stability(Stable) public static interface CfnTemplatePropsMixin.ApplicationPoliciesProperty extends software.amazon.jsii.JsiiSerializable
Application policies describe what the certificate can be used for.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.pcaconnectorad.*;
 ApplicationPoliciesProperty applicationPoliciesProperty = ApplicationPoliciesProperty.builder()
         .critical(false)
         .policies(List.of(ApplicationPolicyProperty.builder()
                 .policyObjectIdentifier("policyObjectIdentifier")
                 .policyType("policyType")
                 .build()))
         .build();
 

See Also: