Class: Aws::QLDBSession::Types::TimingInformation
- Inherits:
-
Struct
- Object
- Struct
- Aws::QLDBSession::Types::TimingInformation
- 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
-
#processing_time_milliseconds ⇒ Integer
The amount of time that QLDB spent on processing the command, measured in milliseconds.
Instance Attribute Details
#processing_time_milliseconds ⇒ Integer
The amount of time that QLDB spent on processing the command, measured in milliseconds.
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 |