Class: Aws::Neptunedata::Types::ExecuteGremlinProfileQueryInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Neptunedata::Types::ExecuteGremlinProfileQueryInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-neptunedata/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#chop ⇒ Integer
If non-zero, causes the results string to be truncated at that number of characters.
-
#gremlin_query ⇒ String
The Gremlin query string to profile.
-
#index_ops ⇒ Boolean
If this flag is set to ‘TRUE`, the results include a detailed report of all index operations that took place during query execution and serialization.
-
#results ⇒ Boolean
If this flag is set to ‘TRUE`, the query results are gathered and displayed as part of the profile report.
-
#serializer ⇒ String
If non-null, the gathered results are returned in a serialized response message in the format specified by this parameter.
Instance Attribute Details
#chop ⇒ Integer
If non-zero, causes the results string to be truncated at that number of characters. If set to zero, the string contains all the results.
770 771 772 773 774 775 776 777 778 |
# File 'lib/aws-sdk-neptunedata/types.rb', line 770 class ExecuteGremlinProfileQueryInput < Struct.new( :gremlin_query, :results, :chop, :serializer, :index_ops) SENSITIVE = [] include Aws::Structure end |
#gremlin_query ⇒ String
The Gremlin query string to profile.
770 771 772 773 774 775 776 777 778 |
# File 'lib/aws-sdk-neptunedata/types.rb', line 770 class ExecuteGremlinProfileQueryInput < Struct.new( :gremlin_query, :results, :chop, :serializer, :index_ops) SENSITIVE = [] include Aws::Structure end |
#index_ops ⇒ Boolean
If this flag is set to ‘TRUE`, the results include a detailed report of all index operations that took place during query execution and serialization.
770 771 772 773 774 775 776 777 778 |
# File 'lib/aws-sdk-neptunedata/types.rb', line 770 class ExecuteGremlinProfileQueryInput < Struct.new( :gremlin_query, :results, :chop, :serializer, :index_ops) SENSITIVE = [] include Aws::Structure end |
#results ⇒ Boolean
If this flag is set to ‘TRUE`, the query results are gathered and displayed as part of the profile report. If `FALSE`, only the result count is displayed.
770 771 772 773 774 775 776 777 778 |
# File 'lib/aws-sdk-neptunedata/types.rb', line 770 class ExecuteGremlinProfileQueryInput < Struct.new( :gremlin_query, :results, :chop, :serializer, :index_ops) SENSITIVE = [] include Aws::Structure end |
#serializer ⇒ String
If non-null, the gathered results are returned in a serialized response message in the format specified by this parameter. See
- Gremlin profile API in Neptune][1
-
for more information.
[1]: docs.aws.amazon.com/neptune/latest/userguide/gremlin-profile-api.html
770 771 772 773 774 775 776 777 778 |
# File 'lib/aws-sdk-neptunedata/types.rb', line 770 class ExecuteGremlinProfileQueryInput < Struct.new( :gremlin_query, :results, :chop, :serializer, :index_ops) SENSITIVE = [] include Aws::Structure end |