Interface CfnTemplate.TemplateV2Property
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.TemplateV2Property.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.TemplateV2Property
extends software.amazon.jsii.JsiiSerializable
v2 template schema that uses Legacy Cryptographic Providers.
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.*; TemplateV2Property templateV2Property = TemplateV2Property.builder() .certificateValidity(CertificateValidityProperty.builder() .renewalPeriod(ValidityPeriodProperty.builder() .period(123) .periodType("periodType") .build()) .validityPeriod(ValidityPeriodProperty.builder() .period(123) .periodType("periodType") .build()) .build()) .enrollmentFlags(EnrollmentFlagsV2Property.builder() .enableKeyReuseOnNtTokenKeysetStorageFull(false) .includeSymmetricAlgorithms(false) .noSecurityExtension(false) .removeInvalidCertificateFromPersonalStore(false) .userInteractionRequired(false) .build()) .extensions(ExtensionsV2Property.builder() .keyUsage(KeyUsageProperty.builder() .usageFlags(KeyUsageFlagsProperty.builder() .dataEncipherment(false) .digitalSignature(false) .keyAgreement(false) .keyEncipherment(false) .nonRepudiation(false) .build()) // the properties below are optional .critical(false) .build()) // the properties below are optional .applicationPolicies(ApplicationPoliciesProperty.builder() .policies(List.of(ApplicationPolicyProperty.builder() .policyObjectIdentifier("policyObjectIdentifier") .policyType("policyType") .build())) // the properties below are optional .critical(false) .build()) .build()) .generalFlags(GeneralFlagsV2Property.builder() .autoEnrollment(false) .machineType(false) .build()) .privateKeyAttributes(PrivateKeyAttributesV2Property.builder() .keySpec("keySpec") .minimalKeyLength(123) // the properties below are optional .cryptoProviders(List.of("cryptoProviders")) .build()) .privateKeyFlags(PrivateKeyFlagsV2Property.builder() .clientVersion("clientVersion") // the properties below are optional .exportableKey(false) .strongKeyProtectionRequired(false) .build()) .subjectNameFlags(SubjectNameFlagsV2Property.builder() .requireCommonName(false) .requireDirectoryPath(false) .requireDnsAsCn(false) .requireEmail(false) .sanRequireDirectoryGuid(false) .sanRequireDns(false) .sanRequireDomainDns(false) .sanRequireEmail(false) .sanRequireSpn(false) .sanRequireUpn(false) .build()) // the properties below are optional .supersededTemplates(List.of("supersededTemplates")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplate.TemplateV2Property
static final class
An implementation forCfnTemplate.TemplateV2Property
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Certificate validity describes the validity and renewal periods of a certificate.Enrollment flags describe the enrollment settings for certificates such as using the existing private key and deleting expired or revoked certificates.Extensions describe the key usage extensions and application policies for a template.General flags describe whether the template is used for computers or users and if the template can be used with autoenrollment.Private key attributes allow you to specify the minimal key length, key spec, and cryptographic providers for the private key of a certificate for v2 templates.Private key flags for v2 templates specify the client compatibility, if the private key can be exported, and if user input is required when using a private key.Subject name flags describe the subject name and subject alternate name that is included in a certificate.List of templates in Active Directory that are superseded by this template.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCertificateValidity
Certificate validity describes the validity and renewal periods of a certificate.- See Also:
-
getEnrollmentFlags
Enrollment flags describe the enrollment settings for certificates such as using the existing private key and deleting expired or revoked certificates.- See Also:
-
getExtensions
Extensions describe the key usage extensions and application policies for a template.- See Also:
-
getGeneralFlags
General flags describe whether the template is used for computers or users and if the template can be used with autoenrollment.- See Also:
-
getPrivateKeyAttributes
Private key attributes allow you to specify the minimal key length, key spec, and cryptographic providers for the private key of a certificate for v2 templates.V2 templates allow you to use Legacy Cryptographic Service Providers.
- See Also:
-
getPrivateKeyFlags
Private key flags for v2 templates specify the client compatibility, if the private key can be exported, and if user input is required when using a private key.- See Also:
-
getSubjectNameFlags
Subject name flags describe the subject name and subject alternate name that is included in a certificate.- See Also:
-
getSupersededTemplates
List of templates in Active Directory that are superseded by this template.- See Also:
-
builder
-