Interface OcspConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OcspConfiguration.Builder,OcspConfiguration>,SdkBuilder<OcspConfiguration.Builder,OcspConfiguration>,SdkPojo
- Enclosing class:
- OcspConfiguration
public static interface OcspConfiguration.Builder extends SdkPojo, CopyableBuilder<OcspConfiguration.Builder,OcspConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OcspConfiguration.Builderenabled(Boolean enabled)Flag enabling use of the Online Certificate Status Protocol (OCSP) for validating certificate revocation status.OcspConfiguration.BuilderocspCustomCname(String ocspCustomCname)By default, Amazon Web Services Private CA injects an Amazon Web Services domain into certificates being validated by the Online Certificate Status Protocol (OCSP).-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
enabled
OcspConfiguration.Builder enabled(Boolean enabled)
Flag enabling use of the Online Certificate Status Protocol (OCSP) for validating certificate revocation status.
- Parameters:
enabled- Flag enabling use of the Online Certificate Status Protocol (OCSP) for validating certificate revocation status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ocspCustomCname
OcspConfiguration.Builder ocspCustomCname(String ocspCustomCname)
By default, Amazon Web Services Private CA injects an Amazon Web Services domain into certificates being validated by the Online Certificate Status Protocol (OCSP). A customer can alternatively use this object to define a CNAME specifying a customized OCSP domain.
The content of a Canonical Name (CNAME) record must conform to RFC2396 restrictions on the use of special characters in URIs. Additionally, the value of the CNAME must not include a protocol prefix such as "http://" or "https://".
For more information, see Customizing Online Certificate Status Protocol (OCSP) in the Amazon Web Services Private Certificate Authority User Guide.
- Parameters:
ocspCustomCname- By default, Amazon Web Services Private CA injects an Amazon Web Services domain into certificates being validated by the Online Certificate Status Protocol (OCSP). A customer can alternatively use this object to define a CNAME specifying a customized OCSP domain.The content of a Canonical Name (CNAME) record must conform to RFC2396 restrictions on the use of special characters in URIs. Additionally, the value of the CNAME must not include a protocol prefix such as "http://" or "https://".
For more information, see Customizing Online Certificate Status Protocol (OCSP) in the Amazon Web Services Private Certificate Authority User Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-