getGlobalSettings method

Future<GetGlobalSettingsResponse> getGlobalSettings()

Retrieves global settings for the administrator's AWS account, such as Amazon Chime Business Calling and Amazon Chime Voice Connector settings.

May throw UnauthorizedClientException. May throw ForbiddenException. May throw BadRequestException. May throw ThrottledClientException. May throw ServiceUnavailableException. May throw ServiceFailureException.

Implementation

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