Module Values.UpdateMapRunInputSource

Updates an in-progress Map Run's configuration to include changes to the settings that control maximum concurrency and Map Run failure.

Sourcetype nonrec t = {
  1. mapRunArn : LongArn.t;
    (*

    The Amazon Resource Name (ARN) of a Map Run.

    *)
  2. 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.

    *)
  3. toleratedFailurePercentage : ToleratedFailurePercentage.t option;
    (*

    The maximum percentage of failed items before the Map Run fails.

    *)
  4. toleratedFailureCount : ToleratedFailureCount.t option;
    (*

    The maximum number of failed items before the Map Run fails.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxConcurrency:??? -> ?toleratedFailurePercentage:??? -> ?toleratedFailureCount:??? -> mapRunArn:LongArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of ToleratedFailurePercentage.t | `Integer of MaxConcurrency.t | `Long of ToleratedFailureCount.t | `String of LongArn.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