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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-datasync/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)


3290
3291
3292
3293
3294
3295
3296
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3290

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

#readFloat

Peak latency for read operations.

Returns:

  • (Float)


3290
3291
3292
3293
3294
3295
3296
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3290

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

#writeFloat

Peak latency for write operations.

Returns:

  • (Float)


3290
3291
3292
3293
3294
3295
3296
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3290

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