Class: Aws::Neptunedata::Types::QueryEvalStats

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

Instance Attribute Details

#cancelledBoolean

Set to TRUE if the query was cancelled, or FALSE otherwise.

Returns:

  • (Boolean)


2706
2707
2708
2709
2710
2711
2712
2713
# File 'gems/aws-sdk-neptunedata/lib/aws-sdk-neptunedata/types.rb', line 2706

class QueryEvalStats < Struct.new(
  :waited,
  :elapsed,
  :cancelled,
  :subqueries)
  SENSITIVE = []
  include Aws::Structure
end

#elapsedInteger

The number of milliseconds the query has been running so far.

Returns:

  • (Integer)


2706
2707
2708
2709
2710
2711
2712
2713
# File 'gems/aws-sdk-neptunedata/lib/aws-sdk-neptunedata/types.rb', line 2706

class QueryEvalStats < Struct.new(
  :waited,
  :elapsed,
  :cancelled,
  :subqueries)
  SENSITIVE = []
  include Aws::Structure
end

#subqueriesHash, ...

The number of subqueries in this query.

Returns:

  • (Hash, Array, String, Numeric, Boolean)


2706
2707
2708
2709
2710
2711
2712
2713
# File 'gems/aws-sdk-neptunedata/lib/aws-sdk-neptunedata/types.rb', line 2706

class QueryEvalStats < Struct.new(
  :waited,
  :elapsed,
  :cancelled,
  :subqueries)
  SENSITIVE = []
  include Aws::Structure
end

#waitedInteger

Indicates how long the query waited, in milliseconds.

Returns:

  • (Integer)


2706
2707
2708
2709
2710
2711
2712
2713
# File 'gems/aws-sdk-neptunedata/lib/aws-sdk-neptunedata/types.rb', line 2706

class QueryEvalStats < Struct.new(
  :waited,
  :elapsed,
  :cancelled,
  :subqueries)
  SENSITIVE = []
  include Aws::Structure
end