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

CustomDomain

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

Describes a custom domain that's associated with an App Runner service.

interface CustomDomain {
CertificateValidationRecords?: CertificateValidationRecord[] | null;
DomainName: string;
EnableWWWSubdomain: boolean;
}

§Properties

§
CertificateValidationRecords?: CertificateValidationRecord[] | null
[src]

A list of certificate CNAME records that's used for this domain name.

§
DomainName: string
[src]

An associated custom domain endpoint. It can be a root domain (for example, example.com), a subdomain (for example, login.example.com or admin.login.example.com), or a wildcard (for example, *.example.com).

§
EnableWWWSubdomain: boolean
[src]

When true, the subdomain www._DomainName_ is associated with the App Runner service in addition to the base domain.

§

The current state of the domain name association.