Class: Aws::DataSync::Types::Latency

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#otherFloat

Peak latency for operations unrelated to read and write operations.

Returns:

  • (Float)


3265
3266
3267
3268
3269
3270
3271
# File 'lib/aws-sdk-datasync/types.rb', line 3265

class Latency < Struct.new(
  :read,
  :write,
  :other)
  SENSITIVE = []
  include Aws::Structure
end

#readFloat

Peak latency for read operations.

Returns:

  • (Float)


3265
3266
3267
3268
3269
3270
3271
# File 'lib/aws-sdk-datasync/types.rb', line 3265

class Latency < Struct.new(
  :read,
  :write,
  :other)
  SENSITIVE = []
  include Aws::Structure
end

#writeFloat

Peak latency for write operations.

Returns:

  • (Float)


3265
3266
3267
3268
3269
3270
3271
# File 'lib/aws-sdk-datasync/types.rb', line 3265

class Latency < Struct.new(
  :read,
  :write,
  :other)
  SENSITIVE = []
  include Aws::Structure
end