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

CustomExtension

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

Specifies the X.509 extension information for a certificate.

Extensions present in CustomExtensions follow the ApiPassthrough template rules.

interface CustomExtension {
Critical?: boolean | null;
ObjectIdentifier: string;
Value: string;
}

§Properties

§
Critical?: boolean | null
[src]

Specifies the critical flag of the X.509 extension.

§
ObjectIdentifier: string
[src]

Specifies the object identifier (OID) of the X.509 extension. For more information, see the Global OID reference database.

§
Value: string
[src]

Specifies the base64-encoded value of the X.509 extension.