Interface CfnCertificate.ValidityProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCertificate.ValidityProperty.Jsii$Proxy
Enclosing class:
CfnCertificate

@Stability(Stable) public static interface CfnCertificate.ValidityProperty extends software.amazon.jsii.JsiiSerializable
Length of time for which the certificate issued by your private certificate authority (CA), or by the private CA itself, is valid in days, months, or years.

You can issue a certificate by calling the IssueCertificate operation.

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.acmpca.*;
 ValidityProperty validityProperty = ValidityProperty.builder()
         .type("type")
         .value(123)
         .build();
 

See Also: