public static interface ListRobotsResponse.Builder extends RoboMakerResponse.Builder, SdkPojo, CopyableBuilder<ListRobotsResponse.Builder,ListRobotsResponse>
Modifier and Type | Method and Description |
---|---|
ListRobotsResponse.Builder |
nextToken(String nextToken)
The
nextToken value to include in a future ListRobots request. |
ListRobotsResponse.Builder |
robots(Collection<Robot> robots)
A list of robots that meet the criteria of the request.
|
ListRobotsResponse.Builder |
robots(Consumer<Robot.Builder>... robots)
A list of robots that meet the criteria of the request.
|
ListRobotsResponse.Builder |
robots(Robot... robots)
A list of robots that meet the criteria of the request.
|
build, responseMetadata, responseMetadata
sdkHttpResponse, sdkHttpResponse
copy
applyMutation, build
ListRobotsResponse.Builder robots(Collection<Robot> robots)
A list of robots that meet the criteria of the request.
robots
- A list of robots that meet the criteria of the request.ListRobotsResponse.Builder robots(Robot... robots)
A list of robots that meet the criteria of the request.
robots
- A list of robots that meet the criteria of the request.ListRobotsResponse.Builder robots(Consumer<Robot.Builder>... robots)
A list of robots that meet the criteria of the request.
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 #robots(List)
.robots
- a consumer that will call methods on List.Builder
#robots(List)
ListRobotsResponse.Builder nextToken(String nextToken)
The nextToken
value to include in a future ListRobots
request. When the results of
a ListRobot
request exceed maxResults
, this value can be used to retrieve the next
page of results. This value is null
when there are no more results to return.
nextToken
- The nextToken
value to include in a future ListRobots
request. When the
results of a ListRobot
request exceed maxResults
, this value can be used to
retrieve the next page of results. This value is null
when there are no more results to
return.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.