Connector Capacity Autoscaling Args
data class ConnectorCapacityAutoscalingArgs(val maxWorkerCount: Output<Int>, val mcuCount: Output<Int>? = null, val minWorkerCount: Output<Int>, val scaleInPolicy: Output<ConnectorCapacityAutoscalingScaleInPolicyArgs>? = null, val scaleOutPolicy: Output<ConnectorCapacityAutoscalingScaleOutPolicyArgs>? = null) : ConvertibleToJava<ConnectorCapacityAutoscalingArgs>
Constructors
Link copied to clipboard
constructor(maxWorkerCount: Output<Int>, mcuCount: Output<Int>? = null, minWorkerCount: Output<Int>, scaleInPolicy: Output<ConnectorCapacityAutoscalingScaleInPolicyArgs>? = null, scaleOutPolicy: Output<ConnectorCapacityAutoscalingScaleOutPolicyArgs>? = null)
Properties
Link copied to clipboard
The maximum number of workers allocated to the connector.
Link copied to clipboard
The minimum number of workers allocated to the connector.
Link copied to clipboard
The scale-in policy for the connector. See scale_in_policy
Block for details.
Link copied to clipboard
The scale-out policy for the connector. See scale_out_policy
Block for details.