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

DomainValidation

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

Contains information about the validation of each domain name in the certificate.

interface DomainValidation {
DomainName: string;
ResourceRecord?: ResourceRecord | null;
ValidationDomain?: string | null;
ValidationEmails?: string[] | null;
ValidationMethod?: ValidationMethod | null;
ValidationStatus?: DomainStatus | null;
}

§Properties

§
DomainName: string
[src]

A fully qualified domain name (FQDN) in the certificate. For example, www.example.com or example.com.

§
ResourceRecord?: ResourceRecord | null
[src]

Contains the CNAME record that you add to your DNS database for domain validation. For more information, see Use DNS to Validate Domain Ownership.

Note: The CNAME information that you need does not include the name of your domain. If you include
 * your domain name in the DNS database CNAME record, validation fails.
 * For example, if the name is "_a79865eb4cd1a6ab990a45779b4e0b96.yourdomain.com", only "_a79865eb4cd1a6ab990a45779b4e0b96" must be used.

§
ValidationDomain?: string | null
[src]

The domain name that ACM used to send domain validation emails.

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

A list of email addresses that ACM used to send domain validation emails.

§
ValidationMethod?: ValidationMethod | null
[src]

Specifies the domain validation method.

§
ValidationStatus?: DomainStatus | null
[src]

The validation status of the domain name. This can be one of the following values:

  • PENDING_VALIDATION
    
  • ``SUCCESS
  • ``FAILED