Class: Aws::QLDBSession::Types::TimingInformation

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-qldbsession/types.rb

Overview

Contains server-side performance information for a command. Amazon QLDB captures timing information between the times when it receives the request and when it sends the corresponding response.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#processing_time_millisecondsInteger

The amount of time that QLDB spent on processing the command, measured in milliseconds.

Returns:

  • (Integer)


508
509
510
511
512
# File 'lib/aws-sdk-qldbsession/types.rb', line 508

class TimingInformation < Struct.new(
  :processing_time_milliseconds)
  SENSITIVE = []
  include Aws::Structure
end