Retrieve a list of event destinations that are associated with a configuration
set.
In Amazon Pinpoint, events include message sends, deliveries, opens,
clicks, bounces, and complaints. Event destinations are places that
you can send information about these events to. For example, you can send event data to
Amazon SNS to receive notifications when you receive bounces or complaints, or you can use
Amazon Kinesis Data Firehose to stream data to Amazon S3 for long-term storage.
example
Use a bare-bones client and the command you need to make an API call.
Retrieve a list of event destinations that are associated with a configuration set.
In Amazon Pinpoint, events include message sends, deliveries, opens, clicks, bounces, and complaints. Event destinations are places that you can send information about these events to. For example, you can send event data to Amazon SNS to receive notifications when you receive bounces or complaints, or you can use Amazon Kinesis Data Firehose to stream data to Amazon S3 for long-term storage.
Use a bare-bones client and the command you need to make an API call.
import { PinpointEmailClient, GetConfigurationSetEventDestinationsCommand } from "@aws-sdk/client-pinpoint-email"; // ES Modules import // const { PinpointEmailClient, GetConfigurationSetEventDestinationsCommand } = require("@aws-sdk/client-pinpoint-email"); // CommonJS import const client = new PinpointEmailClient(config); const command = new GetConfigurationSetEventDestinationsCommand(input); const response = await client.send(command);
GetConfigurationSetEventDestinationsCommandInput for command's
input
shape.GetConfigurationSetEventDestinationsCommandOutput for command's
response
shape.config for PinpointEmailClient's
config
shape.