describeGlobalSettings method

Future<DescribeGlobalSettingsOutput> describeGlobalSettings()

The current feature settings for the AWS Account.

May throw ServiceUnavailableException.

Implementation

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