Class: Aws::Kafka::Types::ProvisionedThroughput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::ProvisionedThroughput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kafka/types.rb
Overview
Contains information about provisioned throughput for EBS storage volumes attached to kafka broker nodes.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
Provisioned throughput is enabled or not.
-
#volume_throughput ⇒ Integer
Throughput value of the EBS volumes for the data drive on each kafka broker node in MiB per second.
Instance Attribute Details
#enabled ⇒ Boolean
Provisioned throughput is enabled or not.
4595 4596 4597 4598 4599 4600 |
# File 'lib/aws-sdk-kafka/types.rb', line 4595 class ProvisionedThroughput < Struct.new( :enabled, :volume_throughput) SENSITIVE = [] include Aws::Structure end |
#volume_throughput ⇒ Integer
Throughput value of the EBS volumes for the data drive on each kafka broker node in MiB per second.
4595 4596 4597 4598 4599 4600 |
# File 'lib/aws-sdk-kafka/types.rb', line 4595 class ProvisionedThroughput < Struct.new( :enabled, :volume_throughput) SENSITIVE = [] include Aws::Structure end |