deleteNotificationConfiguration method

Future<void> deleteNotificationConfiguration({
  1. required EventType eventType,
})

Deletes a notification configuration.

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

Parameter eventType : The type of event triggering a device notification to the customer-managed destination.

Implementation

Future<void> deleteNotificationConfiguration({
  required EventType eventType,
}) async {
  await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/notification-configurations/${Uri.encodeComponent(eventType.value)}',
    exceptionFnMap: _exceptionFns,
  );
}