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

CreateCertificateRequest

import type { CreateCertificateRequest } from "https://aws-api.deno.dev/v0.3/services/lightsail.ts?docs=full";
interface CreateCertificateRequest {
certificateName: string;
domainName: string;
subjectAlternativeNames?: string[] | null;
tags?: Tag[] | null;
}

§Properties

§
certificateName: string
[src]

The name for the certificate.

§
domainName: string
[src]

The domain name (e.g., example.com) for the certificate.

§
subjectAlternativeNames?: string[] | null
[src]

An array of strings that specify the alternate domains (e.g., example2.com) and subdomains (e.g., blog.example.com) for the certificate.

You can specify a maximum of nine alternate domains (in addition to the primary domain name).

Wildcard domain entries (e.g., *.example.com) are not supported.

§
tags?: Tag[] | null
[src]

The tag keys and optional values to add to the certificate during create.

Use the TagResource action to tag a resource after it's created.