Get Configuration Set Event Destinations
| sesv2_get_configuration_set_event_destinations | R Documentation |
Retrieve a list of event destinations that are associated with a configuration set¶
Description¶
Retrieve a list of event destinations that are associated with a configuration set.
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 EventBridge and associate a rule to send the event to the specified target.
Usage¶
sesv2_get_configuration_set_event_destinations(ConfigurationSetName)
Arguments¶
ConfigurationSetName |
[required] The name of the configuration set that contains the event destination. |
Value¶
A list with the following syntax:
list(
EventDestinations = list(
list(
Name = "string",
Enabled = TRUE|FALSE,
MatchingEventTypes = list(
"SEND"|"REJECT"|"BOUNCE"|"COMPLAINT"|"DELIVERY"|"OPEN"|"CLICK"|"RENDERING_FAILURE"|"DELIVERY_DELAY"|"SUBSCRIPTION"
),
KinesisFirehoseDestination = list(
IamRoleArn = "string",
DeliveryStreamArn = "string"
),
CloudWatchDestination = list(
DimensionConfigurations = list(
list(
DimensionName = "string",
DimensionValueSource = "MESSAGE_TAG"|"EMAIL_HEADER"|"LINK_TAG",
DefaultDimensionValue = "string"
)
)
),
SnsDestination = list(
TopicArn = "string"
),
EventBridgeDestination = list(
EventBusArn = "string"
),
PinpointDestination = list(
ApplicationArn = "string"
)
)
)
)
Request syntax¶
svc$get_configuration_set_event_destinations(
ConfigurationSetName = "string"
)