Interface CfnTemplatePropsMixin.TemplateV2Property
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplatePropsMixin.TemplateV2Property.Jsii$Proxy
- Enclosing class:
CfnTemplatePropsMixin
@Stability(Stable)
public static interface CfnTemplatePropsMixin.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.cfnpropertymixins.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()
.applicationPolicies(ApplicationPoliciesProperty.builder()
.critical(false)
.policies(List.of(ApplicationPolicyProperty.builder()
.policyObjectIdentifier("policyObjectIdentifier")
.policyType("policyType")
.build()))
.build())
.keyUsage(KeyUsageProperty.builder()
.critical(false)
.usageFlags(KeyUsageFlagsProperty.builder()
.dataEncipherment(false)
.digitalSignature(false)
.keyAgreement(false)
.keyEncipherment(false)
.nonRepudiation(false)
.build())
.build())
.build())
.generalFlags(GeneralFlagsV2Property.builder()
.autoEnrollment(false)
.machineType(false)
.build())
.privateKeyAttributes(PrivateKeyAttributesV2Property.builder()
.cryptoProviders(List.of("cryptoProviders"))
.keySpec("keySpec")
.minimalKeyLength(123)
.build())
.privateKeyFlags(PrivateKeyFlagsV2Property.builder()
.clientVersion("clientVersion")
.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())
.supersededTemplates(List.of("supersededTemplates"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTemplatePropsMixin.TemplateV2Propertystatic final classAn implementation forCfnTemplatePropsMixin.TemplateV2Property -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectCertificate validity describes the validity and renewal periods of a certificate.default ObjectEnrollment flags describe the enrollment settings for certificates such as using the existing private key and deleting expired or revoked certificates.default ObjectExtensions describe the key usage extensions and application policies for a template.default ObjectGeneral flags describe whether the template is used for computers or users and if the template can be used with autoenrollment.default ObjectPrivate 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.default ObjectPrivate 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.default ObjectSubject 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.Returns union: either
IResolvableorCfnTemplatePropsMixin.CertificateValidityProperty- See Also:
-
getEnrollmentFlags
Enrollment flags describe the enrollment settings for certificates such as using the existing private key and deleting expired or revoked certificates.Returns union: either
IResolvableorCfnTemplatePropsMixin.EnrollmentFlagsV2Property- See Also:
-
getExtensions
Extensions describe the key usage extensions and application policies for a template.Returns union: either
IResolvableorCfnTemplatePropsMixin.ExtensionsV2Property- See Also:
-
getGeneralFlags
General flags describe whether the template is used for computers or users and if the template can be used with autoenrollment.Returns union: either
IResolvableorCfnTemplatePropsMixin.GeneralFlagsV2Property- 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.
Returns union: either
IResolvableorCfnTemplatePropsMixin.PrivateKeyAttributesV2Property- 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.Returns union: either
IResolvableorCfnTemplatePropsMixin.PrivateKeyFlagsV2Property- See Also:
-
getSubjectNameFlags
Subject name flags describe the subject name and subject alternate name that is included in a certificate.Returns union: either
IResolvableorCfnTemplatePropsMixin.SubjectNameFlagsV2Property- See Also:
-
getSupersededTemplates
List of templates in Active Directory that are superseded by this template.- See Also:
-
builder
-