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

CertificateAuthorityConfiguration

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

Contains configuration information for your private certificate authority (CA). This includes information about the class of public key algorithm and the key pair that your private CA creates when it issues a certificate. It also includes the signature algorithm that it uses when issuing certificates, and its X.500 distinguished name. You must specify this information when you call the CreateCertificateAuthority action.

interface CertificateAuthorityConfiguration {
CsrExtensions?: CsrExtensions | null;
KeyAlgorithm: KeyAlgorithm;
SigningAlgorithm: SigningAlgorithm;
Subject: ASN1Subject;
}

§Properties

§
CsrExtensions?: CsrExtensions | null
[src]

Specifies information to be added to the extension section of the certificate signing request (CSR).

§
KeyAlgorithm: KeyAlgorithm
[src]

Type of the public key algorithm and size, in bits, of the key pair that your CA creates when it issues a certificate. When you create a subordinate CA, you must use a key algorithm supported by the parent CA.

§
SigningAlgorithm: SigningAlgorithm
[src]

Name of the algorithm your private CA uses to sign certificate requests.

This parameter should not be confused with the SigningAlgorithm parameter used to sign certificates when they are issued.

§

Structure that contains X.500 distinguished name information for your private CA.