Class: Aws::NeptuneGraph::Types::QuerySummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::NeptuneGraph::Types::QuerySummary
- Defined in:
- gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb
Overview
Details of the query listed.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#elapsed ⇒ Integer
The running time of the query, in milliseconds.
-
#id ⇒ String
A string representation of the id of the query.
-
#query_string ⇒ String
The actual query text.
-
#state ⇒ String
State of the query.
-
#waited ⇒ Integer
The amount of time, in milliseconds, the query has waited in the queue before being picked up by a worker thread.
Instance Attribute Details
#elapsed ⇒ Integer
The running time of the query, in milliseconds.
2008 2009 2010 2011 2012 2013 2014 2015 2016 |
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 2008 class QuerySummary < Struct.new( :id, :query_string, :waited, :elapsed, :state) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
A string representation of the id of the query.
2008 2009 2010 2011 2012 2013 2014 2015 2016 |
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 2008 class QuerySummary < Struct.new( :id, :query_string, :waited, :elapsed, :state) SENSITIVE = [] include Aws::Structure end |
#query_string ⇒ String
The actual query text. The queryString
may be truncated if the
actual query string is too long.
2008 2009 2010 2011 2012 2013 2014 2015 2016 |
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 2008 class QuerySummary < Struct.new( :id, :query_string, :waited, :elapsed, :state) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
State of the query.
2008 2009 2010 2011 2012 2013 2014 2015 2016 |
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 2008 class QuerySummary < Struct.new( :id, :query_string, :waited, :elapsed, :state) SENSITIVE = [] include Aws::Structure end |
#waited ⇒ Integer
The amount of time, in milliseconds, the query has waited in the queue before being picked up by a worker thread.
2008 2009 2010 2011 2012 2013 2014 2015 2016 |
# File 'gems/aws-sdk-neptunegraph/lib/aws-sdk-neptunegraph/types.rb', line 2008 class QuerySummary < Struct.new( :id, :query_string, :waited, :elapsed, :state) SENSITIVE = [] include Aws::Structure end |