Module Values.ManagedNotificationEventSummarySource

A short summary of a ManagedNotificationEvent. This is only used when listing managed notification events.

Sourcetype nonrec t = {
  1. schemaVersion : SchemaVersion.t option;
    (*

    The schema version of the ManagedNotificationEvent.

    *)
  2. sourceEventMetadata : ManagedSourceEventMetadataSummary.t option;
    (*

    Contains metadata about the event that caused the ManagedNotificationEvent.

    *)
  3. messageComponents : MessageComponentsSummary.t option;
  4. eventStatus : EventStatus.t option;
    (*

    The managed notification event status. Values: HEALTHY All EventRules are ACTIVE. UNHEALTHY Some EventRules are ACTIVE and some are INACTIVE.

    *)
  5. notificationType : NotificationType.t option;
    (*

    The Type of event causing the notification. Values: ALERT A notification about an event where something was triggered, initiated, reopened, deployed, or a threshold was breached. WARNING A notification about an event where an issue is about to arise. For example, something is approaching a threshold. ANNOUNCEMENT A notification about an important event. For example, a step in a workflow or escalation path or that a workflow was updated. INFORMATIONAL A notification about informational messages. For example, recommendations, service announcements, or reminders.

    *)
}
Sourceval make : ?schemaVersion:??? -> ?sourceEventMetadata:??? -> ?messageComponents:??? -> ?eventStatus:??? -> ?notificationType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of ManagedSourceEventMetadataSummaryEventOriginRegionString.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t