Class: Aws::QLDBSession::Types::IOUsage

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

Instance Attribute Details

#read_i_osInteger

The number of read I/O requests that the command made.

Returns:

  • (Integer)


252
253
254
255
256
257
# File 'gems/aws-sdk-qldbsession/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_osInteger

The number of write I/O requests that the command made.

Returns:

  • (Integer)


252
253
254
255
256
257
# File 'gems/aws-sdk-qldbsession/lib/aws-sdk-qldbsession/types.rb', line 252

class IOUsage < Struct.new(
  :read_i_os,
  :write_i_os)
  SENSITIVE = []
  include Aws::Structure
end