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

Certificate

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

Information about the certificate.

interface Certificate {
CertificateId?: string | null;
ClientCertAuthSettings?: ClientCertAuthSettings | null;
CommonName?: string | null;
ExpiryDateTime?: Date | number | null;
RegisteredDateTime?: Date | number | null;
State?: CertificateState | null;
StateReason?: string | null;
Type?: CertificateType | null;
}

§Properties

§
CertificateId?: string | null
[src]

The identifier of the certificate.

§
ClientCertAuthSettings?: ClientCertAuthSettings | null
[src]

A ClientCertAuthSettings object that contains client certificate authentication settings.

§
CommonName?: string | null
[src]

The common name for the certificate.

§
ExpiryDateTime?: Date | number | null
[src]

The date and time when the certificate will expire.

§
RegisteredDateTime?: Date | number | null
[src]

The date and time that the certificate was registered.

§
State?: CertificateState | null
[src]

The state of the certificate.

§
StateReason?: string | null
[src]

Describes a state change for the certificate.

§
Type?: CertificateType | null
[src]

The function that the registered certificate performs. Valid values include ClientLDAPS or ClientCertAuth. The default value is ClientLDAPS.