deleteBrowserSettings method
Deletes browser settings.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerException.
May throw ThrottlingException.
May throw ValidationException.
Parameter browserSettingsArn :
The ARN of the browser settings.
Implementation
Future<void> deleteBrowserSettings({
required String browserSettingsArn,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/browserSettings/${browserSettingsArn.split('/').map(Uri.encodeComponent).join('/')}',
exceptionFnMap: _exceptionFns,
);
}