import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetSendQuotaResponse } from "../models/models_0"; import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetSendQuotaCommand}. */ export interface GetSendQuotaCommandInput { } /** * @public * * The output of {@link GetSendQuotaCommand}. */ export interface GetSendQuotaCommandOutput extends GetSendQuotaResponse, __MetadataBearer { } declare const GetSendQuotaCommand_base: { new (input: GetSendQuotaCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [GetSendQuotaCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Provides the sending limits for the Amazon SES account.

*

You can execute this operation no more than once per second.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SESClient, GetSendQuotaCommand } from "@aws-sdk/client-ses"; // ES Modules import * // const { SESClient, GetSendQuotaCommand } = require("@aws-sdk/client-ses"); // CommonJS import * // import type { SESClientConfig } from "@aws-sdk/client-ses"; * const config = {}; // type is SESClientConfig * const client = new SESClient(config); * const input = {}; * const command = new GetSendQuotaCommand(input); * const response = await client.send(command); * // { // GetSendQuotaResponse * // Max24HourSend: Number("double"), * // MaxSendRate: Number("double"), * // SentLast24Hours: Number("double"), * // }; * * ``` * * @param GetSendQuotaCommandInput - {@link GetSendQuotaCommandInput} * @returns {@link GetSendQuotaCommandOutput} * @see {@link GetSendQuotaCommandInput} for command's `input` shape. * @see {@link GetSendQuotaCommandOutput} for command's `response` shape. * @see {@link SESClientResolvedConfig | config} for SESClient's `config` shape. * * @throws {@link SESServiceException} *

Base exception class for all service exceptions from SES service.

* * * @example GetSendQuota * ```javascript * // The following example returns the Amazon SES sending limits for an AWS account: * const input = { /* empty *\/ }; * const command = new GetSendQuotaCommand(input); * const response = await client.send(command); * /* response is * { * Max24HourSend: 200, * MaxSendRate: 1, * SentLast24Hours: 1 * } * *\/ * ``` * * @public */ export declare class GetSendQuotaCommand extends GetSendQuotaCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: {}; output: GetSendQuotaResponse; }; sdk: { input: GetSendQuotaCommandInput; output: GetSendQuotaCommandOutput; }; }; }