Learn R Programming

paws.customer.engagement (version 0.1.12)

ses_get_send_statistics: Provides sending statistics for the current AWS Region

Description

Provides sending statistics for the current AWS Region. The result is a list of data points, representing the last two weeks of sending activity. Each data point in the list contains statistics for a 15-minute period of time.

You can execute this operation no more than once per second.

Usage

ses_get_send_statistics()

Arguments

Value

A list with the following syntax:

list(
  SendDataPoints = list(
    list(
      Timestamp = as.POSIXct(
        "2015-01-01"
      ),
      DeliveryAttempts = 123,
      Bounces = 123,
      Complaints = 123,
      Rejects = 123
    )
  )
)

Examples

Run this code
if (FALSE) {
# The following example returns Amazon SES sending statistics:
svc$get_send_statistics()
}

Run the code above in your browser using DataLab