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

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

Overview

Note:

When making an API call, you may pass EBSStorageInfo data as a hash:

{
  volume_size: 1,
}

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

Instance Attribute Summary collapse

Instance Attribute Details

#volume_sizeInteger

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

Returns:

  • (Integer)


372
373
374
375
# File 'lib/aws-sdk-kafka/types.rb', line 372

class EBSStorageInfo < Struct.new(
  :volume_size)
  include Aws::Structure
end