Class: Aws::KafkaConnect::Types::ProvisionedCapacityDescription
- Inherits:
-
Struct
- Object
- Struct
- Aws::KafkaConnect::Types::ProvisionedCapacityDescription
- Defined in:
- gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb
Overview
The description of 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.
1519 1520 1521 1522 1523 1524 |
# File 'gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb', line 1519 class ProvisionedCapacityDescription < Struct.new( :mcu_count, :worker_count) SENSITIVE = [] include Aws::Structure end |
#worker_count ⇒ Integer
The number of workers that are allocated to the connector.
1519 1520 1521 1522 1523 1524 |
# File 'gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb', line 1519 class ProvisionedCapacityDescription < Struct.new( :mcu_count, :worker_count) SENSITIVE = [] include Aws::Structure end |