getAccountSummary method

Future<GetAccountSummaryResponse> getAccountSummary()

Retrieves information about IAM entity usage and IAM quotas in the AWS account.

The number and size of IAM resources in an AWS account are limited. For more information, see IAM and STS Quotas in the IAM User Guide.

May throw ServiceFailureException.

Implementation

Future<GetAccountSummaryResponse> getAccountSummary() async {
  final $request = <String, dynamic>{};
  final $result = await _protocol.send(
    $request,
    action: 'GetAccountSummary',
    version: '2010-05-08',
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    shapes: shapes,
    resultWrapper: 'GetAccountSummaryResult',
  );
  return GetAccountSummaryResponse.fromXml($result);
}