Class: Aws::Neptunedata::Types::ExecuteGremlinQueryInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Neptunedata::Types::ExecuteGremlinQueryInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-neptunedata/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#gremlin_query ⇒ String
Using this API, you can run Gremlin queries in string format much as you can using the HTTP endpoint.
-
#serializer ⇒ String
If non-null, the query results are returned in a serialized response message in the format specified by this parameter.
Instance Attribute Details
#gremlin_query ⇒ String
Using this API, you can run Gremlin queries in string format much as you can using the HTTP endpoint. The interface is compatible with whatever Gremlin version your DB cluster is using (see the
- Tinkerpop client section][1
-
to determine which Gremlin releases
your engine version supports).
822 823 824 825 826 827 |
# File 'lib/aws-sdk-neptunedata/types.rb', line 822 class ExecuteGremlinQueryInput < Struct.new( :gremlin_query, :serializer) SENSITIVE = [] include Aws::Structure end |
#serializer ⇒ String
If non-null, the query results are returned in a serialized response message in the format specified by this parameter. See the
- GraphSON][1
-
section in the TinkerPop documentation for a list of
the formats that are currently supported.
822 823 824 825 826 827 |
# File 'lib/aws-sdk-neptunedata/types.rb', line 822 class ExecuteGremlinQueryInput < Struct.new( :gremlin_query, :serializer) SENSITIVE = [] include Aws::Structure end |