Values.DescribeMapRunOutputSourceProvides information about a Map Run's configuration, progress, and results. If you've redriven a Map Run, this API action also returns information about the redrives of that Map Run. For more information, see Examining Map Run in the Step Functions Developer Guide.
type nonrec t = {mapRunArn : LongArn.t option;The Amazon Resource Name (ARN) that identifies a Map Run.
*)executionArn : Arn.t option;The Amazon Resource Name (ARN) that identifies the execution in which the Map Run was started.
*)status : MapRunStatus.t option;The current status of the Map Run.
*)startDate : Timestamp.t option;The date when the Map Run was started.
*)stopDate : Timestamp.t option;The date when the Map Run was stopped.
*)maxConcurrency : MaxConcurrency.t option;The maximum number of child workflow executions configured to run in parallel for the Map Run at the same time.
*)toleratedFailurePercentage : ToleratedFailurePercentage.t option;The maximum percentage of failed child workflow executions before the Map Run fails.
*)toleratedFailureCount : ToleratedFailureCount.t option;The maximum number of failed child workflow executions before the Map Run fails.
*)itemCounts : MapRunItemCounts.t option;A JSON object that contains information about the total number of items, and the item count for each processing status, such as pending and failed.
*)executionCounts : MapRunExecutionCounts.t option;A JSON object that contains information about the total number of child workflow executions for the Map Run, and the count of child workflow executions for each status, such as failed and succeeded.
*)redriveCount : RedriveCount.t option;The number of times you've redriven a Map Run. If you have not yet redriven a Map Run, the redriveCount is 0. This count is only updated if you successfully redrive a Map Run.
*)redriveDate : Timestamp.t option;The date a Map Run was last redriven. If you have not yet redriven a Map Run, the redriveDate is null.
*)}type nonrec error = [ | `InvalidArn of InvalidArn.t| `ResourceNotFound of ResourceNotFound.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `InvalidArn of InvalidArn.t
| `ResourceNotFound of ResourceNotFound.t
| `Unknown_operation_error of string * string option ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `InvalidArn of InvalidArn.t
| `ResourceNotFound of ResourceNotFound.t
| `Unknown_operation_error of string * string option ]val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Float of ToleratedFailurePercentage.t
| `Integer of MaxConcurrency.t
| `Long of ToleratedFailureCount.t
| `String of LongArn.t
| `Structure of (string * [> `Long of UnsignedLong.t ]) list
| `Timestamp of Timestamp.t ])
list ]