Get Configuration Set Event Destinations
pinpointsmsvoice_get_configuration_set_event_destinations | R Documentation |
Obtain information about an event destination, including the types of events it reports, the Amazon Resource Name (ARN) of the destination, and the name of the event destination¶
Description¶
Obtain information about an event destination, including the types of events it reports, the Amazon Resource Name (ARN) of the destination, and the name of the event destination.
Usage¶
Arguments¶
ConfigurationSetName
[required] ConfigurationSetName
Value¶
A list with the following syntax:
list(
EventDestinations = list(
list(
CloudWatchLogsDestination = list(
IamRoleArn = "string",
LogGroupArn = "string"
),
Enabled = TRUE|FALSE,
KinesisFirehoseDestination = list(
DeliveryStreamArn = "string",
IamRoleArn = "string"
),
MatchingEventTypes = list(
"INITIATED_CALL"|"RINGING"|"ANSWERED"|"COMPLETED_CALL"|"BUSY"|"FAILED"|"NO_ANSWER"
),
Name = "string",
SnsDestination = list(
TopicArn = "string"
)
)
)
)