{ "version":"2.0", "metadata":{ "apiVersion":"2015-10-01", "endpointPrefix":"gamelift", "jsonVersion":"1.1", "protocol":"json", "serviceFullName":"Amazon GameLift", "signatureVersion":"v4", "targetPrefix":"GameLift", "uid":"gamelift-2015-10-01" }, "operations":{ "AcceptMatch":{ "name":"AcceptMatch", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"AcceptMatchInput"}, "output":{"shape":"AcceptMatchOutput"}, "errors":[ {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"}, {"shape":"InternalServiceException"}, {"shape":"UnsupportedRegionException"} ], "documentation":"

Registers a player's acceptance or rejection of a proposed FlexMatch match. A matchmaking configuration may require player acceptance; if so, then matches built with that configuration cannot be completed unless all players accept the proposed match within a specified time limit.

When FlexMatch builds a match, all the matchmaking tickets involved in the proposed match are placed into status REQUIRES_ACCEPTANCE. This is a trigger for your game to get acceptance from all players in the ticket. Acceptances are only valid for tickets when they are in this status; all other acceptances result in an error.

To register acceptance, specify the ticket ID, a response, and one or more players. Once all players have registered acceptance, the matchmaking tickets advance to status PLACING, where a new game session is created for the match.

If any player rejects the match, or if acceptances are not received before a specified timeout, the proposed match is dropped. The matchmaking tickets are then handled in one of two ways: For tickets where all players accepted the match, the ticket status is returned to SEARCHING to find a new match. For tickets where one or more players failed to accept the match, the ticket status is set to FAILED, and processing is terminated. A new matchmaking request for these players can be submitted as needed.

Matchmaking-related operations include:

" }, "CreateAlias":{ "name":"CreateAlias", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"CreateAliasInput"}, "output":{"shape":"CreateAliasOutput"}, "errors":[ {"shape":"UnauthorizedException"}, {"shape":"InvalidRequestException"}, {"shape":"ConflictException"}, {"shape":"InternalServiceException"}, {"shape":"LimitExceededException"} ], "documentation":"

Creates an alias for a fleet. In most situations, you can use an alias ID in place of a fleet ID. By using a fleet alias instead of a specific fleet ID, you can switch gameplay and players to a new fleet without changing your game client or other game components. For example, for games in production, using an alias allows you to seamlessly redirect your player base to a new game server update.

Amazon GameLift supports two types of routing strategies for aliases: simple and terminal. A simple alias points to an active fleet. A terminal alias is used to display messaging or link to a URL instead of routing players to an active fleet. For example, you might use a terminal alias when a game version is no longer supported and you want to direct players to an upgrade site.

To create a fleet alias, specify an alias name, routing strategy, and optional description. Each simple alias can point to only one fleet, but a fleet can have multiple aliases. If successful, a new alias record is returned, including an alias ID, which you can reference when creating a game session. You can reassign an alias to another fleet by calling UpdateAlias.

Alias-related operations include:

" }, "CreateBuild":{ "name":"CreateBuild", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"CreateBuildInput"}, "output":{"shape":"CreateBuildOutput"}, "errors":[ {"shape":"UnauthorizedException"}, {"shape":"InvalidRequestException"}, {"shape":"ConflictException"}, {"shape":"InternalServiceException"} ], "documentation":"

Creates a new Amazon GameLift build from a set of game server binary files stored in an Amazon Simple Storage Service (Amazon S3) location. To use this API call, create a .zip file containing all of the files for the build and store it in an Amazon S3 bucket under your AWS account. For help on packaging your build files and creating a build, see Uploading Your Game to Amazon GameLift.

Use this API action ONLY if you are storing your game build files in an Amazon S3 bucket. To create a build using files stored locally, use the CLI command upload-build , which uploads the build files from a file location you specify.

To create a new build using CreateBuild, identify the storage location and operating system of your game build. You also have the option of specifying a build name and version. If successful, this action creates a new build record with an unique build ID and in INITIALIZED status. Use the API call DescribeBuild to check the status of your build. A build must be in READY status before it can be used to create fleets to host your game.

Build-related operations include:

" }, "CreateFleet":{ "name":"CreateFleet", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"CreateFleetInput"}, "output":{"shape":"CreateFleetOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"NotFoundException"}, {"shape":"ConflictException"}, {"shape":"LimitExceededException"}, {"shape":"InvalidRequestException"}, {"shape":"UnauthorizedException"} ], "documentation":"

Creates a new fleet to run your game servers. A fleet is a set of Amazon Elastic Compute Cloud (Amazon EC2) instances, each of which can run multiple server processes to host game sessions. You configure a fleet to create instances with certain hardware specifications (see Amazon EC2 Instance Types for more information), and deploy a specified game build to each instance. A newly created fleet passes through several statuses; once it reaches the ACTIVE status, it can begin hosting game sessions.

To create a new fleet, you must specify the following: (1) fleet name, (2) build ID of an uploaded game build, (3) an EC2 instance type, and (4) a run-time configuration that describes which server processes to run on each instance in the fleet. (Although the run-time configuration is not a required parameter, the fleet cannot be successfully activated without it.)

You can also configure the new fleet with the following settings:

If you use Amazon CloudWatch for metrics, you can add the new fleet to a metric group. This allows you to view aggregated metrics for a set of fleets. Once you specify a metric group, the new fleet's metrics are included in the metric group's data.

If the CreateFleet call is successful, Amazon GameLift performs the following tasks:

Fleet-related operations include:

" }, "CreateGameSession":{ "name":"CreateGameSession", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"CreateGameSessionInput"}, "output":{"shape":"CreateGameSessionOutput"}, "errors":[ {"shape":"ConflictException"}, {"shape":"InternalServiceException"}, {"shape":"UnauthorizedException"}, {"shape":"InvalidFleetStatusException"}, {"shape":"TerminalRoutingStrategyException"}, {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"}, {"shape":"FleetCapacityExceededException"}, {"shape":"LimitExceededException"}, {"shape":"IdempotentParameterMismatchException"} ], "documentation":"

Creates a multiplayer game session for players. This action creates a game session record and assigns an available server process in the specified fleet to host the game session. A fleet must have an ACTIVE status before a game session can be created in it.

To create a game session, specify either fleet ID or alias ID and indicate a maximum number of players to allow in the game session. You can also provide a name and game-specific properties for this game session. If successful, a GameSession object is returned containing the game session properties and other settings you specified.

Idempotency tokens. You can add a token that uniquely identifies game session requests. This is useful for ensuring that game session requests are idempotent. Multiple requests with the same idempotency token are processed only once; subsequent requests return the original result. All response values are the same with the exception of game session status, which may change.

Resource creation limits. If you are creating a game session on a fleet with a resource creation limit policy in force, then you must specify a creator ID. Without this ID, Amazon GameLift has no way to evaluate the policy for this new game session request.

Player acceptance policy. By default, newly created game sessions are open to new players. You can restrict new player access by using UpdateGameSession to change the game session's player session creation policy.

Game session logs. Logs are retained for all active game sessions for 14 days. To access the logs, call GetGameSessionLogUrl to download the log files.

Available in Amazon GameLift Local.

Game-session-related operations include:

" }, "CreateGameSessionQueue":{ "name":"CreateGameSessionQueue", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"CreateGameSessionQueueInput"}, "output":{"shape":"CreateGameSessionQueueOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"InvalidRequestException"}, {"shape":"UnauthorizedException"}, {"shape":"LimitExceededException"} ], "documentation":"

Establishes a new queue for processing requests to place new game sessions. A queue identifies where new game sessions can be hosted -- by specifying a list of destinations (fleets or aliases) -- and how long requests can wait in the queue before timing out. You can set up a queue to try to place game sessions on fleets in multiple regions. To add placement requests to a queue, call StartGameSessionPlacement and reference the queue name.

Destination order. When processing a request for a game session, Amazon GameLift tries each destination in order until it finds one with available resources to host the new game session. A queue's default order is determined by how destinations are listed. The default order is overridden when a game session placement request provides player latency information. Player latency information enables Amazon GameLift to prioritize destinations where players report the lowest average latency, as a result placing the new game session where the majority of players will have the best possible gameplay experience.

Player latency policies. For placement requests containing player latency information, use player latency policies to protect individual players from very high latencies. With a latency cap, even when a destination can deliver a low latency for most players, the game is not placed where any individual player is reporting latency higher than a policy's maximum. A queue can have multiple latency policies, which are enforced consecutively starting with the policy with the lowest latency cap. Use multiple policies to gradually relax latency controls; for example, you might set a policy with a low latency cap for the first 60 seconds, a second policy with a higher cap for the next 60 seconds, etc.

To create a new queue, provide a name, timeout value, a list of destinations and, if desired, a set of latency policies. If successful, a new queue object is returned.

Queue-related operations include:

" }, "CreateMatchmakingConfiguration":{ "name":"CreateMatchmakingConfiguration", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"CreateMatchmakingConfigurationInput"}, "output":{"shape":"CreateMatchmakingConfigurationOutput"}, "errors":[ {"shape":"InvalidRequestException"}, {"shape":"LimitExceededException"}, {"shape":"NotFoundException"}, {"shape":"InternalServiceException"}, {"shape":"UnsupportedRegionException"} ], "documentation":"

Defines a new matchmaking configuration for use with FlexMatch. A matchmaking configuration sets out guidelines for matching players and getting the matches into games. You can set up multiple matchmaking configurations to handle the scenarios needed for your game. Each matchmaking request (StartMatchmaking) specifies a configuration for the match and provides player attributes to support the configuration being used.

To create a matchmaking configuration, at a minimum you must specify the following: configuration name; a rule set that governs how to evaluate players and find acceptable matches; a game session queue to use when placing a new game session for the match; and the maximum time allowed for a matchmaking attempt.

Player acceptance -- In each configuration, you have the option to require that all players accept participation in a proposed match. To enable this feature, set AcceptanceRequired to true and specify a time limit for player acceptance. Players have the option to accept or reject a proposed match, and a match does not move ahead to game session placement unless all matched players accept.

Matchmaking status notification -- There are two ways to track the progress of matchmaking tickets: (1) polling ticket status with DescribeMatchmaking; or (2) receiving notifications with Amazon Simple Notification Service (SNS). To use notifications, you first need to set up an SNS topic to receive the notifications, and provide the topic ARN in the matchmaking configuration (see Setting up Notifications for Matchmaking). Since notifications promise only \"best effort\" delivery, we recommend calling DescribeMatchmaking if no notifications are received within 30 seconds.

Operations related to match configurations and rule sets include:

" }, "CreateMatchmakingRuleSet":{ "name":"CreateMatchmakingRuleSet", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"CreateMatchmakingRuleSetInput"}, "output":{"shape":"CreateMatchmakingRuleSetOutput"}, "errors":[ {"shape":"InvalidRequestException"}, {"shape":"InternalServiceException"}, {"shape":"UnsupportedRegionException"} ], "documentation":"

Creates a new rule set for FlexMatch matchmaking. A rule set describes the type of match to create, such as the number and size of teams, and sets the parameters for acceptable player matches, such as minimum skill level or character type. Rule sets are used in matchmaking configurations, which define how matchmaking requests are handled. Each MatchmakingConfiguration uses one rule set; you can set up multiple rule sets to handle the scenarios that suit your game (such as for different game modes), and create a separate matchmaking configuration for each rule set. See additional information on rule set content in the MatchmakingRuleSet structure. For help creating rule sets, including useful examples, see the topic Adding FlexMatch to Your Game.

Once created, matchmaking rule sets cannot be changed or deleted, so we recommend checking the rule set syntax using ValidateMatchmakingRuleSetbefore creating the rule set.

To create a matchmaking rule set, provide the set of rules and a unique name. Rule sets must be defined in the same region as the matchmaking configuration they will be used with. Rule sets cannot be edited or deleted. If you need to change a rule set, create a new one with the necessary edits and then update matchmaking configurations to use the new rule set.

Operations related to match configurations and rule sets include:

" }, "CreatePlayerSession":{ "name":"CreatePlayerSession", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"CreatePlayerSessionInput"}, "output":{"shape":"CreatePlayerSessionOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"UnauthorizedException"}, {"shape":"InvalidGameSessionStatusException"}, {"shape":"GameSessionFullException"}, {"shape":"TerminalRoutingStrategyException"}, {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"} ], "documentation":"

Adds a player to a game session and creates a player session record. Before a player can be added, a game session must have an ACTIVE status, have a creation policy of ALLOW_ALL, and have an open player slot. To add a group of players to a game session, use CreatePlayerSessions.

To create a player session, specify a game session ID, player ID, and optionally a string of player data. If successful, the player is added to the game session and a new PlayerSession object is returned. Player sessions cannot be updated.

Available in Amazon GameLift Local.

Player-session-related operations include:

" }, "CreatePlayerSessions":{ "name":"CreatePlayerSessions", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"CreatePlayerSessionsInput"}, "output":{"shape":"CreatePlayerSessionsOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"UnauthorizedException"}, {"shape":"InvalidGameSessionStatusException"}, {"shape":"GameSessionFullException"}, {"shape":"TerminalRoutingStrategyException"}, {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"} ], "documentation":"

Adds a group of players to a game session. This action is useful with a team matching feature. Before players can be added, a game session must have an ACTIVE status, have a creation policy of ALLOW_ALL, and have an open player slot. To add a single player to a game session, use CreatePlayerSession.

To create player sessions, specify a game session ID, a list of player IDs, and optionally a set of player data strings. If successful, the players are added to the game session and a set of new PlayerSession objects is returned. Player sessions cannot be updated.

Available in Amazon GameLift Local.

Player-session-related operations include:

" }, "DeleteAlias":{ "name":"DeleteAlias", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DeleteAliasInput"}, "errors":[ {"shape":"UnauthorizedException"}, {"shape":"NotFoundException"}, {"shape":"InvalidRequestException"}, {"shape":"InternalServiceException"} ], "documentation":"

Deletes an alias. This action removes all record of the alias. Game clients attempting to access a server process using the deleted alias receive an error. To delete an alias, specify the alias ID to be deleted.

Alias-related operations include:

" }, "DeleteBuild":{ "name":"DeleteBuild", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DeleteBuildInput"}, "errors":[ {"shape":"UnauthorizedException"}, {"shape":"NotFoundException"}, {"shape":"InternalServiceException"}, {"shape":"InvalidRequestException"} ], "documentation":"

Deletes a build. This action permanently deletes the build record and any uploaded build files.

To delete a build, specify its ID. Deleting a build does not affect the status of any active fleets using the build, but you can no longer create new fleets with the deleted build.

Build-related operations include:

" }, "DeleteFleet":{ "name":"DeleteFleet", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DeleteFleetInput"}, "errors":[ {"shape":"NotFoundException"}, {"shape":"InternalServiceException"}, {"shape":"InvalidFleetStatusException"}, {"shape":"UnauthorizedException"}, {"shape":"InvalidRequestException"} ], "documentation":"

Deletes everything related to a fleet. Before deleting a fleet, you must set the fleet's desired capacity to zero. See UpdateFleetCapacity.

This action removes the fleet's resources and the fleet record. Once a fleet is deleted, you can no longer use that fleet.

Fleet-related operations include:

" }, "DeleteGameSessionQueue":{ "name":"DeleteGameSessionQueue", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DeleteGameSessionQueueInput"}, "output":{"shape":"DeleteGameSessionQueueOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"}, {"shape":"UnauthorizedException"} ], "documentation":"

Deletes a game session queue. This action means that any StartGameSessionPlacement requests that reference this queue will fail. To delete a queue, specify the queue name.

Queue-related operations include:

" }, "DeleteMatchmakingConfiguration":{ "name":"DeleteMatchmakingConfiguration", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DeleteMatchmakingConfigurationInput"}, "output":{"shape":"DeleteMatchmakingConfigurationOutput"}, "errors":[ {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"}, {"shape":"InternalServiceException"}, {"shape":"UnsupportedRegionException"} ], "documentation":"

Permanently removes a FlexMatch matchmaking configuration. To delete, specify the configuration name. A matchmaking configuration cannot be deleted if it is being used in any active matchmaking tickets.

Operations related to match configurations and rule sets include:

" }, "DeleteScalingPolicy":{ "name":"DeleteScalingPolicy", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DeleteScalingPolicyInput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"InvalidRequestException"}, {"shape":"UnauthorizedException"}, {"shape":"NotFoundException"} ], "documentation":"

Deletes a fleet scaling policy. This action means that the policy is no longer in force and removes all record of it. To delete a scaling policy, specify both the scaling policy name and the fleet ID it is associated with.

Fleet-related operations include:

" }, "DescribeAlias":{ "name":"DescribeAlias", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DescribeAliasInput"}, "output":{"shape":"DescribeAliasOutput"}, "errors":[ {"shape":"UnauthorizedException"}, {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"}, {"shape":"InternalServiceException"} ], "documentation":"

Retrieves properties for an alias. This operation returns all alias metadata and settings. To get an alias's target fleet ID only, use ResolveAlias.

To get alias properties, specify the alias ID. If successful, the requested alias record is returned.

Alias-related operations include:

" }, "DescribeBuild":{ "name":"DescribeBuild", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DescribeBuildInput"}, "output":{"shape":"DescribeBuildOutput"}, "errors":[ {"shape":"UnauthorizedException"}, {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"}, {"shape":"InternalServiceException"} ], "documentation":"

Retrieves properties for a build. To get a build record, specify a build ID. If successful, an object containing the build properties is returned.

Build-related operations include:

" }, "DescribeEC2InstanceLimits":{ "name":"DescribeEC2InstanceLimits", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DescribeEC2InstanceLimitsInput"}, "output":{"shape":"DescribeEC2InstanceLimitsOutput"}, "errors":[ {"shape":"InvalidRequestException"}, {"shape":"InternalServiceException"}, {"shape":"UnauthorizedException"} ], "documentation":"

Retrieves the following information for the specified EC2 instance type:

Service limits vary depending on region. Available regions for Amazon GameLift can be found in the AWS Management Console for Amazon GameLift (see the drop-down list in the upper right corner).

Fleet-related operations include:

" }, "DescribeFleetAttributes":{ "name":"DescribeFleetAttributes", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DescribeFleetAttributesInput"}, "output":{"shape":"DescribeFleetAttributesOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"NotFoundException"}, {"shape":"InvalidRequestException"}, {"shape":"UnauthorizedException"} ], "documentation":"

Retrieves fleet properties, including metadata, status, and configuration, for one or more fleets. You can request attributes for all fleets, or specify a list of one or more fleet IDs. When requesting multiple fleets, use the pagination parameters to retrieve results as a set of sequential pages. If successful, a FleetAttributes object is returned for each requested fleet ID. When specifying a list of fleet IDs, attribute objects are returned only for fleets that currently exist.

Some API actions may limit the number of fleet IDs allowed in one request. If a request exceeds this limit, the request fails and the error message includes the maximum allowed.

Fleet-related operations include:

" }, "DescribeFleetCapacity":{ "name":"DescribeFleetCapacity", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DescribeFleetCapacityInput"}, "output":{"shape":"DescribeFleetCapacityOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"NotFoundException"}, {"shape":"InvalidRequestException"}, {"shape":"UnauthorizedException"} ], "documentation":"

Retrieves the current status of fleet capacity for one or more fleets. This information includes the number of instances that have been requested for the fleet and the number currently active. You can request capacity for all fleets, or specify a list of one or more fleet IDs. When requesting multiple fleets, use the pagination parameters to retrieve results as a set of sequential pages. If successful, a FleetCapacity object is returned for each requested fleet ID. When specifying a list of fleet IDs, attribute objects are returned only for fleets that currently exist.

Some API actions may limit the number of fleet IDs allowed in one request. If a request exceeds this limit, the request fails and the error message includes the maximum allowed.

Fleet-related operations include:

" }, "DescribeFleetEvents":{ "name":"DescribeFleetEvents", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DescribeFleetEventsInput"}, "output":{"shape":"DescribeFleetEventsOutput"}, "errors":[ {"shape":"NotFoundException"}, {"shape":"InternalServiceException"}, {"shape":"UnauthorizedException"}, {"shape":"InvalidRequestException"} ], "documentation":"

Retrieves entries from the specified fleet's event log. You can specify a time range to limit the result set. Use the pagination parameters to retrieve results as a set of sequential pages. If successful, a collection of event log entries matching the request are returned.

Fleet-related operations include:

" }, "DescribeFleetPortSettings":{ "name":"DescribeFleetPortSettings", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DescribeFleetPortSettingsInput"}, "output":{"shape":"DescribeFleetPortSettingsOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"NotFoundException"}, {"shape":"InvalidRequestException"}, {"shape":"UnauthorizedException"} ], "documentation":"

Retrieves the inbound connection permissions for a fleet. Connection permissions include a range of IP addresses and port settings that incoming traffic can use to access server processes in the fleet. To get a fleet's inbound connection permissions, specify a fleet ID. If successful, a collection of IpPermission objects is returned for the requested fleet ID. If the requested fleet has been deleted, the result set is empty.

Fleet-related operations include:

" }, "DescribeFleetUtilization":{ "name":"DescribeFleetUtilization", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DescribeFleetUtilizationInput"}, "output":{"shape":"DescribeFleetUtilizationOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"NotFoundException"}, {"shape":"InvalidRequestException"}, {"shape":"UnauthorizedException"} ], "documentation":"

Retrieves utilization statistics for one or more fleets. You can request utilization data for all fleets, or specify a list of one or more fleet IDs. When requesting multiple fleets, use the pagination parameters to retrieve results as a set of sequential pages. If successful, a FleetUtilization object is returned for each requested fleet ID. When specifying a list of fleet IDs, utilization objects are returned only for fleets that currently exist.

Some API actions may limit the number of fleet IDs allowed in one request. If a request exceeds this limit, the request fails and the error message includes the maximum allowed.

Fleet-related operations include:

" }, "DescribeGameSessionDetails":{ "name":"DescribeGameSessionDetails", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DescribeGameSessionDetailsInput"}, "output":{"shape":"DescribeGameSessionDetailsOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"NotFoundException"}, {"shape":"InvalidRequestException"}, {"shape":"UnauthorizedException"}, {"shape":"TerminalRoutingStrategyException"} ], "documentation":"

Retrieves properties, including the protection policy in force, for one or more game sessions. This action can be used in several ways: (1) provide a GameSessionId or GameSessionArn to request details for a specific game session; (2) provide either a FleetId or an AliasId to request properties for all game sessions running on a fleet.

To get game session record(s), specify just one of the following: game session ID, fleet ID, or alias ID. You can filter this request by game session status. Use the pagination parameters to retrieve results as a set of sequential pages. If successful, a GameSessionDetail object is returned for each session matching the request.

Game-session-related operations include:

" }, "DescribeGameSessionPlacement":{ "name":"DescribeGameSessionPlacement", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DescribeGameSessionPlacementInput"}, "output":{"shape":"DescribeGameSessionPlacementOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"}, {"shape":"UnauthorizedException"} ], "documentation":"

Retrieves properties and current status of a game session placement request. To get game session placement details, specify the placement ID. If successful, a GameSessionPlacement object is returned.

Game-session-related operations include:

" }, "DescribeGameSessionQueues":{ "name":"DescribeGameSessionQueues", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DescribeGameSessionQueuesInput"}, "output":{"shape":"DescribeGameSessionQueuesOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"}, {"shape":"UnauthorizedException"} ], "documentation":"

Retrieves the properties for one or more game session queues. When requesting multiple queues, use the pagination parameters to retrieve results as a set of sequential pages. If successful, a GameSessionQueue object is returned for each requested queue. When specifying a list of queues, objects are returned only for queues that currently exist in the region.

Queue-related operations include:

" }, "DescribeGameSessions":{ "name":"DescribeGameSessions", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DescribeGameSessionsInput"}, "output":{"shape":"DescribeGameSessionsOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"NotFoundException"}, {"shape":"InvalidRequestException"}, {"shape":"UnauthorizedException"}, {"shape":"TerminalRoutingStrategyException"} ], "documentation":"

Retrieves a set of one or more game sessions. Request a specific game session or request all game sessions on a fleet. Alternatively, use SearchGameSessions to request a set of active game sessions that are filtered by certain criteria. To retrieve protection policy settings for game sessions, use DescribeGameSessionDetails.

To get game sessions, specify one of the following: game session ID, fleet ID, or alias ID. You can filter this request by game session status. Use the pagination parameters to retrieve results as a set of sequential pages. If successful, a GameSession object is returned for each game session matching the request.

Available in Amazon GameLift Local.

Game-session-related operations include:

" }, "DescribeInstances":{ "name":"DescribeInstances", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DescribeInstancesInput"}, "output":{"shape":"DescribeInstancesOutput"}, "errors":[ {"shape":"UnauthorizedException"}, {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"}, {"shape":"InternalServiceException"} ], "documentation":"

Retrieves information about a fleet's instances, including instance IDs. Use this action to get details on all instances in the fleet or get details on one specific instance.

To get a specific instance, specify fleet ID and instance ID. To get all instances in a fleet, specify a fleet ID only. Use the pagination parameters to retrieve results as a set of sequential pages. If successful, an Instance object is returned for each result.

" }, "DescribeMatchmaking":{ "name":"DescribeMatchmaking", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DescribeMatchmakingInput"}, "output":{"shape":"DescribeMatchmakingOutput"}, "errors":[ {"shape":"InvalidRequestException"}, {"shape":"InternalServiceException"}, {"shape":"UnsupportedRegionException"} ], "documentation":"

Retrieves a set of one or more matchmaking tickets. Use this operation to retrieve ticket information, including status and--once a successful match is made--acquire connection information for the resulting new game session.

You can use this operation to track the progress of matchmaking requests (through polling) as an alternative to using event notifications. See more details on tracking matchmaking requests through polling or notifications in StartMatchmaking.

You can request data for a one or a list of ticket IDs. If the request is successful, a ticket object is returned for each requested ID. When specifying a list of ticket IDs, objects are returned only for tickets that currently exist.

Matchmaking-related operations include:

" }, "DescribeMatchmakingConfigurations":{ "name":"DescribeMatchmakingConfigurations", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DescribeMatchmakingConfigurationsInput"}, "output":{"shape":"DescribeMatchmakingConfigurationsOutput"}, "errors":[ {"shape":"InvalidRequestException"}, {"shape":"InternalServiceException"}, {"shape":"UnsupportedRegionException"} ], "documentation":"

Retrieves the details of FlexMatch matchmaking configurations. with this operation, you have the following options: (1) retrieve all existing configurations, (2) provide the names of one or more configurations to retrieve, or (3) retrieve all configurations that use a specified rule set name. When requesting multiple items, use the pagination parameters to retrieve results as a set of sequential pages. If successful, a configuration is returned for each requested name. When specifying a list of names, only configurations that currently exist are returned.

Operations related to match configurations and rule sets include:

" }, "DescribeMatchmakingRuleSets":{ "name":"DescribeMatchmakingRuleSets", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DescribeMatchmakingRuleSetsInput"}, "output":{"shape":"DescribeMatchmakingRuleSetsOutput"}, "errors":[ {"shape":"InvalidRequestException"}, {"shape":"InternalServiceException"}, {"shape":"NotFoundException"}, {"shape":"UnsupportedRegionException"} ], "documentation":"

Retrieves the details for FlexMatch matchmaking rule sets. You can request all existing rule sets for the region, or provide a list of one or more rule set names. When requesting multiple items, use the pagination parameters to retrieve results as a set of sequential pages. If successful, a rule set is returned for each requested name.

Operations related to match configurations and rule sets include:

" }, "DescribePlayerSessions":{ "name":"DescribePlayerSessions", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DescribePlayerSessionsInput"}, "output":{"shape":"DescribePlayerSessionsOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"NotFoundException"}, {"shape":"InvalidRequestException"}, {"shape":"UnauthorizedException"} ], "documentation":"

Retrieves properties for one or more player sessions. This action can be used in several ways: (1) provide a PlayerSessionId to request properties for a specific player session; (2) provide a GameSessionId to request properties for all player sessions in the specified game session; (3) provide a PlayerId to request properties for all player sessions of a specified player.

To get game session record(s), specify only one of the following: a player session ID, a game session ID, or a player ID. You can filter this request by player session status. Use the pagination parameters to retrieve results as a set of sequential pages. If successful, a PlayerSession object is returned for each session matching the request.

Available in Amazon GameLift Local.

Player-session-related operations include:

" }, "DescribeRuntimeConfiguration":{ "name":"DescribeRuntimeConfiguration", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DescribeRuntimeConfigurationInput"}, "output":{"shape":"DescribeRuntimeConfigurationOutput"}, "errors":[ {"shape":"UnauthorizedException"}, {"shape":"NotFoundException"}, {"shape":"InternalServiceException"}, {"shape":"InvalidRequestException"} ], "documentation":"

Retrieves the current run-time configuration for the specified fleet. The run-time configuration tells Amazon GameLift how to launch server processes on instances in the fleet.

Fleet-related operations include:

" }, "DescribeScalingPolicies":{ "name":"DescribeScalingPolicies", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"DescribeScalingPoliciesInput"}, "output":{"shape":"DescribeScalingPoliciesOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"InvalidRequestException"}, {"shape":"UnauthorizedException"}, {"shape":"NotFoundException"} ], "documentation":"

Retrieves all scaling policies applied to a fleet.

To get a fleet's scaling policies, specify the fleet ID. You can filter this request by policy status, such as to retrieve only active scaling policies. Use the pagination parameters to retrieve results as a set of sequential pages. If successful, set of ScalingPolicy objects is returned for the fleet.

Fleet-related operations include:

" }, "GetGameSessionLogUrl":{ "name":"GetGameSessionLogUrl", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"GetGameSessionLogUrlInput"}, "output":{"shape":"GetGameSessionLogUrlOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"NotFoundException"}, {"shape":"UnauthorizedException"}, {"shape":"InvalidRequestException"} ], "documentation":"

Retrieves the location of stored game session logs for a specified game session. When a game session is terminated, Amazon GameLift automatically stores the logs in Amazon S3 and retains them for 14 days. Use this URL to download the logs.

See the AWS Service Limits page for maximum log file sizes. Log files that exceed this limit are not saved.

Game-session-related operations include:

" }, "GetInstanceAccess":{ "name":"GetInstanceAccess", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"GetInstanceAccessInput"}, "output":{"shape":"GetInstanceAccessOutput"}, "errors":[ {"shape":"UnauthorizedException"}, {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"}, {"shape":"InternalServiceException"} ], "documentation":"

Requests remote access to a fleet instance. Remote access is useful for debugging, gathering benchmarking data, or watching activity in real time.

Access requires credentials that match the operating system of the instance. For a Windows instance, Amazon GameLift returns a user name and password as strings for use with a Windows Remote Desktop client. For a Linux instance, Amazon GameLift returns a user name and RSA private key, also as strings, for use with an SSH client. The private key must be saved in the proper format to a .pem file before using. If you're making this request using the AWS CLI, saving the secret can be handled as part of the GetInstanceAccess request. (See the example later in this topic). For more information on remote access, see Remotely Accessing an Instance.

To request access to a specific instance, specify the IDs of the instance and the fleet it belongs to. If successful, an InstanceAccess object is returned containing the instance's IP address and a set of credentials.

" }, "ListAliases":{ "name":"ListAliases", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"ListAliasesInput"}, "output":{"shape":"ListAliasesOutput"}, "errors":[ {"shape":"UnauthorizedException"}, {"shape":"InvalidRequestException"}, {"shape":"InternalServiceException"} ], "documentation":"

Retrieves all aliases for this AWS account. You can filter the result set by alias name and/or routing strategy type. Use the pagination parameters to retrieve results in sequential pages.

Returned aliases are not listed in any particular order.

Alias-related operations include:

" }, "ListBuilds":{ "name":"ListBuilds", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"ListBuildsInput"}, "output":{"shape":"ListBuildsOutput"}, "errors":[ {"shape":"UnauthorizedException"}, {"shape":"InvalidRequestException"}, {"shape":"InternalServiceException"} ], "documentation":"

Retrieves build records for all builds associated with the AWS account in use. You can limit results to builds that are in a specific status by using the Status parameter. Use the pagination parameters to retrieve results in a set of sequential pages.

Build records are not listed in any particular order.

Build-related operations include:

" }, "ListFleets":{ "name":"ListFleets", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"ListFleetsInput"}, "output":{"shape":"ListFleetsOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"NotFoundException"}, {"shape":"InvalidRequestException"}, {"shape":"UnauthorizedException"} ], "documentation":"

Retrieves a collection of fleet records for this AWS account. You can filter the result set by build ID. Use the pagination parameters to retrieve results in sequential pages.

Fleet records are not listed in any particular order.

Fleet-related operations include:

" }, "PutScalingPolicy":{ "name":"PutScalingPolicy", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"PutScalingPolicyInput"}, "output":{"shape":"PutScalingPolicyOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"InvalidRequestException"}, {"shape":"UnauthorizedException"}, {"shape":"NotFoundException"} ], "documentation":"

Creates or updates a scaling policy for a fleet. An active scaling policy prompts Amazon GameLift to track a certain metric for a fleet and automatically change the fleet's capacity in specific circumstances. Each scaling policy contains one rule statement. Fleets can have multiple scaling policies in force simultaneously.

A scaling policy rule statement has the following structure:

If [MetricName] is [ComparisonOperator] [Threshold] for [EvaluationPeriods] minutes, then [ScalingAdjustmentType] to/by [ScalingAdjustment].

For example, this policy: \"If the number of idle instances exceeds 20 for more than 15 minutes, then reduce the fleet capacity by 10 instances\" could be implemented as the following rule statement:

If [IdleInstances] is [GreaterThanOrEqualToThreshold] [20] for [15] minutes, then [ChangeInCapacity] by [-10].

To create or update a scaling policy, specify a unique combination of name and fleet ID, and set the rule values. All parameters for this action are required. If successful, the policy name is returned. Scaling policies cannot be suspended or made inactive. To stop enforcing a scaling policy, call DeleteScalingPolicy.

Fleet-related operations include:

" }, "RequestUploadCredentials":{ "name":"RequestUploadCredentials", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"RequestUploadCredentialsInput"}, "output":{"shape":"RequestUploadCredentialsOutput"}, "errors":[ {"shape":"UnauthorizedException"}, {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"}, {"shape":"InternalServiceException"} ], "documentation":"

This API call is not currently in use. Retrieves a fresh set of upload credentials and the assigned Amazon S3 storage location for a specific build. Valid credentials are required to upload your game build files to Amazon S3.

" }, "ResolveAlias":{ "name":"ResolveAlias", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"ResolveAliasInput"}, "output":{"shape":"ResolveAliasOutput"}, "errors":[ {"shape":"UnauthorizedException"}, {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"}, {"shape":"TerminalRoutingStrategyException"}, {"shape":"InternalServiceException"} ], "documentation":"

Retrieves the fleet ID that a specified alias is currently pointing to.

Alias-related operations include:

" }, "SearchGameSessions":{ "name":"SearchGameSessions", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"SearchGameSessionsInput"}, "output":{"shape":"SearchGameSessionsOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"NotFoundException"}, {"shape":"InvalidRequestException"}, {"shape":"UnauthorizedException"}, {"shape":"TerminalRoutingStrategyException"} ], "documentation":"

Retrieves a set of game sessions that match a set of search criteria and sorts them in a specified order. A game session search is limited to a single fleet. Search results include only game sessions that are in ACTIVE status. If you need to retrieve game sessions with a status other than active, use DescribeGameSessions. If you need to retrieve the protection policy for each game session, use DescribeGameSessionDetails.

You can search or sort by the following game session attributes:

To search or sort, specify either a fleet ID or an alias ID, and provide a search filter expression, a sort expression, or both. Use the pagination parameters to retrieve results as a set of sequential pages. If successful, a collection of GameSession objects matching the request is returned.

Returned values for playerSessionCount and hasAvailablePlayerSessions change quickly as players join sessions and others drop out. Results should be considered a snapshot in time. Be sure to refresh search results often, and handle sessions that fill up before a player can join.

Game-session-related operations include:

" }, "StartGameSessionPlacement":{ "name":"StartGameSessionPlacement", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"StartGameSessionPlacementInput"}, "output":{"shape":"StartGameSessionPlacementOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"}, {"shape":"UnauthorizedException"} ], "documentation":"

Places a request for a new game session in a queue (see CreateGameSessionQueue). 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:

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.

Game-session-related operations include:

" }, "StartMatchmaking":{ "name":"StartMatchmaking", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"StartMatchmakingInput"}, "output":{"shape":"StartMatchmakingOutput"}, "errors":[ {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"}, {"shape":"InternalServiceException"}, {"shape":"UnsupportedRegionException"} ], "documentation":"

Uses FlexMatch to create a game match for a group of players based on custom matchmaking rules, and starts a new game for the matched players. Each matchmaking request specifies the type of match to build (team configuration, rules for an acceptable match, etc.). The request also specifies the players to find a match for and where to host the new game session for optimal performance. A matchmaking request might start with a single player or a group of players who want to play together. FlexMatch finds additional players as needed to fill the match. Match type, rules, and the queue used to place a new game session are defined in a MatchmakingConfiguration. For complete information on setting up and using FlexMatch, see the topic Adding FlexMatch to Your Game.

To start matchmaking, provide a unique ticket ID, specify a matchmaking configuration, and include the players to be matched. You must also include a set of player attributes relevant for the matchmaking configuration. If successful, a matchmaking ticket is returned with status set to QUEUED. Track the status of the ticket to respond as needed and acquire game session connection information for sucessfully completed matches.

Tracking ticket status -- A couple of options are available for tracking the status of matchmaking requests:

Processing a matchmaking request -- FlexMatch handles a matchmaking request as follows:

  1. Your client code submits a StartMatchmaking request for one or more players and tracks the status of the request ticket.

  2. FlexMatch uses this ticket and others in process to build an acceptable match. When a potential match is identified, all tickets in the proposed match are advanced to the next status.

  3. If the match requires player acceptance (set in the matchmaking configuration), the tickets move into status REQUIRES_ACCEPTANCE. This status triggers your client code to solicit acceptance from all players in every ticket involved in the match, and then call AcceptMatch for each player. If any player rejects or fails to accept the match before a specified timeout, the proposed match is dropped (see AcceptMatch for more details).

  4. Once a match is proposed and accepted, the matchmaking tickets move into status PLACING. FlexMatch locates resources for a new game session using the game session queue (set in the matchmaking configuration) and creates the game session based on the match data.

  5. When the match is successfully placed, the matchmaking tickets move into COMPLETED status. Connection information (including game session endpoint and player session) is added to the matchmaking tickets. Matched players can use the connection information to join the game.

Matchmaking-related operations include:

" }, "StopGameSessionPlacement":{ "name":"StopGameSessionPlacement", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"StopGameSessionPlacementInput"}, "output":{"shape":"StopGameSessionPlacementOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"}, {"shape":"UnauthorizedException"} ], "documentation":"

Cancels a game session placement that is in PENDING status. To stop a placement, provide the placement ID values. If successful, the placement is moved to CANCELLED status.

Game-session-related operations include:

" }, "StopMatchmaking":{ "name":"StopMatchmaking", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"StopMatchmakingInput"}, "output":{"shape":"StopMatchmakingOutput"}, "errors":[ {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"}, {"shape":"InternalServiceException"}, {"shape":"UnsupportedRegionException"} ], "documentation":"

Cancels a matchmaking ticket that is currently being processed. To stop the matchmaking operation, specify the ticket ID. If successful, work on the ticket is stopped, and the ticket status is changed to CANCELLED.

Matchmaking-related operations include:

" }, "UpdateAlias":{ "name":"UpdateAlias", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"UpdateAliasInput"}, "output":{"shape":"UpdateAliasOutput"}, "errors":[ {"shape":"UnauthorizedException"}, {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"}, {"shape":"InternalServiceException"} ], "documentation":"

Updates properties for an alias. To update properties, specify the alias ID to be updated and provide the information to be changed. To reassign an alias to another fleet, provide an updated routing strategy. If successful, the updated alias record is returned.

Alias-related operations include:

" }, "UpdateBuild":{ "name":"UpdateBuild", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"UpdateBuildInput"}, "output":{"shape":"UpdateBuildOutput"}, "errors":[ {"shape":"UnauthorizedException"}, {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"}, {"shape":"InternalServiceException"} ], "documentation":"

Updates metadata in a build record, including the build name and version. To update the metadata, specify the build ID to update and provide the new values. If successful, a build object containing the updated metadata is returned.

Build-related operations include:

" }, "UpdateFleetAttributes":{ "name":"UpdateFleetAttributes", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"UpdateFleetAttributesInput"}, "output":{"shape":"UpdateFleetAttributesOutput"}, "errors":[ {"shape":"NotFoundException"}, {"shape":"ConflictException"}, {"shape":"InvalidFleetStatusException"}, {"shape":"LimitExceededException"}, {"shape":"InternalServiceException"}, {"shape":"InvalidRequestException"}, {"shape":"UnauthorizedException"} ], "documentation":"

Updates fleet properties, including name and description, for a fleet. To update metadata, specify the fleet ID and the property values that you want to change. If successful, the fleet ID for the updated fleet is returned.

Fleet-related operations include:

" }, "UpdateFleetCapacity":{ "name":"UpdateFleetCapacity", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"UpdateFleetCapacityInput"}, "output":{"shape":"UpdateFleetCapacityOutput"}, "errors":[ {"shape":"NotFoundException"}, {"shape":"ConflictException"}, {"shape":"LimitExceededException"}, {"shape":"InvalidFleetStatusException"}, {"shape":"InternalServiceException"}, {"shape":"InvalidRequestException"}, {"shape":"UnauthorizedException"} ], "documentation":"

Updates capacity settings for a fleet. Use this action to specify the number of EC2 instances (hosts) that you want this fleet to contain. Before calling this action, you may want to call DescribeEC2InstanceLimits to get the maximum capacity based on the fleet's EC2 instance type.

If you're using autoscaling (see PutScalingPolicy), you may want to specify a minimum and/or maximum capacity. If you don't provide these, autoscaling can set capacity anywhere between zero and the service limits.

To update fleet capacity, specify the fleet ID and the number of instances you want the fleet to host. If successful, Amazon GameLift starts or terminates instances so that the fleet's active instance count matches the desired instance count. You can view a fleet's current capacity information by calling DescribeFleetCapacity. If the desired instance count is higher than the instance type's limit, the \"Limit Exceeded\" exception occurs.

Fleet-related operations include:

" }, "UpdateFleetPortSettings":{ "name":"UpdateFleetPortSettings", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"UpdateFleetPortSettingsInput"}, "output":{"shape":"UpdateFleetPortSettingsOutput"}, "errors":[ {"shape":"NotFoundException"}, {"shape":"ConflictException"}, {"shape":"InvalidFleetStatusException"}, {"shape":"LimitExceededException"}, {"shape":"InternalServiceException"}, {"shape":"InvalidRequestException"}, {"shape":"UnauthorizedException"} ], "documentation":"

Updates port settings for a fleet. To update settings, specify the fleet ID to be updated and list the permissions you want to update. List the permissions you want to add in InboundPermissionAuthorizations, and permissions you want to remove in InboundPermissionRevocations. Permissions to be removed must match existing fleet permissions. If successful, the fleet ID for the updated fleet is returned.

Fleet-related operations include:

" }, "UpdateGameSession":{ "name":"UpdateGameSession", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"UpdateGameSessionInput"}, "output":{"shape":"UpdateGameSessionOutput"}, "errors":[ {"shape":"NotFoundException"}, {"shape":"ConflictException"}, {"shape":"InternalServiceException"}, {"shape":"UnauthorizedException"}, {"shape":"InvalidGameSessionStatusException"}, {"shape":"InvalidRequestException"} ], "documentation":"

Updates game session properties. This includes the session name, maximum player count, protection policy, which controls whether or not an active game session can be terminated during a scale-down event, and the player session creation policy, which controls whether or not new players can join the session. To update a game session, specify the game session ID and the values you want to change. If successful, an updated GameSession object is returned.

Game-session-related operations include:

" }, "UpdateGameSessionQueue":{ "name":"UpdateGameSessionQueue", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"UpdateGameSessionQueueInput"}, "output":{"shape":"UpdateGameSessionQueueOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"}, {"shape":"UnauthorizedException"} ], "documentation":"

Updates settings for a game session queue, which determines how new game session requests in the queue are processed. To update settings, specify the queue name to be updated and provide the new settings. When updating destinations, provide a complete list of destinations.

Queue-related operations include:

" }, "UpdateMatchmakingConfiguration":{ "name":"UpdateMatchmakingConfiguration", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"UpdateMatchmakingConfigurationInput"}, "output":{"shape":"UpdateMatchmakingConfigurationOutput"}, "errors":[ {"shape":"InvalidRequestException"}, {"shape":"NotFoundException"}, {"shape":"InternalServiceException"}, {"shape":"UnsupportedRegionException"} ], "documentation":"

Updates settings for a FlexMatch matchmaking configuration. To update settings, specify the configuration name to be updated and provide the new settings.

Operations related to match configurations and rule sets include:

" }, "UpdateRuntimeConfiguration":{ "name":"UpdateRuntimeConfiguration", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"UpdateRuntimeConfigurationInput"}, "output":{"shape":"UpdateRuntimeConfigurationOutput"}, "errors":[ {"shape":"UnauthorizedException"}, {"shape":"NotFoundException"}, {"shape":"InternalServiceException"}, {"shape":"InvalidRequestException"}, {"shape":"InvalidFleetStatusException"} ], "documentation":"

Updates the current run-time configuration for the specified fleet, which tells Amazon GameLift how to launch server processes on instances in the fleet. You can update a fleet's run-time configuration at any time after the fleet is created; it does not need to be in an ACTIVE status.

To update run-time configuration, specify the fleet ID and provide a RuntimeConfiguration object with the updated collection of server process configurations.

Each instance in a Amazon GameLift fleet checks regularly for an updated run-time configuration and changes how it launches server processes to comply with the latest version. Existing server processes are not affected by the update; they continue to run until they end, while Amazon GameLift simply adds new server processes to fit the current run-time configuration. As a result, the run-time configuration changes are applied gradually as existing processes shut down and new processes are launched in Amazon GameLift's normal process recycling activity.

Fleet-related operations include:

" }, "ValidateMatchmakingRuleSet":{ "name":"ValidateMatchmakingRuleSet", "http":{ "method":"POST", "requestUri":"/" }, "input":{"shape":"ValidateMatchmakingRuleSetInput"}, "output":{"shape":"ValidateMatchmakingRuleSetOutput"}, "errors":[ {"shape":"InternalServiceException"}, {"shape":"UnsupportedRegionException"}, {"shape":"InvalidRequestException"} ], "documentation":"

Validates the syntax of a matchmaking rule or rule set. This operation checks that the rule set uses syntactically correct JSON and that it conforms to allowed property expressions. To validate syntax, provide a rule set string.

Operations related to match configurations and rule sets include:

" } }, "shapes":{ "AcceptMatchInput":{ "type":"structure", "required":[ "TicketId", "PlayerIds", "AcceptanceType" ], "members":{ "TicketId":{ "shape":"MatchmakingIdStringModel", "documentation":"

Unique identifier for a matchmaking ticket. The ticket must be in status REQUIRES_ACCEPTANCE; otherwise this request will fail.

" }, "PlayerIds":{ "shape":"MatchmakingPlayerIdList", "documentation":"

Unique identifier for a player delivering the response. This parameter can include one or multiple player IDs.

" }, "AcceptanceType":{ "shape":"AcceptanceType", "documentation":"

Player response to the proposed match.

" } }, "documentation":"

Represents the input for a request action.

" }, "AcceptMatchOutput":{ "type":"structure", "members":{ } }, "AcceptanceType":{ "type":"string", "enum":[ "ACCEPT", "REJECT" ] }, "Alias":{ "type":"structure", "members":{ "AliasId":{ "shape":"AliasId", "documentation":"

Unique identifier for an alias; alias IDs are unique within a region.

" }, "Name":{ "shape":"NonBlankAndLengthConstraintString", "documentation":"

Descriptive label that is associated with an alias. Alias names do not need to be unique.

" }, "AliasArn":{ "shape":"ArnStringModel", "documentation":"

Unique identifier for an alias; alias ARNs are unique across all regions.

" }, "Description":{ "shape":"FreeText", "documentation":"

Human-readable description of an alias.

" }, "RoutingStrategy":{ "shape":"RoutingStrategy", "documentation":"

Alias configuration for the alias, including routing type and settings.

" }, "CreationTime":{ "shape":"Timestamp", "documentation":"

Time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (for example \"1469498468.057\").

" }, "LastUpdatedTime":{ "shape":"Timestamp", "documentation":"

Time stamp indicating when this data object was last modified. Format is a number expressed in Unix time as milliseconds (for example \"1469498468.057\").

" } }, "documentation":"

Properties describing a fleet alias.

Alias-related operations include:

" }, "AliasId":{ "type":"string", "pattern":"^alias-\\S+" }, "AliasList":{ "type":"list", "member":{"shape":"Alias"} }, "ArnStringModel":{ "type":"string", "max":256, "min":1, "pattern":"[a-zA-Z0-9:/-]+" }, "AttributeValue":{ "type":"structure", "members":{ "S":{ "shape":"NonZeroAndMaxString", "documentation":"

For single string values. Maximum string length is 100 characters.

" }, "N":{ "shape":"DoubleObject", "documentation":"

For number values, expressed as double.

" }, "SL":{ "shape":"StringList", "documentation":"

For a list of up to 10 strings. Maximum length for each string is 100 characters. Duplicate values are not recognized; all occurances of the the repeated value after the first of a repeated value are ignored.

" }, "SDM":{ "shape":"StringDoubleMap", "documentation":"

For a map of up to 10 type:value pairs. Maximum length for each string value is 100 characters.

" } }, "documentation":"

Values for use in Player attribute type:value pairs. This object lets you specify an attribute value using any of the valid data types: string, number, string array or data map. Each AttributeValue object can use only one of the available properties.

" }, "AwsCredentials":{ "type":"structure", "members":{ "AccessKeyId":{ "shape":"NonEmptyString", "documentation":"

Temporary key allowing access to the Amazon GameLift S3 account.

" }, "SecretAccessKey":{ "shape":"NonEmptyString", "documentation":"

Temporary secret key allowing access to the Amazon GameLift S3 account.

" }, "SessionToken":{ "shape":"NonEmptyString", "documentation":"

Token used to associate a specific build ID with the files uploaded using these credentials.

" } }, "documentation":"

Temporary access credentials used for uploading game build files to Amazon GameLift. They are valid for a limited time. If they expire before you upload your game build, get a new set by calling RequestUploadCredentials.

", "sensitive":true }, "Boolean":{"type":"boolean"}, "Build":{ "type":"structure", "members":{ "BuildId":{ "shape":"BuildId", "documentation":"

Unique identifier for a build.

" }, "Name":{ "shape":"FreeText", "documentation":"

Descriptive label that is associated with a build. Build names do not need to be unique. It can be set using CreateBuild or UpdateBuild.

" }, "Version":{ "shape":"FreeText", "documentation":"

Version that is associated with this build. Version strings do not need to be unique. This value can be set using CreateBuild or UpdateBuild.

" }, "Status":{ "shape":"BuildStatus", "documentation":"

Current status of the build.

Possible build statuses include the following:

" }, "SizeOnDisk":{ "shape":"PositiveLong", "documentation":"

File size of the uploaded game build, expressed in bytes. When the build status is INITIALIZED, this value is 0.

" }, "OperatingSystem":{ "shape":"OperatingSystem", "documentation":"

Operating system that the game server binaries are built to run on. This value determines the type of fleet resources that you can use for this build.

" }, "CreationTime":{ "shape":"Timestamp", "documentation":"

Time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (for example \"1469498468.057\").

" } }, "documentation":"

Properties describing a game build.

Build-related operations include:

" }, "BuildId":{ "type":"string", "pattern":"^build-\\S+" }, "BuildList":{ "type":"list", "member":{"shape":"Build"} }, "BuildStatus":{ "type":"string", "enum":[ "INITIALIZED", "READY", "FAILED" ] }, "ComparisonOperatorType":{ "type":"string", "enum":[ "GreaterThanOrEqualToThreshold", "GreaterThanThreshold", "LessThanThreshold", "LessThanOrEqualToThreshold" ] }, "ConflictException":{ "type":"structure", "members":{ "Message":{"shape":"NonEmptyString"} }, "documentation":"

The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request.

", "exception":true }, "CreateAliasInput":{ "type":"structure", "required":[ "Name", "RoutingStrategy" ], "members":{ "Name":{ "shape":"NonBlankAndLengthConstraintString", "documentation":"

Descriptive label that is associated with an alias. Alias names do not need to be unique.

" }, "Description":{ "shape":"NonZeroAndMaxString", "documentation":"

Human-readable description of an alias.

" }, "RoutingStrategy":{ "shape":"RoutingStrategy", "documentation":"

Object that specifies the fleet and routing type to use for the alias.

" } }, "documentation":"

Represents the input for a request action.

" }, "CreateAliasOutput":{ "type":"structure", "members":{ "Alias":{ "shape":"Alias", "documentation":"

Object that describes the newly created alias record.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "CreateBuildInput":{ "type":"structure", "members":{ "Name":{ "shape":"NonZeroAndMaxString", "documentation":"

Descriptive label that is associated with a build. Build names do not need to be unique. You can use UpdateBuild to change this value later.

" }, "Version":{ "shape":"NonZeroAndMaxString", "documentation":"

Version that is associated with this build. Version strings do not need to be unique. You can use UpdateBuild to change this value later.

" }, "StorageLocation":{ "shape":"S3Location", "documentation":"

Amazon S3 location of the game build files to be uploaded. The S3 bucket must be owned by the same AWS account that you're using to manage Amazon GameLift. It also must in the same region that you want to create a new build in. Before calling CreateBuild with this location, you must allow Amazon GameLift to access your Amazon S3 bucket (see Create a Build with Files in Amazon S3).

" }, "OperatingSystem":{ "shape":"OperatingSystem", "documentation":"

Operating system that the game server binaries are built to run on. This value determines the type of fleet resources that you can use for this build. If your game build contains multiple executables, they all must run on the same operating system.

" } }, "documentation":"

Represents the input for a request action.

" }, "CreateBuildOutput":{ "type":"structure", "members":{ "Build":{ "shape":"Build", "documentation":"

The newly created build record, including a unique build ID and status.

" }, "UploadCredentials":{ "shape":"AwsCredentials", "documentation":"

This element is not currently in use.

" }, "StorageLocation":{ "shape":"S3Location", "documentation":"

Amazon S3 location specified in the request.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "CreateFleetInput":{ "type":"structure", "required":[ "Name", "BuildId", "EC2InstanceType" ], "members":{ "Name":{ "shape":"NonZeroAndMaxString", "documentation":"

Descriptive label that is associated with a fleet. Fleet names do not need to be unique.

" }, "Description":{ "shape":"NonZeroAndMaxString", "documentation":"

Human-readable description of a fleet.

" }, "BuildId":{ "shape":"BuildId", "documentation":"

Unique identifier for a build to be deployed on the new fleet. The build must have been successfully uploaded to Amazon GameLift and be in a READY status. This fleet setting cannot be changed once the fleet is created.

" }, "ServerLaunchPath":{ "shape":"NonZeroAndMaxString", "documentation":"

This parameter is no longer used. Instead, specify a server launch path using the RuntimeConfiguration parameter. (Requests that specify a server launch path and launch parameters instead of a run-time configuration will continue to work.)

" }, "ServerLaunchParameters":{ "shape":"NonZeroAndMaxString", "documentation":"

This parameter is no longer used. Instead, specify server launch parameters in the RuntimeConfiguration parameter. (Requests that specify a server launch path and launch parameters instead of a run-time configuration will continue to work.)

" }, "LogPaths":{ "shape":"StringList", "documentation":"

This parameter is no longer used. Instead, to specify where Amazon GameLift should store log files once a server process shuts down, use the Amazon GameLift server API ProcessReady() and specify one or more directory paths in logParameters. See more information in the Server API Reference.

" }, "EC2InstanceType":{ "shape":"EC2InstanceType", "documentation":"

Name of an EC2 instance type that is supported in Amazon GameLift. A fleet instance type determines the computing resources of each instance in the fleet, including CPU, memory, storage, and networking capacity. Amazon GameLift supports the following EC2 instance types. See Amazon EC2 Instance Types for detailed descriptions.

" }, "EC2InboundPermissions":{ "shape":"IpPermissionsList", "documentation":"

Range of IP addresses and port settings that permit inbound traffic to access server processes running on the fleet. If no inbound permissions are set, including both IP address range and port range, the server processes in the fleet cannot accept connections. You can specify one or more sets of permissions for a fleet.

" }, "NewGameSessionProtectionPolicy":{ "shape":"ProtectionPolicy", "documentation":"

Game session protection policy to apply to all instances in this fleet. If this parameter is not set, instances in this fleet default to no protection. You can change a fleet's protection policy using UpdateFleetAttributes, but this change will only affect sessions created after the policy change. You can also set protection for individual instances using UpdateGameSession.

" }, "RuntimeConfiguration":{ "shape":"RuntimeConfiguration", "documentation":"

Instructions for launching server processes on each instance in the fleet. The run-time configuration for a fleet has a collection of server process configurations, one for each type of server process to run on an instance. A server process configuration specifies the location of the server executable, launch parameters, and the number of concurrent processes with that configuration to maintain on each instance. A CreateFleet request must include a run-time configuration with at least one server process configuration; otherwise the request fails with an invalid request exception. (This parameter replaces the parameters ServerLaunchPath and ServerLaunchParameters; requests that contain values for these parameters instead of a run-time configuration will continue to work.)

" }, "ResourceCreationLimitPolicy":{ "shape":"ResourceCreationLimitPolicy", "documentation":"

Policy that limits the number of game sessions an individual player can create over a span of time for this fleet.

" }, "MetricGroups":{ "shape":"MetricGroupList", "documentation":"

Names of metric groups to add this fleet to. Use an existing metric group name to add this fleet to the group. Or use a new name to create a new metric group. A fleet can only be included in one metric group at a time.

" } }, "documentation":"

Represents the input for a request action.

" }, "CreateFleetOutput":{ "type":"structure", "members":{ "FleetAttributes":{ "shape":"FleetAttributes", "documentation":"

Properties for the newly created fleet.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "CreateGameSessionInput":{ "type":"structure", "required":["MaximumPlayerSessionCount"], "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet to create a game session in. Each request must reference either a fleet ID or alias ID, but not both.

" }, "AliasId":{ "shape":"AliasId", "documentation":"

Unique identifier for an alias associated with the fleet to create a game session in. Each request must reference either a fleet ID or alias ID, but not both.

" }, "MaximumPlayerSessionCount":{ "shape":"WholeNumber", "documentation":"

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

" }, "Name":{ "shape":"NonZeroAndMaxString", "documentation":"

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

" }, "GameProperties":{ "shape":"GamePropertyList", "documentation":"

Set of developer-defined properties for a game session, formatted as a set of type:value pairs. These properties are included in the GameSession object, which is passed to the game server with a request to start a new game session (see Start a Game Session).

" }, "CreatorId":{ "shape":"NonZeroAndMaxString", "documentation":"

Unique identifier for a player or entity creating the game session. This ID is used to enforce a resource protection policy (if one exists) that limits the number of concurrent active game sessions one player can have.

" }, "GameSessionId":{ "shape":"IdStringModel", "documentation":"

This parameter is no longer preferred. Please use IdempotencyToken instead. Custom string that uniquely identifies a request for a new game session. Maximum token length is 48 characters. If provided, this string is included in the new game session's ID. (A game session ID has the following format: arn:aws:gamelift:<region>::gamesession/<fleet ID>/<custom ID string or idempotency token>.)

" }, "IdempotencyToken":{ "shape":"IdStringModel", "documentation":"

Custom string that uniquely identifies a request for a new game session. Maximum token length is 48 characters. If provided, this string is included in the new game session's ID. (A game session ID has the following format: arn:aws:gamelift:<region>::gamesession/<fleet ID>/<custom ID string or idempotency token>.) Idempotency tokens remain in use for 30 days after a game session has ended; game session objects are retained for this time period and then deleted.

" }, "GameSessionData":{ "shape":"GameSessionData", "documentation":"

Set of developer-defined game session properties, formatted as a single string value. This data is included in the GameSession object, which is passed to the game server with a request to start a new game session (see Start a Game Session).

" } }, "documentation":"

Represents the input for a request action.

" }, "CreateGameSessionOutput":{ "type":"structure", "members":{ "GameSession":{ "shape":"GameSession", "documentation":"

Object that describes the newly created game session record.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "CreateGameSessionQueueInput":{ "type":"structure", "required":["Name"], "members":{ "Name":{ "shape":"GameSessionQueueName", "documentation":"

Descriptive label that is associated with game session queue. Queue names must be unique within each region.

" }, "TimeoutInSeconds":{ "shape":"WholeNumber", "documentation":"

Maximum time, in seconds, that a new game session placement request remains in the queue. When a request exceeds this time, the game session placement changes to a TIMED_OUT status.

" }, "PlayerLatencyPolicies":{ "shape":"PlayerLatencyPolicyList", "documentation":"

Collection of latency policies to apply when processing game sessions placement requests with player latency information. Multiple policies are evaluated in order of the maximum latency value, starting with the lowest latency values. With just one policy, it is enforced at the start of the game session placement for the duration period. With multiple policies, each policy is enforced consecutively for its duration period. For example, a queue might enforce a 60-second policy followed by a 120-second policy, and then no policy for the remainder of the placement. A player latency policy must set a value for MaximumIndividualPlayerLatencyMilliseconds; if none is set, this API requests will fail.

" }, "Destinations":{ "shape":"GameSessionQueueDestinationList", "documentation":"

List of fleets that can be used to fulfill game session placement requests in the queue. Fleets are identified by either a fleet ARN or a fleet alias ARN. Destinations are listed in default preference order.

" } }, "documentation":"

Represents the input for a request action.

" }, "CreateGameSessionQueueOutput":{ "type":"structure", "members":{ "GameSessionQueue":{ "shape":"GameSessionQueue", "documentation":"

Object that describes the newly created game session queue.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "CreateMatchmakingConfigurationInput":{ "type":"structure", "required":[ "Name", "GameSessionQueueArns", "RequestTimeoutSeconds", "AcceptanceRequired", "RuleSetName" ], "members":{ "Name":{ "shape":"MatchmakingIdStringModel", "documentation":"

Unique identifier for a matchmaking configuration. This name is used to identify the configuration associated with a matchmaking request or ticket.

" }, "Description":{ "shape":"NonZeroAndMaxString", "documentation":"

Meaningful description of the matchmaking configuration.

" }, "GameSessionQueueArns":{ "shape":"QueueArnsList", "documentation":"

Amazon Resource Name (ARN) that is assigned to a game session queue and uniquely identifies it. Format is arn:aws:gamelift:<region>::fleet/fleet-a1234567-b8c9-0d1e-2fa3-b45c6d7e8912. These queues are used when placing game sessions for matches that are created with this matchmaking configuration. Queues can be located in any region.

" }, "RequestTimeoutSeconds":{ "shape":"MatchmakingRequestTimeoutInteger", "documentation":"

Maximum duration, in seconds, that a matchmaking ticket can remain in process before timing out. Requests that time out can be resubmitted as needed.

" }, "AcceptanceTimeoutSeconds":{ "shape":"MatchmakingAcceptanceTimeoutInteger", "documentation":"

Length of time (in seconds) to wait for players to accept a proposed match. If any player rejects the match or fails to accept before the timeout, the ticket continues to look for an acceptable match.

" }, "AcceptanceRequired":{ "shape":"Boolean", "documentation":"

Flag that determines whether or not a match that was created with this configuration must be accepted by the matched players. To require acceptance, set to TRUE.

" }, "RuleSetName":{ "shape":"MatchmakingIdStringModel", "documentation":"

Unique identifier for a matchmaking rule set to use with this configuration. A matchmaking configuration can only use rule sets that are defined in the same region.

" }, "NotificationTarget":{ "shape":"SnsArnStringModel", "documentation":"

SNS topic ARN that is set up to receive matchmaking notifications.

" }, "AdditionalPlayerCount":{ "shape":"WholeNumber", "documentation":"

Number of player slots in a match to keep open for future players. For example, if the configuration's rule set specifies a match for a single 12-person team, and the additional player count is set to 2, only 10 players are selected for the match.

" }, "CustomEventData":{ "shape":"CustomEventData", "documentation":"

Information to attached to all events related to the matchmaking configuration.

" }, "GameProperties":{ "shape":"GamePropertyList", "documentation":"

Set of developer-defined properties for a game session, formatted as a set of type:value pairs. These properties are included in the GameSession object, which is passed to the game server with a request to start a new game session (see Start a Game Session). This information is added to the new GameSession object that is created for a successful match.

" }, "GameSessionData":{ "shape":"GameSessionData", "documentation":"

Set of developer-defined game session properties, formatted as a single string value. This data is included in the GameSession object, which is passed to the game server with a request to start a new game session (see Start a Game Session). This information is added to the new GameSession object that is created for a successful match.

" } }, "documentation":"

Represents the input for a request action.

" }, "CreateMatchmakingConfigurationOutput":{ "type":"structure", "members":{ "Configuration":{ "shape":"MatchmakingConfiguration", "documentation":"

Object that describes the newly created matchmaking configuration.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "CreateMatchmakingRuleSetInput":{ "type":"structure", "required":[ "Name", "RuleSetBody" ], "members":{ "Name":{ "shape":"MatchmakingIdStringModel", "documentation":"

Unique identifier for a matchmaking rule set. This name is used to identify the rule set associated with a matchmaking configuration.

" }, "RuleSetBody":{ "shape":"RuleSetBody", "documentation":"

Collection of matchmaking rules, formatted as a JSON string. (Note that comments are not allowed in JSON, but most elements support a description field.)

" } }, "documentation":"

Represents the input for a request action.

" }, "CreateMatchmakingRuleSetOutput":{ "type":"structure", "required":["RuleSet"], "members":{ "RuleSet":{ "shape":"MatchmakingRuleSet", "documentation":"

Object that describes the newly created matchmaking rule set.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "CreatePlayerSessionInput":{ "type":"structure", "required":[ "GameSessionId", "PlayerId" ], "members":{ "GameSessionId":{ "shape":"ArnStringModel", "documentation":"

Unique identifier for the game session to add a player to.

" }, "PlayerId":{ "shape":"NonZeroAndMaxString", "documentation":"

Unique identifier for a player. Player IDs are developer-defined.

" }, "PlayerData":{ "shape":"PlayerData", "documentation":"

Developer-defined information related to a player. Amazon GameLift does not use this data, so it can be formatted as needed for use in the game.

" } }, "documentation":"

Represents the input for a request action.

" }, "CreatePlayerSessionOutput":{ "type":"structure", "members":{ "PlayerSession":{ "shape":"PlayerSession", "documentation":"

Object that describes the newly created player session record.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "CreatePlayerSessionsInput":{ "type":"structure", "required":[ "GameSessionId", "PlayerIds" ], "members":{ "GameSessionId":{ "shape":"ArnStringModel", "documentation":"

Unique identifier for the game session to add players to.

" }, "PlayerIds":{ "shape":"PlayerIdList", "documentation":"

List of unique identifiers for the players to be added.

" }, "PlayerDataMap":{ "shape":"PlayerDataMap", "documentation":"

Map of string pairs, each specifying a player ID and a set of developer-defined information related to the player. Amazon GameLift does not use this data, so it can be formatted as needed for use in the game. Player data strings for player IDs not included in the PlayerIds parameter are ignored.

" } }, "documentation":"

Represents the input for a request action.

" }, "CreatePlayerSessionsOutput":{ "type":"structure", "members":{ "PlayerSessions":{ "shape":"PlayerSessionList", "documentation":"

Collection of player session objects created for the added players.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "CustomEventData":{ "type":"string", "max":256, "min":1 }, "DeleteAliasInput":{ "type":"structure", "required":["AliasId"], "members":{ "AliasId":{ "shape":"AliasId", "documentation":"

Unique identifier for a fleet alias. Specify the alias you want to delete.

" } }, "documentation":"

Represents the input for a request action.

" }, "DeleteBuildInput":{ "type":"structure", "required":["BuildId"], "members":{ "BuildId":{ "shape":"BuildId", "documentation":"

Unique identifier for a build to delete.

" } }, "documentation":"

Represents the input for a request action.

" }, "DeleteFleetInput":{ "type":"structure", "required":["FleetId"], "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet to be deleted.

" } }, "documentation":"

Represents the input for a request action.

" }, "DeleteGameSessionQueueInput":{ "type":"structure", "required":["Name"], "members":{ "Name":{ "shape":"GameSessionQueueName", "documentation":"

Descriptive label that is associated with game session queue. Queue names must be unique within each region.

" } }, "documentation":"

Represents the input for a request action.

" }, "DeleteGameSessionQueueOutput":{ "type":"structure", "members":{ } }, "DeleteMatchmakingConfigurationInput":{ "type":"structure", "required":["Name"], "members":{ "Name":{ "shape":"MatchmakingIdStringModel", "documentation":"

Unique identifier for a matchmaking configuration

" } }, "documentation":"

Represents the input for a request action.

" }, "DeleteMatchmakingConfigurationOutput":{ "type":"structure", "members":{ } }, "DeleteScalingPolicyInput":{ "type":"structure", "required":[ "Name", "FleetId" ], "members":{ "Name":{ "shape":"NonZeroAndMaxString", "documentation":"

Descriptive label that is associated with a scaling policy. Policy names do not need to be unique.

" }, "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet to be deleted.

" } }, "documentation":"

Represents the input for a request action.

" }, "DescribeAliasInput":{ "type":"structure", "required":["AliasId"], "members":{ "AliasId":{ "shape":"AliasId", "documentation":"

Unique identifier for a fleet alias. Specify the alias you want to retrieve.

" } }, "documentation":"

Represents the input for a request action.

" }, "DescribeAliasOutput":{ "type":"structure", "members":{ "Alias":{ "shape":"Alias", "documentation":"

Object that contains the requested alias.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "DescribeBuildInput":{ "type":"structure", "required":["BuildId"], "members":{ "BuildId":{ "shape":"BuildId", "documentation":"

Unique identifier for a build to retrieve properties for.

" } }, "documentation":"

Represents the input for a request action.

" }, "DescribeBuildOutput":{ "type":"structure", "members":{ "Build":{ "shape":"Build", "documentation":"

Set of properties describing the requested build.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "DescribeEC2InstanceLimitsInput":{ "type":"structure", "members":{ "EC2InstanceType":{ "shape":"EC2InstanceType", "documentation":"

Name of an EC2 instance type that is supported in Amazon GameLift. A fleet instance type determines the computing resources of each instance in the fleet, including CPU, memory, storage, and networking capacity. Amazon GameLift supports the following EC2 instance types. See Amazon EC2 Instance Types for detailed descriptions. Leave this parameter blank to retrieve limits for all types.

" } }, "documentation":"

Represents the input for a request action.

" }, "DescribeEC2InstanceLimitsOutput":{ "type":"structure", "members":{ "EC2InstanceLimits":{ "shape":"EC2InstanceLimitList", "documentation":"

Object that contains the maximum number of instances for the specified instance type.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "DescribeFleetAttributesInput":{ "type":"structure", "members":{ "FleetIds":{ "shape":"FleetIdList", "documentation":"

Unique identifier for a fleet(s) to retrieve attributes for. To request attributes for all fleets, leave this parameter empty.

" }, "Limit":{ "shape":"PositiveInteger", "documentation":"

Maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value. This parameter is ignored when the request specifies one or a list of fleet IDs.

" } }, "documentation":"

Represents the input for a request action.

" }, "DescribeFleetAttributesOutput":{ "type":"structure", "members":{ "FleetAttributes":{ "shape":"FleetAttributesList", "documentation":"

Collection of objects containing attribute metadata for each requested fleet ID.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "DescribeFleetCapacityInput":{ "type":"structure", "members":{ "FleetIds":{ "shape":"FleetIdList", "documentation":"

Unique identifier for a fleet(s) to retrieve capacity information for. To request capacity information for all fleets, leave this parameter empty.

" }, "Limit":{ "shape":"PositiveInteger", "documentation":"

Maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value. This parameter is ignored when the request specifies one or a list of fleet IDs.

" } }, "documentation":"

Represents the input for a request action.

" }, "DescribeFleetCapacityOutput":{ "type":"structure", "members":{ "FleetCapacity":{ "shape":"FleetCapacityList", "documentation":"

Collection of objects containing capacity information for each requested fleet ID. Leave this parameter empty to retrieve capacity information for all fleets.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "DescribeFleetEventsInput":{ "type":"structure", "required":["FleetId"], "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet to get event logs for.

" }, "StartTime":{ "shape":"Timestamp", "documentation":"

Earliest date to retrieve event logs for. If no start time is specified, this call returns entries starting from when the fleet was created to the specified end time. Format is a number expressed in Unix time as milliseconds (ex: \"1469498468.057\").

" }, "EndTime":{ "shape":"Timestamp", "documentation":"

Most recent date to retrieve event logs for. If no end time is specified, this call returns entries from the specified start time up to the present. Format is a number expressed in Unix time as milliseconds (ex: \"1469498468.057\").

" }, "Limit":{ "shape":"PositiveInteger", "documentation":"

Maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value.

" } }, "documentation":"

Represents the input for a request action.

" }, "DescribeFleetEventsOutput":{ "type":"structure", "members":{ "Events":{ "shape":"EventList", "documentation":"

Collection of objects containing event log entries for the specified fleet.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "DescribeFleetPortSettingsInput":{ "type":"structure", "required":["FleetId"], "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet to retrieve port settings for.

" } }, "documentation":"

Represents the input for a request action.

" }, "DescribeFleetPortSettingsOutput":{ "type":"structure", "members":{ "InboundPermissions":{ "shape":"IpPermissionsList", "documentation":"

Object that contains port settings for the requested fleet ID.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "DescribeFleetUtilizationInput":{ "type":"structure", "members":{ "FleetIds":{ "shape":"FleetIdList", "documentation":"

Unique identifier for a fleet(s) to retrieve utilization data for. To request utilization data for all fleets, leave this parameter empty.

" }, "Limit":{ "shape":"PositiveInteger", "documentation":"

Maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value. This parameter is ignored when the request specifies one or a list of fleet IDs.

" } }, "documentation":"

Represents the input for a request action.

" }, "DescribeFleetUtilizationOutput":{ "type":"structure", "members":{ "FleetUtilization":{ "shape":"FleetUtilizationList", "documentation":"

Collection of objects containing utilization information for each requested fleet ID.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "DescribeGameSessionDetailsInput":{ "type":"structure", "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet to retrieve all game sessions active on the fleet.

" }, "GameSessionId":{ "shape":"ArnStringModel", "documentation":"

Unique identifier for the game session to retrieve.

" }, "AliasId":{ "shape":"AliasId", "documentation":"

Unique identifier for an alias associated with the fleet to retrieve all game sessions for.

" }, "StatusFilter":{ "shape":"NonZeroAndMaxString", "documentation":"

Game session status to filter results on. Possible game session statuses include ACTIVE, TERMINATED, ACTIVATING and TERMINATING (the last two are transitory).

" }, "Limit":{ "shape":"PositiveInteger", "documentation":"

Maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value.

" } }, "documentation":"

Represents the input for a request action.

" }, "DescribeGameSessionDetailsOutput":{ "type":"structure", "members":{ "GameSessionDetails":{ "shape":"GameSessionDetailList", "documentation":"

Collection of objects containing game session properties and the protection policy currently in force for each session matching the request.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "DescribeGameSessionPlacementInput":{ "type":"structure", "required":["PlacementId"], "members":{ "PlacementId":{ "shape":"IdStringModel", "documentation":"

Unique identifier for a game session placement to retrieve.

" } }, "documentation":"

Represents the input for a request action.

" }, "DescribeGameSessionPlacementOutput":{ "type":"structure", "members":{ "GameSessionPlacement":{ "shape":"GameSessionPlacement", "documentation":"

Object that describes the requested game session placement.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "DescribeGameSessionQueuesInput":{ "type":"structure", "members":{ "Names":{ "shape":"GameSessionQueueNameList", "documentation":"

List of queue names to retrieve information for. To request settings for all queues, leave this parameter empty.

" }, "Limit":{ "shape":"PositiveInteger", "documentation":"

Maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value.

" } }, "documentation":"

Represents the input for a request action.

" }, "DescribeGameSessionQueuesOutput":{ "type":"structure", "members":{ "GameSessionQueues":{ "shape":"GameSessionQueueList", "documentation":"

Collection of objects that describes the requested game session queues.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "DescribeGameSessionsInput":{ "type":"structure", "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet to retrieve all game sessions for.

" }, "GameSessionId":{ "shape":"ArnStringModel", "documentation":"

Unique identifier for the game session to retrieve. You can use either a GameSessionId or GameSessionArn value.

" }, "AliasId":{ "shape":"AliasId", "documentation":"

Unique identifier for an alias associated with the fleet to retrieve all game sessions for.

" }, "StatusFilter":{ "shape":"NonZeroAndMaxString", "documentation":"

Game session status to filter results on. Possible game session statuses include ACTIVE, TERMINATED, ACTIVATING, and TERMINATING (the last two are transitory).

" }, "Limit":{ "shape":"PositiveInteger", "documentation":"

Maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value.

" } }, "documentation":"

Represents the input for a request action.

" }, "DescribeGameSessionsOutput":{ "type":"structure", "members":{ "GameSessions":{ "shape":"GameSessionList", "documentation":"

Collection of objects containing game session properties for each session matching the request.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "DescribeInstancesInput":{ "type":"structure", "required":["FleetId"], "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet to retrieve instance information for.

" }, "InstanceId":{ "shape":"InstanceId", "documentation":"

Unique identifier for an instance to retrieve. Specify an instance ID or leave blank to retrieve all instances in the fleet.

" }, "Limit":{ "shape":"PositiveInteger", "documentation":"

Maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value.

" } }, "documentation":"

Represents the input for a request action.

" }, "DescribeInstancesOutput":{ "type":"structure", "members":{ "Instances":{ "shape":"InstanceList", "documentation":"

Collection of objects containing properties for each instance returned.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "DescribeMatchmakingConfigurationsInput":{ "type":"structure", "members":{ "Names":{ "shape":"MatchmakingIdList", "documentation":"

Unique identifier for a matchmaking configuration(s) to retrieve. To request all existing configurations, leave this parameter empty.

" }, "RuleSetName":{ "shape":"MatchmakingIdStringModel", "documentation":"

Unique identifier for a matchmaking rule set. Use this parameter to retrieve all matchmaking configurations that use this rule set.

" }, "Limit":{ "shape":"PositiveInteger", "documentation":"

Maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages. This parameter is limited to 10.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value.

" } }, "documentation":"

Represents the input for a request action.

" }, "DescribeMatchmakingConfigurationsOutput":{ "type":"structure", "members":{ "Configurations":{ "shape":"MatchmakingConfigurationList", "documentation":"

Collection of requested matchmaking configuration objects.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "DescribeMatchmakingInput":{ "type":"structure", "required":["TicketIds"], "members":{ "TicketIds":{ "shape":"MatchmakingIdList", "documentation":"

Unique identifier for a matchmaking ticket. To request all existing tickets, leave this parameter empty.

" } }, "documentation":"

Represents the input for a request action.

" }, "DescribeMatchmakingOutput":{ "type":"structure", "members":{ "TicketList":{ "shape":"MatchmakingTicketList", "documentation":"

Collection of existing matchmaking ticket objects matching the request.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "DescribeMatchmakingRuleSetsInput":{ "type":"structure", "members":{ "Names":{ "shape":"MatchmakingRuleSetNameList", "documentation":"

Unique identifier for a matchmaking rule set. This name is used to identify the rule set associated with a matchmaking configuration.

" }, "Limit":{ "shape":"RuleSetLimit", "documentation":"

Maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value.

" } }, "documentation":"

Represents the input for a request action.

" }, "DescribeMatchmakingRuleSetsOutput":{ "type":"structure", "required":["RuleSets"], "members":{ "RuleSets":{ "shape":"MatchmakingRuleSetList", "documentation":"

Collection of requested matchmaking rule set objects.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "DescribePlayerSessionsInput":{ "type":"structure", "members":{ "GameSessionId":{ "shape":"ArnStringModel", "documentation":"

Unique identifier for the game session to retrieve player sessions for.

" }, "PlayerId":{ "shape":"NonZeroAndMaxString", "documentation":"

Unique identifier for a player to retrieve player sessions for.

" }, "PlayerSessionId":{ "shape":"PlayerSessionId", "documentation":"

Unique identifier for a player session to retrieve.

" }, "PlayerSessionStatusFilter":{ "shape":"NonZeroAndMaxString", "documentation":"

Player session status to filter results on.

Possible player session statuses include the following:

" }, "Limit":{ "shape":"PositiveInteger", "documentation":"

Maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages. If a player session ID is specified, this parameter is ignored.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value. If a player session ID is specified, this parameter is ignored.

" } }, "documentation":"

Represents the input for a request action.

" }, "DescribePlayerSessionsOutput":{ "type":"structure", "members":{ "PlayerSessions":{ "shape":"PlayerSessionList", "documentation":"

Collection of objects containing properties for each player session that matches the request.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "DescribeRuntimeConfigurationInput":{ "type":"structure", "required":["FleetId"], "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet to get the run-time configuration for.

" } }, "documentation":"

Represents the input for a request action.

" }, "DescribeRuntimeConfigurationOutput":{ "type":"structure", "members":{ "RuntimeConfiguration":{ "shape":"RuntimeConfiguration", "documentation":"

Instructions describing how server processes should be launched and maintained on each instance in the fleet.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "DescribeScalingPoliciesInput":{ "type":"structure", "required":["FleetId"], "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet to retrieve scaling policies for.

" }, "StatusFilter":{ "shape":"ScalingStatusType", "documentation":"

Scaling policy status to filter results on. A scaling policy is only in force when in an ACTIVE status.

" }, "Limit":{ "shape":"PositiveInteger", "documentation":"

Maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value.

" } }, "documentation":"

Represents the input for a request action.

" }, "DescribeScalingPoliciesOutput":{ "type":"structure", "members":{ "ScalingPolicies":{ "shape":"ScalingPolicyList", "documentation":"

Collection of objects containing the scaling policies matching the request.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "DesiredPlayerSession":{ "type":"structure", "members":{ "PlayerId":{ "shape":"NonZeroAndMaxString", "documentation":"

Unique identifier for a player to associate with the player session.

" }, "PlayerData":{ "shape":"PlayerData", "documentation":"

Developer-defined information related to a player. Amazon GameLift does not use this data, so it can be formatted as needed for use in the game.

" } }, "documentation":"

Player information for use when creating player sessions using a game session placement request with StartGameSessionPlacement.

" }, "DesiredPlayerSessionList":{ "type":"list", "member":{"shape":"DesiredPlayerSession"} }, "Double":{"type":"double"}, "DoubleObject":{"type":"double"}, "EC2InstanceCounts":{ "type":"structure", "members":{ "DESIRED":{ "shape":"WholeNumber", "documentation":"

Ideal number of active instances in the fleet.

" }, "MINIMUM":{ "shape":"WholeNumber", "documentation":"

Minimum value allowed for the fleet's instance count.

" }, "MAXIMUM":{ "shape":"WholeNumber", "documentation":"

Maximum value allowed for the fleet's instance count.

" }, "PENDING":{ "shape":"WholeNumber", "documentation":"

Number of instances in the fleet that are starting but not yet active.

" }, "ACTIVE":{ "shape":"WholeNumber", "documentation":"

Actual number of active instances in the fleet.

" }, "IDLE":{ "shape":"WholeNumber", "documentation":"

Number of active instances in the fleet that are not currently hosting a game session.

" }, "TERMINATING":{ "shape":"WholeNumber", "documentation":"

Number of instances in the fleet that are no longer active but haven't yet been terminated.

" } }, "documentation":"

Current status of fleet capacity. The number of active instances should match or be in the process of matching the number of desired instances. Pending and terminating counts are non-zero only if fleet capacity is adjusting to an UpdateFleetCapacity request, or if access to resources is temporarily affected.

Fleet-related operations include:

" }, "EC2InstanceLimit":{ "type":"structure", "members":{ "EC2InstanceType":{ "shape":"EC2InstanceType", "documentation":"

Name of an EC2 instance type that is supported in Amazon GameLift. A fleet instance type determines the computing resources of each instance in the fleet, including CPU, memory, storage, and networking capacity. Amazon GameLift supports the following EC2 instance types. See Amazon EC2 Instance Types for detailed descriptions.

" }, "CurrentInstances":{ "shape":"WholeNumber", "documentation":"

Number of instances of the specified type that are currently in use by this AWS account.

" }, "InstanceLimit":{ "shape":"WholeNumber", "documentation":"

Number of instances allowed.

" } }, "documentation":"

Maximum number of instances allowed based on the Amazon Elastic Compute Cloud (Amazon EC2) instance type. Instance limits can be retrieved by calling DescribeEC2InstanceLimits.

" }, "EC2InstanceLimitList":{ "type":"list", "member":{"shape":"EC2InstanceLimit"} }, "EC2InstanceType":{ "type":"string", "enum":[ "t2.micro", "t2.small", "t2.medium", "t2.large", "c3.large", "c3.xlarge", "c3.2xlarge", "c3.4xlarge", "c3.8xlarge", "c4.large", "c4.xlarge", "c4.2xlarge", "c4.4xlarge", "c4.8xlarge", "r3.large", "r3.xlarge", "r3.2xlarge", "r3.4xlarge", "r3.8xlarge", "m3.medium", "m3.large", "m3.xlarge", "m3.2xlarge", "m4.large", "m4.xlarge", "m4.2xlarge", "m4.4xlarge", "m4.10xlarge" ] }, "Event":{ "type":"structure", "members":{ "EventId":{ "shape":"NonZeroAndMaxString", "documentation":"

Unique identifier for a fleet event.

" }, "ResourceId":{ "shape":"NonZeroAndMaxString", "documentation":"

Unique identifier for an event resource, such as a fleet ID.

" }, "EventCode":{ "shape":"EventCode", "documentation":"

Type of event being logged. The following events are currently in use:

" }, "Message":{ "shape":"NonEmptyString", "documentation":"

Additional information related to the event.

" }, "EventTime":{ "shape":"Timestamp", "documentation":"

Time stamp indicating when this event occurred. Format is a number expressed in Unix time as milliseconds (for example \"1469498468.057\").

" }, "PreSignedLogUrl":{ "shape":"NonZeroAndMaxString", "documentation":"

Location of stored logs with additional detail that is related to the event. This is useful for debugging issues. The URL is valid for 15 minutes. You can also access fleet creation logs through the Amazon GameLift console.

" } }, "documentation":"

Log entry describing an event that involves Amazon GameLift resources (such as a fleet). In addition to tracking activity, event codes and messages can provide additional information for troubleshooting and debugging problems.

" }, "EventCode":{ "type":"string", "enum":[ "GENERIC_EVENT", "FLEET_CREATED", "FLEET_DELETED", "FLEET_SCALING_EVENT", "FLEET_STATE_DOWNLOADING", "FLEET_STATE_VALIDATING", "FLEET_STATE_BUILDING", "FLEET_STATE_ACTIVATING", "FLEET_STATE_ACTIVE", "FLEET_STATE_ERROR", "FLEET_INITIALIZATION_FAILED", "FLEET_BINARY_DOWNLOAD_FAILED", "FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND", "FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE", "FLEET_VALIDATION_TIMED_OUT", "FLEET_ACTIVATION_FAILED", "FLEET_ACTIVATION_FAILED_NO_INSTANCES", "FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED", "SERVER_PROCESS_INVALID_PATH", "SERVER_PROCESS_SDK_INITIALIZATION_TIMEOUT", "SERVER_PROCESS_PROCESS_READY_TIMEOUT", "SERVER_PROCESS_CRASHED", "SERVER_PROCESS_TERMINATED_UNHEALTHY", "SERVER_PROCESS_FORCE_TERMINATED", "SERVER_PROCESS_PROCESS_EXIT_TIMEOUT", "GAME_SESSION_ACTIVATION_TIMEOUT", "FLEET_CREATION_EXTRACTING_BUILD", "FLEET_CREATION_RUNNING_INSTALLER", "FLEET_CREATION_VALIDATING_RUNTIME_CONFIG" ] }, "EventList":{ "type":"list", "member":{"shape":"Event"} }, "FleetAttributes":{ "type":"structure", "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet.

" }, "FleetArn":{ "shape":"ArnStringModel", "documentation":"

Identifier for a fleet that is unique across all regions.

" }, "Description":{ "shape":"NonZeroAndMaxString", "documentation":"

Human-readable description of the fleet.

" }, "Name":{ "shape":"NonZeroAndMaxString", "documentation":"

Descriptive label that is associated with a fleet. Fleet names do not need to be unique.

" }, "CreationTime":{ "shape":"Timestamp", "documentation":"

Time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (for example \"1469498468.057\").

" }, "TerminationTime":{ "shape":"Timestamp", "documentation":"

Time stamp indicating when this data object was terminated. Format is a number expressed in Unix time as milliseconds (for example \"1469498468.057\").

" }, "Status":{ "shape":"FleetStatus", "documentation":"

Current status of the fleet.

Possible fleet statuses include the following:

" }, "BuildId":{ "shape":"BuildId", "documentation":"

Unique identifier for a build.

" }, "ServerLaunchPath":{ "shape":"NonZeroAndMaxString", "documentation":"

Path to a game server executable in the fleet's build, specified for fleets created before 2016-08-04 (or AWS SDK v. 0.12.16). Server launch paths for fleets created after this date are specified in the fleet's RuntimeConfiguration.

" }, "ServerLaunchParameters":{ "shape":"NonZeroAndMaxString", "documentation":"

Game server launch parameters specified for fleets created before 2016-08-04 (or AWS SDK v. 0.12.16). Server launch parameters for fleets created after this date are specified in the fleet's RuntimeConfiguration.

" }, "LogPaths":{ "shape":"StringList", "documentation":"

Location of default log files. When a server process is shut down, Amazon GameLift captures and stores any log files in this location. These logs are in addition to game session logs; see more on game session logs in the Amazon GameLift Developer Guide. If no default log path for a fleet is specified, Amazon GameLift automatically uploads logs that are stored on each instance at C:\\game\\logs (for Windows) or /local/game/logs (for Linux). Use the Amazon GameLift console to access stored logs.

" }, "NewGameSessionProtectionPolicy":{ "shape":"ProtectionPolicy", "documentation":"

Type of game session protection to set for all new instances started in the fleet.

" }, "OperatingSystem":{ "shape":"OperatingSystem", "documentation":"

Operating system of the fleet's computing resources. A fleet's operating system depends on the OS specified for the build that is deployed on this fleet.

" }, "ResourceCreationLimitPolicy":{ "shape":"ResourceCreationLimitPolicy", "documentation":"

Fleet policy to limit the number of game sessions an individual player can create over a span of time.

" }, "MetricGroups":{ "shape":"MetricGroupList", "documentation":"

Names of metric groups that this fleet is included in. In Amazon CloudWatch, you can view metrics for an individual fleet or aggregated metrics for fleets that are in a fleet metric group. A fleet can be included in only one metric group at a time.

" } }, "documentation":"

General properties describing a fleet.

Fleet-related operations include:

" }, "FleetAttributesList":{ "type":"list", "member":{"shape":"FleetAttributes"} }, "FleetCapacity":{ "type":"structure", "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet.

" }, "InstanceType":{ "shape":"EC2InstanceType", "documentation":"

Name of an EC2 instance type that is supported in Amazon GameLift. A fleet instance type determines the computing resources of each instance in the fleet, including CPU, memory, storage, and networking capacity. Amazon GameLift supports the following EC2 instance types. See Amazon EC2 Instance Types for detailed descriptions.

" }, "InstanceCounts":{ "shape":"EC2InstanceCounts", "documentation":"

Current status of fleet capacity.

" } }, "documentation":"

Information about the fleet's capacity. Fleet capacity is measured in EC2 instances. By default, new fleets have a capacity of one instance, but can be updated as needed. The maximum number of instances for a fleet is determined by the fleet's instance type.

Fleet-related operations include:

" }, "FleetCapacityExceededException":{ "type":"structure", "members":{ "Message":{"shape":"NonEmptyString"} }, "documentation":"

The specified fleet has no available instances to fulfill a CreateGameSession request. Clients can retry such requests immediately or after a waiting period.

", "exception":true }, "FleetCapacityList":{ "type":"list", "member":{"shape":"FleetCapacity"} }, "FleetId":{ "type":"string", "pattern":"^fleet-\\S+" }, "FleetIdList":{ "type":"list", "member":{"shape":"FleetId"}, "min":1 }, "FleetStatus":{ "type":"string", "enum":[ "NEW", "DOWNLOADING", "VALIDATING", "BUILDING", "ACTIVATING", "ACTIVE", "DELETING", "ERROR", "TERMINATED" ] }, "FleetUtilization":{ "type":"structure", "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet.

" }, "ActiveServerProcessCount":{ "shape":"WholeNumber", "documentation":"

Number of server processes in an ACTIVE status currently running across all instances in the fleet

" }, "ActiveGameSessionCount":{ "shape":"WholeNumber", "documentation":"

Number of active game sessions currently being hosted on all instances in the fleet.

" }, "CurrentPlayerSessionCount":{ "shape":"WholeNumber", "documentation":"

Number of active player sessions currently being hosted on all instances in the fleet.

" }, "MaximumPlayerSessionCount":{ "shape":"WholeNumber", "documentation":"

Maximum players allowed across all game sessions currently being hosted on all instances in the fleet.

" } }, "documentation":"

Current status of fleet utilization, including the number of game and player sessions being hosted.

Fleet-related operations include:

" }, "FleetUtilizationList":{ "type":"list", "member":{"shape":"FleetUtilization"} }, "Float":{"type":"float"}, "FreeText":{"type":"string"}, "GameProperty":{ "type":"structure", "required":[ "Key", "Value" ], "members":{ "Key":{ "shape":"GamePropertyKey", "documentation":"

Game property identifier.

" }, "Value":{ "shape":"GamePropertyValue", "documentation":"

Game property value.

" } }, "documentation":"

Set of key-value pairs that contain information about a game session. When included in a game session request, these properties communicate details to be used when setting up the new game session, such as to specify a game mode, level, or map. Game properties are passed to the game server process when initiating a new game session; the server process uses the properties as appropriate. For more information, see the Amazon GameLift Developer Guide.

" }, "GamePropertyKey":{ "type":"string", "max":32 }, "GamePropertyList":{ "type":"list", "member":{"shape":"GameProperty"}, "max":16 }, "GamePropertyValue":{ "type":"string", "max":96 }, "GameSession":{ "type":"structure", "members":{ "GameSessionId":{ "shape":"NonZeroAndMaxString", "documentation":"

Unique identifier for the game session. A game session ID has the following format: arn:aws:gamelift:<region>::gamesession/<fleet ID>/<custom ID string or idempotency token>.

" }, "Name":{ "shape":"NonZeroAndMaxString", "documentation":"

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

" }, "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet the game session is running on.

" }, "CreationTime":{ "shape":"Timestamp", "documentation":"

Time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (for example \"1469498468.057\").

" }, "TerminationTime":{ "shape":"Timestamp", "documentation":"

Time stamp indicating when this data object was terminated. Format is a number expressed in Unix time as milliseconds (for example \"1469498468.057\").

" }, "CurrentPlayerSessionCount":{ "shape":"WholeNumber", "documentation":"

Number of players currently in the game session.

" }, "MaximumPlayerSessionCount":{ "shape":"WholeNumber", "documentation":"

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

" }, "Status":{ "shape":"GameSessionStatus", "documentation":"

Current status of the game session. A game session must have an ACTIVE status to have player sessions.

" }, "GameProperties":{ "shape":"GamePropertyList", "documentation":"

Set of developer-defined properties for a game session, formatted as a set of type:value pairs. These properties are included in the GameSession object, which is passed to the game server with a request to start a new game session (see Start a Game Session).

" }, "IpAddress":{ "shape":"IpAddress", "documentation":"

IP address of the game session. To connect to a Amazon GameLift game server, an app needs both the IP address and port number.

" }, "Port":{ "shape":"PortNumber", "documentation":"

Port number for the game session. To connect to a Amazon GameLift game server, an app needs both the IP address and port number.

" }, "PlayerSessionCreationPolicy":{ "shape":"PlayerSessionCreationPolicy", "documentation":"

Indicates whether or not the game session is accepting new players.

" }, "CreatorId":{ "shape":"NonZeroAndMaxString", "documentation":"

Unique identifier for a player. This ID is used to enforce a resource protection policy (if one exists), that limits the number of game sessions a player can create.

" }, "GameSessionData":{ "shape":"GameSessionData", "documentation":"

Set of developer-defined game session properties, formatted as a single string value. This data is included in the GameSession object, which is passed to the game server with a request to start a new game session (see Start a Game Session).

" } }, "documentation":"

Properties describing a game session.

A game session in ACTIVE status can host players. When a game session ends, its status is set to TERMINATED.

Once the session ends, the game session object is retained for 30 days. This means you can reuse idempotency token values after this time. Game session logs are retained for 14 days.

Game-session-related operations include:

" }, "GameSessionActivationTimeoutSeconds":{ "type":"integer", "max":600, "min":1 }, "GameSessionConnectionInfo":{ "type":"structure", "members":{ "GameSessionArn":{ "shape":"ArnStringModel", "documentation":"

Amazon Resource Name (ARN) that is assigned to a game session and uniquely identifies it.

" }, "IpAddress":{ "shape":"StringModel", "documentation":"

IP address of the game session. To connect to a Amazon GameLift game server, an app needs both the IP address and port number.

" }, "Port":{ "shape":"PositiveInteger", "documentation":"

Port number for the game session. To connect to a Amazon GameLift game server, an app needs both the IP address and port number.

" }, "MatchedPlayerSessions":{ "shape":"MatchedPlayerSessionList", "documentation":"

Collection of player session IDs, one for each player ID that was included in the original matchmaking request.

" } }, "documentation":"

Connection information for the new game session that is created with matchmaking. (with StartMatchmaking). Once a match is set, the FlexMatch engine places the match and creates a new game session for it. This information, including the game session endpoint and player sessions for each player in the original matchmaking request, is added to the MatchmakingTicket, which can be retrieved by calling DescribeMatchmaking.

" }, "GameSessionData":{ "type":"string", "max":4096, "min":1 }, "GameSessionDetail":{ "type":"structure", "members":{ "GameSession":{ "shape":"GameSession", "documentation":"

Object that describes a game session.

" }, "ProtectionPolicy":{ "shape":"ProtectionPolicy", "documentation":"

Current status of protection for the game session.

" } }, "documentation":"

A game session's properties plus the protection policy currently in force.

" }, "GameSessionDetailList":{ "type":"list", "member":{"shape":"GameSessionDetail"} }, "GameSessionFullException":{ "type":"structure", "members":{ "Message":{"shape":"NonEmptyString"} }, "documentation":"

The game instance is currently full and cannot allow the requested player(s) to join. Clients can retry such requests immediately or after a waiting period.

", "exception":true }, "GameSessionList":{ "type":"list", "member":{"shape":"GameSession"} }, "GameSessionPlacement":{ "type":"structure", "members":{ "PlacementId":{ "shape":"IdStringModel", "documentation":"

Unique identifier for a game session placement.

" }, "GameSessionQueueName":{ "shape":"GameSessionQueueName", "documentation":"

Descriptive label that is associated with game session queue. Queue names must be unique within each region.

" }, "Status":{ "shape":"GameSessionPlacementState", "documentation":"

Current status of the game session placement request.

" }, "GameProperties":{ "shape":"GamePropertyList", "documentation":"

Set of developer-defined properties for a game session, formatted as a set of type:value pairs. These properties are included in the GameSession object, which is passed to the game server with a request to start a new game session (see Start a Game Session).

" }, "MaximumPlayerSessionCount":{ "shape":"WholeNumber", "documentation":"

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

" }, "GameSessionName":{ "shape":"NonZeroAndMaxString", "documentation":"

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

" }, "GameSessionId":{ "shape":"NonZeroAndMaxString", "documentation":"

Unique identifier for the game session. This value is set once the new game session is placed (placement status is FULFILLED).

" }, "GameSessionArn":{ "shape":"NonZeroAndMaxString", "documentation":"

Identifier for the game session created by this placement request. This value is set once the new game session is placed (placement status is FULFILLED). This identifier is unique across all regions. You can use this value as a GameSessionId value as needed.

" }, "GameSessionRegion":{ "shape":"NonZeroAndMaxString", "documentation":"

Name of the region where the game session created by this placement request is running. This value is set once the new game session is placed (placement status is FULFILLED).

" }, "PlayerLatencies":{ "shape":"PlayerLatencyList", "documentation":"

Set of values, expressed in milliseconds, indicating the amount of latency that a player experiences when connected to AWS regions.

" }, "StartTime":{ "shape":"Timestamp", "documentation":"

Time stamp indicating when this request was placed in the queue. Format is a number expressed in Unix time as milliseconds (for example \"1469498468.057\").

" }, "EndTime":{ "shape":"Timestamp", "documentation":"

Time stamp indicating when this request was completed, canceled, or timed out.

" }, "IpAddress":{ "shape":"IpAddress", "documentation":"

IP address of the game session. To connect to a Amazon GameLift game server, an app needs both the IP address and port number. This value is set once the new game session is placed (placement status is FULFILLED).

" }, "Port":{ "shape":"PortNumber", "documentation":"

Port number for the game session. To connect to a Amazon GameLift game server, an app needs both the IP address and port number. This value is set once the new game session is placed (placement status is FULFILLED).

" }, "PlacedPlayerSessions":{ "shape":"PlacedPlayerSessionList", "documentation":"

Collection of information on player sessions created in response to the game session placement request. These player sessions are created only once a new game session is successfully placed (placement status is FULFILLED). This information includes the player ID (as provided in the placement request) and the corresponding player session ID. Retrieve full player sessions by calling DescribePlayerSessions with the player session ID.

" }, "GameSessionData":{ "shape":"GameSessionData", "documentation":"

Set of developer-defined game session properties, formatted as a single string value. This data is included in the GameSession object, which is passed to the game server with a request to start a new game session (see Start a Game Session).

" } }, "documentation":"

Object that describes a StartGameSessionPlacement request. This object includes the full details of the original request plus the current status and start/end time stamps.

Game session placement-related operations include:

" }, "GameSessionPlacementState":{ "type":"string", "enum":[ "PENDING", "FULFILLED", "CANCELLED", "TIMED_OUT" ] }, "GameSessionQueue":{ "type":"structure", "members":{ "Name":{ "shape":"GameSessionQueueName", "documentation":"

Descriptive label that is associated with game session queue. Queue names must be unique within each region.

" }, "GameSessionQueueArn":{ "shape":"ArnStringModel", "documentation":"

Amazon Resource Name (ARN) that is assigned to a game session queue and uniquely identifies it. Format is arn:aws:gamelift:<region>::fleet/fleet-a1234567-b8c9-0d1e-2fa3-b45c6d7e8912.

" }, "TimeoutInSeconds":{ "shape":"WholeNumber", "documentation":"

Maximum time, in seconds, that a new game session placement request remains in the queue. When a request exceeds this time, the game session placement changes to a TIMED_OUT status.

" }, "PlayerLatencyPolicies":{ "shape":"PlayerLatencyPolicyList", "documentation":"

Collection of latency policies to apply when processing game sessions placement requests with player latency information. Multiple policies are evaluated in order of the maximum latency value, starting with the lowest latency values. With just one policy, it is enforced at the start of the game session placement for the duration period. With multiple policies, each policy is enforced consecutively for its duration period. For example, a queue might enforce a 60-second policy followed by a 120-second policy, and then no policy for the remainder of the placement.

" }, "Destinations":{ "shape":"GameSessionQueueDestinationList", "documentation":"

List of fleets that can be used to fulfill game session placement requests in the queue. Fleets are identified by either a fleet ARN or a fleet alias ARN. Destinations are listed in default preference order.

" } }, "documentation":"

Configuration of a queue that is used to process game session placement requests. The queue configuration identifies several game features:

Queue-related operations include:

" }, "GameSessionQueueDestination":{ "type":"structure", "members":{ "DestinationArn":{ "shape":"ArnStringModel", "documentation":"

Amazon Resource Name (ARN) assigned to fleet or fleet alias. ARNs, which include a fleet ID or alias ID and a region name, provide a unique identifier across all regions.

" } }, "documentation":"

Fleet designated in a game session queue. Requests for new game sessions in the queue are fulfilled by starting a new game session on any destination configured for a queue.

Queue-related operations include:

" }, "GameSessionQueueDestinationList":{ "type":"list", "member":{"shape":"GameSessionQueueDestination"} }, "GameSessionQueueList":{ "type":"list", "member":{"shape":"GameSessionQueue"} }, "GameSessionQueueName":{ "type":"string", "max":128, "min":1, "pattern":"[a-zA-Z0-9-]+" }, "GameSessionQueueNameList":{ "type":"list", "member":{"shape":"GameSessionQueueName"} }, "GameSessionStatus":{ "type":"string", "enum":[ "ACTIVE", "ACTIVATING", "TERMINATED", "TERMINATING", "ERROR" ] }, "GetGameSessionLogUrlInput":{ "type":"structure", "required":["GameSessionId"], "members":{ "GameSessionId":{ "shape":"ArnStringModel", "documentation":"

Unique identifier for the game session to get logs for.

" } }, "documentation":"

Represents the input for a request action.

" }, "GetGameSessionLogUrlOutput":{ "type":"structure", "members":{ "PreSignedUrl":{ "shape":"NonZeroAndMaxString", "documentation":"

Location of the requested game session logs, available for download.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "GetInstanceAccessInput":{ "type":"structure", "required":[ "FleetId", "InstanceId" ], "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet that contains the instance you want access to. The fleet can be in any of the following statuses: ACTIVATING, ACTIVE, or ERROR. Fleets with an ERROR status may be accessible for a short time before they are deleted.

" }, "InstanceId":{ "shape":"InstanceId", "documentation":"

Unique identifier for an instance you want to get access to. You can access an instance in any status.

" } }, "documentation":"

Represents the input for a request action.

" }, "GetInstanceAccessOutput":{ "type":"structure", "members":{ "InstanceAccess":{ "shape":"InstanceAccess", "documentation":"

Object that contains connection information for a fleet instance, including IP address and access credentials.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "IdStringModel":{ "type":"string", "max":48, "min":1, "pattern":"[a-zA-Z0-9-]+" }, "IdempotentParameterMismatchException":{ "type":"structure", "members":{ "Message":{"shape":"NonEmptyString"} }, "documentation":"

A game session with this custom ID string already exists in this fleet. Resolve this conflict before retrying this request.

", "exception":true }, "Instance":{ "type":"structure", "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet that the instance is in.

" }, "InstanceId":{ "shape":"InstanceId", "documentation":"

Unique identifier for an instance.

" }, "IpAddress":{ "shape":"IpAddress", "documentation":"

IP address assigned to the instance.

" }, "OperatingSystem":{ "shape":"OperatingSystem", "documentation":"

Operating system that is running on this instance.

" }, "Type":{ "shape":"EC2InstanceType", "documentation":"

EC2 instance type that defines the computing resources of this instance.

" }, "Status":{ "shape":"InstanceStatus", "documentation":"

Current status of the instance. Possible statuses include the following:

" }, "CreationTime":{ "shape":"Timestamp", "documentation":"

Time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (for example \"1469498468.057\").

" } }, "documentation":"

Properties that describe an instance of a virtual computing resource that hosts one or more game servers. A fleet may contain zero or more instances.

" }, "InstanceAccess":{ "type":"structure", "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet containing the instance being accessed.

" }, "InstanceId":{ "shape":"InstanceId", "documentation":"

Unique identifier for an instance being accessed.

" }, "IpAddress":{ "shape":"IpAddress", "documentation":"

IP address assigned to the instance.

" }, "OperatingSystem":{ "shape":"OperatingSystem", "documentation":"

Operating system that is running on the instance.

" }, "Credentials":{ "shape":"InstanceCredentials", "documentation":"

Credentials required to access the instance.

" } }, "documentation":"

Information required to remotely connect to a fleet instance. Access is requested by calling GetInstanceAccess.

" }, "InstanceCredentials":{ "type":"structure", "members":{ "UserName":{ "shape":"NonEmptyString", "documentation":"

User login string.

" }, "Secret":{ "shape":"NonEmptyString", "documentation":"

Secret string. For Windows instances, the secret is a password for use with Windows Remote Desktop. For Linux instances, it is a private key (which must be saved as a .pem file) for use with SSH.

" } }, "documentation":"

Set of credentials required to remotely access a fleet instance. Access credentials are requested by calling GetInstanceAccess and returned in an InstanceAccess object.

", "sensitive":true }, "InstanceId":{ "type":"string", "pattern":"[a-zA-Z0-9\\.-]+" }, "InstanceList":{ "type":"list", "member":{"shape":"Instance"} }, "InstanceStatus":{ "type":"string", "enum":[ "PENDING", "ACTIVE", "TERMINATING" ] }, "Integer":{"type":"integer"}, "InternalServiceException":{ "type":"structure", "members":{ "Message":{"shape":"NonEmptyString"} }, "documentation":"

The service encountered an unrecoverable internal failure while processing the request. Clients can retry such requests immediately or after a waiting period.

", "exception":true, "fault":true }, "InvalidFleetStatusException":{ "type":"structure", "members":{ "Message":{"shape":"NonEmptyString"} }, "documentation":"

The requested operation would cause a conflict with the current state of a resource associated with the request and/or the fleet. Resolve the conflict before retrying.

", "exception":true }, "InvalidGameSessionStatusException":{ "type":"structure", "members":{ "Message":{"shape":"NonEmptyString"} }, "documentation":"

The requested operation would cause a conflict with the current state of a resource associated with the request and/or the game instance. Resolve the conflict before retrying.

", "exception":true }, "InvalidRequestException":{ "type":"structure", "members":{ "Message":{"shape":"NonEmptyString"} }, "documentation":"

One or more parameter values in the request are invalid. Correct the invalid parameter values before retrying.

", "exception":true }, "IpAddress":{"type":"string"}, "IpPermission":{ "type":"structure", "required":[ "FromPort", "ToPort", "IpRange", "Protocol" ], "members":{ "FromPort":{ "shape":"PortNumber", "documentation":"

Starting value for a range of allowed port numbers.

" }, "ToPort":{ "shape":"PortNumber", "documentation":"

Ending value for a range of allowed port numbers. Port numbers are end-inclusive. This value must be higher than FromPort.

" }, "IpRange":{ "shape":"NonBlankString", "documentation":"

Range of allowed IP addresses. This value must be expressed in CIDR notation. Example: \"000.000.000.000/[subnet mask]\" or optionally the shortened version \"0.0.0.0/[subnet mask]\".

" }, "Protocol":{ "shape":"IpProtocol", "documentation":"

Network communication protocol used by the fleet.

" } }, "documentation":"

A range of IP addresses and port settings that allow inbound traffic to connect to server processes on Amazon GameLift. Each game session hosted on a fleet is assigned a unique combination of IP address and port number, which must fall into the fleet's allowed ranges. This combination is included in the GameSession object.

" }, "IpPermissionsList":{ "type":"list", "member":{"shape":"IpPermission"}, "max":50 }, "IpProtocol":{ "type":"string", "enum":[ "TCP", "UDP" ] }, "LatencyMap":{ "type":"map", "key":{"shape":"NonEmptyString"}, "value":{"shape":"PositiveInteger"} }, "LimitExceededException":{ "type":"structure", "members":{ "Message":{"shape":"NonEmptyString"} }, "documentation":"

The requested operation would cause the resource to exceed the allowed service limit. Resolve the issue before retrying.

", "exception":true }, "ListAliasesInput":{ "type":"structure", "members":{ "RoutingStrategyType":{ "shape":"RoutingStrategyType", "documentation":"

Type of routing to filter results on. Use this parameter to retrieve only aliases of a certain type. To retrieve all aliases, leave this parameter empty.

Possible routing types include the following:

" }, "Name":{ "shape":"NonEmptyString", "documentation":"

Descriptive label that is associated with an alias. Alias names do not need to be unique.

" }, "Limit":{ "shape":"PositiveInteger", "documentation":"

Maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages.

" }, "NextToken":{ "shape":"NonEmptyString", "documentation":"

Token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value.

" } }, "documentation":"

Represents the input for a request action.

" }, "ListAliasesOutput":{ "type":"structure", "members":{ "Aliases":{ "shape":"AliasList", "documentation":"

Collection of alias records that match the list request.

" }, "NextToken":{ "shape":"NonEmptyString", "documentation":"

Token that indicates where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "ListBuildsInput":{ "type":"structure", "members":{ "Status":{ "shape":"BuildStatus", "documentation":"

Build status to filter results by. To retrieve all builds, leave this parameter empty.

Possible build statuses include the following:

" }, "Limit":{ "shape":"PositiveInteger", "documentation":"

Maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages.

" }, "NextToken":{ "shape":"NonEmptyString", "documentation":"

Token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value.

" } }, "documentation":"

Represents the input for a request action.

" }, "ListBuildsOutput":{ "type":"structure", "members":{ "Builds":{ "shape":"BuildList", "documentation":"

Collection of build records that match the request.

" }, "NextToken":{ "shape":"NonEmptyString", "documentation":"

Token that indicates where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "ListFleetsInput":{ "type":"structure", "members":{ "BuildId":{ "shape":"BuildId", "documentation":"

Unique identifier for a build to return fleets for. Use this parameter to return only fleets using the specified build. To retrieve all fleets, leave this parameter empty.

" }, "Limit":{ "shape":"PositiveInteger", "documentation":"

Maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value.

" } }, "documentation":"

Represents the input for a request action.

" }, "ListFleetsOutput":{ "type":"structure", "members":{ "FleetIds":{ "shape":"FleetIdList", "documentation":"

Set of fleet IDs matching the list request. You can retrieve additional information about all returned fleets by passing this result set to a call to DescribeFleetAttributes, DescribeFleetCapacity, or DescribeFleetUtilization.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "MatchedPlayerSession":{ "type":"structure", "members":{ "PlayerId":{ "shape":"NonZeroAndMaxString", "documentation":"

Unique identifier for a player

" }, "PlayerSessionId":{ "shape":"PlayerSessionId", "documentation":"

Unique identifier for a player session

" } }, "documentation":"

New player session created as a result of a successful FlexMatch match. A successful match automatically creates new player sessions for every player ID in the original matchmaking request.

When players connect to the match's game session, they must include both player ID and player session ID in order to claim their assigned player slot.

" }, "MatchedPlayerSessionList":{ "type":"list", "member":{"shape":"MatchedPlayerSession"} }, "MatchmakingAcceptanceTimeoutInteger":{ "type":"integer", "max":600, "min":1 }, "MatchmakingConfiguration":{ "type":"structure", "members":{ "Name":{ "shape":"MatchmakingIdStringModel", "documentation":"

Unique identifier for a matchmaking configuration. This name is used to identify the configuration associated with a matchmaking request or ticket.

" }, "Description":{ "shape":"NonZeroAndMaxString", "documentation":"

Descriptive label that is associated with matchmaking configuration.

" }, "GameSessionQueueArns":{ "shape":"QueueArnsList", "documentation":"

Amazon Resource Name (ARN) that is assigned to a game session queue and uniquely identifies it. Format is arn:aws:gamelift:<region>::fleet/fleet-a1234567-b8c9-0d1e-2fa3-b45c6d7e8912. These queues are used when placing game sessions for matches that are created with this matchmaking configuration. Queues can be located in any region.

" }, "RequestTimeoutSeconds":{ "shape":"MatchmakingRequestTimeoutInteger", "documentation":"

Maximum duration, in seconds, that a matchmaking ticket can remain in process before timing out. Requests that time out can be resubmitted as needed.

" }, "AcceptanceTimeoutSeconds":{ "shape":"MatchmakingAcceptanceTimeoutInteger", "documentation":"

Length of time (in seconds) to wait for players to accept a proposed match. If any player rejects the match or fails to accept before the timeout, the ticket continues to look for an acceptable match.

" }, "AcceptanceRequired":{ "shape":"Boolean", "documentation":"

Flag that determines whether or not a match that was created with this configuration must be accepted by the matched players. To require acceptance, set to TRUE.

" }, "RuleSetName":{ "shape":"MatchmakingIdStringModel", "documentation":"

Unique identifier for a matchmaking rule set to use with this configuration. A matchmaking configuration can only use rule sets that are defined in the same region.

" }, "NotificationTarget":{ "shape":"SnsArnStringModel", "documentation":"

SNS topic ARN that is set up to receive matchmaking notifications.

" }, "AdditionalPlayerCount":{ "shape":"WholeNumber", "documentation":"

Number of player slots in a match to keep open for future players. For example, if the configuration's rule set specifies a match for a single 12-person team, and the additional player count is set to 2, only 10 players are selected for the match.

" }, "CustomEventData":{ "shape":"CustomEventData", "documentation":"

Information to attached to all events related to the matchmaking configuration.

" }, "CreationTime":{ "shape":"Timestamp", "documentation":"

Time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (for example \"1469498468.057\").

" }, "GameProperties":{ "shape":"GamePropertyList", "documentation":"

Set of developer-defined properties for a game session, formatted as a set of type:value pairs. These properties are included in the GameSession object, which is passed to the game server with a request to start a new game session (see Start a Game Session). This information is added to the new GameSession object that is created for a successful match.

" }, "GameSessionData":{ "shape":"GameSessionData", "documentation":"

Set of developer-defined game session properties, formatted as a single string value. This data is included in the GameSession object, which is passed to the game server with a request to start a new game session (see Start a Game Session). This information is added to the new GameSession object that is created for a successful match.

" } }, "documentation":"

Guidelines for use with FlexMatch to match players into games. All matchmaking requests must specify a matchmaking configuration.

" }, "MatchmakingConfigurationList":{ "type":"list", "member":{"shape":"MatchmakingConfiguration"} }, "MatchmakingConfigurationStatus":{ "type":"string", "enum":[ "CANCELED", "COMPLETE", "FAILED", "PLACING", "QUEUED", "REQUIRES_ACCEPTANCE", "SEARCHING", "TIMED_OUT" ] }, "MatchmakingIdList":{ "type":"list", "member":{"shape":"MatchmakingIdStringModel"} }, "MatchmakingIdStringModel":{ "type":"string", "max":128, "min":1, "pattern":"[a-zA-Z0-9-\\.]+" }, "MatchmakingPlayerIdList":{ "type":"list", "member":{"shape":"PlayerIdStringModel"} }, "MatchmakingRequestTimeoutInteger":{ "type":"integer", "max":43200, "min":1 }, "MatchmakingRuleSet":{ "type":"structure", "required":["RuleSetBody"], "members":{ "RuleSetName":{ "shape":"MatchmakingIdStringModel", "documentation":"

Unique identifier for a matchmaking rule set

" }, "RuleSetBody":{ "shape":"RuleSetBody", "documentation":"

Collection of matchmaking rules, formatted as a JSON string. (Note that comments14 are not allowed in JSON, but most elements support a description field.)

" }, "CreationTime":{ "shape":"Timestamp", "documentation":"

Time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (for example \"1469498468.057\").

" } }, "documentation":"

Set of rule statements, used with FlexMatch, that determine how to build a certain kind of player match. Each rule set describes a type of group to be created and defines the parameters for acceptable player matches. Rule sets are used in MatchmakingConfiguration objects.

A rule set may define the following elements for a match. For detailed information and examples showing how to construct a rule set, see Create Matchmaking Rules for Your Game.

" }, "MatchmakingRuleSetList":{ "type":"list", "member":{"shape":"MatchmakingRuleSet"} }, "MatchmakingRuleSetNameList":{ "type":"list", "member":{"shape":"MatchmakingIdStringModel"}, "max":10, "min":1 }, "MatchmakingTicket":{ "type":"structure", "members":{ "TicketId":{ "shape":"MatchmakingIdStringModel", "documentation":"

Unique identifier for a matchmaking ticket.

" }, "ConfigurationName":{ "shape":"MatchmakingIdStringModel", "documentation":"

Name of the MatchmakingConfiguration that is used with this ticket. Matchmaking configurations determine how players are grouped into a match and how a new game session is created for the match.

" }, "Status":{ "shape":"MatchmakingConfigurationStatus", "documentation":"

Current status of the matchmaking request.

" }, "StatusReason":{ "shape":"StringModel", "documentation":"

Code to explain the current status. For example, a status reason may indicate when a ticket has returned to SEARCHING status after a proposed match fails to receive player acceptances.

" }, "StatusMessage":{ "shape":"StringModel", "documentation":"

Additional information about the current status.

" }, "StartTime":{ "shape":"Timestamp", "documentation":"

Time stamp indicating when this matchmaking request was received. Format is a number expressed in Unix time as milliseconds (for example \"1469498468.057\").

" }, "Players":{ "shape":"PlayerList", "documentation":"

A set of Player objects, each representing a player to find matches for. Players are identified by a unique player ID and may include latency data for use during matchmaking. If the ticket is in status COMPLETED, the Player objects include the team the players were assigned to in the resulting match.

" }, "GameSessionConnectionInfo":{ "shape":"GameSessionConnectionInfo", "documentation":"

Identifier and connection information of the game session created for the match. This information is added to the ticket only after the matchmaking request has been successfully completed.

" } }, "documentation":"

Ticket generated to track the progress of a matchmaking request. Each ticket is uniquely identified by a ticket ID, supplied by the requester, when creating a matchmaking request with StartMatchmaking. Tickets can be retrieved by calling DescribeMatchmaking with the ticket ID.

" }, "MatchmakingTicketList":{ "type":"list", "member":{"shape":"MatchmakingTicket"} }, "MaxConcurrentGameSessionActivations":{ "type":"integer", "max":2147483647, "min":1 }, "MetricGroup":{ "type":"string", "max":255, "min":1 }, "MetricGroupList":{ "type":"list", "member":{"shape":"MetricGroup"}, "max":1 }, "MetricName":{ "type":"string", "enum":[ "ActivatingGameSessions", "ActiveGameSessions", "ActiveInstances", "AvailableGameSessions", "AvailablePlayerSessions", "CurrentPlayerSessions", "IdleInstances", "PercentAvailableGameSessions", "PercentIdleInstances", "QueueDepth", "WaitTime" ] }, "NonBlankAndLengthConstraintString":{ "type":"string", "max":1024, "min":1, "pattern":".*\\S.*" }, "NonBlankString":{ "type":"string", "pattern":"[^\\s]+" }, "NonEmptyString":{ "type":"string", "min":1 }, "NonZeroAndMaxString":{ "type":"string", "max":1024, "min":1 }, "NotFoundException":{ "type":"structure", "members":{ "Message":{"shape":"NonEmptyString"} }, "documentation":"

A service resource associated with the request could not be found. Clients should not retry such requests.

", "exception":true }, "OperatingSystem":{ "type":"string", "enum":[ "WINDOWS_2012", "AMAZON_LINUX" ] }, "PlacedPlayerSession":{ "type":"structure", "members":{ "PlayerId":{ "shape":"NonZeroAndMaxString", "documentation":"

Unique identifier for a player that is associated with this player session.

" }, "PlayerSessionId":{ "shape":"PlayerSessionId", "documentation":"

Unique identifier for a player session.

" } }, "documentation":"

Information about a player session that was created as part of a StartGameSessionPlacement request. This object contains only the player ID and player session ID. To retrieve full details on a player session, call DescribePlayerSessions with the player session ID.

Player-session-related operations include:

" }, "PlacedPlayerSessionList":{ "type":"list", "member":{"shape":"PlacedPlayerSession"} }, "Player":{ "type":"structure", "members":{ "PlayerId":{ "shape":"PlayerIdStringModel", "documentation":"

Unique identifier for a player

" }, "PlayerAttributes":{ "shape":"PlayerAttributeMap", "documentation":"

Collection of name:value pairs containing player information for use in matchmaking. Player attribute names need to match playerAttributes names in the rule set being used. Example: \"PlayerAttributes\": {\"skill\": {\"N\": \"23\"}, \"gameMode\": {\"S\": \"deathmatch\"}}.

" }, "Team":{ "shape":"NonZeroAndMaxString", "documentation":"

Name of the team that the player is assigned to in a match. Team names are defined in a matchmaking rule set.

" }, "LatencyInMs":{ "shape":"LatencyMap", "documentation":"

Set of values, expressed in milliseconds, indicating the amount of latency that a player experiences when connected to AWS regions. If this property is present, FlexMatch considers placing the match only in regions that are included in the object map. If not present (that is, null), FlexMatch ignores latency issues and may place the match in any region in the queue.

If this property contains an empty map, FlexMatch assumes that no regions are available to the player. In this scenario, the ticket is not matchable and always times out unless canceled.

" } }, "documentation":"

Object used in matchmaking to represent a player. When starting a matchmaking request, a player has a player ID and may have latency data. Team information is added after a match has been successfully completed.

" }, "PlayerAttributeMap":{ "type":"map", "key":{"shape":"NonZeroAndMaxString"}, "value":{"shape":"AttributeValue"} }, "PlayerData":{ "type":"string", "max":2048, "min":1 }, "PlayerDataMap":{ "type":"map", "key":{"shape":"NonZeroAndMaxString"}, "value":{"shape":"PlayerData"} }, "PlayerIdList":{ "type":"list", "member":{"shape":"NonZeroAndMaxString"}, "max":25, "min":1 }, "PlayerIdStringModel":{ "type":"string", "max":128, "min":1, "pattern":"[a-zA-Z0-9-\\.]+" }, "PlayerLatency":{ "type":"structure", "members":{ "PlayerId":{ "shape":"NonZeroAndMaxString", "documentation":"

Unique identifier for a player associated with the latency data.

" }, "RegionIdentifier":{ "shape":"NonZeroAndMaxString", "documentation":"

Name of the region that is associated with the latency value.

" }, "LatencyInMilliseconds":{ "shape":"Float", "documentation":"

Amount of time that represents the time lag experienced by the player when connected to the specified region.

" } }, "documentation":"

Regional latency information for a player, used when requesting a new game session with StartGameSessionPlacement. This value indicates the amount of time lag that exists when the player is connected to a fleet in the specified region. The relative difference between a player's latency values for multiple regions are used to determine which fleets are best suited to place a new game session for the player.

" }, "PlayerLatencyList":{ "type":"list", "member":{"shape":"PlayerLatency"} }, "PlayerLatencyPolicy":{ "type":"structure", "members":{ "MaximumIndividualPlayerLatencyMilliseconds":{ "shape":"WholeNumber", "documentation":"

The maximum latency value that is allowed for any player, in milliseconds. All policies must have a value set for this property.

" }, "PolicyDurationSeconds":{ "shape":"WholeNumber", "documentation":"

The length of time, in seconds, that the policy is enforced while placing a new game session. A null value for this property means that the policy is enforced until the queue times out.

" } }, "documentation":"

Queue setting that determines the highest latency allowed for individual players when placing a game session. When a latency policy is in force, a game session cannot be placed at any destination in a region where a player is reporting latency higher than the cap. Latency policies are only enforced when the placement request contains player latency information.

Queue-related operations include:

" }, "PlayerLatencyPolicyList":{ "type":"list", "member":{"shape":"PlayerLatencyPolicy"} }, "PlayerList":{ "type":"list", "member":{"shape":"Player"} }, "PlayerSession":{ "type":"structure", "members":{ "PlayerSessionId":{ "shape":"PlayerSessionId", "documentation":"

Unique identifier for a player session.

" }, "PlayerId":{ "shape":"NonZeroAndMaxString", "documentation":"

Unique identifier for a player that is associated with this player session.

" }, "GameSessionId":{ "shape":"NonZeroAndMaxString", "documentation":"

Unique identifier for the game session that the player session is connected to.

" }, "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet that the player's game session is running on.

" }, "CreationTime":{ "shape":"Timestamp", "documentation":"

Time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (for example \"1469498468.057\").

" }, "TerminationTime":{ "shape":"Timestamp", "documentation":"

Time stamp indicating when this data object was terminated. Format is a number expressed in Unix time as milliseconds (for example \"1469498468.057\").

" }, "Status":{ "shape":"PlayerSessionStatus", "documentation":"

Current status of the player session.

Possible player session statuses include the following:

" }, "IpAddress":{ "shape":"IpAddress", "documentation":"

IP address of the game session. To connect to a Amazon GameLift game server, an app needs both the IP address and port number.

" }, "Port":{ "shape":"PortNumber", "documentation":"

Port number for the game session. To connect to a Amazon GameLift server process, an app needs both the IP address and port number.

" }, "PlayerData":{ "shape":"PlayerData", "documentation":"

Developer-defined information related to a player. Amazon GameLift does not use this data, so it can be formatted as needed for use in the game.

" } }, "documentation":"

Properties describing a player session. Player session objects are created either by creating a player session for a specific game session, or as part of a game session placement. A player session represents either a player reservation for a game session (status RESERVED) or actual player activity in a game session (status ACTIVE). A player session object (including player data) is automatically passed to a game session when the player connects to the game session and is validated.

When a player disconnects, the player session status changes to COMPLETED. Once the session ends, the player session object is retained for 30 days and then removed.

Player-session-related operations include:

" }, "PlayerSessionCreationPolicy":{ "type":"string", "enum":[ "ACCEPT_ALL", "DENY_ALL" ] }, "PlayerSessionId":{ "type":"string", "pattern":"^psess-\\S+" }, "PlayerSessionList":{ "type":"list", "member":{"shape":"PlayerSession"} }, "PlayerSessionStatus":{ "type":"string", "enum":[ "RESERVED", "ACTIVE", "COMPLETED", "TIMEDOUT" ] }, "PortNumber":{ "type":"integer", "max":60000, "min":1 }, "PositiveInteger":{ "type":"integer", "min":1 }, "PositiveLong":{ "type":"long", "min":1 }, "ProtectionPolicy":{ "type":"string", "enum":[ "NoProtection", "FullProtection" ] }, "PutScalingPolicyInput":{ "type":"structure", "required":[ "Name", "FleetId", "ScalingAdjustment", "ScalingAdjustmentType", "Threshold", "ComparisonOperator", "EvaluationPeriods", "MetricName" ], "members":{ "Name":{ "shape":"NonZeroAndMaxString", "documentation":"

Descriptive label that is associated with a scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.

" }, "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet to apply this policy to.

" }, "ScalingAdjustment":{ "shape":"Integer", "documentation":"

Amount of adjustment to make, based on the scaling adjustment type.

" }, "ScalingAdjustmentType":{ "shape":"ScalingAdjustmentType", "documentation":"

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

" }, "Threshold":{ "shape":"Double", "documentation":"

Metric value used to trigger a scaling event.

" }, "ComparisonOperator":{ "shape":"ComparisonOperatorType", "documentation":"

Comparison operator to use when measuring the metric against the threshold value.

" }, "EvaluationPeriods":{ "shape":"PositiveInteger", "documentation":"

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

" }, "MetricName":{ "shape":"MetricName", "documentation":"

Name of the Amazon GameLift-defined metric that is used to trigger an adjustment.

" } }, "documentation":"

Represents the input for a request action.

" }, "PutScalingPolicyOutput":{ "type":"structure", "members":{ "Name":{ "shape":"NonZeroAndMaxString", "documentation":"

Descriptive label that is associated with a scaling policy. Policy names do not need to be unique.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "QueueArnsList":{ "type":"list", "member":{"shape":"ArnStringModel"} }, "RequestUploadCredentialsInput":{ "type":"structure", "required":["BuildId"], "members":{ "BuildId":{ "shape":"BuildId", "documentation":"

Unique identifier for a build to get credentials for.

" } }, "documentation":"

Represents the input for a request action.

" }, "RequestUploadCredentialsOutput":{ "type":"structure", "members":{ "UploadCredentials":{ "shape":"AwsCredentials", "documentation":"

AWS credentials required when uploading a game build to the storage location. These credentials have a limited lifespan and are valid only for the build they were issued for.

" }, "StorageLocation":{ "shape":"S3Location", "documentation":"

Amazon S3 path and key, identifying where the game build files are stored.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "ResolveAliasInput":{ "type":"structure", "required":["AliasId"], "members":{ "AliasId":{ "shape":"AliasId", "documentation":"

Unique identifier for the alias you want to resolve.

" } }, "documentation":"

Represents the input for a request action.

" }, "ResolveAliasOutput":{ "type":"structure", "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Fleet identifier that is associated with the requested alias.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "ResourceCreationLimitPolicy":{ "type":"structure", "members":{ "NewGameSessionsPerCreator":{ "shape":"WholeNumber", "documentation":"

Maximum number of game sessions that an individual can create during the policy period.

" }, "PolicyPeriodInMinutes":{ "shape":"WholeNumber", "documentation":"

Time span used in evaluating the resource creation limit policy.

" } }, "documentation":"

Policy that limits the number of game sessions a player can create on the same fleet. This optional policy gives game owners control over how players can consume available game server resources. A resource creation policy makes the following statement: \"An individual player can create a maximum number of new game sessions within a specified time period\".

The policy is evaluated when a player tries to create a new game session. For example, with a policy of 10 new game sessions and a time period of 60 minutes, on receiving a CreateGameSession request, Amazon GameLift checks that the player (identified by CreatorId) has created fewer than 10 game sessions in the past 60 minutes.

" }, "RoutingStrategy":{ "type":"structure", "members":{ "Type":{ "shape":"RoutingStrategyType", "documentation":"

Type of routing strategy.

Possible routing types include the following:

" }, "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet that the alias points to.

" }, "Message":{ "shape":"FreeText", "documentation":"

Message text to be used with a terminal routing strategy.

" } }, "documentation":"

Routing configuration for a fleet alias.

Fleet-related operations include:

" }, "RoutingStrategyType":{ "type":"string", "enum":[ "SIMPLE", "TERMINAL" ] }, "RuleSetBody":{ "type":"string", "max":65535, "min":1 }, "RuleSetLimit":{ "type":"integer", "max":10, "min":1 }, "RuntimeConfiguration":{ "type":"structure", "members":{ "ServerProcesses":{ "shape":"ServerProcessList", "documentation":"

Collection of server process configurations that describe which server processes to run on each instance in a fleet.

" }, "MaxConcurrentGameSessionActivations":{ "shape":"MaxConcurrentGameSessionActivations", "documentation":"

Maximum number of game sessions with status ACTIVATING to allow on an instance simultaneously. This setting limits the amount of instance resources that can be used for new game activations at any one time.

" }, "GameSessionActivationTimeoutSeconds":{ "shape":"GameSessionActivationTimeoutSeconds", "documentation":"

Maximum amount of time (in seconds) that a game session can remain in status ACTIVATING. If the game session is not active before the timeout, activation is terminated and the game session status is changed to TERMINATED.

" } }, "documentation":"

A collection of server process configurations that describe what processes to run on each instance in a fleet. All fleets must have a run-time configuration. Each instance in the fleet launches the server processes specified in the run-time configuration and launches new ones as existing processes end. Each instance regularly checks for an updated run-time configuration and follows the new instructions.

The run-time configuration enables the instances in a fleet to run multiple processes simultaneously. Potential scenarios are as follows: (1) Run multiple processes of a single game server executable to maximize usage of your hosting resources. (2) Run one or more processes of different build executables, such as your game server executable and a related program, or two or more different versions of a game server. (3) Run multiple processes of a single game server but with different launch parameters, for example to run one process on each instance in debug mode.

A Amazon GameLift instance is limited to 50 processes running simultaneously. A run-time configuration must specify fewer than this limit. To calculate the total number of processes specified in a run-time configuration, add the values of the ConcurrentExecutions parameter for each ServerProcess object in the run-time configuration.

Fleet-related operations include:

" }, "S3Location":{ "type":"structure", "members":{ "Bucket":{ "shape":"NonEmptyString", "documentation":"

Amazon S3 bucket identifier. This is the name of your S3 bucket.

" }, "Key":{ "shape":"NonEmptyString", "documentation":"

Name of the zip file containing your build files.

" }, "RoleArn":{ "shape":"NonEmptyString", "documentation":"

Amazon Resource Name (ARN) for the access role that allows Amazon GameLift to access your S3 bucket.

" } }, "documentation":"

Location in Amazon Simple Storage Service (Amazon S3) where build files can be stored for access by Amazon GameLift. This location is specified in a CreateBuild request. For more details, see the Create a Build with Files in Amazon S3.

" }, "ScalingAdjustmentType":{ "type":"string", "enum":[ "ChangeInCapacity", "ExactCapacity", "PercentChangeInCapacity" ] }, "ScalingPolicy":{ "type":"structure", "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet that is associated with this scaling policy.

" }, "Name":{ "shape":"NonZeroAndMaxString", "documentation":"

Descriptive label that is associated with a scaling policy. Policy names do not need to be unique.

" }, "Status":{ "shape":"ScalingStatusType", "documentation":"

Current status of the scaling policy. The scaling policy is only in force when in an ACTIVE status.

" }, "ScalingAdjustment":{ "shape":"Integer", "documentation":"

Amount of adjustment to make, based on the scaling adjustment type.

" }, "ScalingAdjustmentType":{ "shape":"ScalingAdjustmentType", "documentation":"

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

" }, "ComparisonOperator":{ "shape":"ComparisonOperatorType", "documentation":"

Comparison operator to use when measuring a metric against the threshold value.

" }, "Threshold":{ "shape":"Double", "documentation":"

Metric value used to trigger a scaling event.

" }, "EvaluationPeriods":{ "shape":"PositiveInteger", "documentation":"

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

" }, "MetricName":{ "shape":"MetricName", "documentation":"

Name of the Amazon GameLift-defined metric that is used to trigger an adjustment.

" } }, "documentation":"

Rule that controls how a fleet is scaled. Scaling policies are uniquely identified by the combination of name and fleet ID.

Fleet-related operations include:

" }, "ScalingPolicyList":{ "type":"list", "member":{"shape":"ScalingPolicy"} }, "ScalingStatusType":{ "type":"string", "enum":[ "ACTIVE", "UPDATE_REQUESTED", "UPDATING", "DELETE_REQUESTED", "DELETING", "DELETED", "ERROR" ] }, "SearchGameSessionsInput":{ "type":"structure", "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet to search for active game sessions. Each request must reference either a fleet ID or alias ID, but not both.

" }, "AliasId":{ "shape":"AliasId", "documentation":"

Unique identifier for an alias associated with the fleet to search for active game sessions. Each request must reference either a fleet ID or alias ID, but not both.

" }, "FilterExpression":{ "shape":"NonZeroAndMaxString", "documentation":"

String containing the search criteria for the session search. If no filter expression is included, the request returns results for all game sessions in the fleet that are in ACTIVE status.

A filter expression can contain one or multiple conditions. Each condition consists of the following:

To chain multiple conditions in a single expression, use the logical keywords AND, OR, and NOT and parentheses as needed. For example: x AND y AND NOT z, NOT (x OR y).

Session search evaluates conditions from left to right using the following precedence rules:

  1. =, <>, <, >, <=, >=

  2. Parentheses

  3. NOT

  4. AND

  5. OR

For example, this filter expression retrieves game sessions hosting at least ten players that have an open player slot: \"maximumSessions>=10 AND hasAvailablePlayerSessions=true\".

" }, "SortExpression":{ "shape":"NonZeroAndMaxString", "documentation":"

Instructions on how to sort the search results. If no sort expression is included, the request returns results in random order. A sort expression consists of the following elements:

For example, this sort expression returns the oldest active sessions first: \"SortExpression\": \"creationTimeMillis ASC\". Results with a null value for the sort operand are returned at the end of the list.

" }, "Limit":{ "shape":"PositiveInteger", "documentation":"

Maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages. The maximum number of results returned is 20, even if this value is not set or is set higher than 20.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value.

" } }, "documentation":"

Represents the input for a request action.

" }, "SearchGameSessionsOutput":{ "type":"structure", "members":{ "GameSessions":{ "shape":"GameSessionList", "documentation":"

Collection of objects containing game session properties for each session matching the request.

" }, "NextToken":{ "shape":"NonZeroAndMaxString", "documentation":"

Token that indicates where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "ServerProcess":{ "type":"structure", "required":[ "LaunchPath", "ConcurrentExecutions" ], "members":{ "LaunchPath":{ "shape":"NonZeroAndMaxString", "documentation":"

Location of the server executable in a game build. All game builds are installed on instances at the root : for Windows instances C:\\game, and for Linux instances /local/game. A Windows game build with an executable file located at MyGame\\latest\\server.exe must have a launch path of \"C:\\game\\MyGame\\latest\\server.exe\". A Linux game build with an executable file located at MyGame/latest/server.exe must have a launch path of \"/local/game/MyGame/latest/server.exe\".

" }, "Parameters":{ "shape":"NonZeroAndMaxString", "documentation":"

Optional list of parameters to pass to the server executable on launch.

" }, "ConcurrentExecutions":{ "shape":"PositiveInteger", "documentation":"

Number of server processes using this configuration to run concurrently on an instance.

" } }, "documentation":"

A set of instructions for launching server processes on each instance in a fleet. Each instruction set identifies the location of the server executable, optional launch parameters, and the number of server processes with this configuration to maintain concurrently on the instance. Server process configurations make up a fleet's RuntimeConfiguration .

" }, "ServerProcessList":{ "type":"list", "member":{"shape":"ServerProcess"}, "max":50, "min":1 }, "SnsArnStringModel":{ "type":"string", "max":300, "min":1, "pattern":"[a-zA-Z0-9:_/-]+" }, "StartGameSessionPlacementInput":{ "type":"structure", "required":[ "PlacementId", "GameSessionQueueName", "MaximumPlayerSessionCount" ], "members":{ "PlacementId":{ "shape":"IdStringModel", "documentation":"

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 unless you are resubmitting a canceled or timed-out placement request.

" }, "GameSessionQueueName":{ "shape":"GameSessionQueueName", "documentation":"

Name of the queue to use to place the new game session.

" }, "GameProperties":{ "shape":"GamePropertyList", "documentation":"

Set of developer-defined properties for a game session, formatted as a set of type:value pairs. These properties are included in the GameSession object, which is passed to the game server with a request to start a new game session (see Start a Game Session).

" }, "MaximumPlayerSessionCount":{ "shape":"WholeNumber", "documentation":"

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

" }, "GameSessionName":{ "shape":"NonZeroAndMaxString", "documentation":"

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

" }, "PlayerLatencies":{ "shape":"PlayerLatencyList", "documentation":"

Set of values, expressed in milliseconds, indicating the amount of latency that a player experiences when connected to AWS 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.

" }, "DesiredPlayerSessions":{ "shape":"DesiredPlayerSessionList", "documentation":"

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

" }, "GameSessionData":{ "shape":"GameSessionData", "documentation":"

Set of developer-defined game session properties, formatted as a single string value. This data is included in the GameSession object, which is passed to the game server with a request to start a new game session (see Start a Game Session).

" } }, "documentation":"

Represents the input for a request action.

" }, "StartGameSessionPlacementOutput":{ "type":"structure", "members":{ "GameSessionPlacement":{ "shape":"GameSessionPlacement", "documentation":"

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.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "StartMatchmakingInput":{ "type":"structure", "required":[ "ConfigurationName", "Players" ], "members":{ "TicketId":{ "shape":"MatchmakingIdStringModel", "documentation":"

Unique identifier for a matchmaking ticket. Use this identifier to track the matchmaking ticket status and retrieve match results.

" }, "ConfigurationName":{ "shape":"MatchmakingIdStringModel", "documentation":"

Name of the matchmaking configuration to use for this request. Matchmaking configurations must exist in the same region as this request.

" }, "Players":{ "shape":"PlayerList", "documentation":"

Information on each player to be matched. This information must include a player ID, and may contain player attributes and latency data to be used in the matchmaking process. After a successful match, Player objects contain the name of the team the player is assigned to.

" } }, "documentation":"

Represents the input for a request action.

" }, "StartMatchmakingOutput":{ "type":"structure", "members":{ "MatchmakingTicket":{ "shape":"MatchmakingTicket", "documentation":"

Ticket representing the matchmaking request. This object include the information included in the request, ticket status, and match results as generated during the matchmaking process.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "StopGameSessionPlacementInput":{ "type":"structure", "required":["PlacementId"], "members":{ "PlacementId":{ "shape":"IdStringModel", "documentation":"

Unique identifier for a game session placement to cancel.

" } }, "documentation":"

Represents the input for a request action.

" }, "StopGameSessionPlacementOutput":{ "type":"structure", "members":{ "GameSessionPlacement":{ "shape":"GameSessionPlacement", "documentation":"

Object that describes the canceled game session placement, with CANCELLED status and an end time stamp.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "StopMatchmakingInput":{ "type":"structure", "required":["TicketId"], "members":{ "TicketId":{ "shape":"MatchmakingIdStringModel", "documentation":"

Unique identifier for a matchmaking ticket.

" } }, "documentation":"

Represents the input for a request action.

" }, "StopMatchmakingOutput":{ "type":"structure", "members":{ } }, "StringDoubleMap":{ "type":"map", "key":{"shape":"NonZeroAndMaxString"}, "value":{"shape":"DoubleObject"} }, "StringList":{ "type":"list", "member":{"shape":"NonZeroAndMaxString"} }, "StringModel":{"type":"string"}, "TerminalRoutingStrategyException":{ "type":"structure", "members":{ "Message":{"shape":"NonEmptyString"} }, "documentation":"

The service is unable to resolve the routing for a particular alias because it has a terminal RoutingStrategy associated with it. The message returned in this exception is the message defined in the routing strategy itself. Such requests should only be retried if the routing strategy for the specified alias is modified.

", "exception":true }, "Timestamp":{"type":"timestamp"}, "UnauthorizedException":{ "type":"structure", "members":{ "Message":{"shape":"NonEmptyString"} }, "documentation":"

The client failed authentication. Clients should not retry such requests.

", "exception":true }, "UnsupportedRegionException":{ "type":"structure", "members":{ "Message":{"shape":"NonEmptyString"} }, "documentation":"

The requested operation is not supported in the region specified.

", "exception":true }, "UpdateAliasInput":{ "type":"structure", "required":["AliasId"], "members":{ "AliasId":{ "shape":"AliasId", "documentation":"

Unique identifier for a fleet alias. Specify the alias you want to update.

" }, "Name":{ "shape":"NonBlankAndLengthConstraintString", "documentation":"

Descriptive label that is associated with an alias. Alias names do not need to be unique.

" }, "Description":{ "shape":"NonZeroAndMaxString", "documentation":"

Human-readable description of an alias.

" }, "RoutingStrategy":{ "shape":"RoutingStrategy", "documentation":"

Object that specifies the fleet and routing type to use for the alias.

" } }, "documentation":"

Represents the input for a request action.

" }, "UpdateAliasOutput":{ "type":"structure", "members":{ "Alias":{ "shape":"Alias", "documentation":"

Object that contains the updated alias configuration.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "UpdateBuildInput":{ "type":"structure", "required":["BuildId"], "members":{ "BuildId":{ "shape":"BuildId", "documentation":"

Unique identifier for a build to update.

" }, "Name":{ "shape":"NonZeroAndMaxString", "documentation":"

Descriptive label that is associated with a build. Build names do not need to be unique.

" }, "Version":{ "shape":"NonZeroAndMaxString", "documentation":"

Version that is associated with this build. Version strings do not need to be unique.

" } }, "documentation":"

Represents the input for a request action.

" }, "UpdateBuildOutput":{ "type":"structure", "members":{ "Build":{ "shape":"Build", "documentation":"

Object that contains the updated build record.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "UpdateFleetAttributesInput":{ "type":"structure", "required":["FleetId"], "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet to update attribute metadata for.

" }, "Name":{ "shape":"NonZeroAndMaxString", "documentation":"

Descriptive label that is associated with a fleet. Fleet names do not need to be unique.

" }, "Description":{ "shape":"NonZeroAndMaxString", "documentation":"

Human-readable description of a fleet.

" }, "NewGameSessionProtectionPolicy":{ "shape":"ProtectionPolicy", "documentation":"

Game session protection policy to apply to all new instances created in this fleet. Instances that already exist are not affected. You can set protection for individual instances using UpdateGameSession.

" }, "ResourceCreationLimitPolicy":{ "shape":"ResourceCreationLimitPolicy", "documentation":"

Policy that limits the number of game sessions an individual player can create over a span of time.

" }, "MetricGroups":{ "shape":"MetricGroupList", "documentation":"

Names of metric groups to include this fleet in. Amazon CloudWatch uses a fleet metric group is to aggregate metrics from multiple fleets. Use an existing metric group name to add this fleet to the group. Or use a new name to create a new metric group. A fleet can only be included in one metric group at a time.

" } }, "documentation":"

Represents the input for a request action.

" }, "UpdateFleetAttributesOutput":{ "type":"structure", "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet that was updated.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "UpdateFleetCapacityInput":{ "type":"structure", "required":["FleetId"], "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet to update capacity for.

" }, "DesiredInstances":{ "shape":"WholeNumber", "documentation":"

Number of EC2 instances you want this fleet to host.

" }, "MinSize":{ "shape":"WholeNumber", "documentation":"

Minimum value allowed for the fleet's instance count. Default if not set is 0.

" }, "MaxSize":{ "shape":"WholeNumber", "documentation":"

Maximum value allowed for the fleet's instance count. Default if not set is 1.

" } }, "documentation":"

Represents the input for a request action.

" }, "UpdateFleetCapacityOutput":{ "type":"structure", "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet that was updated.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "UpdateFleetPortSettingsInput":{ "type":"structure", "required":["FleetId"], "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet to update port settings for.

" }, "InboundPermissionAuthorizations":{ "shape":"IpPermissionsList", "documentation":"

Collection of port settings to be added to the fleet record.

" }, "InboundPermissionRevocations":{ "shape":"IpPermissionsList", "documentation":"

Collection of port settings to be removed from the fleet record.

" } }, "documentation":"

Represents the input for a request action.

" }, "UpdateFleetPortSettingsOutput":{ "type":"structure", "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet that was updated.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "UpdateGameSessionInput":{ "type":"structure", "required":["GameSessionId"], "members":{ "GameSessionId":{ "shape":"ArnStringModel", "documentation":"

Unique identifier for the game session to update.

" }, "MaximumPlayerSessionCount":{ "shape":"WholeNumber", "documentation":"

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

" }, "Name":{ "shape":"NonZeroAndMaxString", "documentation":"

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

" }, "PlayerSessionCreationPolicy":{ "shape":"PlayerSessionCreationPolicy", "documentation":"

Policy determining whether or not the game session accepts new players.

" }, "ProtectionPolicy":{ "shape":"ProtectionPolicy", "documentation":"

Game session protection policy to apply to this game session only.

" } }, "documentation":"

Represents the input for a request action.

" }, "UpdateGameSessionOutput":{ "type":"structure", "members":{ "GameSession":{ "shape":"GameSession", "documentation":"

Object that contains the updated game session metadata.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "UpdateGameSessionQueueInput":{ "type":"structure", "required":["Name"], "members":{ "Name":{ "shape":"GameSessionQueueName", "documentation":"

Descriptive label that is associated with game session queue. Queue names must be unique within each region.

" }, "TimeoutInSeconds":{ "shape":"WholeNumber", "documentation":"

Maximum time, in seconds, that a new game session placement request remains in the queue. When a request exceeds this time, the game session placement changes to a TIMED_OUT status.

" }, "PlayerLatencyPolicies":{ "shape":"PlayerLatencyPolicyList", "documentation":"

Collection of latency policies to apply when processing game sessions placement requests with player latency information. Multiple policies are evaluated in order of the maximum latency value, starting with the lowest latency values. With just one policy, it is enforced at the start of the game session placement for the duration period. With multiple policies, each policy is enforced consecutively for its duration period. For example, a queue might enforce a 60-second policy followed by a 120-second policy, and then no policy for the remainder of the placement. When updating policies, provide a complete collection of policies.

" }, "Destinations":{ "shape":"GameSessionQueueDestinationList", "documentation":"

List of fleets that can be used to fulfill game session placement requests in the queue. Fleets are identified by either a fleet ARN or a fleet alias ARN. Destinations are listed in default preference order. When updating this list, provide a complete list of destinations.

" } }, "documentation":"

Represents the input for a request action.

" }, "UpdateGameSessionQueueOutput":{ "type":"structure", "members":{ "GameSessionQueue":{ "shape":"GameSessionQueue", "documentation":"

Object that describes the newly updated game session queue.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "UpdateMatchmakingConfigurationInput":{ "type":"structure", "required":["Name"], "members":{ "Name":{ "shape":"MatchmakingIdStringModel", "documentation":"

Unique identifier for a matchmaking configuration to update.

" }, "Description":{ "shape":"NonZeroAndMaxString", "documentation":"

Descriptive label that is associated with matchmaking configuration.

" }, "GameSessionQueueArns":{ "shape":"QueueArnsList", "documentation":"

Amazon Resource Name (ARN) that is assigned to a game session queue and uniquely identifies it. Format is arn:aws:gamelift:<region>::fleet/fleet-a1234567-b8c9-0d1e-2fa3-b45c6d7e8912. These queues are used when placing game sessions for matches that are created with this matchmaking configuration. Queues can be located in any region.

" }, "RequestTimeoutSeconds":{ "shape":"MatchmakingRequestTimeoutInteger", "documentation":"

Maximum duration, in seconds, that a matchmaking ticket can remain in process before timing out. Requests that time out can be resubmitted as needed.

" }, "AcceptanceTimeoutSeconds":{ "shape":"MatchmakingAcceptanceTimeoutInteger", "documentation":"

Length of time (in seconds) to wait for players to accept a proposed match. If any player rejects the match or fails to accept before the timeout, the ticket continues to look for an acceptable match.

" }, "AcceptanceRequired":{ "shape":"Boolean", "documentation":"

Flag that determines whether or not a match that was created with this configuration must be accepted by the matched players. To require acceptance, set to TRUE.

" }, "RuleSetName":{ "shape":"MatchmakingIdStringModel", "documentation":"

Unique identifier for a matchmaking rule set to use with this configuration. A matchmaking configuration can only use rule sets that are defined in the same region.

" }, "NotificationTarget":{ "shape":"SnsArnStringModel", "documentation":"

SNS topic ARN that is set up to receive matchmaking notifications. See Setting up Notifications for Matchmaking for more information.

" }, "AdditionalPlayerCount":{ "shape":"WholeNumber", "documentation":"

Number of player slots in a match to keep open for future players. For example, if the configuration's rule set specifies a match for a single 12-person team, and the additional player count is set to 2, only 10 players are selected for the match.

" }, "CustomEventData":{ "shape":"CustomEventData", "documentation":"

Information to attached to all events related to the matchmaking configuration.

" }, "GameProperties":{ "shape":"GamePropertyList", "documentation":"

Set of developer-defined properties for a game session, formatted as a set of type:value pairs. These properties are included in the GameSession object, which is passed to the game server with a request to start a new game session (see Start a Game Session). This information is added to the new GameSession object that is created for a successful match.

" }, "GameSessionData":{ "shape":"GameSessionData", "documentation":"

Set of developer-defined game session properties, formatted as a single string value. This data is included in the GameSession object, which is passed to the game server with a request to start a new game session (see Start a Game Session). This information is added to the new GameSession object that is created for a successful match.

" } }, "documentation":"

Represents the input for a request action.

" }, "UpdateMatchmakingConfigurationOutput":{ "type":"structure", "members":{ "Configuration":{ "shape":"MatchmakingConfiguration", "documentation":"

Object that describes the updated matchmaking configuration.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "UpdateRuntimeConfigurationInput":{ "type":"structure", "required":[ "FleetId", "RuntimeConfiguration" ], "members":{ "FleetId":{ "shape":"FleetId", "documentation":"

Unique identifier for a fleet to update run-time configuration for.

" }, "RuntimeConfiguration":{ "shape":"RuntimeConfiguration", "documentation":"

Instructions for launching server processes on each instance in the fleet. The run-time configuration for a fleet has a collection of server process configurations, one for each type of server process to run on an instance. A server process configuration specifies the location of the server executable, launch parameters, and the number of concurrent processes with that configuration to maintain on each instance.

" } }, "documentation":"

Represents the input for a request action.

" }, "UpdateRuntimeConfigurationOutput":{ "type":"structure", "members":{ "RuntimeConfiguration":{ "shape":"RuntimeConfiguration", "documentation":"

The run-time configuration currently in force. If the update was successful, this object matches the one in the request.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "ValidateMatchmakingRuleSetInput":{ "type":"structure", "required":["RuleSetBody"], "members":{ "RuleSetBody":{ "shape":"RuleSetBody", "documentation":"

Collection of matchmaking rules to validate, formatted as a JSON string.

" } }, "documentation":"

Represents the input for a request action.

" }, "ValidateMatchmakingRuleSetOutput":{ "type":"structure", "members":{ "Valid":{ "shape":"Boolean", "documentation":"

Response indicating whether or not the rule set is valid.

" } }, "documentation":"

Represents the returned data in response to a request action.

" }, "WholeNumber":{ "type":"integer", "min":0 } }, "documentation":"Amazon GameLift Service

Amazon GameLift is a managed service for developers who need a scalable, dedicated server solution for their multiplayer games. Amazon GameLift provides tools for the following tasks: (1) acquire computing resources and deploy game servers, (2) scale game server capacity to meet player demand, (3) host game sessions and manage player access, and (4) track in-depth metrics on player usage and server performance.

The Amazon GameLift service API includes two important function sets:

This reference guide describes the low-level service API for Amazon GameLift. You can use the API functionality with these tools:

MORE RESOURCES

API SUMMARY

This list offers a functional overview of the Amazon GameLift service API.

Managing Games and Players

Use these actions to start new game sessions, find existing game sessions, track game session status and other information, and enable player access to game sessions.

Setting Up and Managing Game Servers

When setting up Amazon GameLift resources for your game, you first create a game build and upload it to Amazon GameLift. You can then use these actions to configure and manage a fleet of resources to run your game servers, scale capacity to meet player demand, access performance and utilization metrics, and more.

" }