Module Values.EventSummarySource

Details about a timeline event during an incident.

Sourcetype nonrec t = {
  1. eventId : UUID.t option;
    (*

    The timeline event ID.

    *)
  2. eventReferences : EventReferenceList.t option;
    (*

    A list of references in a TimelineEvent.

    *)
  3. eventTime : Timestamp.t option;
    (*

    The timestamp for when the event occurred.

    *)
  4. eventType : TimelineEventType.t option;
    (*

    The type of event. The timeline event must be Custom Event or Note.

    *)
  5. eventUpdatedTime : Timestamp.t option;
    (*

    The timestamp for when the timeline event was last updated.

    *)
  6. incidentRecordArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the incident that the event happened during.

    *)
}
Sourceval make : ?eventId:??? -> ?eventReferences:??? -> ?eventTime:??? -> ?eventType:??? -> ?eventUpdatedTime:??? -> ?incidentRecordArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of GeneratedId.t ]) list ] list | `String of UUID.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