deleteUserSettings method

Future<void> deleteUserSettings({
  1. required String userSettingsArn,
})

Deletes user settings.

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

Parameter userSettingsArn : The ARN of the user settings.

Implementation

Future<void> deleteUserSettings({
  required String userSettingsArn,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/userSettings/${userSettingsArn.split('/').map(Uri.encodeComponent).join('/')}',
    exceptionFnMap: _exceptionFns,
  );
}