Module Values.TaskTimedOutEventDetailsSource

Contains details about a resource timeout that occurred during an execution.

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. error : SensitiveError.t option;
    (*

    The error code of the failure.

    *)
  4. cause : SensitiveCause.t option;
    (*

    A more detailed explanation of the cause of the failure.

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