Create Configuration Set Event Destination
pinpointsmsvoice_create_configuration_set_event_destination | R Documentation |
Create a new event destination in a configuration set¶
Description¶
Create a new event destination in a configuration set.
Usage¶
pinpointsmsvoice_create_configuration_set_event_destination(
ConfigurationSetName, EventDestination, EventDestinationName)
Arguments¶
ConfigurationSetName
[required] ConfigurationSetName
EventDestination
EventDestinationName
A name that identifies the event destination.
Value¶
An empty list.
Request syntax¶
svc$create_configuration_set_event_destination(
ConfigurationSetName = "string",
EventDestination = 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"
),
SnsDestination = list(
TopicArn = "string"
)
),
EventDestinationName = "string"
)