- Navigation GuideYou are on a Command (operation) page with structural examples. Use the navigation breadcrumb if you would like to return to the Client landing page.
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
See ResendOperationAuthorizationCommandInput for more details
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
OperationId Required | string | undefined | Operation ID. |
ResendOperationAuthorizationCommand Output
See ResendOperationAuthorizationCommandOutput for details
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
Throws
Name | Fault | Details |
---|
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 |
Route53DomainsServiceException | Base exception class for all service exceptions from Route53Domains service. |