Interface AcceptMatchRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<AcceptMatchRequest.Builder,AcceptMatchRequest>,GameLiftRequest.Builder,SdkBuilder<AcceptMatchRequest.Builder,AcceptMatchRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- AcceptMatchRequest
public static interface AcceptMatchRequest.Builder extends GameLiftRequest.Builder, SdkPojo, CopyableBuilder<AcceptMatchRequest.Builder,AcceptMatchRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AcceptMatchRequest.BuilderacceptanceType(String acceptanceType)Player response to the proposed match.AcceptMatchRequest.BuilderacceptanceType(AcceptanceType acceptanceType)Player response to the proposed match.AcceptMatchRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)AcceptMatchRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)AcceptMatchRequest.BuilderplayerIds(String... playerIds)A unique identifier for a player delivering the response.AcceptMatchRequest.BuilderplayerIds(Collection<String> playerIds)A unique identifier for a player delivering the response.AcceptMatchRequest.BuilderticketId(String ticketId)A unique identifier for a matchmaking ticket.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.gamelift.model.GameLiftRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
ticketId
AcceptMatchRequest.Builder ticketId(String ticketId)
A unique identifier for a matchmaking ticket. The ticket must be in status
REQUIRES_ACCEPTANCE; otherwise this request will fail.- Parameters:
ticketId- A unique identifier for a matchmaking ticket. The ticket must be in statusREQUIRES_ACCEPTANCE; otherwise this request will fail.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
playerIds
AcceptMatchRequest.Builder playerIds(Collection<String> playerIds)
A unique identifier for a player delivering the response. This parameter can include one or multiple player IDs.
- Parameters:
playerIds- A unique identifier for a player delivering the response. This parameter can include one or multiple player IDs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
playerIds
AcceptMatchRequest.Builder playerIds(String... playerIds)
A unique identifier for a player delivering the response. This parameter can include one or multiple player IDs.
- Parameters:
playerIds- A unique identifier for a player delivering the response. This parameter can include one or multiple player IDs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
acceptanceType
AcceptMatchRequest.Builder acceptanceType(String acceptanceType)
Player response to the proposed match.
- Parameters:
acceptanceType- Player response to the proposed match.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AcceptanceType,AcceptanceType
-
acceptanceType
AcceptMatchRequest.Builder acceptanceType(AcceptanceType acceptanceType)
Player response to the proposed match.
- Parameters:
acceptanceType- Player response to the proposed match.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AcceptanceType,AcceptanceType
-
overrideConfiguration
AcceptMatchRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
AcceptMatchRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-