Interface GremlinQueryStatus.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GremlinQueryStatus.Builder,GremlinQueryStatus>,SdkBuilder<GremlinQueryStatus.Builder,GremlinQueryStatus>,SdkPojo
- Enclosing class:
- GremlinQueryStatus
public static interface GremlinQueryStatus.Builder extends SdkPojo, CopyableBuilder<GremlinQueryStatus.Builder,GremlinQueryStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GremlinQueryStatus.BuilderqueryEvalStats(Consumer<QueryEvalStats.Builder> queryEvalStats)The query statistics of the Gremlin query.GremlinQueryStatus.BuilderqueryEvalStats(QueryEvalStats queryEvalStats)The query statistics of the Gremlin query.GremlinQueryStatus.BuilderqueryId(String queryId)The ID of the Gremlin query.GremlinQueryStatus.BuilderqueryString(String queryString)The query string of the Gremlin query.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
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
-
queryId
GremlinQueryStatus.Builder queryId(String queryId)
The ID of the Gremlin query.
- Parameters:
queryId- The ID of the Gremlin query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryString
GremlinQueryStatus.Builder queryString(String queryString)
The query string of the Gremlin query.
- Parameters:
queryString- The query string of the Gremlin query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryEvalStats
GremlinQueryStatus.Builder queryEvalStats(QueryEvalStats queryEvalStats)
The query statistics of the Gremlin query.
- Parameters:
queryEvalStats- The query statistics of the Gremlin query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryEvalStats
default GremlinQueryStatus.Builder queryEvalStats(Consumer<QueryEvalStats.Builder> queryEvalStats)
The query statistics of the Gremlin query.
This is a convenience method that creates an instance of theQueryEvalStats.Builderavoiding the need to create one manually viaQueryEvalStats.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toqueryEvalStats(QueryEvalStats).- Parameters:
queryEvalStats- a consumer that will call methods onQueryEvalStats.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
queryEvalStats(QueryEvalStats)
-
-