Class: Aws::DataSync::Types::Throughput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-datasync/types.rb

Overview

The throughput peaks for an on-premises storage system volume. 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 throughput unrelated to read and write operations.

Returns:

  • (Float)


5322
5323
5324
5325
5326
5327
5328
5329
# File 'lib/aws-sdk-datasync/types.rb', line 5322

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

#readFloat

Peak throughput related to read operations.

Returns:

  • (Float)


5322
5323
5324
5325
5326
5327
5328
5329
# File 'lib/aws-sdk-datasync/types.rb', line 5322

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

#totalFloat

Peak total throughput on your on-premises storage system resource.

Returns:

  • (Float)


5322
5323
5324
5325
5326
5327
5328
5329
# File 'lib/aws-sdk-datasync/types.rb', line 5322

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

#writeFloat

Peak throughput related to write operations.

Returns:

  • (Float)


5322
5323
5324
5325
5326
5327
5328
5329
# File 'lib/aws-sdk-datasync/types.rb', line 5322

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