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

GetSendQuotaResponse

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

Represents your Amazon SES daily sending quota, maximum send rate, and the number of emails you have sent in the last 24 hours.

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

§Properties

§
Max24HourSend?: number | null
[src]

The maximum number of emails the user is allowed to send in a 24-hour interval. A value of -1 signifies an unlimited quota.

§
MaxSendRate?: number | null
[src]

The maximum number of emails that Amazon SES can accept from the user's account per second.

Note: The rate at which Amazon SES accepts the user's messages might be less than the maximum send rate.

§
SentLast24Hours?: number | null
[src]

The number of emails sent during the previous 24 hours.