Module Values.TriggerDetailsSource

Details about what caused the incident to be created in Incident Manager.

Sourcetype nonrec t = {
  1. rawData : RawData.t option;
    (*

    Raw data passed from either Amazon EventBridge, Amazon CloudWatch, or Incident Manager when an incident is created.

    *)
  2. source : IncidentSource.t;
    (*

    Identifies the service that sourced the event. All events sourced from within Amazon Web Services begin with "aws." Customer-generated events can have any value here, as long as it doesn't begin with "aws." We recommend the use of Java package-name style reverse domain-name strings.

    *)
  3. timestamp : Timestamp.t;
    (*

    The timestamp for when the incident was detected.

    *)
  4. triggerArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the source that detected the incident.

    *)
}
Sourceval context_ : string
Sourceval make : ?rawData:??? -> ?triggerArn:??? -> source:IncidentSource.t -> timestamp:Timestamp.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RawData.t | `Timestamp of Timestamp.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