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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplate.GeneralFlagsV3Property
static final class
An implementation forCfnTemplate.GeneralFlagsV3Property
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAutoEnrollment
Allows certificate issuance using autoenrollment.Set to TRUE to allow autoenrollment.
- See Also:
-
getMachineType
Defines if the template is for machines or users.Set to TRUE if the template is for machines. Set to FALSE if the template is for users
- See Also:
-
builder
-