Class: Aws::KafkaConnect::Types::ProvisionedCapacityUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::KafkaConnect::Types::ProvisionedCapacityUpdate
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kafkaconnect/types.rb
Overview
An update to a connector’s fixed capacity.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#mcu_count ⇒ Integer
The number of microcontroller units (MCUs) allocated to each connector worker.
-
#worker_count ⇒ Integer
The number of workers that are allocated to the connector.
Instance Attribute Details
#mcu_count ⇒ Integer
The number of microcontroller units (MCUs) allocated to each connector worker. The valid values are 1,2,4,8.
1539 1540 1541 1542 1543 1544 |
# File 'lib/aws-sdk-kafkaconnect/types.rb', line 1539 class ProvisionedCapacityUpdate < Struct.new( :mcu_count, :worker_count) SENSITIVE = [] include Aws::Structure end |
#worker_count ⇒ Integer
The number of workers that are allocated to the connector.
1539 1540 1541 1542 1543 1544 |
# File 'lib/aws-sdk-kafkaconnect/types.rb', line 1539 class ProvisionedCapacityUpdate < Struct.new( :mcu_count, :worker_count) SENSITIVE = [] include Aws::Structure end |