getSendQuota method

Future<GetSendQuotaResponse> getSendQuota()

Provides the sending limits for the Amazon SES account.

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

Implementation

Future<GetSendQuotaResponse> getSendQuota() async {
  final $request = <String, dynamic>{};
  final $result = await _protocol.send(
    $request,
    action: 'GetSendQuota',
    version: '2010-12-01',
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    shapes: shapes,
    resultWrapper: 'GetSendQuotaResult',
  );
  return GetSendQuotaResponse.fromXml($result);
}