Class: Aws::Neptunedata::Types::ExecuteGremlinQueryInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-neptunedata/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#gremlin_queryString

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).

[1]: docs.aws.amazon.com/neptune/latest/userguide/access-graph-gremlin-client.html#best-practices-gremlin-java-latest

Returns:

  • (String)


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

#serializerString

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.

[1]: tinkerpop.apache.org/docs/current/reference/#_graphson

Returns:

  • (String)


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