getConfigurationSetEventDestinations method

Future<GetConfigurationSetEventDestinationsResponse> getConfigurationSetEventDestinations({
  1. required String configurationSetName,
})

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.

May throw NotFoundException. May throw TooManyRequestsException. May throw BadRequestException.

Parameter configurationSetName : The name of the configuration set that contains the event destination.

Implementation

Future<GetConfigurationSetEventDestinationsResponse>
    getConfigurationSetEventDestinations({
  required String configurationSetName,
}) async {
  ArgumentError.checkNotNull(configurationSetName, 'configurationSetName');
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/v1/email/configuration-sets/${Uri.encodeComponent(configurationSetName)}/event-destinations',
    exceptionFnMap: _exceptionFns,
  );
  return GetConfigurationSetEventDestinationsResponse.fromJson(response);
}