get_id_notification {aws.ses}R Documentation

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

## 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)

[Package aws.ses version 0.1.4 Index]