Interface CfnTemplate.GeneralFlagsV3Property

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

@Stability(Stable) public static interface CfnTemplate.GeneralFlagsV3Property extends software.amazon.jsii.JsiiSerializable
General flags for v3 template schema that defines if the template is for a machine or a user and if the template can be issued using autoenrollment.

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.*;
 GeneralFlagsV3Property generalFlagsV3Property = GeneralFlagsV3Property.builder()
         .autoEnrollment(false)
         .machineType(false)
         .build();
 

See Also: