Values.InspectionDataSourceContains additional details about the state's execution, including its input and output data processing flow, and HTTP request and response information.
type nonrec t = {input : SensitiveData.t option;The raw state input.
*)afterArguments : SensitiveData.t option;The input after Step Functions applies an Arguments filter. This event will only be present when QueryLanguage for the state machine or individual states is set to JSONata. For more info, see Transforming data with Step Functions.
*)afterInputPath : SensitiveData.t option;The input after Step Functions applies the InputPath filter. Not populated when QueryLanguage is JSONata.
*)afterParameters : SensitiveData.t option;The effective input after Step Functions applies the Parameters filter. Not populated when QueryLanguage is JSONata.
*)result : SensitiveData.t option;The state's raw result.
*)afterResultSelector : SensitiveData.t option;The effective result after Step Functions applies the ResultSelector filter. Not populated when QueryLanguage is JSONata.
*)afterResultPath : SensitiveData.t option;The effective result combined with the raw state input after Step Functions applies the ResultPath filter. Not populated when QueryLanguage is JSONata.
*)request : InspectionDataRequest.t option;The raw HTTP request that is sent when you test an HTTP Task.
*)response : InspectionDataResponse.t option;The raw HTTP response that is returned when you test an HTTP Task.
*)variables : SensitiveData.t option;JSON string that contains the set of workflow variables after execution of the state. The set will include variables assigned in the state and variables set up as test state input.
*)errorDetails : InspectionErrorDetails.t option;An object containing data about a handled exception in the tested state.
*)afterItemsPath : SensitiveData.t option;The effective input after the ItemsPath filter is applied. Not populated when the QueryLanguage is JSONata.
*)afterItemSelector : SensitiveData.t option;An array containing the inputs for each Map iteration, transformed by the ItemSelector specified in a Map state.
*)afterItemBatcher : SensitiveData.t option;The effective input after the ItemBatcher filter is applied in a Map state.
*)afterItemsPointer : SensitiveData.t option;The effective input after the ItemsPointer filter is applied in a Map state.
*)toleratedFailureCount : InspectionToleratedFailureCount.t option;The tolerated failure threshold for a Map state as defined in number of Map state iterations.
*)toleratedFailurePercentage : InspectionToleratedFailurePercentage.t option;The tolerated failure threshold for a Map state as defined in percentage of Map state iterations.
*)maxConcurrency : InspectionMaxConcurrency.t option;The max concurrency of the Map state.
*)}val make :
?input:??? ->
?afterArguments:??? ->
?afterInputPath:??? ->
?afterParameters:??? ->
?result:??? ->
?afterResultSelector:??? ->
?afterResultPath:??? ->
?request:??? ->
?response:??? ->
?variables:??? ->
?errorDetails:??? ->
?afterItemsPath:??? ->
?afterItemSelector:??? ->
?afterItemBatcher:??? ->
?afterItemsPointer:??? ->
?toleratedFailureCount:??? ->
?toleratedFailurePercentage:??? ->
?maxConcurrency:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Float of InspectionToleratedFailurePercentage.t
| `Integer of InspectionToleratedFailureCount.t
| `String of SensitiveData.t
| `Structure of
(string
* [> `Integer of ExceptionHandlerIndex.t
| `String of HTTPProtocol.t ])
list ])
list ]