Interface ExecuteGremlinQueryRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<ExecuteGremlinQueryRequest.Builder,ExecuteGremlinQueryRequest>,NeptunedataRequest.Builder,SdkBuilder<ExecuteGremlinQueryRequest.Builder,ExecuteGremlinQueryRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ExecuteGremlinQueryRequest
public static interface ExecuteGremlinQueryRequest.Builder extends NeptunedataRequest.Builder, SdkPojo, CopyableBuilder<ExecuteGremlinQueryRequest.Builder,ExecuteGremlinQueryRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecuteGremlinQueryRequest.BuildergremlinQuery(String gremlinQuery)Using this API, you can run Gremlin queries in string format much as you can using the HTTP endpoint.ExecuteGremlinQueryRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ExecuteGremlinQueryRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)ExecuteGremlinQueryRequest.Builderserializer(String serializer)If non-null, the query results are returned in a serialized response message in the format specified by this parameter.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.neptunedata.model.NeptunedataRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
gremlinQuery
ExecuteGremlinQueryRequest.Builder gremlinQuery(String gremlinQuery)
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 to determine which Gremlin releases your engine version supports).
- Parameters:
gremlinQuery- 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 to determine which Gremlin releases your engine version supports).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
serializer
ExecuteGremlinQueryRequest.Builder serializer(String serializer)
If non-null, the query results are returned in a serialized response message in the format specified by this parameter. See the GraphSON section in the TinkerPop documentation for a list of the formats that are currently supported.
- Parameters:
serializer- If non-null, the query results are returned in a serialized response message in the format specified by this parameter. See the GraphSON section in the TinkerPop documentation for a list of the formats that are currently supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ExecuteGremlinQueryRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ExecuteGremlinQueryRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-