Values.UpdateMapRunInputSourceUpdates an in-progress Map Run's configuration to include changes to the settings that control maximum concurrency and Map Run failure.
type nonrec t = {mapRunArn : LongArn.t;The Amazon Resource Name (ARN) of a Map Run.
*)maxConcurrency : MaxConcurrency.t option;The maximum number of child workflow executions that can be specified to run in parallel for the Map Run at the same time.
*)toleratedFailurePercentage : ToleratedFailurePercentage.t option;The maximum percentage of failed items before the Map Run fails.
*)toleratedFailureCount : ToleratedFailureCount.t option;The maximum number of failed items before the Map Run fails.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Float of ToleratedFailurePercentage.t
| `Integer of MaxConcurrency.t
| `Long of ToleratedFailureCount.t
| `String of LongArn.t ])
list ]