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.Builder
nextToken(String nextToken)
If the result of the previousSearch
request was truncated, the response includes a NextToken.SearchResponse.Builder
results(Collection<SearchRecord> results)
A list ofSearchRecord
objects.SearchResponse.Builder
results(Consumer<SearchRecord.Builder>... results)
A list ofSearchRecord
objects.SearchResponse.Builder
results(SearchRecord... results)
A list ofSearchRecord
objects.-
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
SearchRecord
objects.- Parameters:
results
- A list ofSearchRecord
objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
results
SearchResponse.Builder results(SearchRecord... results)
A list of
SearchRecord
objects.- Parameters:
results
- A list ofSearchRecord
objects.- 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 theSearchRecord
objects.SearchRecord.Builder
avoiding the need to create one manually viaSearchRecord.builder()
.When the
Consumer
completes,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
Search
request 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 previousSearch
request 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.
-
-