Class: Aws::ACMPCA::Types::CrlDistributionPointExtensionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACMPCA::Types::CrlDistributionPointExtensionConfiguration
- Defined in:
- gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb
Overview
Contains configuration information for the default behavior of the CRL Distribution Point (CDP) extension in certificates issued by your CA. This extension contains a link to download the CRL, so you can check whether a certificate has been revoked. To choose whether you want this extension omitted or not in certificates issued by your CA, you can set the OmitExtension parameter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#omit_extension ⇒ Boolean
Configures whether the CRL Distribution Point extension should be populated with the default URL to the CRL.
Instance Attribute Details
#omit_extension ⇒ Boolean
Configures whether the CRL Distribution Point extension should be
populated with the default URL to the CRL. If set to true, then
the CDP extension will not be present in any certificates issued by
that CA unless otherwise specified through CSR or API passthrough.
This configuration cannot be enabled with a custom CNAME set.
887 888 889 890 891 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 887 class CrlDistributionPointExtensionConfiguration < Struct.new( :omit_extension) SENSITIVE = [] include Aws::Structure end |