Values.FlowAliasConcurrencyConfigurationSourceDetermines how multiple nodes in a flow can run in parallel. Running nodes concurrently can improve your flow's performance.
type nonrec t = {type_ : ConcurrencyType.t;The type of concurrency to use for parallel node execution. Specify one of the following options: Automatic - Amazon Bedrock determines which nodes can be executed in parallel based on the flow definition and its dependencies. Manual - You specify which nodes can be executed in parallel.
*)maxConcurrency : FlowAliasConcurrencyConfigurationMaxConcurrencyInteger.t
option;The maximum number of nodes that can be executed concurrently in the flow.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of
FlowAliasConcurrencyConfigurationMaxConcurrencyInteger.t ])
list ]