Jump to Content

Class DeleteCustomVerificationEmailTemplateCommandProtected

Deletes an existing custom verification email template.

For more information about custom verification email templates, see Using Custom Verification Email Templates in the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

Example

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

import { SESClient, DeleteCustomVerificationEmailTemplateCommand } from "@aws-sdk/client-ses"; // ES Modules import
// const { SESClient, DeleteCustomVerificationEmailTemplateCommand } = require("@aws-sdk/client-ses"); // CommonJS import
const client = new SESClient(config);
const input = {
TemplateName: "STRING_VALUE", // required
};
const command = new DeleteCustomVerificationEmailTemplateCommand(input);
const response = await client.send(command);

Param

DeleteCustomVerificationEmailTemplateCommandInput

Returns

DeleteCustomVerificationEmailTemplateCommandOutput

See

Hierarchy

Constructors

Properties

Methods