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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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.



1819
1820
1821
1822
1823
1824
# File 'lib/aws-sdk-kafka/types.rb', line 1819

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)


1819
1820
1821
1822
1823
1824
# File 'lib/aws-sdk-kafka/types.rb', line 1819

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