Module Values.TimelineEventSource

A significant event that happened during the incident.

Sourcetype nonrec t = {
  1. eventData : EventData.t option;
    (*

    A short description of the event.

    *)
  2. eventId : UUID.t option;
    (*

    The ID of the timeline event.

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

    A list of references in a TimelineEvent.

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

    The timestamp for when the event occurred.

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

    The type of event that occurred. Currently Incident Manager supports only the Custom Event and Note types.

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

    The timestamp for when the timeline event was last updated.

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

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

    *)
}
Sourceval make : ?eventData:??? -> ?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 EventData.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