Interface SearchListingsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<SearchListingsResponse.Builder,SearchListingsResponse>,DataZoneResponse.Builder,SdkBuilder<SearchListingsResponse.Builder,SearchListingsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- SearchListingsResponse
public static interface SearchListingsResponse.Builder extends DataZoneResponse.Builder, SdkPojo, CopyableBuilder<SearchListingsResponse.Builder,SearchListingsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchListingsResponse.Builderitems(Collection<SearchResultItem> items)The results of theSearchListingsaction.SearchListingsResponse.Builderitems(Consumer<SearchResultItem.Builder>... items)The results of theSearchListingsaction.SearchListingsResponse.Builderitems(SearchResultItem... items)The results of theSearchListingsaction.SearchListingsResponse.BuildernextToken(String nextToken)When the number of results is greater than the default value for theMaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of results, the response includes a pagination token namedNextToken.SearchListingsResponse.BuildertotalMatchCount(Integer totalMatchCount)Total number of search results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.datazone.model.DataZoneResponse.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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
items
SearchListingsResponse.Builder items(Collection<SearchResultItem> items)
The results of the
SearchListingsaction.- Parameters:
items- The results of theSearchListingsaction.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
SearchListingsResponse.Builder items(SearchResultItem... items)
The results of the
SearchListingsaction.- Parameters:
items- The results of theSearchListingsaction.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
SearchListingsResponse.Builder items(Consumer<SearchResultItem.Builder>... items)
The results of the
This is a convenience method that creates an instance of theSearchListingsaction.SearchResultItem.Builderavoiding the need to create one manually viaSearchResultItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#items(List.) - Parameters:
items- a consumer that will call methods onSearchResultItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
nextToken
SearchListingsResponse.Builder nextToken(String nextToken)
When the number of results is greater than the default value for the
MaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of results, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call toSearchListingsto list the next set of results.- Parameters:
nextToken- When the number of results is greater than the default value for theMaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of results, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call toSearchListingsto list the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalMatchCount
SearchListingsResponse.Builder totalMatchCount(Integer totalMatchCount)
Total number of search results.
- Parameters:
totalMatchCount- Total number of search results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-