public static interface SearchContactsRequest.Builder extends AlexaForBusinessRequest.Builder, SdkPojo, CopyableBuilder<SearchContactsRequest.Builder,SearchContactsRequest>
Modifier and Type | Method and Description |
---|---|
SearchContactsRequest.Builder |
filters(Collection<Filter> filters)
The filters to use to list a specified set of address books.
|
SearchContactsRequest.Builder |
filters(Consumer<Filter.Builder>... filters)
The filters to use to list a specified set of address books.
|
SearchContactsRequest.Builder |
filters(Filter... filters)
The filters to use to list a specified set of address books.
|
SearchContactsRequest.Builder |
maxResults(Integer maxResults)
The maximum number of results to include in the response.
|
SearchContactsRequest.Builder |
nextToken(String nextToken)
An optional token returned from a prior request.
|
SearchContactsRequest.Builder |
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
Add an optional request override configuration.
|
SearchContactsRequest.Builder |
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
Add an optional request override configuration.
|
SearchContactsRequest.Builder |
sortCriteria(Collection<Sort> sortCriteria)
The sort order to use in listing the specified set of contacts.
|
SearchContactsRequest.Builder |
sortCriteria(Consumer<Sort.Builder>... sortCriteria)
The sort order to use in listing the specified set of contacts.
|
SearchContactsRequest.Builder |
sortCriteria(Sort... sortCriteria)
The sort order to use in listing the specified set of contacts.
|
build
overrideConfiguration
copy
applyMutation, build
SearchContactsRequest.Builder filters(Collection<Filter> filters)
The filters to use to list a specified set of address books. The supported filter keys are DisplayName, FirstName, LastName, and AddressBookArns.
filters
- The filters to use to list a specified set of address books. The supported filter keys are
DisplayName, FirstName, LastName, and AddressBookArns.SearchContactsRequest.Builder filters(Filter... filters)
The filters to use to list a specified set of address books. The supported filter keys are DisplayName, FirstName, LastName, and AddressBookArns.
filters
- The filters to use to list a specified set of address books. The supported filter keys are
DisplayName, FirstName, LastName, and AddressBookArns.SearchContactsRequest.Builder filters(Consumer<Filter.Builder>... filters)
The filters to use to list a specified set of address books. The supported filter keys are DisplayName, FirstName, LastName, and AddressBookArns.
This is a convenience that creates an instance of theList.Builder
avoiding the need to
create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and its
result is passed to #filters(List)
.filters
- a consumer that will call methods on List.Builder
#filters(List)
SearchContactsRequest.Builder sortCriteria(Collection<Sort> sortCriteria)
The sort order to use in listing the specified set of contacts. The supported sort keys are DisplayName, FirstName, and LastName.
sortCriteria
- The sort order to use in listing the specified set of contacts. The supported sort keys are
DisplayName, FirstName, and LastName.SearchContactsRequest.Builder sortCriteria(Sort... sortCriteria)
The sort order to use in listing the specified set of contacts. The supported sort keys are DisplayName, FirstName, and LastName.
sortCriteria
- The sort order to use in listing the specified set of contacts. The supported sort keys are
DisplayName, FirstName, and LastName.SearchContactsRequest.Builder sortCriteria(Consumer<Sort.Builder>... sortCriteria)
The sort order to use in listing the specified set of contacts. The supported sort keys are DisplayName, FirstName, and LastName.
This is a convenience that creates an instance of theList.Builder
avoiding the need to create
one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and its result
is passed to #sortCriteria(List)
.sortCriteria
- a consumer that will call methods on List.Builder
#sortCriteria(List)
SearchContactsRequest.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.
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.SearchContactsRequest.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.
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.SearchContactsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
AwsRequest.Builder
overrideConfiguration
in interface AwsRequest.Builder
overrideConfiguration
- The override configuration.SearchContactsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
AwsRequest.Builder
overrideConfiguration
in interface AwsRequest.Builder
builderConsumer
- A Consumer
to which an empty AwsRequestOverrideConfiguration.Builder
will be
given.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.