Class: Aws::EMR::Types::VolumeSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::VolumeSpecification
- Defined in:
- gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb
Overview
EBS volume specifications such as volume type, IOPS, size (GiB) and throughput (MiB/s) that are requested for the EBS volume attached to an Amazon EC2 instance in the cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#iops ⇒ Integer
The number of I/O operations per second (IOPS) that the volume supports.
-
#size_in_gb ⇒ Integer
The volume size, in gibibytes (GiB).
-
#throughput ⇒ Integer
The throughput, in mebibyte per second (MiB/s).
-
#volume_type ⇒ String
The volume type.
Instance Attribute Details
#iops ⇒ Integer
The number of I/O operations per second (IOPS) that the volume supports.
7094 7095 7096 7097 7098 7099 7100 7101 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 7094 class VolumeSpecification < Struct.new( :volume_type, :iops, :size_in_gb, :throughput) SENSITIVE = [] include Aws::Structure end |
#size_in_gb ⇒ Integer
The volume size, in gibibytes (GiB). This can be a number from 1 - 1024. If the volume type is EBS-optimized, the minimum value is 10.
7094 7095 7096 7097 7098 7099 7100 7101 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 7094 class VolumeSpecification < Struct.new( :volume_type, :iops, :size_in_gb, :throughput) SENSITIVE = [] include Aws::Structure end |
#throughput ⇒ Integer
The throughput, in mebibyte per second (MiB/s). This optional parameter can be a number from 125 - 1000 and is valid only for gp3 volumes.
7094 7095 7096 7097 7098 7099 7100 7101 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 7094 class VolumeSpecification < Struct.new( :volume_type, :iops, :size_in_gb, :throughput) SENSITIVE = [] include Aws::Structure end |
#volume_type ⇒ String
The volume type. Volume types supported are gp3, gp2, io1, st1, sc1, and standard.
7094 7095 7096 7097 7098 7099 7100 7101 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 7094 class VolumeSpecification < Struct.new( :volume_type, :iops, :size_in_gb, :throughput) SENSITIVE = [] include Aws::Structure end |