Interface CfnTemplate.GeneralFlagsV2Property

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

@Stability(Stable) public static interface CfnTemplate.GeneralFlagsV2Property extends software.amazon.jsii.JsiiSerializable
General flags for v2 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.*;
 GeneralFlagsV2Property generalFlagsV2Property = GeneralFlagsV2Property.builder()
         .autoEnrollment(false)
         .machineType(false)
         .build();
 

See Also: