Class: Aws::KafkaConnect::Types::ProvisionedCapacity

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb

Overview

Details about a connector's provisioned capacity.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#mcu_countInteger

The number of microcontroller units (MCUs) allocated to each connector worker. The valid values are 1,2,4,8.

Returns:

  • (Integer)


1499
1500
1501
1502
1503
1504
# File 'gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb', line 1499

class ProvisionedCapacity < Struct.new(
  :mcu_count,
  :worker_count)
  SENSITIVE = []
  include Aws::Structure
end

#worker_countInteger

The number of workers that are allocated to the connector.

Returns:

  • (Integer)


1499
1500
1501
1502
1503
1504
# File 'gems/aws-sdk-kafkaconnect/lib/aws-sdk-kafkaconnect/types.rb', line 1499

class ProvisionedCapacity < Struct.new(
  :mcu_count,
  :worker_count)
  SENSITIVE = []
  include Aws::Structure
end