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)


5223
5224
5225
5226
5227
5228
5229
5230
# File 'lib/aws-sdk-datasync/types.rb', line 5223

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

#readFloat

Peak throughput related to read operations.

Returns:

  • (Float)


5223
5224
5225
5226
5227
5228
5229
5230
# File 'lib/aws-sdk-datasync/types.rb', line 5223

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)


5223
5224
5225
5226
5227
5228
5229
5230
# File 'lib/aws-sdk-datasync/types.rb', line 5223

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

#writeFloat

Peak throughput related to write operations.

Returns:

  • (Float)


5223
5224
5225
5226
5227
5228
5229
5230
# File 'lib/aws-sdk-datasync/types.rb', line 5223

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