import * as __aws_sdk_types from "@aws-sdk/types"; /** *
Represents your Amazon SES daily sending quota, maximum send rate, and the number of emails you have sent in the last 24 hours.
*/ export interface GetSendQuotaOutput extends __aws_sdk_types.MetadataBearer { /** *The maximum number of emails the user is allowed to send in a 24-hour interval. A value of -1 signifies an unlimited quota.
*/ Max24HourSend?: number; /** *The maximum number of emails that Amazon SES can accept from the user's account per second.
The rate at which Amazon SES accepts the user's messages might be less than the maximum send rate.
The number of emails sent during the previous 24 hours.
*/ SentLast24Hours?: number; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }