Interface SearchGameSessionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<SearchGameSessionsResponse.Builder,SearchGameSessionsResponse>,GameLiftResponse.Builder,SdkBuilder<SearchGameSessionsResponse.Builder,SearchGameSessionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- SearchGameSessionsResponse
public static interface SearchGameSessionsResponse.Builder extends GameLiftResponse.Builder, SdkPojo, CopyableBuilder<SearchGameSessionsResponse.Builder,SearchGameSessionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchGameSessionsResponse.BuildergameSessions(Collection<GameSession> gameSessions)A collection of objects containing game session properties for each session that matches the request.SearchGameSessionsResponse.BuildergameSessions(Consumer<GameSession.Builder>... gameSessions)A collection of objects containing game session properties for each session that matches the request.SearchGameSessionsResponse.BuildergameSessions(GameSession... gameSessions)A collection of objects containing game session properties for each session that matches the request.SearchGameSessionsResponse.BuildernextToken(String nextToken)A token that indicates where to resume retrieving results on the next call to this operation.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.gamelift.model.GameLiftResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
gameSessions
SearchGameSessionsResponse.Builder gameSessions(Collection<GameSession> gameSessions)
A collection of objects containing game session properties for each session that matches the request.
- Parameters:
gameSessions- A collection of objects containing game session properties for each session that matches the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
gameSessions
SearchGameSessionsResponse.Builder gameSessions(GameSession... gameSessions)
A collection of objects containing game session properties for each session that matches the request.
- Parameters:
gameSessions- A collection of objects containing game session properties for each session that matches the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
gameSessions
SearchGameSessionsResponse.Builder gameSessions(Consumer<GameSession.Builder>... gameSessions)
A collection of objects containing game session properties for each session that matches the request.
This is a convenience method that creates an instance of theGameSession.Builderavoiding the need to create one manually viaGameSession.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#gameSessions(List.) - Parameters:
gameSessions- a consumer that will call methods onGameSession.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#gameSessions(java.util.Collection)
-
nextToken
SearchGameSessionsResponse.Builder nextToken(String nextToken)
A token that indicates where to resume retrieving results on the next call to this operation. If no token is returned, these results represent the end of the list.
- Parameters:
nextToken- A token that indicates where to resume retrieving results on the next call to this operation. If no token is returned, these results represent the end of the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-