Class: Aws::Kafka::Types::ProvisionedThroughput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kafka/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

Instance Attribute Details

#enabledBoolean

Provisioned throughput is enabled or not.

Returns:

  • (Boolean)


4530
4531
4532
4533
4534
4535
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 4530

class ProvisionedThroughput < Struct.new(
  :enabled,
  :volume_throughput)
  SENSITIVE = []
  include Aws::Structure
end

#volume_throughputInteger

Throughput value of the EBS volumes for the data drive on each kafka broker node in MiB per second.

Returns:

  • (Integer)


4530
4531
4532
4533
4534
4535
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 4530

class ProvisionedThroughput < Struct.new(
  :enabled,
  :volume_throughput)
  SENSITIVE = []
  include Aws::Structure
end