Class: Aws::DataSync::Types::Latency
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataSync::Types::Latency
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-datasync/types.rb
Overview
The latency 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 latency for operations unrelated to read and write operations.
-
#read ⇒ Float
Peak latency for read operations.
-
#write ⇒ Float
Peak latency for write operations.
Instance Attribute Details
#other ⇒ Float
Peak latency for operations unrelated to read and write operations.
3479 3480 3481 3482 3483 3484 3485 |
# File 'lib/aws-sdk-datasync/types.rb', line 3479 class Latency < Struct.new( :read, :write, :other) SENSITIVE = [] include Aws::Structure end |