You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::EMR::Types::EbsConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing EbsConfiguration as input to an Aws::Client method, you can use a vanilla Hash:

{
  ebs_block_device_configs: [
    {
      volume_specification: { # required
        volume_type: "String", # required
        iops: 1,
        size_in_gb: 1, # required
      },
      volumes_per_instance: 1,
    },
  ],
  ebs_optimized: false,
}

The Amazon EBS configuration of a cluster instance.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#ebs_block_device_configsArray<Types::EbsBlockDeviceConfig>

An array of Amazon EBS volume specifications attached to a cluster instance.

Returns:

#ebs_optimizedBoolean

Indicates whether an Amazon EBS volume is EBS-optimized.

Returns:

  • (Boolean)

    Indicates whether an Amazon EBS volume is EBS-optimized.