Interface SearchResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<SearchResponse.Builder,SearchResponse>,SageMakerResponse.Builder,SdkBuilder<SearchResponse.Builder,SearchResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- SearchResponse
public static interface SearchResponse.Builder extends SageMakerResponse.Builder, SdkPojo, CopyableBuilder<SearchResponse.Builder,SearchResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchResponse.BuildernextToken(String nextToken)If the result of the previousSearchrequest was truncated, the response includes a NextToken.SearchResponse.Builderresults(Collection<SearchRecord> results)A list ofSearchRecordobjects.SearchResponse.Builderresults(Consumer<SearchRecord.Builder>... results)A list ofSearchRecordobjects.SearchResponse.Builderresults(SearchRecord... results)A list ofSearchRecordobjects.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.sagemaker.model.SageMakerResponse.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
-
results
SearchResponse.Builder results(Collection<SearchRecord> results)
A list of
SearchRecordobjects.- Parameters:
results- A list ofSearchRecordobjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
results
SearchResponse.Builder results(SearchRecord... results)
A list of
SearchRecordobjects.- Parameters:
results- A list ofSearchRecordobjects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
results
SearchResponse.Builder results(Consumer<SearchRecord.Builder>... results)
A list of
This is a convenience method that creates an instance of theSearchRecordobjects.SearchRecord.Builderavoiding the need to create one manually viaSearchRecord.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#results(List.) - Parameters:
results- a consumer that will call methods onSearchRecord.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#results(java.util.Collection)
-
nextToken
SearchResponse.Builder nextToken(String nextToken)
If the result of the previous
Searchrequest was truncated, the response includes a NextToken. To retrieve the next set of results, use the token in the next request.- Parameters:
nextToken- If the result of the previousSearchrequest was truncated, the response includes a NextToken. To retrieve the next set of results, use the token in the next request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-