get_id_notification {aws.ses} | R Documentation |
Get/Set ID Notifications
get_id_notification(identity, ...) set_id_notification(identity, type = c("Bounce", "Complaint", "Delivery"), topic, ...)
identity |
An SES identity. |
type |
A character string specifying a notification type. |
topic |
An SNS topic name. See |
... |
Additional arguments passed to |
## Not run: # get get_id_notifiaction("example@example.com") # set if (require("aws.sns")) { top <- create_topic("ses_email_bounce") set_id_notifiaction("example@example.com", "Bounce", top) get_id_notifiaction("example@example.com") # cleanup delete_topic(top) } ## End(Not run)