Interface QueryObjectsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<QueryObjectsResponse.Builder,QueryObjectsResponse>,DataPipelineResponse.Builder,SdkBuilder<QueryObjectsResponse.Builder,QueryObjectsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- QueryObjectsResponse
public static interface QueryObjectsResponse.Builder extends DataPipelineResponse.Builder, SdkPojo, CopyableBuilder<QueryObjectsResponse.Builder,QueryObjectsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QueryObjectsResponse.BuilderhasMoreResults(Boolean hasMoreResults)Indicates whether there are more results that can be obtained by a subsequent call.QueryObjectsResponse.Builderids(String... ids)The identifiers that match the query selectors.QueryObjectsResponse.Builderids(Collection<String> ids)The identifiers that match the query selectors.QueryObjectsResponse.Buildermarker(String marker)The starting point for the next page of results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.datapipeline.model.DataPipelineResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
ids
QueryObjectsResponse.Builder ids(Collection<String> ids)
The identifiers that match the query selectors.
- Parameters:
ids- The identifiers that match the query selectors.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ids
QueryObjectsResponse.Builder ids(String... ids)
The identifiers that match the query selectors.
- Parameters:
ids- The identifiers that match the query selectors.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
marker
QueryObjectsResponse.Builder marker(String marker)
The starting point for the next page of results. To view the next page of results, call
QueryObjectsagain with this marker value. If the value is null, there are no more results.- Parameters:
marker- The starting point for the next page of results. To view the next page of results, callQueryObjectsagain with this marker value. If the value is null, there are no more results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
hasMoreResults
QueryObjectsResponse.Builder hasMoreResults(Boolean hasMoreResults)
Indicates whether there are more results that can be obtained by a subsequent call.
- Parameters:
hasMoreResults- Indicates whether there are more results that can be obtained by a subsequent call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-