Module Values.ModifyClusterInputSource

Modifies the number of steps that can be executed concurrently for the cluster specified using ClusterID.

Sourcetype nonrec t = {
  1. clusterId : String_.t;
    (*

    The unique identifier of the cluster.

    *)
  2. stepConcurrencyLevel : Integer.t option;
    (*

    The number of steps that can be executed concurrently. You can specify a minimum of 1 step and a maximum of 256 steps. We recommend that you do not change this parameter while steps are running or the ActionOnFailure setting may not behave as expected. For more information see Step$ActionOnFailure.

    *)
  3. extendedSupport : BooleanObject.t option;
    (*

    Reserved.

    *)
}
Sourceval context_ : string
Sourceval make : ?stepConcurrencyLevel:??? -> ?extendedSupport:??? -> clusterId:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanObject.t | `Integer of Integer.t | `String of String_.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