API Stability Long-Term

The deleteEventForwarder() GraphQL mutation may be used to deletes an event forwarder in LogScale.

For more information on event forwarding rules, see the Event Forwarding Rules documentation page. You may also want to look at the Event Forwarding and the Events page for related information.

Syntax

Below is the syntax for the deleteEventForwarder() mutation field:

graphql
deleteEventForwarder(
     input: DeleteEventForwarderInput!
   ): boolean!

Below is an example of how this mutation field might be used:

Show:
graphql
mutation {
  deleteEventForwarder(input: 
       { id: "WKoeRcQ0EpuUskKvIJrGSXunEQZ09kU1" }
  )
}
Example Responses
Show:
json
{
  "data": {
    "deleteEventForwarder": true
  }
}

Given Datatypes

For DeleteEventForwarderInput, there is only one parameter that may be given. It's described below:

Table: DeleteEventForwarderInput

ParameterTypeRequiredDefaultStabilityDescription
Some arguments may be required, as indicated in the Required column. For some fields, this column indicates that a result will always be returned for this column.
Table last updated: Sep 18, 2024
idstringyes Long-TermThe unique identifier of the event forwarder.