Class: Aws::PcaConnectorAd::Types::CertificateValidity
- Inherits:
-
Struct
- Object
- Struct
- Aws::PcaConnectorAd::Types::CertificateValidity
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pcaconnectorad/types.rb
Overview
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 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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#renewal_period ⇒ Types::ValidityPeriod
Renewal period is the period of time before certificate expiration when a new certificate will be requested.
-
#validity_period ⇒ Types::ValidityPeriod
Information describing the end of the validity period of the certificate.
Instance Attribute Details
#renewal_period ⇒ Types::ValidityPeriod
Renewal period is the period of time before certificate expiration when a new certificate will be requested.
232 233 234 235 236 237 |
# File 'lib/aws-sdk-pcaconnectorad/types.rb', line 232 class CertificateValidity < Struct.new( :renewal_period, :validity_period) SENSITIVE = [] include Aws::Structure end |
#validity_period ⇒ Types::ValidityPeriod
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 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.
232 233 234 235 236 237 |
# File 'lib/aws-sdk-pcaconnectorad/types.rb', line 232 class CertificateValidity < Struct.new( :renewal_period, :validity_period) SENSITIVE = [] include Aws::Structure end |