Interface CfnTemplate.EnrollmentFlagsV2Property
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnTemplate.EnrollmentFlagsV2Property.Jsii$Proxy
- Enclosing class:
- CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.EnrollmentFlagsV2Property
extends software.amazon.jsii.JsiiSerializable
Template configurations for v2 template schema.
 
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.*;
 EnrollmentFlagsV2Property enrollmentFlagsV2Property = EnrollmentFlagsV2Property.builder()
         .enableKeyReuseOnNtTokenKeysetStorageFull(false)
         .includeSymmetricAlgorithms(false)
         .noSecurityExtension(false)
         .removeInvalidCertificateFromPersonalStore(false)
         .userInteractionRequired(false)
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplate.EnrollmentFlagsV2Propertystatic final classAn implementation forCfnTemplate.EnrollmentFlagsV2Property
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()default ObjectAllow renewal using the same key.default ObjectInclude symmetric algorithms allowed by the subject.default ObjectThis flag instructs the CA to not include the security extension szOID_NTDS_CA_SECURITY_EXT (OID:1.3.6.1.4.1.311.25.2), as specified in [MS-WCCE] sections 2.2.2.7.7.4 and 3.2.2.6.2.1.4.5.9, in the issued certificate.default ObjectDelete expired or revoked certificates instead of archiving them.default ObjectRequire user interaction when the subject is enrolled and the private key associated with the certificate is used.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getEnableKeyReuseOnNtTokenKeysetStorageFullAllow renewal using the same key.Returns union: either BooleanorIResolvable- See Also:
 
- 
getIncludeSymmetricAlgorithmsInclude symmetric algorithms allowed by the subject.Returns union: either BooleanorIResolvable- See Also:
 
- 
getNoSecurityExtensionThis flag instructs the CA to not include the security extension szOID_NTDS_CA_SECURITY_EXT (OID:1.3.6.1.4.1.311.25.2), as specified in [MS-WCCE] sections 2.2.2.7.7.4 and 3.2.2.6.2.1.4.5.9, in the issued certificate. This addresses a Windows Kerberos elevation-of-privilege vulnerability.Returns union: either BooleanorIResolvable- See Also:
 
- 
getRemoveInvalidCertificateFromPersonalStoreDelete expired or revoked certificates instead of archiving them.Returns union: either BooleanorIResolvable- See Also:
 
- 
getUserInteractionRequiredRequire user interaction when the subject is enrolled and the private key associated with the certificate is used.Returns union: either BooleanorIResolvable- See Also:
 
- 
builder
 
-