Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SendDataPoint

import type { SendDataPoint } from "https://aws-api.deno.dev/v0.3/services/ses.ts?docs=full";

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

interface SendDataPoint {
Bounces?: number | null;
Complaints?: number | null;
DeliveryAttempts?: number | null;
Rejects?: number | null;
Timestamp?: Date | number | null;
}

§Properties

§
Bounces?: number | null
[src]

Number of emails that have bounced.

§
Complaints?: number | null
[src]

Number of unwanted emails that were rejected by recipients.

§
DeliveryAttempts?: number | null
[src]

Number of emails that have been sent.

§
Rejects?: number | null
[src]

Number of emails rejected by Amazon SES.

§
Timestamp?: Date | number | null
[src]

Time of the data point.