Module Values.ManagedNotificationChildEventSource

A ManagedNotificationChildEvent is a notification-focused representation of an event. They contain semantic information used to create aggregated or non-aggregated end-user notifications.

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

    The schema version of the Managed Notification Child Event.

    *)
  2. id : NotificationEventId.t option;
    (*

    The unique identifier for a Managed Notification Child Event.

    *)
  3. messageComponents : MessageComponents.t option;
  4. sourceEventDetailUrl : Url.t option;
    (*

    The source event URL.

    *)
  5. sourceEventDetailUrlDisplayText : String_.t option;
    (*

    The detailed URL for the source event.

    *)
  6. 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.

    *)
  7. eventStatus : EventStatus.t option;
    (*

    The assesed nature of the event. Values: HEALTHY All EventRules are ACTIVE. UNHEALTHY Some EventRules are ACTIVE and some are INACTIVE.

    *)
  8. aggregateManagedNotificationEventArn : ManagedNotificationEventArn.t option;
    (*

    The Amazon Resource Name (ARN) of the ManagedNotificationEvent that is associated with this Managed Notification Child Event.

    *)
  9. startTime : SyntheticTimestamp_date_time.t option;
    (*

    The notification event start time.

    *)
  10. endTime : SyntheticTimestamp_date_time.t option;
    (*

    The end time of the event.

    *)
  11. textParts : TextParts.t option;
    (*

    A list of text values.

    *)
  12. organizationalUnitId : OrganizationalUnitId.t option;
    (*

    The Organizational Unit Id that an Amazon Web Services account belongs to.

    *)
  13. aggregationDetail : AggregationDetail.t option;
    (*

    Provides detailed information about the dimensions used for event summarization and aggregation.

    *)
}
Sourceval make : ?schemaVersion:??? -> ?id:??? -> ?messageComponents:??? -> ?sourceEventDetailUrl:??? -> ?sourceEventDetailUrlDisplayText:??? -> ?notificationType:??? -> ?eventStatus:??? -> ?aggregateManagedNotificationEventArn:??? -> ?startTime:??? -> ?endTime:??? -> ?textParts:??? -> ?organizationalUnitId:??? -> ?aggregationDetail:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TextPartId.t ] * [> `Structure of (string * [> `Enum of string | `Map of ([> `Enum of string ] * [> `String of String_.t ]) list | `String of TextPartValueDisplayTextString.t ]) list ]) list | `String of NotificationEventId.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of TextPartReference.t ]) list ] list | `String of TextPartReference.t ]) list | `Timestamp of SyntheticTimestamp_date_time.t ]) 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