Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

OcspConfiguration

import type { OcspConfiguration } from "https://aws-api.deno.dev/v0.3/services/acmpca.ts?docs=full";

Contains information to enable and configure Online Certificate Status Protocol (OCSP) for validating certificate revocation status.

When you revoke a certificate, OCSP responses may take up to 60 minutes to reflect the new status.

interface OcspConfiguration {
Enabled: boolean;
OcspCustomCname?: string | null;
}

§Properties

§
Enabled: boolean
[src]

Flag enabling use of the Online Certificate Status Protocol (OCSP) for validating certificate revocation status.

§
OcspCustomCname?: string | null
[src]

By default, ACM Private CA injects an AWS 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.

Note: 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 AWS Certificate Manager Private Certificate Authority (PCA) User Guide.