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.
6112 6113 6114 6115 6116 6117 6118 6119 |
# File 'lib/aws-sdk-datasync/types.rb', line 6112 class Throughput < Struct.new( :read, :write, :other, :total) SENSITIVE = [] include Aws::Structure end |
#read ⇒ Float
Peak throughput related to read operations.
6112 6113 6114 6115 6116 6117 6118 6119 |
# File 'lib/aws-sdk-datasync/types.rb', line 6112 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.
6112 6113 6114 6115 6116 6117 6118 6119 |
# File 'lib/aws-sdk-datasync/types.rb', line 6112 class Throughput < Struct.new( :read, :write, :other, :total) SENSITIVE = [] include Aws::Structure end |
#write ⇒ Float
Peak throughput related to write operations.
6112 6113 6114 6115 6116 6117 6118 6119 |
# File 'lib/aws-sdk-datasync/types.rb', line 6112 class Throughput < Struct.new( :read, :write, :other, :total) SENSITIVE = [] include Aws::Structure end |