getGlobalSettings method

Future<GetGlobalSettingsOutput> getGlobalSettings()

Global settings for all workloads.

May throw AccessDeniedException. May throw InternalServerException. May throw ThrottlingException. May throw ValidationException.

Implementation

Future<GetGlobalSettingsOutput> getGlobalSettings() async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/global-settings',
    exceptionFnMap: _exceptionFns,
  );
  return GetGlobalSettingsOutput.fromJson(response);
}