Class: Aws::KafkaConnect::Types::ProvisionedCapacity
- Inherits:
-
Struct
- Object
- Struct
- Aws::KafkaConnect::Types::ProvisionedCapacity
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kafkaconnect/types.rb
Overview
Details about a connector’s provisioned 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.
1499 1500 1501 1502 1503 1504 |
# File 'lib/aws-sdk-kafkaconnect/types.rb', line 1499 class ProvisionedCapacity < Struct.new( :mcu_count, :worker_count) SENSITIVE = [] include Aws::Structure end |
#worker_count ⇒ Integer
The number of workers that are allocated to the connector.
1499 1500 1501 1502 1503 1504 |
# File 'lib/aws-sdk-kafkaconnect/types.rb', line 1499 class ProvisionedCapacity < Struct.new( :mcu_count, :worker_count) SENSITIVE = [] include Aws::Structure end |