@Stability(value=Stable)
public static interface CfnCertificateAuthority.OcspConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
OcspConfigurationProperty ocspConfigurationProperty = OcspConfigurationProperty.builder()
.enabled(false)
.ocspCustomCname("ocspCustomCname")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCertificateAuthority.OcspConfigurationProperty.Builder
A builder for
CfnCertificateAuthority.OcspConfigurationProperty |
static class |
CfnCertificateAuthority.OcspConfigurationProperty.Jsii$Proxy
An implementation for
CfnCertificateAuthority.OcspConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnCertificateAuthority.OcspConfigurationProperty.Builder |
builder() |
default Object |
getEnabled()
Flag enabling use of the Online Certificate Status Protocol (OCSP) for validating certificate revocation status.
|
default String |
getOcspCustomCname()
By default, ACM Private CA injects an Amazon domain into certificates being validated by the Online Certificate Status Protocol (OCSP).
|
@Stability(value=Stable) @Nullable default Object getEnabled()
@Stability(value=Stable) @Nullable default String getOcspCustomCname()
A customer can alternatively use this object to define a CNAME specifying a customized OCSP domain.
Note: The value of the CNAME must not include a protocol prefix such as "http://" or "https://".
@Stability(value=Stable) static CfnCertificateAuthority.OcspConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.