Class: Aws::DataSync::Types::Throughput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataSync::Types::Throughput
- 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
-
#other ⇒ Float
Peak throughput unrelated to read and write operations.
-
#read ⇒ Float
Peak throughput related to read operations.
-
#total ⇒ Float
Peak total throughput on your on-premises storage system resource.
-
#write ⇒ Float
Peak throughput related to write operations.
Instance Attribute Details
#other ⇒ Float
Peak throughput unrelated to read and write operations.
5623 5624 5625 5626 5627 5628 5629 5630 |
# File 'lib/aws-sdk-datasync/types.rb', line 5623 class Throughput < Struct.new( :read, :write, :other, :total) SENSITIVE = [] include Aws::Structure end |
#read ⇒ Float
Peak throughput related to read operations.
5623 5624 5625 5626 5627 5628 5629 5630 |
# File 'lib/aws-sdk-datasync/types.rb', line 5623 class Throughput < Struct.new( :read, :write, :other, :total) SENSITIVE = [] include Aws::Structure end |
#total ⇒ Float
Peak total throughput on your on-premises storage system resource.
5623 5624 5625 5626 5627 5628 5629 5630 |
# File 'lib/aws-sdk-datasync/types.rb', line 5623 class Throughput < Struct.new( :read, :write, :other, :total) SENSITIVE = [] include Aws::Structure end |
#write ⇒ Float
Peak throughput related to write operations.
5623 5624 5625 5626 5627 5628 5629 5630 |
# File 'lib/aws-sdk-datasync/types.rb', line 5623 class Throughput < Struct.new( :read, :write, :other, :total) SENSITIVE = [] include Aws::Structure end |