Interface DescribeMatchmakingRuleSetsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeMatchmakingRuleSetsResponse.Builder,DescribeMatchmakingRuleSetsResponse>,GameLiftResponse.Builder,SdkBuilder<DescribeMatchmakingRuleSetsResponse.Builder,DescribeMatchmakingRuleSetsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeMatchmakingRuleSetsResponse
public static interface DescribeMatchmakingRuleSetsResponse.Builder extends GameLiftResponse.Builder, SdkPojo, CopyableBuilder<DescribeMatchmakingRuleSetsResponse.Builder,DescribeMatchmakingRuleSetsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeMatchmakingRuleSetsResponse.BuildernextToken(String nextToken)A token that indicates where to resume retrieving results on the next call to this operation.DescribeMatchmakingRuleSetsResponse.BuilderruleSets(Collection<MatchmakingRuleSet> ruleSets)A collection of requested matchmaking rule set objects.DescribeMatchmakingRuleSetsResponse.BuilderruleSets(Consumer<MatchmakingRuleSet.Builder>... ruleSets)A collection of requested matchmaking rule set objects.DescribeMatchmakingRuleSetsResponse.BuilderruleSets(MatchmakingRuleSet... ruleSets)A collection of requested matchmaking rule set objects.-
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
-
ruleSets
DescribeMatchmakingRuleSetsResponse.Builder ruleSets(Collection<MatchmakingRuleSet> ruleSets)
A collection of requested matchmaking rule set objects.
- Parameters:
ruleSets- A collection of requested matchmaking rule set objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ruleSets
DescribeMatchmakingRuleSetsResponse.Builder ruleSets(MatchmakingRuleSet... ruleSets)
A collection of requested matchmaking rule set objects.
- Parameters:
ruleSets- A collection of requested matchmaking rule set objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ruleSets
DescribeMatchmakingRuleSetsResponse.Builder ruleSets(Consumer<MatchmakingRuleSet.Builder>... ruleSets)
A collection of requested matchmaking rule set objects.
This is a convenience method that creates an instance of theMatchmakingRuleSet.Builderavoiding the need to create one manually viaMatchmakingRuleSet.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#ruleSets(List.) - Parameters:
ruleSets- a consumer that will call methods onMatchmakingRuleSet.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#ruleSets(java.util.Collection)
-
nextToken
DescribeMatchmakingRuleSetsResponse.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.
-
-