ResendContactReachabilityEmailCommand

For operations that require confirmation that the email address for the registrant contact is valid, such as registering a new domain, this operation resends the confirmation email to the current email address for the registrant contact.

Example Syntax

Use a bare-bones client and the command you need to make an API call.

import { Route53DomainsClient, ResendContactReachabilityEmailCommand } from "@aws-sdk/client-route-53-domains"; // ES Modules import
// const { Route53DomainsClient, ResendContactReachabilityEmailCommand } = require("@aws-sdk/client-route-53-domains"); // CommonJS import
const client = new Route53DomainsClient(config);
const input = { // ResendContactReachabilityEmailRequest
  domainName: "STRING_VALUE",
};
const command = new ResendContactReachabilityEmailCommand(input);
const response = await client.send(command);
// { // ResendContactReachabilityEmailResponse
//   domainName: "STRING_VALUE",
//   emailAddress: "STRING_VALUE",
//   isAlreadyVerified: true || false,
// };

ResendContactReachabilityEmailCommand Input

Parameter
Type
Description
domainName
string | undefined

The name of the domain for which you want Route 53 to resend a confirmation email to the registrant contact.

ResendContactReachabilityEmailCommand Output

Parameter
Type
Description
$metadata
Required
ResponseMetadata
Metadata pertaining to this request.
domainName
string | undefined

The domain name for which you requested a confirmation email.

emailAddress
string | undefined

The email address for the registrant contact at the time that we sent the verification email.

isAlreadyVerified
boolean | undefined

True if the email address for the registrant contact has already been verified, and false otherwise. If the email address has already been verified, we don't send another confirmation email.

Throws

Name
Fault
Details
InvalidInput
client

The requested item is not acceptable. For example, for APIs that accept a domain name, the request might specify a domain name that doesn't belong to the account that submitted the request. For AcceptDomainTransferFromAnotherAwsAccount, the password might be invalid.

OperationLimitExceeded
client

The number of operations or jobs running exceeded the allowed threshold for the account.

UnsupportedTLD
client

Amazon Route 53 does not support this top-level domain (TLD).

Route53DomainsServiceException
Base exception class for all service exceptions from Route53Domains service.