Module Values.TestStateConfigurationSource

Contains configurations for the tested state.

Sourcetype nonrec t = {
  1. retrierRetryCount : RetrierRetryCount.t option;
    (*

    The number of retry attempts that have occurred for the state's Retry that applies to the mocked error.

    *)
  2. errorCausedByState : TestStateStateName.t option;
    (*

    The name of the state from which an error originates when an error is mocked for a Map or Parallel state.

    *)
  3. mapIterationFailureCount : MapIterationFailureCount.t option;
    (*

    The number of Map state iterations that failed during the Map state invocation.

    *)
  4. mapItemReaderData : SensitiveData.t option;
    (*

    The data read by ItemReader in Distributed Map states as found in its original source.

    *)
}
Sourceval make : ?retrierRetryCount:??? -> ?errorCausedByState:??? -> ?mapIterationFailureCount:??? -> ?mapItemReaderData:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of RetrierRetryCount.t | `String of TestStateStateName.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