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