Jump to Content

This API Documentation is now deprecated

We are excited to announce our new API Documentation.

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 = { // DeleteCustomVerificationEmailTemplateRequest
TemplateName: "STRING_VALUE", // required
};
const command = new DeleteCustomVerificationEmailTemplateCommand(input);
const response = await client.send(command);
// {};

Param

DeleteCustomVerificationEmailTemplateCommandInput

Returns

DeleteCustomVerificationEmailTemplateCommandOutput

See

Throws

SESServiceException

Base exception class for all service exceptions from SES service.

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

Methods