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

DomainAssociation

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

Describes a domain association that associates a custom domain with an Amplify app.

interface DomainAssociation {
autoSubDomainCreationPatterns?: string[] | null;
autoSubDomainIAMRole?: string | null;
certificateVerificationDNSRecord?: string | null;
domainAssociationArn: string;
domainName: string;
domainStatus: DomainStatus;
enableAutoSubDomain: boolean;
statusReason: string;
subDomains: SubDomain[];
}

§Properties

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

Sets branch patterns for automatic subdomain creation.

§
autoSubDomainIAMRole?: string | null
[src]

The required AWS Identity and Access Management (IAM) service role for the Amazon Resource Name (ARN) for automatically creating subdomains.

§
certificateVerificationDNSRecord?: string | null
[src]

The DNS record for certificate verification.

§
domainAssociationArn: string
[src]

The Amazon Resource Name (ARN) for the domain association.

§
domainName: string
[src]

The name of the domain.

§
domainStatus: DomainStatus
[src]

The current status of the domain association.

§
enableAutoSubDomain: boolean
[src]

Enables the automated creation of subdomains for branches.

§
statusReason: string
[src]

The reason for the current status of the domain association.

§
subDomains: SubDomain[]
[src]

The subdomains for the domain association.