Class: Aws::KafkaConnect::Types::Capacity
- Inherits:
-
Struct
- Object
- Struct
- Aws::KafkaConnect::Types::Capacity
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kafkaconnect/types.rb
Overview
Information about the capacity of the connector, whether it is auto scaled or provisioned.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_scaling ⇒ Types::AutoScaling
Information about the auto scaling parameters for the connector.
-
#provisioned_capacity ⇒ Types::ProvisionedCapacity
Details about a fixed capacity allocated to a connector.
Instance Attribute Details
#auto_scaling ⇒ Types::AutoScaling
Information about the auto scaling parameters for the connector.
187 188 189 190 191 192 |
# File 'lib/aws-sdk-kafkaconnect/types.rb', line 187 class Capacity < Struct.new( :auto_scaling, :provisioned_capacity) SENSITIVE = [] include Aws::Structure end |
#provisioned_capacity ⇒ Types::ProvisionedCapacity
Details about a fixed capacity allocated to a connector.
187 188 189 190 191 192 |
# File 'lib/aws-sdk-kafkaconnect/types.rb', line 187 class Capacity < Struct.new( :auto_scaling, :provisioned_capacity) SENSITIVE = [] include Aws::Structure end |