Interface DescribeGameSessionQueuesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeGameSessionQueuesResponse.Builder,DescribeGameSessionQueuesResponse>,GameLiftResponse.Builder,SdkBuilder<DescribeGameSessionQueuesResponse.Builder,DescribeGameSessionQueuesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeGameSessionQueuesResponse
public static interface DescribeGameSessionQueuesResponse.Builder extends GameLiftResponse.Builder, SdkPojo, CopyableBuilder<DescribeGameSessionQueuesResponse.Builder,DescribeGameSessionQueuesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeGameSessionQueuesResponse.BuildergameSessionQueues(Collection<GameSessionQueue> gameSessionQueues)A collection of objects that describe the requested game session queues.DescribeGameSessionQueuesResponse.BuildergameSessionQueues(Consumer<GameSessionQueue.Builder>... gameSessionQueues)A collection of objects that describe the requested game session queues.DescribeGameSessionQueuesResponse.BuildergameSessionQueues(GameSessionQueue... gameSessionQueues)A collection of objects that describe the requested game session queues.DescribeGameSessionQueuesResponse.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
-
gameSessionQueues
DescribeGameSessionQueuesResponse.Builder gameSessionQueues(Collection<GameSessionQueue> gameSessionQueues)
A collection of objects that describe the requested game session queues.
- Parameters:
gameSessionQueues- A collection of objects that describe the requested game session queues.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
gameSessionQueues
DescribeGameSessionQueuesResponse.Builder gameSessionQueues(GameSessionQueue... gameSessionQueues)
A collection of objects that describe the requested game session queues.
- Parameters:
gameSessionQueues- A collection of objects that describe the requested game session queues.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
gameSessionQueues
DescribeGameSessionQueuesResponse.Builder gameSessionQueues(Consumer<GameSessionQueue.Builder>... gameSessionQueues)
A collection of objects that describe the requested game session queues.
This is a convenience method that creates an instance of theGameSessionQueue.Builderavoiding the need to create one manually viaGameSessionQueue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#gameSessionQueues(List.) - Parameters:
gameSessionQueues- a consumer that will call methods onGameSessionQueue.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#gameSessionQueues(java.util.Collection)
-
nextToken
DescribeGameSessionQueuesResponse.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.
-
-