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

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


5623
5624
5625
5626
5627
5628
5629
5630
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 5623

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

#readFloat

Peak throughput related to read operations.

Returns:

  • (Float)


5623
5624
5625
5626
5627
5628
5629
5630
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 5623

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)


5623
5624
5625
5626
5627
5628
5629
5630
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 5623

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

#writeFloat

Peak throughput related to write operations.

Returns:

  • (Float)


5623
5624
5625
5626
5627
5628
5629
5630
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 5623

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