public static interface SearchContactsResponse.Builder extends AlexaForBusinessResponse.Builder, SdkPojo, CopyableBuilder<SearchContactsResponse.Builder,SearchContactsResponse>
Modifier and Type | Method and Description |
---|---|
SearchContactsResponse.Builder |
contacts(Collection<ContactData> contacts)
The contacts that meet the specified set of filter criteria, in sort order.
|
SearchContactsResponse.Builder |
contacts(Consumer<ContactData.Builder>... contacts)
The contacts that meet the specified set of filter criteria, in sort order.
|
SearchContactsResponse.Builder |
contacts(ContactData... contacts)
The contacts that meet the specified set of filter criteria, in sort order.
|
SearchContactsResponse.Builder |
nextToken(String nextToken)
The token returned to indicate that there is more data available.
|
SearchContactsResponse.Builder |
totalCount(Integer totalCount)
The total number of contacts returned.
|
build, responseMetadata, responseMetadata
sdkHttpResponse, sdkHttpResponse
copy
applyMutation, build
SearchContactsResponse.Builder contacts(Collection<ContactData> contacts)
The contacts that meet the specified set of filter criteria, in sort order.
contacts
- The contacts that meet the specified set of filter criteria, in sort order.SearchContactsResponse.Builder contacts(ContactData... contacts)
The contacts that meet the specified set of filter criteria, in sort order.
contacts
- The contacts that meet the specified set of filter criteria, in sort order.SearchContactsResponse.Builder contacts(Consumer<ContactData.Builder>... contacts)
The contacts that meet the specified set of filter criteria, in sort order.
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 #contacts(List)
.contacts
- a consumer that will call methods on List.Builder
#contacts(List)
SearchContactsResponse.Builder nextToken(String nextToken)
The token returned to indicate that there is more data available.
nextToken
- The token returned to indicate that there is more data available.SearchContactsResponse.Builder totalCount(Integer totalCount)
The total number of contacts returned.
totalCount
- The total number of contacts returned.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.