Interface CfnTemplatePropsMixin.TemplateV3Property
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplatePropsMixin.TemplateV3Property.Jsii$Proxy
- Enclosing class:
CfnTemplatePropsMixin
@Stability(Stable)
public static interface CfnTemplatePropsMixin.TemplateV3Property
extends software.amazon.jsii.JsiiSerializable
v3 template schema that uses Key Storage 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.*;
TemplateV3Property templateV3Property = TemplateV3Property.builder()
.certificateValidity(CertificateValidityProperty.builder()
.renewalPeriod(ValidityPeriodProperty.builder()
.period(123)
.periodType("periodType")
.build())
.validityPeriod(ValidityPeriodProperty.builder()
.period(123)
.periodType("periodType")
.build())
.build())
.enrollmentFlags(EnrollmentFlagsV3Property.builder()
.enableKeyReuseOnNtTokenKeysetStorageFull(false)
.includeSymmetricAlgorithms(false)
.noSecurityExtension(false)
.removeInvalidCertificateFromPersonalStore(false)
.userInteractionRequired(false)
.build())
.extensions(ExtensionsV3Property.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(GeneralFlagsV3Property.builder()
.autoEnrollment(false)
.machineType(false)
.build())
.hashAlgorithm("hashAlgorithm")
.privateKeyAttributes(PrivateKeyAttributesV3Property.builder()
.algorithm("algorithm")
.cryptoProviders(List.of("cryptoProviders"))
.keySpec("keySpec")
.keyUsageProperty(KeyUsagePropertyProperty.builder()
.propertyFlags(KeyUsagePropertyFlagsProperty.builder()
.decrypt(false)
.keyAgreement(false)
.sign(false)
.build())
.propertyType("propertyType")
.build())
.minimalKeyLength(123)
.build())
.privateKeyFlags(PrivateKeyFlagsV3Property.builder()
.clientVersion("clientVersion")
.exportableKey(false)
.requireAlternateSignatureAlgorithm(false)
.strongKeyProtectionRequired(false)
.build())
.subjectNameFlags(SubjectNameFlagsV3Property.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.TemplateV3Propertystatic final classAn implementation forCfnTemplatePropsMixin.TemplateV3Property -
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 StringSpecifies the hash algorithm used to hash the private key.default ObjectPrivate key attributes allow you to specify the algorithm, minimal key length, key spec, key usage, and cryptographic providers for the private key of a certificate for v3 templates.default ObjectPrivate key flags for v3 templates specify the client compatibility, if the private key can be exported, if user input is required when using a private key, and if an alternate signature algorithm should be used.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.EnrollmentFlagsV3Property- See Also:
-
getExtensions
Extensions describe the key usage extensions and application policies for a template.Returns union: either
IResolvableorCfnTemplatePropsMixin.ExtensionsV3Property- 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.GeneralFlagsV3Property- See Also:
-
getHashAlgorithm
Specifies the hash algorithm used to hash the private key.- See Also:
-
getPrivateKeyAttributes
Private key attributes allow you to specify the algorithm, minimal key length, key spec, key usage, and cryptographic providers for the private key of a certificate for v3 templates.V3 templates allow you to use Key Storage Providers.
Returns union: either
IResolvableorCfnTemplatePropsMixin.PrivateKeyAttributesV3Property- See Also:
-
getPrivateKeyFlags
Private key flags for v3 templates specify the client compatibility, if the private key can be exported, if user input is required when using a private key, and if an alternate signature algorithm should be used.Returns union: either
IResolvableorCfnTemplatePropsMixin.PrivateKeyFlagsV3Property- See Also:
-
getSubjectNameFlags
Subject name flags describe the subject name and subject alternate name that is included in a certificate.Returns union: either
IResolvableorCfnTemplatePropsMixin.SubjectNameFlagsV3Property- See Also:
-
getSupersededTemplates
List of templates in Active Directory that are superseded by this template.- See Also:
-
builder
-