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