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

SslConfiguration

import type { SslConfiguration } from "https://aws-api.deno.dev/v0.3/services/opsworks.ts?docs=full";

Describes an app's SSL configuration.

interface SslConfiguration {
Certificate: string;
Chain?: string | null;
PrivateKey: string;
}

§Properties

§
Certificate: string
[src]

The contents of the certificate's domain.crt file.

§
Chain?: string | null
[src]

Optional. Can be used to specify an intermediate certificate authority key or client authentication.

§
PrivateKey: string
[src]

The private key; the contents of the certificate's domain.kex file.