Interface CreateGameSessionResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<CreateGameSessionResponse.Builder,CreateGameSessionResponse>,GameLiftResponse.Builder,SdkBuilder<CreateGameSessionResponse.Builder,CreateGameSessionResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- CreateGameSessionResponse
public static interface CreateGameSessionResponse.Builder extends GameLiftResponse.Builder, SdkPojo, CopyableBuilder<CreateGameSessionResponse.Builder,CreateGameSessionResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CreateGameSessionResponse.BuildergameSession(Consumer<GameSession.Builder> gameSession)Object that describes the newly created game session record.CreateGameSessionResponse.BuildergameSession(GameSession gameSession)Object that describes the newly created game session record.-
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
-
gameSession
CreateGameSessionResponse.Builder gameSession(GameSession gameSession)
Object that describes the newly created game session record.
- Parameters:
gameSession- Object that describes the newly created game session record.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
gameSession
default CreateGameSessionResponse.Builder gameSession(Consumer<GameSession.Builder> gameSession)
Object that describes the newly created game session record.
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 togameSession(GameSession).- Parameters:
gameSession- 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:
gameSession(GameSession)
-
-