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

ExportCertificateResponse

import type { ExportCertificateResponse } from "https://aws-api.deno.dev/v0.3/services/acm.ts?docs=full";
interface ExportCertificateResponse {
Certificate?: string | null;
CertificateChain?: string | null;
PrivateKey?: string | null;
}

§Properties

§
Certificate?: string | null
[src]

The base64 PEM-encoded certificate.

§
CertificateChain?: string | null
[src]

The base64 PEM-encoded certificate chain. This does not include the certificate that you are exporting.

§
PrivateKey?: string | null
[src]

The encrypted private key associated with the public key in the certificate. The key is output in PKCS #8 format and is base64 PEM-encoded.