Interface CfnTemplate.ValidityPeriodProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTemplate.ValidityPeriodProperty.Jsii$Proxy
- Enclosing class:
CfnTemplate
@Stability(Stable)
public static interface CfnTemplate.ValidityPeriodProperty
extends software.amazon.jsii.JsiiSerializable
Information describing the end of the validity period of the certificate.
This parameter sets the “Not After” date for the certificate. Certificate validity is the period of time during which a certificate is valid. Validity can be expressed as an explicit date and time when the certificate expires, or as a span of time after issuance, stated in hours, days, months, or years. For more information, see Validity in RFC 5280. This value is unaffected when ValidityNotBefore is also specified. For example, if Validity is set to 20 days in the future, the certificate will expire 20 days from issuance time regardless of the ValidityNotBefore value.
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.*; ValidityPeriodProperty validityPeriodProperty = ValidityPeriodProperty.builder() .period(123) .periodType("periodType") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTemplate.ValidityPeriodProperty
static final class
An implementation forCfnTemplate.ValidityPeriodProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The numeric value for the validity period.The unit of time.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPeriod
The numeric value for the validity period.- See Also:
-
getPeriodType
The unit of time.You can select hours, days, weeks, months, and years.
- See Also:
-
builder
-