Values.TriggerDetailsSourceDetails about what caused the incident to be created in Incident Manager.
type nonrec t = {rawData : RawData.t option;Raw data passed from either Amazon EventBridge, Amazon CloudWatch, or Incident Manager when an incident is created.
*)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.
*)timestamp : Timestamp.t;The timestamp for when the incident was detected.
*)triggerArn : Arn.t option;The Amazon Resource Name (ARN) of the source that detected the incident.
*)}val make :
?rawData:??? ->
?triggerArn:??? ->
source:IncidentSource.t ->
timestamp:Timestamp.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `String of RawData.t | `Timestamp of Timestamp.t ]) list ]