Interface ExecuteGremlinProfileQueryRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<ExecuteGremlinProfileQueryRequest.Builder,ExecuteGremlinProfileQueryRequest>,NeptunedataRequest.Builder,SdkBuilder<ExecuteGremlinProfileQueryRequest.Builder,ExecuteGremlinProfileQueryRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ExecuteGremlinProfileQueryRequest
public static interface ExecuteGremlinProfileQueryRequest.Builder extends NeptunedataRequest.Builder, SdkPojo, CopyableBuilder<ExecuteGremlinProfileQueryRequest.Builder,ExecuteGremlinProfileQueryRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecuteGremlinProfileQueryRequest.Builderchop(Integer chop)If non-zero, causes the results string to be truncated at that number of characters.ExecuteGremlinProfileQueryRequest.BuildergremlinQuery(String gremlinQuery)The Gremlin query string to profile.ExecuteGremlinProfileQueryRequest.BuilderindexOps(Boolean indexOps)If this flag is set toTRUE, the results include a detailed report of all index operations that took place during query execution and serialization.ExecuteGremlinProfileQueryRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ExecuteGremlinProfileQueryRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)ExecuteGremlinProfileQueryRequest.Builderresults(Boolean results)If this flag is set toTRUE, the query results are gathered and displayed as part of the profile report.ExecuteGremlinProfileQueryRequest.Builderserializer(String serializer)If non-null, the gathered 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
ExecuteGremlinProfileQueryRequest.Builder gremlinQuery(String gremlinQuery)
The Gremlin query string to profile.
- Parameters:
gremlinQuery- The Gremlin query string to profile.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
results
ExecuteGremlinProfileQueryRequest.Builder results(Boolean results)
If this flag is set to
TRUE, the query results are gathered and displayed as part of the profile report. IfFALSE, only the result count is displayed.- Parameters:
results- If this flag is set toTRUE, the query results are gathered and displayed as part of the profile report. IfFALSE, only the result count is displayed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
chop
ExecuteGremlinProfileQueryRequest.Builder chop(Integer chop)
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.
- Parameters:
chop- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
serializer
ExecuteGremlinProfileQueryRequest.Builder serializer(String serializer)
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 for more information.
- Parameters:
serializer- 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 for more information.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
indexOps
ExecuteGremlinProfileQueryRequest.Builder indexOps(Boolean indexOps)
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.- Parameters:
indexOps- If this flag is set toTRUE, the results include a detailed report of all index operations that took place during query execution and serialization.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ExecuteGremlinProfileQueryRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ExecuteGremlinProfileQueryRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-