getAccountSendingEnabled method
Returns the email sending status of the Amazon SES account for the current region.
You can execute this operation no more than once per second.
Implementation
Future<GetAccountSendingEnabledResponse> getAccountSendingEnabled() async {
final $request = <String, dynamic>{};
final $result = await _protocol.send(
$request,
action: 'GetAccountSendingEnabled',
version: '2010-12-01',
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
shapes: shapes,
resultWrapper: 'GetAccountSendingEnabledResult',
);
return GetAccountSendingEnabledResponse.fromXml($result);
}