ResendOperationAuthorizationCommand

Resend the form of authorization email for this operation.

Example Syntax

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

import { Route53DomainsClient, ResendOperationAuthorizationCommand } from "@aws-sdk/client-route-53-domains"; // ES Modules import
// const { Route53DomainsClient, ResendOperationAuthorizationCommand } = require("@aws-sdk/client-route-53-domains"); // CommonJS import
const client = new Route53DomainsClient(config);
const input = { // ResendOperationAuthorizationRequest
  OperationId: "STRING_VALUE", // required
};
const command = new ResendOperationAuthorizationCommand(input);
const response = await client.send(command);
// {};

ResendOperationAuthorizationCommand Input

Parameter
Type
Description
OperationId
Required
string | undefined

Operation ID.

ResendOperationAuthorizationCommand Output

Parameter
Type
Description
$metadata
Required
ResponseMetadata
Metadata pertaining to this request.

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.

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