deleteEventAction method

Future<void> deleteEventAction({
  1. required String eventActionId,
})

This operation deletes the event action.

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

Parameter eventActionId : The unique identifier for the event action.

Implementation

Future<void> deleteEventAction({
  required String eventActionId,
}) async {
  await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/v1/event-actions/${Uri.encodeComponent(eventActionId)}',
    exceptionFnMap: _exceptionFns,
  );
}