amazonka-gamelift-2.0: Amazon GameLift SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.GameLift.StartGameSessionPlacement

Description

Places a request for a new game session in a queue. When processing a placement request, Amazon GameLift searches for available resources on the queue's destinations, scanning each until it finds resources or the placement request times out.

A game session placement request can also request player sessions. When a new game session is successfully created, Amazon GameLift creates a player session for each player included in the request.

When placing a game session, by default Amazon GameLift tries each fleet in the order they are listed in the queue configuration. Ideally, a queue's destinations are listed in preference order.

Alternatively, when requesting a game session with players, you can also provide latency data for each player in relevant Regions. Latency data indicates the performance lag a player experiences when connected to a fleet in the Region. Amazon GameLift uses latency data to reorder the list of destinations to place the game session in a Region with minimal lag. If latency data is provided for multiple players, Amazon GameLift calculates each Region's average lag for all players and reorders to get the best game play across all players.

To place a new game session request, specify the following:

  • The queue name and a set of game session properties and settings
  • A unique ID (such as a UUID) for the placement. You use this ID to track the status of the placement request
  • (Optional) A set of player data and a unique player ID for each player that you are joining to the new game session (player data is optional, but if you include it, you must also provide a unique ID for each player)
  • Latency data for all players (if you want to optimize game play for the players)

If successful, a new game session placement is created.

To track the status of a placement request, call DescribeGameSessionPlacement and check the request's status. If the status is FULFILLED, a new game session has been created and a game session ARN and Region are referenced. If the placement request times out, you can resubmit the request or retry it with a different queue.

Synopsis

Creating a Request

data StartGameSessionPlacement Source #

See: newStartGameSessionPlacement smart constructor.

Constructors

StartGameSessionPlacement' 

Fields

  • desiredPlayerSessions :: Maybe [DesiredPlayerSession]

    Set of information on each player to create a player session for.

  • gameProperties :: Maybe [GameProperty]

    A set of custom properties for a game session, formatted as key:value pairs. These properties are passed to a game server process with a request to start a new game session (see Start a Game Session).

  • gameSessionData :: Maybe Text

    A set of custom game session properties, formatted as a single string value. This data is passed to a game server process in the GameSession object with a request to start a new game session (see Start a Game Session).

  • gameSessionName :: Maybe Text

    A descriptive label that is associated with a game session. Session names do not need to be unique.

  • playerLatencies :: Maybe [PlayerLatency]

    A set of values, expressed in milliseconds, that indicates the amount of latency that a player experiences when connected to Amazon Web Services Regions. This information is used to try to place the new game session where it can offer the best possible gameplay experience for the players.

  • placementId :: Text

    A unique identifier to assign to the new game session placement. This value is developer-defined. The value must be unique across all Regions and cannot be reused.

  • gameSessionQueueName :: Text

    Name of the queue to use to place the new game session. You can use either the queue name or ARN value.

  • maximumPlayerSessionCount :: Natural

    The maximum number of players that can be connected simultaneously to the game session.

Instances

Instances details
ToJSON StartGameSessionPlacement Source # 
Instance details

Defined in Amazonka.GameLift.StartGameSessionPlacement

ToHeaders StartGameSessionPlacement Source # 
Instance details

Defined in Amazonka.GameLift.StartGameSessionPlacement

ToPath StartGameSessionPlacement Source # 
Instance details

Defined in Amazonka.GameLift.StartGameSessionPlacement

ToQuery StartGameSessionPlacement Source # 
Instance details

Defined in Amazonka.GameLift.StartGameSessionPlacement

AWSRequest StartGameSessionPlacement Source # 
Instance details

Defined in Amazonka.GameLift.StartGameSessionPlacement

Generic StartGameSessionPlacement Source # 
Instance details

Defined in Amazonka.GameLift.StartGameSessionPlacement

Associated Types

type Rep StartGameSessionPlacement :: Type -> Type #

Read StartGameSessionPlacement Source # 
Instance details

Defined in Amazonka.GameLift.StartGameSessionPlacement

Show StartGameSessionPlacement Source # 
Instance details

Defined in Amazonka.GameLift.StartGameSessionPlacement

NFData StartGameSessionPlacement Source # 
Instance details

Defined in Amazonka.GameLift.StartGameSessionPlacement

Eq StartGameSessionPlacement Source # 
Instance details

Defined in Amazonka.GameLift.StartGameSessionPlacement

Hashable StartGameSessionPlacement Source # 
Instance details

Defined in Amazonka.GameLift.StartGameSessionPlacement

type AWSResponse StartGameSessionPlacement Source # 
Instance details

Defined in Amazonka.GameLift.StartGameSessionPlacement

type Rep StartGameSessionPlacement Source # 
Instance details

Defined in Amazonka.GameLift.StartGameSessionPlacement

type Rep StartGameSessionPlacement = D1 ('MetaData "StartGameSessionPlacement" "Amazonka.GameLift.StartGameSessionPlacement" "amazonka-gamelift-2.0-IjhNQby9jLV6gj30IrgsyK" 'False) (C1 ('MetaCons "StartGameSessionPlacement'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "desiredPlayerSessions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [DesiredPlayerSession])) :*: S1 ('MetaSel ('Just "gameProperties") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [GameProperty]))) :*: (S1 ('MetaSel ('Just "gameSessionData") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "gameSessionName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "playerLatencies") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [PlayerLatency])) :*: S1 ('MetaSel ('Just "placementId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "gameSessionQueueName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "maximumPlayerSessionCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Natural)))))

newStartGameSessionPlacement Source #

Create a value of StartGameSessionPlacement with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:desiredPlayerSessions:StartGameSessionPlacement', startGameSessionPlacement_desiredPlayerSessions - Set of information on each player to create a player session for.

StartGameSessionPlacement, startGameSessionPlacement_gameProperties - A set of custom properties for a game session, formatted as key:value pairs. These properties are passed to a game server process with a request to start a new game session (see Start a Game Session).

StartGameSessionPlacement, startGameSessionPlacement_gameSessionData - A set of custom game session properties, formatted as a single string value. This data is passed to a game server process in the GameSession object with a request to start a new game session (see Start a Game Session).

StartGameSessionPlacement, startGameSessionPlacement_gameSessionName - A descriptive label that is associated with a game session. Session names do not need to be unique.

StartGameSessionPlacement, startGameSessionPlacement_playerLatencies - A set of values, expressed in milliseconds, that indicates the amount of latency that a player experiences when connected to Amazon Web Services Regions. This information is used to try to place the new game session where it can offer the best possible gameplay experience for the players.

StartGameSessionPlacement, startGameSessionPlacement_placementId - A unique identifier to assign to the new game session placement. This value is developer-defined. The value must be unique across all Regions and cannot be reused.

StartGameSessionPlacement, startGameSessionPlacement_gameSessionQueueName - Name of the queue to use to place the new game session. You can use either the queue name or ARN value.

StartGameSessionPlacement, startGameSessionPlacement_maximumPlayerSessionCount - The maximum number of players that can be connected simultaneously to the game session.

Request Lenses

startGameSessionPlacement_desiredPlayerSessions :: Lens' StartGameSessionPlacement (Maybe [DesiredPlayerSession]) Source #

Set of information on each player to create a player session for.

startGameSessionPlacement_gameProperties :: Lens' StartGameSessionPlacement (Maybe [GameProperty]) Source #

A set of custom properties for a game session, formatted as key:value pairs. These properties are passed to a game server process with a request to start a new game session (see Start a Game Session).

startGameSessionPlacement_gameSessionData :: Lens' StartGameSessionPlacement (Maybe Text) Source #

A set of custom game session properties, formatted as a single string value. This data is passed to a game server process in the GameSession object with a request to start a new game session (see Start a Game Session).

startGameSessionPlacement_gameSessionName :: Lens' StartGameSessionPlacement (Maybe Text) Source #

A descriptive label that is associated with a game session. Session names do not need to be unique.

startGameSessionPlacement_playerLatencies :: Lens' StartGameSessionPlacement (Maybe [PlayerLatency]) Source #

A set of values, expressed in milliseconds, that indicates the amount of latency that a player experiences when connected to Amazon Web Services Regions. This information is used to try to place the new game session where it can offer the best possible gameplay experience for the players.

startGameSessionPlacement_placementId :: Lens' StartGameSessionPlacement Text Source #

A unique identifier to assign to the new game session placement. This value is developer-defined. The value must be unique across all Regions and cannot be reused.

startGameSessionPlacement_gameSessionQueueName :: Lens' StartGameSessionPlacement Text Source #

Name of the queue to use to place the new game session. You can use either the queue name or ARN value.

startGameSessionPlacement_maximumPlayerSessionCount :: Lens' StartGameSessionPlacement Natural Source #

The maximum number of players that can be connected simultaneously to the game session.

Destructuring the Response

data StartGameSessionPlacementResponse Source #

See: newStartGameSessionPlacementResponse smart constructor.

Constructors

StartGameSessionPlacementResponse' 

Fields

Instances

Instances details
Generic StartGameSessionPlacementResponse Source # 
Instance details

Defined in Amazonka.GameLift.StartGameSessionPlacement

Associated Types

type Rep StartGameSessionPlacementResponse :: Type -> Type #

Read StartGameSessionPlacementResponse Source # 
Instance details

Defined in Amazonka.GameLift.StartGameSessionPlacement

Show StartGameSessionPlacementResponse Source # 
Instance details

Defined in Amazonka.GameLift.StartGameSessionPlacement

NFData StartGameSessionPlacementResponse Source # 
Instance details

Defined in Amazonka.GameLift.StartGameSessionPlacement

Eq StartGameSessionPlacementResponse Source # 
Instance details

Defined in Amazonka.GameLift.StartGameSessionPlacement

type Rep StartGameSessionPlacementResponse Source # 
Instance details

Defined in Amazonka.GameLift.StartGameSessionPlacement

type Rep StartGameSessionPlacementResponse = D1 ('MetaData "StartGameSessionPlacementResponse" "Amazonka.GameLift.StartGameSessionPlacement" "amazonka-gamelift-2.0-IjhNQby9jLV6gj30IrgsyK" 'False) (C1 ('MetaCons "StartGameSessionPlacementResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "gameSessionPlacement") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe GameSessionPlacement)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newStartGameSessionPlacementResponse Source #

Create a value of StartGameSessionPlacementResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:gameSessionPlacement:StartGameSessionPlacementResponse', startGameSessionPlacementResponse_gameSessionPlacement - Object that describes the newly created game session placement. This object includes all the information provided in the request, as well as start/end time stamps and placement status.

$sel:httpStatus:StartGameSessionPlacementResponse', startGameSessionPlacementResponse_httpStatus - The response's http status code.

Response Lenses

startGameSessionPlacementResponse_gameSessionPlacement :: Lens' StartGameSessionPlacementResponse (Maybe GameSessionPlacement) Source #

Object that describes the newly created game session placement. This object includes all the information provided in the request, as well as start/end time stamps and placement status.