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

VolumeStatistics

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

An object that contains information about the amount of email that was delivered to recipients.

interface VolumeStatistics {
InboxRawCount?: number | null;
ProjectedInbox?: number | null;
ProjectedSpam?: number | null;
SpamRawCount?: number | null;
}

§Properties

§
InboxRawCount?: number | null
[src]

The total number of emails that arrived in recipients' inboxes.

§
ProjectedInbox?: number | null
[src]

An estimate of the percentage of emails sent from the current domain that will arrive in recipients' inboxes.

§
ProjectedSpam?: number | null
[src]

An estimate of the percentage of emails sent from the current domain that will arrive in recipients' spam or junk mail folders.

§
SpamRawCount?: number | null
[src]

The total number of emails that arrived in recipients' spam or junk mail folders.