getMetricConfiguration method

Future<GetMetricConfigurationResponse> getMetricConfiguration()

Get the metric configuration status for this AWS account.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Implementation

Future<GetMetricConfigurationResponse> getMetricConfiguration() async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/metric-configuration',
    exceptionFnMap: _exceptionFns,
  );
  return GetMetricConfigurationResponse.fromJson(response);
}