Jump to Content

This API Documentation is now deprecated

We are excited to announce our new API Documentation.

Class DeleteConfigurationSetEventDestinationCommandProtected

Deletes a configuration set event destination. Configuration set event destinations are associated with configuration sets, which enable you to publish email sending events. For information about using configuration sets, see 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, DeleteConfigurationSetEventDestinationCommand } from "@aws-sdk/client-ses"; // ES Modules import
// const { SESClient, DeleteConfigurationSetEventDestinationCommand } = require("@aws-sdk/client-ses"); // CommonJS import
const client = new SESClient(config);
const input = { // DeleteConfigurationSetEventDestinationRequest
ConfigurationSetName: "STRING_VALUE", // required
EventDestinationName: "STRING_VALUE", // required
};
const command = new DeleteConfigurationSetEventDestinationCommand(input);
const response = await client.send(command);
// {};

Param

DeleteConfigurationSetEventDestinationCommandInput

Returns

DeleteConfigurationSetEventDestinationCommandOutput

See

Throws

ConfigurationSetDoesNotExistException (client fault)

Indicates that the configuration set does not exist.

Throws

EventDestinationDoesNotExistException (client fault)

Indicates that the event destination does not exist.

Throws

SESServiceException

Base exception class for all service exceptions from SES service.

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

Methods