Interface SearchAddressBooksRequest.Builder
-
- All Superinterfaces:
AlexaForBusinessRequest.Builder,AwsRequest.Builder,Buildable,CopyableBuilder<SearchAddressBooksRequest.Builder,SearchAddressBooksRequest>,SdkBuilder<SearchAddressBooksRequest.Builder,SearchAddressBooksRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- SearchAddressBooksRequest
public static interface SearchAddressBooksRequest.Builder extends AlexaForBusinessRequest.Builder, SdkPojo, CopyableBuilder<SearchAddressBooksRequest.Builder,SearchAddressBooksRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchAddressBooksRequest.Builderfilters(Collection<Filter> filters)The filters to use to list a specified set of address books.SearchAddressBooksRequest.Builderfilters(Consumer<Filter.Builder>... filters)The filters to use to list a specified set of address books.SearchAddressBooksRequest.Builderfilters(Filter... filters)The filters to use to list a specified set of address books.SearchAddressBooksRequest.BuildermaxResults(Integer maxResults)The maximum number of results to include in the response.SearchAddressBooksRequest.BuildernextToken(String nextToken)An optional token returned from a prior request.SearchAddressBooksRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)SearchAddressBooksRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)SearchAddressBooksRequest.BuildersortCriteria(Collection<Sort> sortCriteria)The sort order to use in listing the specified set of address books.SearchAddressBooksRequest.BuildersortCriteria(Consumer<Sort.Builder>... sortCriteria)The sort order to use in listing the specified set of address books.SearchAddressBooksRequest.BuildersortCriteria(Sort... sortCriteria)The sort order to use in listing the specified set of address books.-
Methods inherited from interface software.amazon.awssdk.services.alexaforbusiness.model.AlexaForBusinessRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
filters
SearchAddressBooksRequest.Builder filters(Collection<Filter> filters)
The filters to use to list a specified set of address books. The supported filter key is AddressBookName.
- Parameters:
filters- The filters to use to list a specified set of address books. The supported filter key is AddressBookName.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
SearchAddressBooksRequest.Builder filters(Filter... filters)
The filters to use to list a specified set of address books. The supported filter key is AddressBookName.
- Parameters:
filters- The filters to use to list a specified set of address books. The supported filter key is AddressBookName.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
SearchAddressBooksRequest.Builder filters(Consumer<Filter.Builder>... filters)
The filters to use to list a specified set of address books. The supported filter key is AddressBookName.
This is a convenience method that creates an instance of theFilter.Builderavoiding the need to create one manually viaFilter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#filters(List.) - Parameters:
filters- a consumer that will call methods onFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#filters(java.util.Collection)
-
sortCriteria
SearchAddressBooksRequest.Builder sortCriteria(Collection<Sort> sortCriteria)
The sort order to use in listing the specified set of address books. The supported sort key is AddressBookName.
- Parameters:
sortCriteria- The sort order to use in listing the specified set of address books. The supported sort key is AddressBookName.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sortCriteria
SearchAddressBooksRequest.Builder sortCriteria(Sort... sortCriteria)
The sort order to use in listing the specified set of address books. The supported sort key is AddressBookName.
- Parameters:
sortCriteria- The sort order to use in listing the specified set of address books. The supported sort key is AddressBookName.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sortCriteria
SearchAddressBooksRequest.Builder sortCriteria(Consumer<Sort.Builder>... sortCriteria)
The sort order to use in listing the specified set of address books. The supported sort key is AddressBookName.
This is a convenience method that creates an instance of theSort.Builderavoiding the need to create one manually viaSort.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#sortCriteria(List.) - Parameters:
sortCriteria- a consumer that will call methods onSort.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#sortCriteria(java.util.Collection)
-
nextToken
SearchAddressBooksRequest.Builder nextToken(String nextToken)
An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response only includes results beyond the token, up to the value specified by MaxResults.
- Parameters:
nextToken- An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response only includes results beyond the token, up to the value specified by MaxResults.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
SearchAddressBooksRequest.Builder maxResults(Integer maxResults)
The maximum number of results to include in the response. If more results exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.
- Parameters:
maxResults- The maximum number of results to include in the response. If more results exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
SearchAddressBooksRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
SearchAddressBooksRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-