Module Values.FlowAliasConcurrencyConfigurationSource

Determines how multiple nodes in a flow can run in parallel. Running nodes concurrently can improve your flow's performance.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. maxConcurrency : FlowAliasConcurrencyConfigurationMaxConcurrencyInteger.t option;
    (*

    The maximum number of nodes that can be executed concurrently in the flow.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxConcurrency:??? -> type_:ConcurrencyType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of FlowAliasConcurrencyConfigurationMaxConcurrencyInteger.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