Module Values.ActivitySucceededEventDetailsSource

Contains details about an activity that successfully terminated during an execution.

Sourcetype nonrec t = {
  1. output : SensitiveData.t option;
    (*

    The JSON data output by the activity task. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

    *)
  2. outputDetails : HistoryEventExecutionDataDetails.t option;
    (*

    Contains details about the output of an execution history event.

    *)
}
Sourceval make : ?output:??? -> ?outputDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SensitiveData.t | `Structure of (string * [> `Boolean of Truncated.t ]) list ]) 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