CreateOcspSingleResponseInput
One certificate's status entry for CreateOcspResponseInput.responses. Extends CreateOcspRequestItemInput with status and timing fields.
ts
interface CreateOcspSingleResponseInput extends CreateOcspRequestItemInput {
readonly certStatus: OcspCertStatus;
readonly thisUpdate?: Date;
readonly nextUpdate?: Date;
readonly revokedAt?: Date;
readonly revocationReasonCode?: number;
}Properties
readonlycertStatus:OcspCertStatus— Status to assert for this certificate.readonlythisUpdate?:Date— Start of the validity window for this status assertion. Defaults tonew Date().readonlynextUpdate?:Date— End of the validity window. Omit for open-ended assertions.readonlyrevokedAt?:Date— Revocation time (required whencertStatusis'revoked'). Defaults tothisUpdate.readonlyrevocationReasonCode?:number— CRLReason integer code (only meaningful whencertStatusis'revoked').