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

Extensions

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

Contains X.509 extension information for a certificate.

interface Extensions {
CertificatePolicies?: PolicyInformation[] | null;
CustomExtensions?: CustomExtension[] | null;
ExtendedKeyUsage?: ExtendedKeyUsage[] | null;
KeyUsage?: KeyUsage | null;
SubjectAlternativeNames?: GeneralName[] | null;
}

§Properties

§
CertificatePolicies?: PolicyInformation[] | null
[src]

Contains a sequence of one or more policy information terms, each of which consists of an object identifier (OID) and optional qualifiers. For more information, see NIST's definition of Object Identifier (OID).

In an end-entity certificate, these terms indicate the policy under which the certificate was issued and the purposes for which it may be used. In a CA certificate, these terms limit the set of policies for certification paths that include this certificate.

§
CustomExtensions?: CustomExtension[] | null
[src]

Contains a sequence of one or more X.509 extensions, each of which consists of an object identifier (OID), a base64-encoded value, and the critical flag. For more information, see the Global OID reference database.

§
ExtendedKeyUsage?: ExtendedKeyUsage[] | null
[src]

Specifies additional purposes for which the certified public key may be used other than basic purposes indicated in the KeyUsage extension.

§
KeyUsage?: KeyUsage | null
[src]
§
SubjectAlternativeNames?: GeneralName[] | null
[src]

The subject alternative name extension allows identities to be bound to the subject of the certificate. These identities may be included in addition to or in place of the identity in the subject field of the certificate.