idnotification: Get/Set Notifications

Description Usage Arguments See Also Examples

Description

Get/Set ID Notifications

Usage

1
2
3
4
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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
## 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)

aws.ses documentation built on May 2, 2019, 3:43 p.m.