Class: Aws::Neptunedata::Types::QueryEvalStats
- Inherits:
-
Struct
- Object
- Struct
- Aws::Neptunedata::Types::QueryEvalStats
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-neptunedata/types.rb
Overview
Structure to capture query statistics such as how many queries are running, accepted or waiting and their details.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cancelled ⇒ Boolean
Set to ‘TRUE` if the query was cancelled, or FALSE otherwise.
-
#elapsed ⇒ Integer
The number of milliseconds the query has been running so far.
-
#subqueries ⇒ Hash, ...
The number of subqueries in this query.
-
#waited ⇒ Integer
Indicates how long the query waited, in milliseconds.
Instance Attribute Details
#cancelled ⇒ Boolean
Set to ‘TRUE` if the query was cancelled, or FALSE otherwise.
2706 2707 2708 2709 2710 2711 2712 2713 |
# File 'lib/aws-sdk-neptunedata/types.rb', line 2706 class QueryEvalStats < Struct.new( :waited, :elapsed, :cancelled, :subqueries) SENSITIVE = [] include Aws::Structure end |
#elapsed ⇒ Integer
The number of milliseconds the query has been running so far.
2706 2707 2708 2709 2710 2711 2712 2713 |
# File 'lib/aws-sdk-neptunedata/types.rb', line 2706 class QueryEvalStats < Struct.new( :waited, :elapsed, :cancelled, :subqueries) SENSITIVE = [] include Aws::Structure end |
#subqueries ⇒ Hash, ...
The number of subqueries in this query.
2706 2707 2708 2709 2710 2711 2712 2713 |
# File 'lib/aws-sdk-neptunedata/types.rb', line 2706 class QueryEvalStats < Struct.new( :waited, :elapsed, :cancelled, :subqueries) SENSITIVE = [] include Aws::Structure end |
#waited ⇒ Integer
Indicates how long the query waited, in milliseconds.
2706 2707 2708 2709 2710 2711 2712 2713 |
# File 'lib/aws-sdk-neptunedata/types.rb', line 2706 class QueryEvalStats < Struct.new( :waited, :elapsed, :cancelled, :subqueries) SENSITIVE = [] include Aws::Structure end |