getBrowserSettings method

Future<GetBrowserSettingsResponse> getBrowserSettings({
  1. required String browserSettingsArn,
})

Gets browser settings.

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

Parameter browserSettingsArn : The ARN of the browser settings.

Implementation

Future<GetBrowserSettingsResponse> getBrowserSettings({
  required String browserSettingsArn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/browserSettings/${browserSettingsArn.split('/').map(Uri.encodeComponent).join('/')}',
    exceptionFnMap: _exceptionFns,
  );
  return GetBrowserSettingsResponse.fromJson(response);
}