getHostedZoneCount method
Retrieves the number of hosted zones that are associated with the current AWS account.
May throw InvalidInput.
Implementation
Future<GetHostedZoneCountResponse> getHostedZoneCount() async {
final $result = await _protocol.send(
method: 'GET',
requestUri: '/2013-04-01/hostedzonecount',
exceptionFnMap: _exceptionFns,
);
return GetHostedZoneCountResponse.fromXml($result.body);
}