getHealthCheckCount method

Future<GetHealthCheckCountResponse> getHealthCheckCount()

Retrieves the number of health checks that are associated with the current AWS account.

Implementation

Future<GetHealthCheckCountResponse> getHealthCheckCount() async {
  final $result = await _protocol.send(
    method: 'GET',
    requestUri: '/2013-04-01/healthcheckcount',
    exceptionFnMap: _exceptionFns,
  );
  return GetHealthCheckCountResponse.fromXml($result.body);
}