Values.AutoScalingUpdateSourceThe updates to the auto scaling parameters for the connector.
type nonrec t = {maxWorkerCount : int;The target maximum number of workers allocated to the connector.
*)mcuCount : int;The target number of microcontroller units (MCUs) allocated to each connector worker. The valid values are 1,2,4,8.
*)minWorkerCount : int;The target minimum number of workers allocated to the connector.
*)scaleInPolicy : ScaleInPolicyUpdate.t;The target scale-in policy for the connector.
*)scaleOutPolicy : ScaleOutPolicyUpdate.t;The target scale-out policy for the connector.
*)maxAutoscalingTaskCount : int option;The maximum number of tasks allocated to the connector during autoscaling operations. Must be at least equal to maxWorkerCount.
*)}val make :
?maxAutoscalingTaskCount:??? ->
maxWorkerCount:int ->
mcuCount:int ->
minWorkerCount:int ->
scaleInPolicy:ScaleInPolicyUpdate.t ->
scaleOutPolicy:ScaleOutPolicyUpdate.t ->
unit ->
t