Module Values.ActivityTaskCanceledEventAttributesSource

Provides the details of the ActivityTaskCanceled event.

Sourcetype nonrec t = {
  1. details : Data.t option;
    (*

    Details of the cancellation.

    *)
  2. scheduledEventId : EventId.t option;
    (*

    The ID of the ActivityTaskScheduled event that was recorded when this activity task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

    *)
  3. startedEventId : EventId.t option;
    (*

    The ID of the ActivityTaskStarted event recorded when this activity task was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

    *)
  4. latestCancelRequestedEventId : EventId.t option;
    (*

    If set, contains the ID of the last ActivityTaskCancelRequested event recorded for this activity task. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

    *)
}
Sourceval make : ?details:??? -> ?scheduledEventId:??? -> ?startedEventId:??? -> ?latestCancelRequestedEventId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of EventId.t | `String of Data.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