deleteSubscriberNotification method

Future<void> deleteSubscriberNotification({
  1. required String subscriberId,
})

Deletes the specified subscription notification in Amazon Security Lake for the organization you specify.

May throw AccessDeniedException. May throw BadRequestException. May throw ConflictException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException.

Parameter subscriberId : The ID of the Security Lake subscriber account.

Implementation

Future<void> deleteSubscriberNotification({
  required String subscriberId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/v1/subscribers/${Uri.encodeComponent(subscriberId)}/notification',
    exceptionFnMap: _exceptionFns,
  );
}