Class: Aws::DataSync::Types::IOPS
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataSync::Types::IOPS
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-datasync/types.rb
Overview
The IOPS peaks for an on-premises storage system resource. Each data point represents the 95th percentile peak value during a 1-hour interval.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#other ⇒ Float
Peak IOPS unrelated to read and write operations.
-
#read ⇒ Float
Peak IOPS related to read operations.
-
#total ⇒ Float
Peak total IOPS on your on-premises storage system resource.
-
#write ⇒ Float
Peak IOPS related to write operations.
Instance Attribute Details
#other ⇒ Float
Peak IOPS unrelated to read and write operations.
3414 3415 3416 3417 3418 3419 3420 3421 |
# File 'lib/aws-sdk-datasync/types.rb', line 3414 class IOPS < Struct.new( :read, :write, :other, :total) SENSITIVE = [] include Aws::Structure end |
#read ⇒ Float
Peak IOPS related to read operations.
3414 3415 3416 3417 3418 3419 3420 3421 |
# File 'lib/aws-sdk-datasync/types.rb', line 3414 class IOPS < Struct.new( :read, :write, :other, :total) SENSITIVE = [] include Aws::Structure end |