Class: Aws::KafkaConnect::Types::AutoScalingUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::KafkaConnect::Types::AutoScalingUpdate
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kafkaconnect/types.rb
Overview
The updates to the auto scaling parameters for the connector.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_worker_count ⇒ Integer
The target maximum number of workers allocated to the connector.
-
#mcu_count ⇒ Integer
The target number of microcontroller units (MCUs) allocated to each connector worker.
-
#min_worker_count ⇒ Integer
The target minimum number of workers allocated to the connector.
-
#scale_in_policy ⇒ Types::ScaleInPolicyUpdate
The target sacle-in policy for the connector.
-
#scale_out_policy ⇒ Types::ScaleOutPolicyUpdate
The target sacle-out policy for the connector.
Instance Attribute Details
#max_worker_count ⇒ Integer
The target maximum number of workers allocated to the connector.
150 151 152 153 154 155 156 157 158 |
# File 'lib/aws-sdk-kafkaconnect/types.rb', line 150 class AutoScalingUpdate < Struct.new( :max_worker_count, :mcu_count, :min_worker_count, :scale_in_policy, :scale_out_policy) SENSITIVE = [] include Aws::Structure end |
#mcu_count ⇒ Integer
The target number of microcontroller units (MCUs) allocated to each connector worker. The valid values are 1,2,4,8.
150 151 152 153 154 155 156 157 158 |
# File 'lib/aws-sdk-kafkaconnect/types.rb', line 150 class AutoScalingUpdate < Struct.new( :max_worker_count, :mcu_count, :min_worker_count, :scale_in_policy, :scale_out_policy) SENSITIVE = [] include Aws::Structure end |
#min_worker_count ⇒ Integer
The target minimum number of workers allocated to the connector.
150 151 152 153 154 155 156 157 158 |
# File 'lib/aws-sdk-kafkaconnect/types.rb', line 150 class AutoScalingUpdate < Struct.new( :max_worker_count, :mcu_count, :min_worker_count, :scale_in_policy, :scale_out_policy) SENSITIVE = [] include Aws::Structure end |
#scale_in_policy ⇒ Types::ScaleInPolicyUpdate
The target sacle-in policy for the connector.
150 151 152 153 154 155 156 157 158 |
# File 'lib/aws-sdk-kafkaconnect/types.rb', line 150 class AutoScalingUpdate < Struct.new( :max_worker_count, :mcu_count, :min_worker_count, :scale_in_policy, :scale_out_policy) SENSITIVE = [] include Aws::Structure end |
#scale_out_policy ⇒ Types::ScaleOutPolicyUpdate
The target sacle-out policy for the connector.
150 151 152 153 154 155 156 157 158 |
# File 'lib/aws-sdk-kafkaconnect/types.rb', line 150 class AutoScalingUpdate < Struct.new( :max_worker_count, :mcu_count, :min_worker_count, :scale_in_policy, :scale_out_policy) SENSITIVE = [] include Aws::Structure end |