INPUT_OBJECT

EventsNotificationRuleInput

Input specifying changes or create to a notification rule

link GraphQL Schema definition

  • input EventsNotificationRuleInput {
  • # Status of the Notification Rule
  • enabled: Boolean
  • # The type of the event
  • eventType: EventsEventType!
  • # A [jsonata](https://docs.jsonata.org/overview.html) predicate to filter events
  • # based on their payload. The event is only sent to
  • # the subscriber if this expression evaluates to `true`, otherwise it is skipped
  • jsonataExpression: String
  • # Name of the Notification Rule
  • name: String
  • # Optional Unique identifier of the notification rule instance. Required when
  • # updating an existing notification rule
  • notificationRuleId: String
  • # notification target list. Currently we only support one configured target per
  • # notification rule
  • notificationTargets: [String!]
  • }