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

CertificateInfo

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

Contains general information about a certificate.

interface CertificateInfo {
CertificateId?: string | null;
CommonName?: string | null;
ExpiryDateTime?: Date | number | null;
State?: CertificateState | null;
Type?: CertificateType | null;
}

§Properties

§
CertificateId?: string | null
[src]

The identifier of the certificate.

§
CommonName?: string | null
[src]

The common name for the certificate.

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

The date and time when the certificate will expire.

§
State?: CertificateState | null
[src]

The state of the certificate.

§
Type?: CertificateType | null
[src]

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