Interface Domain

Domain includes the domain name and certificate data to enable hosting an API on a custom domain.

interface Domain {
    certificateBody: string;
    certificateChain: string;
    certificatePrivateKey: string;
    domainName: string;
}

Properties

certificateBody: string

An SSL/TLS certficicate issued for this domain (cert.pem).

certificateChain: string

The certificate chain for the SSL/TLS certificate provided for this domain (chain.pem).

certificatePrivateKey: string

An SSL/TLS private key issued for thie domain (privkey.pem).

domainName: string

The domain name to associate with the API.

Generated using TypeDoc