Skip to content

Get Send Statistics

ses_get_send_statistics R Documentation

Provides sending statistics for the current Amazon Web Services Region

Description

Provides sending statistics for the current Amazon Web Services 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()

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

## Not run: 
# The following example returns Amazon SES sending statistics:
svc$get_send_statistics()

## End(Not run)