Class: Aws::QLDBSession::Types::IOUsage
- Inherits:
-
Struct
- Object
- Struct
- Aws::QLDBSession::Types::IOUsage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-qldbsession/types.rb
Overview
Contains I/O usage metrics for a command that was invoked.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#read_i_os ⇒ Integer
The number of read I/O requests that the command made.
-
#write_i_os ⇒ Integer
The number of write I/O requests that the command made.
Instance Attribute Details
#read_i_os ⇒ Integer
The number of read I/O requests that the command made.
252 253 254 255 256 257 |
# File 'lib/aws-sdk-qldbsession/types.rb', line 252 class IOUsage < Struct.new( :read_i_os, :write_i_os) SENSITIVE = [] include Aws::Structure end |
#write_i_os ⇒ Integer
The number of write I/O requests that the command made.
252 253 254 255 256 257 |
# File 'lib/aws-sdk-qldbsession/types.rb', line 252 class IOUsage < Struct.new( :read_i_os, :write_i_os) SENSITIVE = [] include Aws::Structure end |