Learn R Programming

aws.ses (version 0.1.4)

get_id_notification: Get/Set Notifications

Description

Get/Set ID Notifications

Usage

get_id_notification(identity, ...)
set_id_notification(identity, type = c("Bounce", "Complaint", "Delivery"), topic, ...)

Arguments

identity
An SES identity.
type
A character string specifying a notification type.
topic
An SNS topic name. See create_topic
...
Additional arguments passed to sesPOST.

See Also

verify_id, create_topic

Examples

Run this code
## 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)

Run the code above in your browser using DataLab