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

SendQuota

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

An object that contains information about the per-day and per-second sending limits for your Amazon SES account in the current Amazon Web Services Region.

interface SendQuota {
Max24HourSend?: number | null;
MaxSendRate?: number | null;
SentLast24Hours?: number | null;
}

§Properties

§
Max24HourSend?: number | null
[src]

The maximum number of emails that you can send in the current Amazon Web Services Region over a 24-hour period. This value is also called your sending quota.

§
MaxSendRate?: number | null
[src]

The maximum number of emails that you can send per second in the current Amazon Web Services Region. This value is also called your maximum sending rate or your maximum TPS (transactions per second) rate.

§
SentLast24Hours?: number | null
[src]

The number of emails sent from your Amazon SES account in the current Amazon Web Services Region over the past 24 hours.