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

MailFromDomainStatus

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

The status of the MAIL FROM domain. This status can have the following values:

  • PENDING – Amazon SES hasn't started searching for the MX record yet.
  • SUCCESS – Amazon SES detected the required MX record for the MAIL FROM domain.
  • FAILED – Amazon SES can't find the required MX record, or the record no longer exists.
  • TEMPORARY_FAILURE – A temporary issue occurred, which prevented Amazon SES from determining the status of the MAIL FROM domain.
type MailFromDomainStatus =
| "PENDING"
| "SUCCESS"
| "FAILED"
| "TEMPORARY_FAILURE"

§Type

§
"PENDING" | "SUCCESS" | "FAILED" | "TEMPORARY_FAILURE" | cmnP.UnexpectedEnumValue
[src]