OBJECT

EventDigest

Description

An Event Digest.

link GraphQL Schema definition

  • type EventDigest {
  • # Account related to the event digest.
  • account: String!
  • # ID of the event digest.
  • digestId: Int!
  • # Name of the event digest.
  • digestName: String!
  • # Frequency, in hours, with which the event digests are sent.
  • frequency: Int!
  • # Specifies whether to send the event digest immediately.
  • isImmediate: Boolean!
  • # Deprecated. Use eventDigestConfig.
  • eventDigestConfigJson: String!
  • # User ID of the recipient.
  • recipientUserId: String!
  • # Specifies whether to include audits in the event digest.
  • includeAudits: Boolean!
  • # Specifies whether to include events in the event digest.
  • includeEvents: Boolean!
  • # Email address of the creator of this digest.
  • creatorEmailAddress: String!
  • # The configuration of the event digest.
  • eventDigestConfig: EventDigestConfigInfo!
  • # Specifies the cluster UUIDs that this event digest applies to.
  • clusterUuids: [UUID!]!
  • }