Module Values.TaskSubmittedEventDetailsSource

Contains details about a task submitted to a resource .

Sourcetype nonrec t = {
  1. resourceType : Name.t option;
    (*

    The service name of the resource in a task state.

    *)
  2. resource : Name.t option;
    (*

    The action of the resource called by a task state.

    *)
  3. output : SensitiveData.t option;
    (*

    The response from a resource when a task has started. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

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

    Contains details about the output of an execution history event.

    *)
}
Sourceval make : ?resourceType:??? -> ?resource:??? -> ?output:??? -> ?outputDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Name.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