AWS SDK Version 2 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

.NET Framework 3.5
 
Represents sending statistics data. Each SendDataPoint contains statistics for a 15-minute period of sending activity.

Inheritance Hierarchy

System.Object
  Amazon.SimpleEmail.Model.SendDataPoint

Namespace: Amazon.SimpleEmail.Model
Assembly: AWSSDK.dll
Version: (assembly version)

Syntax

C#
public class SendDataPoint : Object

The SendDataPoint type exposes the following members

Constructors

NameDescription
Public Method SendDataPoint()

Properties

NameTypeDescription
Public Property Bounces System.Int64 Gets and sets the property Bounces.

Number of emails that have bounced.

Public Property Complaints System.Int64 Gets and sets the property Complaints.

Number of unwanted emails that were rejected by recipients.

Public Property DeliveryAttempts System.Int64 Gets and sets the property DeliveryAttempts.

Number of emails that have been enqueued for sending.

Public Property Rejects System.Int64 Gets and sets the property Rejects.

Number of emails rejected by Amazon SES.

Public Property Timestamp System.DateTime Gets and sets the property Timestamp.

Time of the data point.

Examples

This example shows how to get email send statistics for the last two weeks of activity.

Get send statistics example

var sesClient = new AmazonSimpleEmailServiceClient();

var response = sesClient.GetSendStatistics();

Console.WriteLine("For request " + 
  response.ResponseMetadata.RequestId + ":");

if (response.SendDataPoints.Count > 0)
{
  foreach (var point in response.SendDataPoints)
  {
    Console.WriteLine();
    Console.WriteLine("Data points for " + point.Timestamp + ":");
    Console.WriteLine("  Bounces: " + point.Bounces);
    Console.WriteLine("  Complaints: " + point.Complaints);
    Console.WriteLine("  Delivery Attempts: " + point.DeliveryAttempts);
    Console.WriteLine("  Rejects: " + point.Rejects);
  }
}
else
{
  Console.WriteLine("No data points.");
}
      

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

.NET for Windows Store apps:
Supported in: Windows 8.1, Windows 8

.NET for Windows Phone:
Supported in: Windows Phone 8.1, Windows Phone 8