Class: Aws::Kafka::Types::EBSStorageInfo

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

Overview

Contains information about the EBS storage volumes attached to Apache Kafka broker nodes.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#provisioned_throughputTypes::ProvisionedThroughput

EBS volume provisioned throughput information.



1800
1801
1802
1803
1804
1805
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 1800

class EBSStorageInfo < Struct.new(
  :provisioned_throughput,
  :volume_size)
  SENSITIVE = []
  include Aws::Structure
end

#volume_sizeInteger

The size in GiB of the EBS volume for the data drive on each broker node.

Returns:

  • (Integer)


1800
1801
1802
1803
1804
1805
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 1800

class EBSStorageInfo < Struct.new(
  :provisioned_throughput,
  :volume_size)
  SENSITIVE = []
  include Aws::Structure
end