Class: Aws::EMR::Types::EbsConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::EbsConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emr/types.rb
Overview
The Amazon EBS configuration of a cluster instance.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ebs_block_device_configs ⇒ Array<Types::EbsBlockDeviceConfig>
An array of Amazon EBS volume specifications attached to a cluster instance.
-
#ebs_optimized ⇒ Boolean
Indicates whether an Amazon EBS volume is EBS-optimized.
Instance Attribute Details
#ebs_block_device_configs ⇒ Array<Types::EbsBlockDeviceConfig>
An array of Amazon EBS volume specifications attached to a cluster instance.
1719 1720 1721 1722 1723 1724 |
# File 'lib/aws-sdk-emr/types.rb', line 1719 class EbsConfiguration < Struct.new( :ebs_block_device_configs, :ebs_optimized) SENSITIVE = [] include Aws::Structure end |
#ebs_optimized ⇒ Boolean
Indicates whether an Amazon EBS volume is EBS-optimized. The default is false. You should explicitly set this value to true to enable the Amazon EBS-optimized setting for an EC2 instance.
1719 1720 1721 1722 1723 1724 |
# File 'lib/aws-sdk-emr/types.rb', line 1719 class EbsConfiguration < Struct.new( :ebs_block_device_configs, :ebs_optimized) SENSITIVE = [] include Aws::Structure end |