Interface ListGremlinQueriesResponse.Builder
- All Superinterfaces:
- AwsResponse.Builder,- Buildable,- CopyableBuilder<ListGremlinQueriesResponse.Builder,,- ListGremlinQueriesResponse> - NeptunedataResponse.Builder,- SdkBuilder<ListGremlinQueriesResponse.Builder,,- ListGremlinQueriesResponse> - SdkPojo,- SdkResponse.Builder
- Enclosing class:
- ListGremlinQueriesResponse
@Mutable
@NotThreadSafe
public static interface ListGremlinQueriesResponse.Builder
extends NeptunedataResponse.Builder, SdkPojo, CopyableBuilder<ListGremlinQueriesResponse.Builder,ListGremlinQueriesResponse> 
- 
Method SummaryModifier and TypeMethodDescriptionacceptedQueryCount(Integer acceptedQueryCount) The number of queries that have been accepted but not yet completed, including queries in the queue.queries(Collection<GremlinQueryStatus> queries) A list of the current queries.queries(Consumer<GremlinQueryStatus.Builder>... queries) A list of the current queries.queries(GremlinQueryStatus... queries) A list of the current queries.runningQueryCount(Integer runningQueryCount) The number of Gremlin queries currently running.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuildercopyMethods inherited from interface software.amazon.awssdk.services.neptunedata.model.NeptunedataResponse.Builderbuild, responseMetadata, responseMetadataMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilderapplyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojoequalsBySdkFields, sdkFieldNameToField, sdkFieldsMethods inherited from interface software.amazon.awssdk.core.SdkResponse.BuildersdkHttpResponse, sdkHttpResponse
- 
Method Details- 
acceptedQueryCountThe number of queries that have been accepted but not yet completed, including queries in the queue. - Parameters:
- acceptedQueryCount- The number of queries that have been accepted but not yet completed, including queries in the queue.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
runningQueryCountThe number of Gremlin queries currently running. - Parameters:
- runningQueryCount- The number of Gremlin queries currently running.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
queriesA list of the current queries. - Parameters:
- queries- A list of the current queries.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
queriesA list of the current queries. - Parameters:
- queries- A list of the current queries.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
queriesA list of the current queries. This is a convenience method that creates an instance of theGremlinQueryStatus.Builderavoiding the need to create one manually viaGremlinQueryStatus.builder().When the Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toqueries(List<GremlinQueryStatus>).- Parameters:
- queries- a consumer that will call methods on- GremlinQueryStatus.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
 
 
-