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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#enabledBoolean

Provisioned throughput is enabled or not.

Returns:

  • (Boolean)


4573
4574
4575
4576
4577
4578
# File 'lib/aws-sdk-kafka/types.rb', line 4573

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)


4573
4574
4575
4576
4577
4578
# File 'lib/aws-sdk-kafka/types.rb', line 4573

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