INPUT_OBJECT

EventDigestInput

Description

An event digest.

link GraphQL Schema definition

  • input EventDigestInput {
  • # ID of the event digest.
  • digestId: Int
  • # Name of the event digest.
  • digestName: String!
  • # Frequency, in hours, with which the event digests are sent.
  • frequencyHours: Int!
  • # Specifies whether to send the event digest immediately.
  • isImmediate: Boolean!
  • # Specifies whether to include audits in the event digest.
  • includeAudits: Boolean!
  • # Specifies whether to include events in the event digest.
  • includeEvents: Boolean!
  • # Event digest configuration.
  • eventDigestConfig: EventDigestConfig!
  • # User IDs of the recipients.
  • recipientUserId: String!
  • # Specifies the cluster UUIDs that this event digest applies to.
  • clusterUuids: [UUID!]!
  • }