getSendStatistics

abstract suspend fun getSendStatistics(input: GetSendStatisticsRequest = GetSendStatisticsRequest { }): GetSendStatisticsResponse

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.

Samples


fun main() { 
   //sampleStart 
   // The following example returns Amazon SES sending statistics
val resp = sesClient.getSendStatistics() 
   //sampleEnd
}