python-botocore/botocore/data/gamelift/2015-10-01/service-2.json
2016-10-20 16:01:27 +09:00

2907 lines
158 KiB
JSON
Executable file
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"version":"2.0",
"metadata":{
"apiVersion":"2015-10-01",
"endpointPrefix":"gamelift",
"jsonVersion":"1.1",
"protocol":"json",
"serviceFullName":"Amazon GameLift",
"signatureVersion":"v4",
"targetPrefix":"GameLift"
},
"operations":{
"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":"<p>Creates an alias for a fleet. You can use an alias to anonymize your fleet by referencing an alias instead of a specific fleet when you create game sessions. Amazon GameLift supports two types of routing strategies for aliases: simple and terminal. Use a simple alias to point to an active fleet. Use a terminal alias to display a message to incoming traffic instead of routing players to an active fleet. This option is useful when a game server is no longer supported but you want to provide better messaging than a standard 404 error.</p> <p>To create a fleet alias, specify an alias name, routing strategy, and optional description. If successful, a new alias record is returned, including an alias ID, which you can reference when creating a game session. To reassign the alias to another fleet ID, call <a>UpdateAlias</a>.</p>"
},
"CreateBuild":{
"name":"CreateBuild",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"CreateBuildInput"},
"output":{"shape":"CreateBuildOutput"},
"errors":[
{"shape":"UnauthorizedException"},
{"shape":"InvalidRequestException"},
{"shape":"ConflictException"},
{"shape":"InternalServiceException"}
],
"documentation":"<p>Initializes a new build record and generates information required to upload a game build to Amazon GameLift. Once the build record has been created and its status is <code>INITIALIZED</code>, you can upload your game build.</p> <important> <p>Do not use this API action unless you are using your own Amazon Simple Storage Service (Amazon S3) client and need to manually upload your build files. Instead, to create a build, use the CLI command <code>upload-build</code>, which creates a new build record and uploads the build files in one step. (See the <a href=\"http://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-build-intro.html\">Amazon GameLift Developer Guide</a> help on packaging and uploading your build.) </p> </important> <p>To create a new build, identify the operating system of the game server binaries. All game servers in a build must use the same operating system. Optionally, specify a build name and version; this metadata is stored with other properties in the build record and is displayed in the GameLift console (it is not visible to players). If successful, this action returns the newly created build record along with the Amazon S3 storage location and AWS account credentials. Use the location and credentials to upload your game build.</p>"
},
"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":"<p>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 <a href=\"http://aws.amazon.com/ec2/instance-types/\">Amazon EC2 Instance Types</a> for more information), and deploy a specified game build to each instance. A newly created fleet passes through several statuses; once it reaches the <code>ACTIVE</code> status, it can begin hosting game sessions.</p> <p>To create a new fleet, provide a fleet name, an EC2 instance type, and a build ID of the game build to deploy. You can also configure the new fleet with the following settings: (1) a runtime configuration describing what server processes to run on each instance in the fleet (required to create fleet), (2) access permissions for inbound traffic, (3) fleet-wide game session protection, and (4) the location of default log files for GameLift to upload and store.</p> <p>If the <code>CreateFleet</code> call is successful, Amazon GameLift performs the following tasks:</p> <ul> <li> <p>Creates a fleet record and sets the status to <code>NEW</code> (followed by other statuses as the fleet is activated).</p> </li> <li> <p>Sets the fleet's capacity to 1 \"desired\", which causes GameLift to start one new EC2 instance.</p> </li> <li> <p>Starts launching server processes on the instance. If the fleet is configured to run multiple server processes per instance, GameLift staggers each launch by a few seconds.</p> </li> <li> <p>Begins writing events to the fleet event log, which can be accessed in the GameLift console.</p> </li> <li> <p>Sets the fleet's status to <code>ACTIVE</code> once one server process in the fleet is ready to host a game session.</p> </li> </ul> <p>After a fleet is created, use the following actions to change fleet properties and configuration:</p> <ul> <li> <p> <a>UpdateFleetAttributes</a> -- Update fleet metadata, including name and description.</p> </li> <li> <p> <a>UpdateFleetCapacity</a> -- Increase or decrease the number of instances you want the fleet to maintain.</p> </li> <li> <p> <a>UpdateFleetPortSettings</a> -- Change the IP address and port ranges that allow access to incoming traffic.</p> </li> <li> <p> <a>UpdateRuntimeConfiguration</a> -- Change how server processes are launched in the fleet, including launch path, launch parameters, and the number of concurrent processes.</p> </li> </ul>"
},
"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":"<p>Creates a multiplayer game session for players. This action creates a game session record and assigns the new session to an instance in the specified fleet, which initializes a new server process to host the game session. A fleet must be in an <code>ACTIVE</code> status before a game session can be created in it.</p> <p>To create a game session, specify either a fleet ID or an alias ID and indicate the maximum number of players the game session allows. You can also provide a name and a set of properties for your game (optional). If successful, a <a>GameSession</a> object is returned containing session properties, including an IP address. By default, newly created game sessions are set to accept adding any new players to the game session. Use <a>UpdateGameSession</a> to change the creation policy.</p>"
},
"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":"<p>Adds a player to a game session and creates a player session record. A game session must be in an <code>ACTIVE</code> status, have a creation policy of <code>ALLOW_ALL</code>, and have an open player slot before players can be added to the session.</p> <p>To create a player session, specify a game session ID and player ID. If successful, the player is added to the game session and a new <a>PlayerSession</a> object is returned. </p>"
},
"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":"<p>Adds a group of players to a game session. Similar to <a>CreatePlayerSession</a>, this action allows you to add multiple players in a single call, which is useful for games that provide party and/or matchmaking features. A game session must be in an <code>ACTIVE</code> status, have a creation policy of <code>ALLOW_ALL</code>, and have an open player slot before players can be added to the session.</p> <p>To create player sessions, specify a game session ID and a list of player IDs. If successful, the players are added to the game session and a set of new <a>PlayerSession</a> objects is returned. </p>"
},
"DeleteAlias":{
"name":"DeleteAlias",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteAliasInput"},
"errors":[
{"shape":"UnauthorizedException"},
{"shape":"NotFoundException"},
{"shape":"InvalidRequestException"},
{"shape":"InternalServiceException"}
],
"documentation":"<p>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.</p>"
},
"DeleteBuild":{
"name":"DeleteBuild",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteBuildInput"},
"errors":[
{"shape":"UnauthorizedException"},
{"shape":"NotFoundException"},
{"shape":"InternalServiceException"},
{"shape":"InvalidRequestException"}
],
"documentation":"<p>Deletes a build. This action permanently deletes the build record and any uploaded build files.</p> <p>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.</p>"
},
"DeleteFleet":{
"name":"DeleteFleet",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteFleetInput"},
"errors":[
{"shape":"NotFoundException"},
{"shape":"InternalServiceException"},
{"shape":"InvalidFleetStatusException"},
{"shape":"UnauthorizedException"},
{"shape":"InvalidRequestException"}
],
"documentation":"<p>Deletes everything related to a fleet. Before deleting a fleet, you must set the fleet's desired capacity to zero. See <a>UpdateFleetCapacity</a>.</p> <p>This action removes the fleet's resources and the fleet record. Once a fleet is deleted, you can no longer use that fleet.</p>"
},
"DeleteScalingPolicy":{
"name":"DeleteScalingPolicy",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteScalingPolicyInput"},
"errors":[
{"shape":"InternalServiceException"},
{"shape":"InvalidRequestException"},
{"shape":"UnauthorizedException"},
{"shape":"NotFoundException"}
],
"documentation":"<p>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.</p>"
},
"DescribeAlias":{
"name":"DescribeAlias",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeAliasInput"},
"output":{"shape":"DescribeAliasOutput"},
"errors":[
{"shape":"UnauthorizedException"},
{"shape":"InvalidRequestException"},
{"shape":"NotFoundException"},
{"shape":"InternalServiceException"}
],
"documentation":"<p>Retrieves properties for a specified alias. To get the alias, specify an alias ID. If successful, an <a>Alias</a> object is returned.</p>"
},
"DescribeBuild":{
"name":"DescribeBuild",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeBuildInput"},
"output":{"shape":"DescribeBuildOutput"},
"errors":[
{"shape":"UnauthorizedException"},
{"shape":"InvalidRequestException"},
{"shape":"NotFoundException"},
{"shape":"InternalServiceException"}
],
"documentation":"<p>Retrieves properties for a build. To get a build record, specify a build ID. If successful, an object containing the build properties is returned.</p>"
},
"DescribeEC2InstanceLimits":{
"name":"DescribeEC2InstanceLimits",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeEC2InstanceLimitsInput"},
"output":{"shape":"DescribeEC2InstanceLimitsOutput"},
"errors":[
{"shape":"InvalidRequestException"},
{"shape":"InternalServiceException"},
{"shape":"UnauthorizedException"}
],
"documentation":"<p>Retrieves the following information for the specified EC2 instance type:</p> <ul> <li> <p>maximum number of instances allowed per AWS account (service limit)</p> </li> <li> <p>current usage level for the AWS account</p> </li> </ul> <p>Service limits vary depending on region. Available regions for GameLift can be found in the AWS Management Console for GameLift (see the drop-down list in the upper right corner).</p>"
},
"DescribeFleetAttributes":{
"name":"DescribeFleetAttributes",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeFleetAttributesInput"},
"output":{"shape":"DescribeFleetAttributesOutput"},
"errors":[
{"shape":"InternalServiceException"},
{"shape":"NotFoundException"},
{"shape":"InvalidRequestException"},
{"shape":"UnauthorizedException"}
],
"documentation":"<p>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 <a>FleetAttributes</a> 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. </p> <note> <p>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.</p> </note>"
},
"DescribeFleetCapacity":{
"name":"DescribeFleetCapacity",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeFleetCapacityInput"},
"output":{"shape":"DescribeFleetCapacityOutput"},
"errors":[
{"shape":"InternalServiceException"},
{"shape":"NotFoundException"},
{"shape":"InvalidRequestException"},
{"shape":"UnauthorizedException"}
],
"documentation":"<p>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 <a>FleetCapacity</a> 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. </p> <note> <p>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.</p> </note>"
},
"DescribeFleetEvents":{
"name":"DescribeFleetEvents",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeFleetEventsInput"},
"output":{"shape":"DescribeFleetEventsOutput"},
"errors":[
{"shape":"NotFoundException"},
{"shape":"InternalServiceException"},
{"shape":"UnauthorizedException"},
{"shape":"InvalidRequestException"}
],
"documentation":"<p>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.</p>"
},
"DescribeFleetPortSettings":{
"name":"DescribeFleetPortSettings",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeFleetPortSettingsInput"},
"output":{"shape":"DescribeFleetPortSettingsOutput"},
"errors":[
{"shape":"InternalServiceException"},
{"shape":"NotFoundException"},
{"shape":"InvalidRequestException"},
{"shape":"UnauthorizedException"}
],
"documentation":"<p>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 <a>IpPermission</a> objects is returned for the requested fleet ID. If the requested fleet has been deleted, the result set is empty.</p>"
},
"DescribeFleetUtilization":{
"name":"DescribeFleetUtilization",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeFleetUtilizationInput"},
"output":{"shape":"DescribeFleetUtilizationOutput"},
"errors":[
{"shape":"InternalServiceException"},
{"shape":"NotFoundException"},
{"shape":"InvalidRequestException"},
{"shape":"UnauthorizedException"}
],
"documentation":"<p>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 <a>FleetUtilization</a> 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. </p> <note> <p>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.</p> </note>"
},
"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":"<p>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 <code>GameSessionId</code> to request details for a specific game session; (2) provide either a <code>FleetId</code> or an <code>AliasId</code> to request properties for all game sessions running on a fleet. </p> <p>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 <a>GameSessionDetail</a> object is returned for each session matching the request.</p>"
},
"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":"<p>Retrieves a set of one or more game sessions and properties. This action can be used in several ways: (1) provide a <code>GameSessionId</code> to request properties for a specific game session; (2) provide a <code>FleetId</code> or an <code>AliasId</code> to request properties for all game sessions running on a fleet. You can also use <a>SearchGameSessions</a>, which allows you to retrieve all game sessions or filter on certain criteria, but only returns game sessions with a status of ACTIVE. If you need to retrieve the protection policy for each game session, use <a>DescribeGameSessionDetails</a>.</p> <p>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 <a>GameSession</a> object is returned for each session matching the request.</p>"
},
"DescribeInstances":{
"name":"DescribeInstances",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeInstancesInput"},
"output":{"shape":"DescribeInstancesOutput"},
"errors":[
{"shape":"UnauthorizedException"},
{"shape":"InvalidRequestException"},
{"shape":"NotFoundException"},
{"shape":"InternalServiceException"}
],
"documentation":"<p>Retrieves information about instances in a fleet.</p> <p>To get information on a specific instance, specify both a fleet ID and instance ID. To get information for 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 <a>Instance</a> object is returned for each result.</p>"
},
"DescribePlayerSessions":{
"name":"DescribePlayerSessions",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribePlayerSessionsInput"},
"output":{"shape":"DescribePlayerSessionsOutput"},
"errors":[
{"shape":"InternalServiceException"},
{"shape":"NotFoundException"},
{"shape":"InvalidRequestException"},
{"shape":"UnauthorizedException"}
],
"documentation":"<p>Retrieves properties for one or more player sessions. This action can be used in several ways: (1) provide a <code>PlayerSessionId</code> parameter to request properties for a specific player session; (2) provide a <code>GameSessionId</code> parameter to request properties for all player sessions in the specified game session; (3) provide a <code>PlayerId</code> parameter to request properties for all player sessions of a specified player. </p> <p>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 <a>PlayerSession</a> object is returned for each session matching the request.</p>"
},
"DescribeRuntimeConfiguration":{
"name":"DescribeRuntimeConfiguration",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeRuntimeConfigurationInput"},
"output":{"shape":"DescribeRuntimeConfigurationOutput"},
"errors":[
{"shape":"UnauthorizedException"},
{"shape":"NotFoundException"},
{"shape":"InternalServiceException"},
{"shape":"InvalidRequestException"}
],
"documentation":"<p>Retrieves the current runtime configuration for the specified fleet. The runtime configuration tells GameLift how to launch server processes on instances in the fleet.</p>"
},
"DescribeScalingPolicies":{
"name":"DescribeScalingPolicies",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DescribeScalingPoliciesInput"},
"output":{"shape":"DescribeScalingPoliciesOutput"},
"errors":[
{"shape":"InternalServiceException"},
{"shape":"InvalidRequestException"},
{"shape":"UnauthorizedException"},
{"shape":"NotFoundException"}
],
"documentation":"<p>Retrieves all scaling policies applied to a fleet.</p> <p>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 <a>ScalingPolicy</a> objects is returned for the fleet.</p>"
},
"GetGameSessionLogUrl":{
"name":"GetGameSessionLogUrl",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetGameSessionLogUrlInput"},
"output":{"shape":"GetGameSessionLogUrlOutput"},
"errors":[
{"shape":"InternalServiceException"},
{"shape":"NotFoundException"},
{"shape":"UnauthorizedException"},
{"shape":"InvalidRequestException"}
],
"documentation":"<p>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. Use this URL to download the logs.</p> <note> <p>See the <a href=\"http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html#limits_gamelift\">AWS Service Limits</a> page for maximum log file sizes. Log files that exceed this limit are not saved.</p> </note>"
},
"ListAliases":{
"name":"ListAliases",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListAliasesInput"},
"output":{"shape":"ListAliasesOutput"},
"errors":[
{"shape":"UnauthorizedException"},
{"shape":"InvalidRequestException"},
{"shape":"InternalServiceException"}
],
"documentation":"<p>Retrieves a collection of alias records 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.</p> <note> <p>Aliases are not listed in any particular order.</p> </note>"
},
"ListBuilds":{
"name":"ListBuilds",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListBuildsInput"},
"output":{"shape":"ListBuildsOutput"},
"errors":[
{"shape":"UnauthorizedException"},
{"shape":"InvalidRequestException"},
{"shape":"InternalServiceException"}
],
"documentation":"<p>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 <code>Status</code> parameter. Use the pagination parameters to retrieve results in a set of sequential pages. </p> <note> <p>Build records are not listed in any particular order.</p> </note>"
},
"ListFleets":{
"name":"ListFleets",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListFleetsInput"},
"output":{"shape":"ListFleetsOutput"},
"errors":[
{"shape":"InternalServiceException"},
{"shape":"NotFoundException"},
{"shape":"InvalidRequestException"},
{"shape":"UnauthorizedException"}
],
"documentation":"<p>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.</p> <note> <p>Fleet records are not listed in any particular order.</p> </note>"
},
"PutScalingPolicy":{
"name":"PutScalingPolicy",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"PutScalingPolicyInput"},
"output":{"shape":"PutScalingPolicyOutput"},
"errors":[
{"shape":"InternalServiceException"},
{"shape":"InvalidRequestException"},
{"shape":"UnauthorizedException"},
{"shape":"NotFoundException"}
],
"documentation":"<p>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.</p> <p>A scaling policy rule statement has the following structure:</p> <p>If <code>[MetricName]</code> is <code>[ComparisonOperator]</code> <code>[Threshold]</code> for <code>[EvaluationPeriods]</code> minutes, then <code>[ScalingAdjustmentType]</code> to/by <code>[ScalingAdjustment]</code>.</p> <p>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:</p> <p>If [IdleInstances] is [GreaterThanOrEqualToThreshold] [20] for [15] minutes, then [ChangeInCapacity] by [-10].</p> <p>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 <a>DeleteScalingPolicy</a>.</p>"
},
"RequestUploadCredentials":{
"name":"RequestUploadCredentials",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"RequestUploadCredentialsInput"},
"output":{"shape":"RequestUploadCredentialsOutput"},
"errors":[
{"shape":"UnauthorizedException"},
{"shape":"InvalidRequestException"},
{"shape":"NotFoundException"},
{"shape":"InternalServiceException"}
],
"documentation":"<p>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.</p> <important> <p>Call this action only if you need credentials for a build created with <code> <a>CreateBuild</a> </code>. This is a rare situation; in most cases, builds are created using the CLI command <code>upload-build</code>, which creates a build record and also uploads build files. </p> </important> <p>Upload credentials are returned when you create the build, but they have a limited lifespan. You can get fresh credentials and use them to re-upload game files until the status of that build changes to <code>READY</code>. Once this happens, you must create a brand new build.</p>"
},
"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":"<p>Retrieves the fleet ID that a specified alias is currently pointing to.</p>"
},
"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":"<p>Retrieves a set of game sessions that match a set of search criteria and sorts them in a specified order. Currently 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 <a>DescribeGameSessions</a>. If you need to retrieve the protection policy for each game session, use <a>DescribeGameSessionDetails</a>.</p> <p>You can search or sort by the following game session attributes:</p> <ul> <li> <p> <b>gameSessionId</b> -- ID value assigned to a game session. This unique value is returned in a <a>GameSession</a> object when a new game session is created. </p> </li> <li> <p> <b>gameSessionName</b> -- Name assigned to a game session. This value is set when requesting a new game session with <a>CreateGameSession</a> or updating with <a>UpdateGameSession</a>. Game session names do not need to be unique to a game session.</p> </li> <li> <p> <b>creationTimeMillis</b> -- Value indicating when a game session was created. It is expressed in Unix time as milliseconds.</p> </li> <li> <p> <b>playerSessionCount</b> -- Number of players currently connected to a game session. This value changes rapidly as players join the session or drop out.</p> </li> <li> <p> <b>maximumSessions</b> -- Maximum number of player sessions allowed for a game session. This value is set when requesting a new game session with <a>CreateGameSession</a> or updating with <a>UpdateGameSession</a>.</p> </li> <li> <p> <b>hasAvailablePlayerSessions</b> -- Boolean value indicating whether or not a game session has reached its maximum number of players. When searching with this attribute, the search value must be <code>true</code> or <code>false</code>. It is highly recommended that all search requests include this filter attribute to optimize search performance and return only sessions that players can join. </p> </li> </ul> <p>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 <a>GameSession</a> objects matching the request is returned.</p> <note> <p>Returned values for <code>playerSessionCount</code> and <code>hasAvailablePlayerSessions</code> 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. </p> </note>"
},
"UpdateAlias":{
"name":"UpdateAlias",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"UpdateAliasInput"},
"output":{"shape":"UpdateAliasOutput"},
"errors":[
{"shape":"UnauthorizedException"},
{"shape":"InvalidRequestException"},
{"shape":"NotFoundException"},
{"shape":"InternalServiceException"}
],
"documentation":"<p>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.</p>"
},
"UpdateBuild":{
"name":"UpdateBuild",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"UpdateBuildInput"},
"output":{"shape":"UpdateBuildOutput"},
"errors":[
{"shape":"UnauthorizedException"},
{"shape":"InvalidRequestException"},
{"shape":"NotFoundException"},
{"shape":"InternalServiceException"}
],
"documentation":"<p>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.</p>"
},
"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":"<p>Updates fleet properties, including name and description, for a fleet. To update metadata, specify the fleet ID and the property values you want to change. If successful, the fleet ID for the updated fleet is returned.</p>"
},
"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":"<p>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 <a>DescribeEC2InstanceLimits</a> to get the maximum capacity based on the fleet's EC2 instance type.</p> <p>If you're using autoscaling (see <a>PutScalingPolicy</a>), 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 <a href=\"http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html#limits_gamelift\">service limits</a>.</p> <p>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 <a>DescribeFleetCapacity</a>. If the desired instance count is higher than the instance type's limit, the \"Limit Exceeded\" exception occurs.</p>"
},
"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":"<p>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 <code>InboundPermissionAuthorizations</code>, and permissions you want to remove in <code>InboundPermissionRevocations</code>. Permissions to be removed must match existing fleet permissions. If successful, the fleet ID for the updated fleet is returned.</p>"
},
"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":"<p>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 <a>GameSession</a> object is returned. </p>"
},
"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":"<p>Updates the current runtime configuration for the specified fleet, which tells GameLift how to launch server processes on instances in the fleet. You can update a fleet's runtime configuration at any time after the fleet is created; it does not need to be in an <code>ACTIVE</code> status.</p> <p>To update runtime configuration, specify the fleet ID and provide a <code>RuntimeConfiguration</code> object with the updated collection of server process configurations.</p> <p>Each instance in a GameLift fleet checks regularly for an updated runtime 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 GameLift simply adds new server processes to fit the current runtime configuration. As a result, the runtime configuration changes are applied gradually as existing processes shut down and new processes are launched in GameLift's normal process recycling activity.</p>"
}
},
"shapes":{
"Alias":{
"type":"structure",
"members":{
"AliasId":{
"shape":"AliasId",
"documentation":"<p>Unique identifier for a fleet alias.</p>"
},
"Name":{
"shape":"NonBlankAndLengthConstraintString",
"documentation":"<p>Descriptive label associated with an alias. Alias names do not need to be unique.</p>"
},
"Description":{
"shape":"FreeText",
"documentation":"<p>Human-readable description of an alias.</p>"
},
"RoutingStrategy":{"shape":"RoutingStrategy"},
"CreationTime":{
"shape":"Timestamp",
"documentation":"<p>Time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (ex: \"1469498468.057\".</p>"
},
"LastUpdatedTime":{
"shape":"Timestamp",
"documentation":"<p>Time stamp indicating when this data object was last modified. Format is a number expressed in Unix time as milliseconds (ex: \"1469498468.057\".</p>"
}
},
"documentation":"<p>Properties describing a fleet alias.</p>"
},
"AliasId":{
"type":"string",
"pattern":"^alias-\\S+"
},
"AliasList":{
"type":"list",
"member":{"shape":"Alias"}
},
"ArnStringModel":{
"type":"string",
"max":256,
"min":1,
"pattern":"[a-zA-Z0-9:/-]+"
},
"AwsCredentials":{
"type":"structure",
"members":{
"AccessKeyId":{
"shape":"NonEmptyString",
"documentation":"<p>Access key for an AWS account.</p>"
},
"SecretAccessKey":{
"shape":"NonEmptyString",
"documentation":"<p>Secret key for an AWS account.</p>"
},
"SessionToken":{
"shape":"NonEmptyString",
"documentation":"<p>Token specific to a build ID.</p>"
}
},
"documentation":"<p>AWS access credentials required to upload game build files to Amazon GameLift. These credentials are generated with <a>CreateBuild</a>, and are valid for a limited time. If they expire before you upload your game build, get a new set by calling <a>RequestUploadCredentials</a>.</p>",
"sensitive":true
},
"Build":{
"type":"structure",
"members":{
"BuildId":{
"shape":"BuildId",
"documentation":"<p>Unique identifier for a build.</p>"
},
"Name":{
"shape":"FreeText",
"documentation":"<p>Descriptive label associated with a build. Build names do not need to be unique. It can be set using <a>CreateBuild</a> or <a>UpdateBuild</a>.</p>"
},
"Version":{
"shape":"FreeText",
"documentation":"<p>Version associated with this build. Version strings do not need to be unique to a build. This value can be set using <a>CreateBuild</a> or <a>UpdateBuild</a>.</p>"
},
"Status":{
"shape":"BuildStatus",
"documentation":"<p>Current status of the build.</p> <p>Possible build statuses include the following:</p> <ul> <li> <p> <b>INITIALIZED</b> A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this status. When a build is successfully created, the build status is set to this value. </p> </li> <li> <p> <b>READY</b> The game build has been successfully uploaded. You can now create new fleets for this build.</p> </li> <li> <p> <b>FAILED</b> The game build upload failed. You cannot create new fleets for this build. </p> </li> </ul>"
},
"SizeOnDisk":{
"shape":"PositiveLong",
"documentation":"<p>File size of the uploaded game build, expressed in bytes. When the build status is <code>INITIALIZED</code>, this value is 0.</p>"
},
"OperatingSystem":{
"shape":"OperatingSystem",
"documentation":"<p>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.</p>"
},
"CreationTime":{
"shape":"Timestamp",
"documentation":"<p>Time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (ex: \"1469498468.057\".</p>"
}
},
"documentation":"<p>Properties describing a game build.</p>"
},
"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":"<p>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.</p>",
"exception":true
},
"CreateAliasInput":{
"type":"structure",
"required":[
"Name",
"RoutingStrategy"
],
"members":{
"Name":{
"shape":"NonBlankAndLengthConstraintString",
"documentation":"<p>Descriptive label associated with an alias. Alias names do not need to be unique.</p>"
},
"Description":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Human-readable description of an alias.</p>"
},
"RoutingStrategy":{
"shape":"RoutingStrategy",
"documentation":"<p>Object specifying the fleet and routing type to use for the alias.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"CreateAliasOutput":{
"type":"structure",
"members":{
"Alias":{
"shape":"Alias",
"documentation":"<p>Object containing the newly created alias record.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"CreateBuildInput":{
"type":"structure",
"members":{
"Name":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Descriptive label associated with a build. Build names do not need to be unique. A build name can be changed later using <code> <a>UpdateBuild</a> </code>.</p>"
},
"Version":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Version associated with this build. Version strings do not need to be unique to a build. A build version can be changed later using <code> <a>UpdateBuild</a> </code>.</p>"
},
"StorageLocation":{"shape":"S3Location"},
"OperatingSystem":{
"shape":"OperatingSystem",
"documentation":"<p>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.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"CreateBuildOutput":{
"type":"structure",
"members":{
"Build":{
"shape":"Build",
"documentation":"<p>Set of properties for the newly created build.</p>"
},
"UploadCredentials":{
"shape":"AwsCredentials",
"documentation":"<p>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. If you need to get fresh credentials, call <code> <a>RequestUploadCredentials</a> </code>.</p>"
},
"StorageLocation":{
"shape":"S3Location",
"documentation":"<p>Amazon S3 path and key, identifying where the game build files are stored.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"CreateFleetInput":{
"type":"structure",
"required":[
"Name",
"BuildId",
"EC2InstanceType"
],
"members":{
"Name":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Descriptive label associated with a fleet. Fleet names do not need to be unique.</p>"
},
"Description":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Human-readable description of a fleet.</p>"
},
"BuildId":{
"shape":"BuildId",
"documentation":"<p>Unique identifier of the build to be deployed on the new fleet. The build must have been successfully uploaded to GameLift and be in a <code>READY</code> status. This fleet setting cannot be changed once the fleet is created.</p>"
},
"ServerLaunchPath":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>This parameter is no longer used. Instead, specify a server launch path using the <code>RuntimeConfiguration</code> parameter. (Requests that specify a server launch path and launch parameters instead of a runtime configuration will continue to work.)</p>"
},
"ServerLaunchParameters":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>This parameter is no longer used. Instead, specify server launch parameters in the <code>RuntimeConfiguration</code> parameter. (Requests that specify a server launch path and launch parameters instead of a runtime configuration will continue to work.)</p>"
},
"LogPaths":{
"shape":"StringList",
"documentation":"<p>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 <a href=\"http://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-sdk-server-api.html#gamelift-sdk-server-api-server-code\">Amazon GameLift Developer Guide</a>. If no default log path for a fleet is specified, GameLift will automatically upload logs stored on each instance at <code>C:\\game\\logs</code>. Use the GameLift console to access stored logs. </p>"
},
"EC2InstanceType":{
"shape":"EC2InstanceType",
"documentation":"<p>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. GameLift supports the following EC2 instance types. See <a href=\"http://aws.amazon.com/ec2/instance-types/\">Amazon EC2 Instance Types</a> for detailed descriptions.</p>"
},
"EC2InboundPermissions":{
"shape":"IpPermissionsList",
"documentation":"<p>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.</p>"
},
"NewGameSessionProtectionPolicy":{
"shape":"ProtectionPolicy",
"documentation":"<p>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 <a>UpdateGameSession</a>.</p> <ul> <li> <p> <b>NoProtection</b> The game session can be terminated during a scale-down event.</p> </li> <li> <p> <b>FullProtection</b> If the game session is in an <code>ACTIVE</code> status, it cannot be terminated during a scale-down event.</p> </li> </ul>"
},
"RuntimeConfiguration":{
"shape":"RuntimeConfiguration",
"documentation":"<p>Instructions for launching server processes on each instance in the fleet. The runtime 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 <code>CreateFleet</code> request must include a runtime configuration with at least one server process configuration; otherwise the request will fail with an invalid request exception. (This parameter replaces the parameters <code>ServerLaunchPath</code> and <code>ServerLaunchParameters</code>; requests that contain values for these parameters instead of a runtime configuration will continue to work.) </p>"
},
"ResourceCreationLimitPolicy":{
"shape":"ResourceCreationLimitPolicy",
"documentation":"<p>Policy that limits the number of game sessions an individual player can create over a span of time for this fleet.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"CreateFleetOutput":{
"type":"structure",
"members":{
"FleetAttributes":{
"shape":"FleetAttributes",
"documentation":"<p>Properties for the newly created fleet.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"CreateGameSessionInput":{
"type":"structure",
"required":["MaximumPlayerSessionCount"],
"members":{
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.</p>"
},
"AliasId":{
"shape":"AliasId",
"documentation":"<p>Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.</p>"
},
"MaximumPlayerSessionCount":{
"shape":"WholeNumber",
"documentation":"<p>Maximum number of players that can be connected simultaneously to the game session.</p>"
},
"Name":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Descriptive label associated with a game session. Session names do not need to be unique.</p>"
},
"GameProperties":{
"shape":"GamePropertyList",
"documentation":"<p>Set of properties used to administer a game session. These properties are passed to the server process hosting it.</p>"
},
"CreatorId":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Player ID identifying the person 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.</p>"
},
"GameSessionId":{
"shape":"IdStringModel",
"documentation":"<p>Custom string to include in the game session ID, with a maximum length of 48 characters. If this parameter is set, GameLift creates a game session ID in the following format: \"arn:aws:gamelift:&lt;region&gt;::gamesession/fleet-&lt;fleet ID&gt;/&lt;custom ID string&gt;\". For example, this full game session ID: \"arn:aws:gamelift:us-west-2::gamesession/fleet-2ec2aae5-c2c7-43ca-b19d-8249fe5fddf2/my-game-session\" includes the custom ID string \"my-game-session\". If this parameter is not set, GameLift creates a game session ID in the same format with an auto-generated ID string. </p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"CreateGameSessionOutput":{
"type":"structure",
"members":{
"GameSession":{
"shape":"GameSession",
"documentation":"<p>Object containing the newly created game session record.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"CreatePlayerSessionInput":{
"type":"structure",
"required":[
"GameSessionId",
"PlayerId"
],
"members":{
"GameSessionId":{
"shape":"ArnStringModel",
"documentation":"<p>Unique identifier for the game session to add a player to. Game session ID format is as follows: \"arn:aws:gamelift:&lt;region&gt;::gamesession/fleet-&lt;fleet ID&gt;/&lt;ID string&gt;\". The value of &lt;ID string&gt; is either a custom ID string (if one was specified when the game session was created) an auto-generated string. </p>"
},
"PlayerId":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Unique identifier for the player to be added.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"CreatePlayerSessionOutput":{
"type":"structure",
"members":{
"PlayerSession":{
"shape":"PlayerSession",
"documentation":"<p>Object containing the newly created player session record.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"CreatePlayerSessionsInput":{
"type":"structure",
"required":[
"GameSessionId",
"PlayerIds"
],
"members":{
"GameSessionId":{
"shape":"ArnStringModel",
"documentation":"<p>Unique identifier for the game session to add players to. Game session ID format is as follows: \"arn:aws:gamelift:&lt;region&gt;::gamesession/fleet-&lt;fleet ID&gt;/&lt;ID string&gt;\". The value of &lt;ID string&gt; is either a custom ID string (if one was specified when the game session was created) an auto-generated string. </p>"
},
"PlayerIds":{
"shape":"PlayerIdList",
"documentation":"<p>List of unique identifiers for the players to be added.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"CreatePlayerSessionsOutput":{
"type":"structure",
"members":{
"PlayerSessions":{
"shape":"PlayerSessionList",
"documentation":"<p>Collection of player session objects created for the added players.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"DeleteAliasInput":{
"type":"structure",
"required":["AliasId"],
"members":{
"AliasId":{
"shape":"AliasId",
"documentation":"<p>Unique identifier for a fleet alias. Specify the alias you want to delete.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"DeleteBuildInput":{
"type":"structure",
"required":["BuildId"],
"members":{
"BuildId":{
"shape":"BuildId",
"documentation":"<p>Unique identifier for the build you want to delete.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"DeleteFleetInput":{
"type":"structure",
"required":["FleetId"],
"members":{
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier for the fleet you want to delete.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"DeleteScalingPolicyInput":{
"type":"structure",
"required":[
"Name",
"FleetId"
],
"members":{
"Name":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Descriptive label associated with a scaling policy. Policy names do not need to be unique.</p>"
},
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier for a fleet.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"DescribeAliasInput":{
"type":"structure",
"required":["AliasId"],
"members":{
"AliasId":{
"shape":"AliasId",
"documentation":"<p>Unique identifier for a fleet alias. Specify the alias you want to retrieve.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"DescribeAliasOutput":{
"type":"structure",
"members":{
"Alias":{
"shape":"Alias",
"documentation":"<p>Object containing the requested alias.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"DescribeBuildInput":{
"type":"structure",
"required":["BuildId"],
"members":{
"BuildId":{
"shape":"BuildId",
"documentation":"<p>Unique identifier of the build that you want to retrieve properties for.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"DescribeBuildOutput":{
"type":"structure",
"members":{
"Build":{
"shape":"Build",
"documentation":"<p>Set of properties describing the requested build.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"DescribeEC2InstanceLimitsInput":{
"type":"structure",
"members":{
"EC2InstanceType":{
"shape":"EC2InstanceType",
"documentation":"<p>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. GameLift supports the following EC2 instance types. See <a href=\"http://aws.amazon.com/ec2/instance-types/\">Amazon EC2 Instance Types</a> for detailed descriptions. Leave this parameter blank to retrieve limits for all types.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"DescribeEC2InstanceLimitsOutput":{
"type":"structure",
"members":{
"EC2InstanceLimits":{
"shape":"EC2InstanceLimitList",
"documentation":"<p>Object containing the maximum number of instances for the specified instance type.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"DescribeFleetAttributesInput":{
"type":"structure",
"members":{
"FleetIds":{
"shape":"FleetIdList",
"documentation":"<p>Unique identifiers for the fleet(s) that you want to retrieve attributes for. To request attributes for all fleets, leave this parameter empty.</p>"
},
"Limit":{
"shape":"PositiveInteger",
"documentation":"<p>Maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.</p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To specify the start of the result set, do not specify a value. This parameter is ignored when the request specifies one or a list of fleet IDs.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"DescribeFleetAttributesOutput":{
"type":"structure",
"members":{
"FleetAttributes":{
"shape":"FleetAttributesList",
"documentation":"<p>Collection of objects containing attribute metadata for each requested fleet ID.</p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating 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.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"DescribeFleetCapacityInput":{
"type":"structure",
"members":{
"FleetIds":{
"shape":"FleetIdList",
"documentation":"<p>Unique identifier for the fleet(s) you want to retrieve capacity information for. To request capacity information for all fleets, leave this parameter empty.</p>"
},
"Limit":{
"shape":"PositiveInteger",
"documentation":"<p>Maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.</p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To specify the start of the result set, do not specify a value. This parameter is ignored when the request specifies one or a list of fleet IDs.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"DescribeFleetCapacityOutput":{
"type":"structure",
"members":{
"FleetCapacity":{
"shape":"FleetCapacityList",
"documentation":"<p>Collection of objects containing capacity information for each requested fleet ID. Leave this parameter empty to retrieve capacity information for all fleets.</p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating 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.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"DescribeFleetEventsInput":{
"type":"structure",
"required":["FleetId"],
"members":{
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier for the fleet to get event logs for.</p>"
},
"StartTime":{
"shape":"Timestamp",
"documentation":"<p>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\".</p>"
},
"EndTime":{
"shape":"Timestamp",
"documentation":"<p>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\".</p>"
},
"Limit":{
"shape":"PositiveInteger",
"documentation":"<p>Maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To specify the start of the result set, do not specify a value.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"DescribeFleetEventsOutput":{
"type":"structure",
"members":{
"Events":{
"shape":"EventList",
"documentation":"<p>Collection of objects containing event log entries for the specified fleet.</p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating 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.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"DescribeFleetPortSettingsInput":{
"type":"structure",
"required":["FleetId"],
"members":{
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier for the fleet you want to retrieve port settings for.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"DescribeFleetPortSettingsOutput":{
"type":"structure",
"members":{
"InboundPermissions":{
"shape":"IpPermissionsList",
"documentation":"<p>Object containing port settings for the requested fleet ID.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"DescribeFleetUtilizationInput":{
"type":"structure",
"members":{
"FleetIds":{
"shape":"FleetIdList",
"documentation":"<p>Unique identifier for the fleet(s) you want to retrieve utilization data for. To request utilization data for all fleets, leave this parameter empty.</p>"
},
"Limit":{
"shape":"PositiveInteger",
"documentation":"<p>Maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.</p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To specify the start of the result set, do not specify a value. This parameter is ignored when the request specifies one or a list of fleet IDs.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"DescribeFleetUtilizationOutput":{
"type":"structure",
"members":{
"FleetUtilization":{
"shape":"FleetUtilizationList",
"documentation":"<p>Collection of objects containing utilization information for each requested fleet ID.</p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating 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.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"DescribeGameSessionDetailsInput":{
"type":"structure",
"members":{
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier for a fleet. Specify a fleet to retrieve information on all game sessions active on the fleet.</p>"
},
"GameSessionId":{
"shape":"ArnStringModel",
"documentation":"<p>Unique identifier for the game session to retrieve information on. Game session ID format is as follows: \"arn:aws:gamelift:&lt;region&gt;::gamesession/fleet-&lt;fleet ID&gt;/&lt;ID string&gt;\". The value of &lt;ID string&gt; is either a custom ID string (if one was specified when the game session was created) an auto-generated string. </p>"
},
"AliasId":{
"shape":"AliasId",
"documentation":"<p>Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.</p>"
},
"StatusFilter":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Game session status to filter results on. Possible game session statuses include ACTIVE, <code>TERMINATED</code>, <code>ACTIVATING</code> and <code>TERMINATING</code> (the last two are transitory). </p>"
},
"Limit":{
"shape":"PositiveInteger",
"documentation":"<p>Maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To specify the start of the result set, do not specify a value.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"DescribeGameSessionDetailsOutput":{
"type":"structure",
"members":{
"GameSessionDetails":{
"shape":"GameSessionDetailList",
"documentation":"<p>Collection of objects containing game session properties and the protection policy currently in force for each session matching the request.</p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating 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.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"DescribeGameSessionsInput":{
"type":"structure",
"members":{
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier for a fleet. Specify a fleet to retrieve information on all game sessions active on the fleet.</p>"
},
"GameSessionId":{
"shape":"ArnStringModel",
"documentation":"<p>Unique identifier for the game session to retrieve information on. Game session ID format is as follows: \"arn:aws:gamelift:&lt;region&gt;::gamesession/fleet-&lt;fleet ID&gt;/&lt;ID string&gt;\". The value of &lt;ID string&gt; is either a custom ID string (if one was specified when the game session was created) an auto-generated string. </p>"
},
"AliasId":{
"shape":"AliasId",
"documentation":"<p>Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.</p>"
},
"StatusFilter":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Game session status to filter results on. Possible game session statuses include <code>ACTIVE</code>, <code>TERMINATED</code>, <code>ACTIVATING</code>, and <code>TERMINATING</code> (the last two are transitory). </p>"
},
"Limit":{
"shape":"PositiveInteger",
"documentation":"<p>Maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To specify the start of the result set, do not specify a value.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"DescribeGameSessionsOutput":{
"type":"structure",
"members":{
"GameSessions":{
"shape":"GameSessionList",
"documentation":"<p>Collection of objects containing game session properties for each session matching the request.</p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating 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.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"DescribeInstancesInput":{
"type":"structure",
"required":["FleetId"],
"members":{
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier for a fleet. Specify the fleet to retrieve instance information for.</p>"
},
"InstanceId":{
"shape":"InstanceId",
"documentation":"<p>Unique identifier for an instance. Specify an instance to retrieve information for or leave blank to get information on all instances in the fleet.</p>"
},
"Limit":{
"shape":"PositiveInteger",
"documentation":"<p>Maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To specify the start of the result set, do not specify a value.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"DescribeInstancesOutput":{
"type":"structure",
"members":{
"Instances":{
"shape":"InstanceList",
"documentation":"<p>Collection of objects containing properties for each instance returned.</p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating 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.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"DescribePlayerSessionsInput":{
"type":"structure",
"members":{
"GameSessionId":{
"shape":"ArnStringModel",
"documentation":"<p>Unique identifier for the game session to get player sessions for.Game session ID format is as follows: \"arn:aws:gamelift:&lt;region&gt;::gamesession/fleet-&lt;fleet ID&gt;/&lt;ID string&gt;\". The value of &lt;ID string&gt; is either a custom ID string (if one was specified when the game session was created) an auto-generated string. </p>"
},
"PlayerId":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Unique identifier for a player.</p>"
},
"PlayerSessionId":{
"shape":"PlayerSessionId",
"documentation":"<p>Unique identifier for a player session.</p>"
},
"PlayerSessionStatusFilter":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Player session status to filter results on.</p> <p>Possible player session statuses include the following:</p> <ul> <li> <p> <b>RESERVED</b> The player session request has been received, but the player has not yet connected to the server process and/or been validated. </p> </li> <li> <p> <b>ACTIVE</b> The player has been validated by the server process and is currently connected.</p> </li> <li> <p> <b>COMPLETED</b> The player connection has been dropped.</p> </li> <li> <p> <b>TIMEDOUT</b> A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).</p> </li> </ul>"
},
"Limit":{
"shape":"PositiveInteger",
"documentation":"<p>Maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages. If a player session ID is specified, this parameter is ignored.</p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To specify the start of the result set, do not specify a value. If a player session ID is specified, this parameter is ignored.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"DescribePlayerSessionsOutput":{
"type":"structure",
"members":{
"PlayerSessions":{
"shape":"PlayerSessionList",
"documentation":"<p>Collection of objects containing properties for each player session that matches the request.</p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating 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.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"DescribeRuntimeConfigurationInput":{
"type":"structure",
"required":["FleetId"],
"members":{
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier of the fleet to get the runtime configuration for.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"DescribeRuntimeConfigurationOutput":{
"type":"structure",
"members":{
"RuntimeConfiguration":{
"shape":"RuntimeConfiguration",
"documentation":"<p>Instructions describing how server processes should be launched and maintained on each instance in the fleet.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"DescribeScalingPoliciesInput":{
"type":"structure",
"required":["FleetId"],
"members":{
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier for a fleet. Specify the fleet to retrieve scaling policies for.</p>"
},
"StatusFilter":{
"shape":"ScalingStatusType",
"documentation":"<p>Scaling policy status to filter results on. A scaling policy is only in force when in an <code>ACTIVE</code> status.</p> <ul> <li> <p> <b>ACTIVE</b> The scaling policy is currently in force.</p> </li> <li> <p> <b>UPDATEREQUESTED</b> A request to update the scaling policy has been received.</p> </li> <li> <p> <b>UPDATING</b> A change is being made to the scaling policy.</p> </li> <li> <p> <b>DELETEREQUESTED</b> A request to delete the scaling policy has been received.</p> </li> <li> <p> <b>DELETING</b> The scaling policy is being deleted.</p> </li> <li> <p> <b>DELETED</b> The scaling policy has been deleted.</p> </li> <li> <p> <b>ERROR</b> An error occurred in creating the policy. It should be removed and recreated.</p> </li> </ul>"
},
"Limit":{
"shape":"PositiveInteger",
"documentation":"<p>Maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To specify the start of the result set, do not specify a value.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"DescribeScalingPoliciesOutput":{
"type":"structure",
"members":{
"ScalingPolicies":{
"shape":"ScalingPolicyList",
"documentation":"<p>Collection of objects containing the scaling policies matching the request.</p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating 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.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"Double":{"type":"double"},
"EC2InstanceCounts":{
"type":"structure",
"members":{
"DESIRED":{
"shape":"WholeNumber",
"documentation":"<p>Ideal number of active instances in the fleet.</p>"
},
"MINIMUM":{
"shape":"WholeNumber",
"documentation":"<p>Minimum value allowed for the fleet's instance count.</p>"
},
"MAXIMUM":{
"shape":"WholeNumber",
"documentation":"<p>Maximum value allowed for the fleet's instance count.</p>"
},
"PENDING":{
"shape":"WholeNumber",
"documentation":"<p>Number of instances in the fleet that are starting but not yet active.</p>"
},
"ACTIVE":{
"shape":"WholeNumber",
"documentation":"<p>Actual number of active instances in the fleet.</p>"
},
"IDLE":{
"shape":"WholeNumber",
"documentation":"<p>Number of active instances in the fleet that are not currently hosting a game session.</p>"
},
"TERMINATING":{
"shape":"WholeNumber",
"documentation":"<p>Number of instances in the fleet that are no longer active but haven't yet been terminated.</p>"
}
},
"documentation":"<p>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 <a>UpdateFleetCapacity</a> request, or if access to resources is temporarily affected.</p>"
},
"EC2InstanceLimit":{
"type":"structure",
"members":{
"EC2InstanceType":{
"shape":"EC2InstanceType",
"documentation":"<p>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. GameLift supports the following EC2 instance types. See <a href=\"http://aws.amazon.com/ec2/instance-types/\">Amazon EC2 Instance Types</a> for detailed descriptions.</p>"
},
"CurrentInstances":{
"shape":"WholeNumber",
"documentation":"<p>Number of instances of the specified type that are currently in use by this AWS account.</p>"
},
"InstanceLimit":{
"shape":"WholeNumber",
"documentation":"<p>Number of instances allowed.</p>"
}
},
"documentation":"<p>Maximum number of instances allowed based on the Amazon Elastic Compute Cloud (Amazon EC2) instance type. Instance limits can be retrieved by calling <a>DescribeEC2InstanceLimits</a>.</p>"
},
"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":"<p>Unique identifier for a fleet event.</p>"
},
"ResourceId":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Unique identifier for the resource, such as a fleet ID.</p>"
},
"EventCode":{
"shape":"EventCode",
"documentation":"<p>Type of event being logged.</p>"
},
"Message":{
"shape":"NonEmptyString",
"documentation":"<p>Additional information related to the event.</p>"
},
"EventTime":{
"shape":"Timestamp",
"documentation":"<p>Time stamp indicating when this event occurred. Format is a number expressed in Unix time as milliseconds (ex: \"1469498468.057\".</p>"
}
},
"documentation":"<p>Log entry describing an event involving an Amazon GameLift resource (such as a fleet).</p>"
},
"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"
]
},
"EventList":{
"type":"list",
"member":{"shape":"Event"}
},
"FleetAttributes":{
"type":"structure",
"members":{
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier for a fleet.</p>"
},
"Description":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Human-readable description of the fleet.</p>"
},
"Name":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Descriptive label associated with a fleet. Fleet names do not need to be unique.</p>"
},
"CreationTime":{
"shape":"Timestamp",
"documentation":"<p>Time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (ex: \"1469498468.057\".</p>"
},
"TerminationTime":{
"shape":"Timestamp",
"documentation":"<p>Time stamp indicating when this data object was terminated. Format is a number expressed in Unix time as milliseconds (ex: \"1469498468.057\".</p>"
},
"Status":{
"shape":"FleetStatus",
"documentation":"<p>Current status of the fleet.</p> <p>Possible fleet statuses include the following:</p> <ul> <li> <p> <b>NEW</b> A new fleet has been defined and desired instances is set to 1. </p> </li> <li> <p> <b>DOWNLOADING/VALIDATING/BUILDING/ACTIVATING</b> GameLift is setting up the new fleet, creating new instances with the game build and starting server processes.</p> </li> <li> <p> <b>ACTIVE</b> Hosts can now accept game sessions.</p> </li> <li> <p> <b>ERROR</b> An error occurred when downloading, validating, building, or activating the fleet.</p> </li> <li> <p> <b>DELETING</b> Hosts are responding to a delete fleet request.</p> </li> <li> <p> <b>TERMINATED</b> The fleet no longer exists.</p> </li> </ul>"
},
"BuildId":{
"shape":"BuildId",
"documentation":"<p>Unique identifier for a build.</p>"
},
"ServerLaunchPath":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Path to a game server executable in the fleet's build, specified for fleets created prior to 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 <code> <a>RuntimeConfiguration</a> </code>.</p>"
},
"ServerLaunchParameters":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Game server launch parameters specified for fleets created prior to 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 <code> <a>RuntimeConfiguration</a> </code>.</p>"
},
"LogPaths":{
"shape":"StringList",
"documentation":"<p>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 <a href=\"http://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-sdk-server-api.html#gamelift-sdk-server-api-server-code\">Amazon GameLift Developer Guide</a>. If no default log path for a fleet is specified, GameLift will automatically upload logs stored on each instance at <code>C:\\game\\logs</code>. Use the GameLift console to access stored logs. </p>"
},
"NewGameSessionProtectionPolicy":{
"shape":"ProtectionPolicy",
"documentation":"<p>Type of game session protection to set for all new instances started in the fleet.</p> <ul> <li> <p> <b>NoProtection</b> The game session can be terminated during a scale-down event.</p> </li> <li> <p> <b>FullProtection</b> If the game session is in an <code>ACTIVE</code> status, it cannot be terminated during a scale-down event.</p> </li> </ul>"
},
"OperatingSystem":{
"shape":"OperatingSystem",
"documentation":"<p>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.</p>"
},
"ResourceCreationLimitPolicy":{
"shape":"ResourceCreationLimitPolicy",
"documentation":"<p>Fleet policy to limit the number of game sessions an individual player can create over a span of time.</p>"
}
},
"documentation":"<p>General properties describing a fleet.</p>"
},
"FleetAttributesList":{
"type":"list",
"member":{"shape":"FleetAttributes"}
},
"FleetCapacity":{
"type":"structure",
"members":{
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier for a fleet.</p>"
},
"InstanceType":{
"shape":"EC2InstanceType",
"documentation":"<p>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. GameLift supports the following EC2 instance types. See <a href=\"http://aws.amazon.com/ec2/instance-types/\">Amazon EC2 Instance Types</a> for detailed descriptions.</p>"
},
"InstanceCounts":{
"shape":"EC2InstanceCounts",
"documentation":"<p>Current status of fleet capacity.</p>"
}
},
"documentation":"<p>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.</p>"
},
"FleetCapacityExceededException":{
"type":"structure",
"members":{
"Message":{"shape":"NonEmptyString"}
},
"documentation":"<p>The specified fleet has no available instances to fulfill a <code>CreateGameSession</code> request. Clients can retry such requests immediately or after a waiting period.</p>",
"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":"<p>Unique identifier for a fleet.</p>"
},
"ActiveServerProcessCount":{
"shape":"WholeNumber",
"documentation":"<p>Number of server processes in an <code>ACTIVE</code> status currently running across all instances in the fleet</p>"
},
"ActiveGameSessionCount":{
"shape":"WholeNumber",
"documentation":"<p>Number of active game sessions currently being hosted on all instances in the fleet.</p>"
},
"CurrentPlayerSessionCount":{
"shape":"WholeNumber",
"documentation":"<p>Number of active player sessions currently being hosted on all instances in the fleet.</p>"
},
"MaximumPlayerSessionCount":{
"shape":"WholeNumber",
"documentation":"<p>Maximum players allowed across all game sessions currently being hosted on all instances in the fleet.</p>"
}
},
"documentation":"<p>Current status of fleet utilization, including the number of game and player sessions being hosted.</p>"
},
"FleetUtilizationList":{
"type":"list",
"member":{"shape":"FleetUtilization"}
},
"FreeText":{"type":"string"},
"GameProperty":{
"type":"structure",
"required":[
"Key",
"Value"
],
"members":{
"Key":{
"shape":"GamePropertyKey",
"documentation":"<p>TBD</p>"
},
"Value":{
"shape":"GamePropertyValue",
"documentation":"<p>TBD</p>"
}
},
"documentation":"<p>Set of key-value pairs containing information a server process requires to set up a game session. This object allows you to pass in any set of data needed for your game. For more information, see the <a href=\"http://docs.aws.amazon.com/gamelift/latest/developerguide/\">Amazon GameLift Developer Guide</a>.</p>"
},
"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":"<p>Unique identifier for a game session. Game session ID format is as follows: \"arn:aws:gamelift:&lt;region&gt;::gamesession/fleet-&lt;fleet ID&gt;/&lt;ID string&gt;\". The value of &lt;ID string&gt; is either a custom ID string (if one was specified when the game session was created) an auto-generated string. </p>"
},
"Name":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Descriptive label associated with a game session. Session names do not need to be unique.</p>"
},
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier for a fleet.</p>"
},
"CreationTime":{
"shape":"Timestamp",
"documentation":"<p>Time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (ex: \"1469498468.057\".</p>"
},
"TerminationTime":{
"shape":"Timestamp",
"documentation":"<p>Time stamp indicating when this data object was terminated. Format is a number expressed in Unix time as milliseconds (ex: \"1469498468.057\".</p>"
},
"CurrentPlayerSessionCount":{
"shape":"WholeNumber",
"documentation":"<p>Number of players currently in the game session.</p>"
},
"MaximumPlayerSessionCount":{
"shape":"WholeNumber",
"documentation":"<p>Maximum number of players allowed in the game session.</p>"
},
"Status":{
"shape":"GameSessionStatus",
"documentation":"<p>Current status of the game session. A game session must be in an <code>ACTIVE</code> status to have player sessions.</p>"
},
"GameProperties":{
"shape":"GamePropertyList",
"documentation":"<p>Set of custom properties for the game session.</p>"
},
"IpAddress":{
"shape":"IpAddress",
"documentation":"<p>IP address of the game session. To connect to a GameLift server process, an app needs both the IP address and port number.</p>"
},
"Port":{
"shape":"PortNumber",
"documentation":"<p>Port number for the game session. To connect to a GameLift server process, an app needs both the IP address and port number.</p>"
},
"PlayerSessionCreationPolicy":{
"shape":"PlayerSessionCreationPolicy",
"documentation":"<p>Indicates whether or not the game session is accepting new players.</p>"
},
"CreatorId":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Player ID of the person or entity that created 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.</p>"
}
},
"documentation":"<p>Properties describing a game session.</p>"
},
"GameSessionDetail":{
"type":"structure",
"members":{
"GameSession":{"shape":"GameSession"},
"ProtectionPolicy":{
"shape":"ProtectionPolicy",
"documentation":"<p>Current status of protection for the game session.</p> <ul> <li> <p> <b>NoProtection</b> The game session can be terminated during a scale-down event.</p> </li> <li> <p> <b>FullProtection</b> If the game session is in an <code>ACTIVE</code> status, it cannot be terminated during a scale-down event.</p> </li> </ul>"
}
},
"documentation":"<p>A game session's properties and the protection policy currently in force.</p>"
},
"GameSessionDetailList":{
"type":"list",
"member":{"shape":"GameSessionDetail"}
},
"GameSessionFullException":{
"type":"structure",
"members":{
"Message":{"shape":"NonEmptyString"}
},
"documentation":"<p>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.</p>",
"exception":true
},
"GameSessionList":{
"type":"list",
"member":{"shape":"GameSession"}
},
"GameSessionStatus":{
"type":"string",
"enum":[
"ACTIVE",
"ACTIVATING",
"TERMINATED",
"TERMINATING",
"ERROR"
]
},
"GetGameSessionLogUrlInput":{
"type":"structure",
"required":["GameSessionId"],
"members":{
"GameSessionId":{
"shape":"ArnStringModel",
"documentation":"<p>Unique identifier for the game session to get logs for. Game session ID format is as follows: \"arn:aws:gamelift:&lt;region&gt;::gamesession/fleet-&lt;fleet ID&gt;/&lt;ID string&gt;\". The value of &lt;ID string&gt; is either a custom ID string (if one was specified when the game session was created) an auto-generated string. </p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"GetGameSessionLogUrlOutput":{
"type":"structure",
"members":{
"PreSignedUrl":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Location of the requested game session logs, available for download.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"IdStringModel":{
"type":"string",
"max":48,
"min":1,
"pattern":"[a-zA-Z0-9-]+"
},
"IdempotentParameterMismatchException":{
"type":"structure",
"members":{
"Message":{"shape":"NonEmptyString"}
},
"documentation":"<p>A game session with this custom ID string already exists in this fleet. Resolve this conflict before retrying this request.</p>",
"exception":true
},
"Instance":{
"type":"structure",
"members":{
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier for the fleet that the instance belongs to.</p>"
},
"InstanceId":{
"shape":"InstanceId",
"documentation":"<p>Unique identifier for the instance.</p>"
},
"IpAddress":{
"shape":"IpAddress",
"documentation":"<p>IP address assigned to the instance.</p>"
},
"OperatingSystem":{
"shape":"OperatingSystem",
"documentation":"<p>Operating system being used on this instance. </p>"
},
"Type":{
"shape":"EC2InstanceType",
"documentation":"<p>EC2 instance type that defines the computing resources of this instance. </p>"
},
"Status":{
"shape":"InstanceStatus",
"documentation":"<p>Current status of the instance. Possible statuses include the following:</p> <ul> <li> <p> <b>PENDING</b> The instance is in the process of being created and launching server processes as defined in the fleet's runtime configuration. </p> </li> <li> <p> <b>ACTIVE</b> The instance has been successfully created and at least one server process has successfully launched and reported back to GameLift that it is ready to host a game session. The instance is now considered ready to host game sessions. </p> </li> <li> <p> <b>TERMINATING</b> The instance is in the process of shutting down. This may happen to reduce capacity during a scaling down event or to recycle resources in the event of a problem.</p> </li> </ul>"
},
"CreationTime":{
"shape":"Timestamp",
"documentation":"<p>Time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (ex: \"1469498468.057\").</p>"
}
},
"documentation":"<p>Properties describing an instance of a virtual computing resource that is hosting game servers. Fleets contain zero or more instances. </p>"
},
"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":"<p>The service encountered an unrecoverable internal failure while processing the request. Clients can retry such requests immediately or after a waiting period.</p>",
"exception":true,
"fault":true
},
"InvalidFleetStatusException":{
"type":"structure",
"members":{
"Message":{"shape":"NonEmptyString"}
},
"documentation":"<p>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.</p>",
"exception":true
},
"InvalidGameSessionStatusException":{
"type":"structure",
"members":{
"Message":{"shape":"NonEmptyString"}
},
"documentation":"<p>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.</p>",
"exception":true
},
"InvalidRequestException":{
"type":"structure",
"members":{
"Message":{"shape":"NonEmptyString"}
},
"documentation":"<p>One or more parameter values in the request are invalid. Correct the invalid parameter values before retrying.</p>",
"exception":true
},
"IpAddress":{"type":"string"},
"IpPermission":{
"type":"structure",
"required":[
"FromPort",
"ToPort",
"IpRange",
"Protocol"
],
"members":{
"FromPort":{
"shape":"PortNumber",
"documentation":"<p>Starting value for a range of allowed port numbers.</p>"
},
"ToPort":{
"shape":"PortNumber",
"documentation":"<p>Ending value for a range of allowed port numbers. Port numbers are end-inclusive. This value must be higher than <code>FromPort</code>.</p>"
},
"IpRange":{
"shape":"NonBlankString",
"documentation":"<p>Range of allowed IP addresses. This value must be expressed in <a href=\"https://tools.ietf.org/id/cidr\">CIDR notation</a>. Example: \"<code>000.000.000.000/[subnet mask]</code>\" or optionally the shortened version \"<code>0.0.0.0/[subnet mask]</code>\".</p>"
},
"Protocol":{
"shape":"IpProtocol",
"documentation":"<p>Network communication protocol used by the fleet.</p>"
}
},
"documentation":"<p>A range of IP addresses and port settings that allow inbound traffic to connect to server processes on 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 <a>GameSession</a> object. </p>"
},
"IpPermissionsList":{
"type":"list",
"member":{"shape":"IpPermission"},
"max":50
},
"IpProtocol":{
"type":"string",
"enum":[
"TCP",
"UDP"
]
},
"LimitExceededException":{
"type":"structure",
"members":{
"Message":{"shape":"NonEmptyString"}
},
"documentation":"<p>The requested operation would cause the resource to exceed the allowed service limit. Resolve the issue before retrying.</p>",
"exception":true
},
"ListAliasesInput":{
"type":"structure",
"members":{
"RoutingStrategyType":{
"shape":"RoutingStrategyType",
"documentation":"<p>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.</p> <p>Possible routing types include the following:</p> <ul> <li> <p> <b>SIMPLE</b> The alias resolves to one specific fleet. Use this type when routing to active fleets.</p> </li> <li> <p> <b>TERMINAL</b> The alias does not resolve to a fleet but instead can be used to display a message to the user. A terminal alias throws a TerminalRoutingStrategyException with the <a>RoutingStrategy</a> message embedded.</p> </li> </ul>"
},
"Name":{
"shape":"NonEmptyString",
"documentation":"<p>Descriptive label associated with an alias. Alias names do not need to be unique.</p>"
},
"Limit":{
"shape":"PositiveInteger",
"documentation":"<p>Maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>"
},
"NextToken":{
"shape":"NonEmptyString",
"documentation":"<p>Token indicating the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To specify the start of the result set, do not specify a value.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"ListAliasesOutput":{
"type":"structure",
"members":{
"Aliases":{
"shape":"AliasList",
"documentation":"<p>Collection of alias records that match the list request.</p>"
},
"NextToken":{
"shape":"NonEmptyString",
"documentation":"<p>Token indicating 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.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"ListBuildsInput":{
"type":"structure",
"members":{
"Status":{
"shape":"BuildStatus",
"documentation":"<p>Build status to filter results by. To retrieve all builds, leave this parameter empty.</p> <p>Possible build statuses include the following:</p> <ul> <li> <p> <b>INITIALIZED</b> A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this status. When a build is successfully created, the build status is set to this value. </p> </li> <li> <p> <b>READY</b> The game build has been successfully uploaded. You can now create new fleets for this build.</p> </li> <li> <p> <b>FAILED</b> The game build upload failed. You cannot create new fleets for this build. </p> </li> </ul>"
},
"Limit":{
"shape":"PositiveInteger",
"documentation":"<p>Maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>"
},
"NextToken":{
"shape":"NonEmptyString",
"documentation":"<p>Token indicating the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To specify the start of the result set, do not specify a value.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"ListBuildsOutput":{
"type":"structure",
"members":{
"Builds":{
"shape":"BuildList",
"documentation":"<p>Collection of build records that match the request.</p>"
},
"NextToken":{
"shape":"NonEmptyString",
"documentation":"<p>Token indicating 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.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"ListFleetsInput":{
"type":"structure",
"members":{
"BuildId":{
"shape":"BuildId",
"documentation":"<p>Unique identifier of the build to return fleets for. Use this parameter to return only fleets using the specified build. To retrieve all fleets, leave this parameter empty.</p>"
},
"Limit":{
"shape":"PositiveInteger",
"documentation":"<p>Maximum number of results to return. Use this parameter with <code>NextToken</code> to get results as a set of sequential pages.</p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To specify the start of the result set, do not specify a value.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"ListFleetsOutput":{
"type":"structure",
"members":{
"FleetIds":{
"shape":"FleetIdList",
"documentation":"<p>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 <a>DescribeFleetAttributes</a>, <a>DescribeFleetCapacity</a>, and <a>DescribeFleetUtilization</a>.</p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating 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.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"MetricName":{
"type":"string",
"enum":[
"ActivatingGameSessions",
"ActiveGameSessions",
"ActiveInstances",
"AvailablePlayerSessions",
"CurrentPlayerSessions",
"IdleInstances"
]
},
"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":"<p>A service resource associated with the request could not be found. Clients should not retry such requests.</p>",
"exception":true
},
"OperatingSystem":{
"type":"string",
"enum":[
"WINDOWS_2012",
"AMAZON_LINUX"
]
},
"PlayerIdList":{
"type":"list",
"member":{"shape":"NonZeroAndMaxString"},
"max":25,
"min":1
},
"PlayerSession":{
"type":"structure",
"members":{
"PlayerSessionId":{
"shape":"PlayerSessionId",
"documentation":"<p>Unique identifier for a player session.</p>"
},
"PlayerId":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Unique identifier for a player.</p>"
},
"GameSessionId":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Unique identifier for the game session that the player session is connected to.</p>"
},
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier for a fleet.</p>"
},
"CreationTime":{
"shape":"Timestamp",
"documentation":"<p>Time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (ex: \"1469498468.057\".</p>"
},
"TerminationTime":{
"shape":"Timestamp",
"documentation":"<p>Time stamp indicating when this data object was terminated. Format is a number expressed in Unix time as milliseconds (ex: \"1469498468.057\".</p>"
},
"Status":{
"shape":"PlayerSessionStatus",
"documentation":"<p>Current status of the player session.</p> <p>Possible player session statuses include the following:</p> <ul> <li> <p> <b>RESERVED</b> The player session request has been received, but the player has not yet connected to the server process and/or been validated. </p> </li> <li> <p> <b>ACTIVE</b> The player has been validated by the server process and is currently connected.</p> </li> <li> <p> <b>COMPLETED</b> The player connection has been dropped.</p> </li> <li> <p> <b>TIMEDOUT</b> A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).</p> </li> </ul>"
},
"IpAddress":{
"shape":"IpAddress",
"documentation":"<p>Game session IP address. All player sessions reference the game session location.</p>"
},
"Port":{
"shape":"PortNumber",
"documentation":"<p>Port number for the game session. To connect to a GameLift server process, an app needs both the IP address and port number.</p>"
}
},
"documentation":"<p>Properties describing a player session.</p>"
},
"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":"<p>Descriptive label 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.</p>"
},
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identity for the fleet to scale with this policy.</p>"
},
"ScalingAdjustment":{
"shape":"Integer",
"documentation":"<p>Amount of adjustment to make, based on the scaling adjustment type.</p>"
},
"ScalingAdjustmentType":{
"shape":"ScalingAdjustmentType",
"documentation":"<p>Type of adjustment to make to a fleet's instance count (see <a>FleetCapacity</a>):</p> <ul> <li> <p> <b>ChangeInCapacity</b> add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.</p> </li> <li> <p> <b>ExactCapacity</b> set the instance count to the scaling adjustment value.</p> </li> <li> <p> <b>PercentChangeInCapacity</b> increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down; for example, a value of \"-10\" scales the fleet down by 10%.</p> </li> </ul>"
},
"Threshold":{
"shape":"Double",
"documentation":"<p>Metric value used to trigger a scaling event.</p>"
},
"ComparisonOperator":{
"shape":"ComparisonOperatorType",
"documentation":"<p>Comparison operator to use when measuring the metric against the threshold value.</p>"
},
"EvaluationPeriods":{
"shape":"PositiveInteger",
"documentation":"<p>Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.</p>"
},
"MetricName":{
"shape":"MetricName",
"documentation":"<p>Name of the Amazon GameLift-defined metric that is used to trigger an adjustment.</p> <ul> <li> <p> <b>ActivatingGameSessions</b> number of game sessions in the process of being created (game session status = <code>ACTIVATING</code>).</p> </li> <li> <p> <b>ActiveGameSessions</b> number of game sessions currently running (game session status = <code>ACTIVE</code>).</p> </li> <li> <p> <b>CurrentPlayerSessions</b> number of active or reserved player sessions (player session status = <code>ACTIVE</code> or <code>RESERVED</code>). </p> </li> <li> <p> <b>AvailablePlayerSessions</b> number of player session slots currently available in active game sessions across the fleet, calculated by subtracting a game session's current player session count from its maximum player session count. This number includes game sessions that are not currently accepting players (game session <code>PlayerSessionCreationPolicy</code> = <code>DENY_ALL</code>).</p> </li> <li> <p> <b>ActiveInstances</b> number of instances currently running a game session.</p> </li> <li> <p> <b>IdleInstances</b> number of instances not currently running a game session.</p> </li> </ul>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"PutScalingPolicyOutput":{
"type":"structure",
"members":{
"Name":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Descriptive label associated with a scaling policy. Policy names do not need to be unique.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"RequestUploadCredentialsInput":{
"type":"structure",
"required":["BuildId"],
"members":{
"BuildId":{
"shape":"BuildId",
"documentation":"<p>Unique identifier for the build you want to get credentials for.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"RequestUploadCredentialsOutput":{
"type":"structure",
"members":{
"UploadCredentials":{
"shape":"AwsCredentials",
"documentation":"<p>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.</p>"
},
"StorageLocation":{
"shape":"S3Location",
"documentation":"<p>Amazon S3 path and key, identifying where the game build files are stored.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"ResolveAliasInput":{
"type":"structure",
"required":["AliasId"],
"members":{
"AliasId":{
"shape":"AliasId",
"documentation":"<p>Unique identifier for the alias you want to resolve.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"ResolveAliasOutput":{
"type":"structure",
"members":{
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Fleet ID associated with the requested alias.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"ResourceCreationLimitPolicy":{
"type":"structure",
"members":{
"NewGameSessionsPerCreator":{
"shape":"WholeNumber",
"documentation":"<p>Maximum number of game sessions an individual can create during the policy period. </p>"
},
"PolicyPeriodInMinutes":{
"shape":"WholeNumber",
"documentation":"<p>Time span used to evaluate the resource creation limit policy. </p>"
}
},
"documentation":"<p>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\".</p> <p>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 <code>CreateGameSession</code> request, GameLift checks that the player (identified by <code>CreatorId</code>) has created fewer than 10 game sessions in the past 60 minutes.</p>"
},
"RoutingStrategy":{
"type":"structure",
"members":{
"Type":{
"shape":"RoutingStrategyType",
"documentation":"<p>Type of routing strategy.</p> <p>Possible routing types include the following:</p> <ul> <li> <p> <b>SIMPLE</b> The alias resolves to one specific fleet. Use this type when routing to active fleets.</p> </li> <li> <p> <b>TERMINAL</b> The alias does not resolve to a fleet but instead can be used to display a message to the user. A terminal alias throws a TerminalRoutingStrategyException with the <a>RoutingStrategy</a> message embedded.</p> </li> </ul>"
},
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier for a fleet.</p>"
},
"Message":{
"shape":"FreeText",
"documentation":"<p>Message text to be used with a terminal routing strategy.</p>"
}
},
"documentation":"<p>Routing configuration for a fleet alias.</p>"
},
"RoutingStrategyType":{
"type":"string",
"enum":[
"SIMPLE",
"TERMINAL"
]
},
"RuntimeConfiguration":{
"type":"structure",
"members":{
"ServerProcesses":{
"shape":"ServerProcessList",
"documentation":"<p>Collection of server process configurations describing what server processes to run on each instance in a fleet</p>"
}
},
"documentation":"<p>Collection of server process configurations that describe what processes should be run on each instance in a fleet. An instance can launch and maintain multiple server processes based on the runtime configuration; it regularly checks for an updated runtime configuration and starts new server processes to match the latest version.</p> <p>The key purpose of a runtime configuration with multiple server process configurations is to be able to run more than one kind of game server in a single fleet. You can include configurations for more than one server executable in order to run two or more different programs to run on the same instance. This option might be useful, for example, to run more than one version of your game server on the same fleet. Another option is to specify configurations for the same server executable but with different launch parameters.</p> <p>A GameLift instance is limited to 50 processes running simultaneously. To calculate the total number of processes specified in a runtime configuration, add the values of the <code>ConcurrentExecutions</code> parameter for each <code> <a>ServerProcess</a> </code> object in the runtime configuration.</p>"
},
"S3Location":{
"type":"structure",
"members":{
"Bucket":{
"shape":"NonEmptyString",
"documentation":"<p>Amazon S3 bucket identifier.</p>"
},
"Key":{
"shape":"NonEmptyString",
"documentation":"<p>Amazon S3 bucket key.</p>"
},
"RoleArn":{
"shape":"NonEmptyString",
"documentation":"<p>Amazon resource number for the cross-account access role that allows GameLift access to the S3 bucket.</p>"
}
},
"documentation":"<p>Location in Amazon Simple Storage Service (Amazon S3) where a build's files are stored. This location is assigned in response to a <a>CreateBuild</a> call, and is always in the same region as the service used to create the build. For more details see the <a href=\"http://aws.amazon.com/documentation/s3/\">Amazon S3 documentation</a>.</p>"
},
"ScalingAdjustmentType":{
"type":"string",
"enum":[
"ChangeInCapacity",
"ExactCapacity",
"PercentChangeInCapacity"
]
},
"ScalingPolicy":{
"type":"structure",
"members":{
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identity for the fleet associated with this scaling policy.</p>"
},
"Name":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Descriptive label associated with a scaling policy. Policy names do not need to be unique.</p>"
},
"Status":{
"shape":"ScalingStatusType",
"documentation":"<p>Current status of the scaling policy. The scaling policy is only in force when in an <code>ACTIVE</code> status.</p> <ul> <li> <p> <b>ACTIVE</b> The scaling policy is currently in force.</p> </li> <li> <p> <b>UPDATE_REQUESTED</b> A request to update the scaling policy has been received.</p> </li> <li> <p> <b>UPDATING</b> A change is being made to the scaling policy.</p> </li> <li> <p> <b>DELETE_REQUESTED</b> A request to delete the scaling policy has been received.</p> </li> <li> <p> <b>DELETING</b> The scaling policy is being deleted.</p> </li> <li> <p> <b>DELETED</b> The scaling policy has been deleted.</p> </li> <li> <p> <b>ERROR</b> An error occurred in creating the policy. It should be removed and recreated.</p> </li> </ul>"
},
"ScalingAdjustment":{
"shape":"Integer",
"documentation":"<p>Amount of adjustment to make, based on the scaling adjustment type.</p>"
},
"ScalingAdjustmentType":{
"shape":"ScalingAdjustmentType",
"documentation":"<p>Type of adjustment to make to a fleet's instance count (see <a>FleetCapacity</a>):</p> <ul> <li> <p> <b>ChangeInCapacity</b> add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.</p> </li> <li> <p> <b>ExactCapacity</b> set the instance count to the scaling adjustment value.</p> </li> <li> <p> <b>PercentChangeInCapacity</b> increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down.</p> </li> </ul>"
},
"ComparisonOperator":{
"shape":"ComparisonOperatorType",
"documentation":"<p>Comparison operator to use when measuring a metric against the threshold value.</p>"
},
"Threshold":{
"shape":"Double",
"documentation":"<p>Metric value used to trigger a scaling event.</p>"
},
"EvaluationPeriods":{
"shape":"PositiveInteger",
"documentation":"<p>Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.</p>"
},
"MetricName":{
"shape":"MetricName",
"documentation":"<p>Name of the GameLift-defined metric that is used to trigger an adjustment.</p> <ul> <li> <p> <b>ActivatingGameSessions</b> number of game sessions in the process of being created (game session status = <code>ACTIVATING</code>).</p> </li> <li> <p> <b>ActiveGameSessions</b> number of game sessions currently running (game session status = <code>ACTIVE</code>).</p> </li> <li> <p> <b>CurrentPlayerSessions</b> number of active or reserved player sessions (player session status = <code>ACTIVE</code> or <code>RESERVED</code>). </p> </li> <li> <p> <b>AvailablePlayerSessions</b> number of player session slots currently available in active game sessions across the fleet, calculated by subtracting a game session's current player session count from its maximum player session count. This number does include game sessions that are not currently accepting players (game session <code>PlayerSessionCreationPolicy</code> = <code>DENY_ALL</code>).</p> </li> <li> <p> <b>ActiveInstances</b> number of instances currently running a game session.</p> </li> <li> <p> <b>IdleInstances</b> number of instances not currently running a game session.</p> </li> </ul>"
}
},
"documentation":"<p>Rule that controls how a fleet is scaled. Scaling policies are uniquely identified by the combination of name and fleet ID.</p>"
},
"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":"<p>Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.</p>"
},
"AliasId":{
"shape":"AliasId",
"documentation":"<p>Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.</p>"
},
"FilterExpression":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>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.</p> <p>A filter expression can contain one or multiple conditions. Each condition consists of the following:</p> <ul> <li> <p> <b>Operand</b> -- Name of a game session attribute. Valid values are <code>gameSessionName</code>, <code>gameSessionId</code>, <code>creationTimeMillis</code>, <code>playerSessionCount</code>, <code>maximumSessions</code>, <code>hasAvailablePlayerSessions</code>.</p> </li> <li> <p> <b>Comparator</b> -- Valid comparators are: <code>=</code>, <code>&lt;&gt;</code>, <code>&lt;</code>, <code>&gt;</code>, <code>&lt;=</code>, <code>&gt;=</code>. </p> </li> <li> <p> <b>Value</b> -- Value to be searched for. Values can be numbers, boolean values (true/false) or strings. String values are case sensitive, enclosed in single quotes. Special characters must be escaped. Boolean and string values can only be used with the comparators <code>=</code> and <code>&lt;&gt;</code>. For example, the following filter expression searches on <code>gameSessionName</code>: \"<code>FilterExpression\": \"gameSessionName = 'Matt\\\\'s Awesome Game 1'\"</code>. </p> </li> </ul> <p>To chain multiple conditions in a single expression, use the logical keywords <code>AND</code>, <code>OR</code>, and <code>NOT</code> and parentheses as needed. For example: <code>x AND y AND NOT z</code>, <code>NOT (x OR y)</code>.</p> <p>Session search evaluates conditions from left to right using the following precedence rules:</p> <ol> <li> <p> <code>=</code>, <code>&lt;&gt;</code>, <code>&lt;</code>, <code>&gt;</code>, <code>&lt;=</code>, <code>&gt;=</code> </p> </li> <li> <p>Parentheses</p> </li> <li> <p>NOT</p> </li> <li> <p>AND</p> </li> <li> <p>OR</p> </li> </ol> <p>For example, this filter expression retrieves game sessions hosting at least ten players that have an open player slot: <code>\"maximumSessions&gt;=10 AND hasAvailablePlayerSessions=true\"</code>. </p>"
},
"SortExpression":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>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:</p> <ul> <li> <p> <b>Operand</b> -- Name of a game session attribute. Valid values are <code>gameSessionName</code>, <code>gameSessionId</code>, <code>creationTimeMillis</code>, <code>playerSessionCount</code>, <code>maximumSessions</code>, <code>hasAvailablePlayerSessions</code>.</p> </li> <li> <p> <b>Order</b> -- Valid sort orders are <code>ASC</code> (ascending) and <code>DESC</code> (descending).</p> </li> </ul> <p>For example, this sort expression returns the oldest active sessions first: <code>\"SortExpression\": \"creationTimeMillis ASC\"</code>. Results with a null value for the sort operand are returned at the end of the list.</p>"
},
"Limit":{
"shape":"PositiveInteger",
"documentation":"<p>Maximum number of results to return. Use this parameter with <code>NextToken</code> 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. </p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To specify the start of the result set, do not specify a value.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"SearchGameSessionsOutput":{
"type":"structure",
"members":{
"GameSessions":{
"shape":"GameSessionList",
"documentation":"<p>Collection of objects containing game session properties for each session matching the request.</p>"
},
"NextToken":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Token indicating 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.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"ServerProcess":{
"type":"structure",
"required":[
"LaunchPath",
"ConcurrentExecutions"
],
"members":{
"LaunchPath":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Location in the game build of the server executable. All game builds are installed on instances at the root <code>C:\\game\\...</code>, so an executable file located at <code>MyGame\\latest\\server.exe</code> has a launch path of \"<code>C:\\game\\MyGame\\latest\\server.exe</code>\". </p>"
},
"Parameters":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Optional list of parameters to pass to the server executable on launch.</p>"
},
"ConcurrentExecutions":{
"shape":"PositiveInteger",
"documentation":"<p>Number of server processes using this configuration to run concurrently on an instance.</p>"
}
},
"documentation":"<p>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 <code> <a>RuntimeConfiguration</a> </code>.</p>"
},
"ServerProcessList":{
"type":"list",
"member":{"shape":"ServerProcess"},
"max":50,
"min":1
},
"StringList":{
"type":"list",
"member":{"shape":"NonZeroAndMaxString"}
},
"TerminalRoutingStrategyException":{
"type":"structure",
"members":{
"Message":{"shape":"NonEmptyString"}
},
"documentation":"<p>The service is unable to resolve the routing for a particular alias because it has a terminal <a>RoutingStrategy</a> 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. </p>",
"exception":true
},
"Timestamp":{"type":"timestamp"},
"UnauthorizedException":{
"type":"structure",
"members":{
"Message":{"shape":"NonEmptyString"}
},
"documentation":"<p>The client failed authentication. Clients should not retry such requests.</p>",
"exception":true
},
"UpdateAliasInput":{
"type":"structure",
"required":["AliasId"],
"members":{
"AliasId":{
"shape":"AliasId",
"documentation":"<p>Unique identifier for a fleet alias. Specify the alias you want to update.</p>"
},
"Name":{
"shape":"NonBlankAndLengthConstraintString",
"documentation":"<p>Descriptive label associated with an alias. Alias names do not need to be unique.</p>"
},
"Description":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Human-readable description of an alias.</p>"
},
"RoutingStrategy":{
"shape":"RoutingStrategy",
"documentation":"<p>Object specifying the fleet and routing type to use for the alias.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"UpdateAliasOutput":{
"type":"structure",
"members":{
"Alias":{
"shape":"Alias",
"documentation":"<p>Object containing the updated alias configuration.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"UpdateBuildInput":{
"type":"structure",
"required":["BuildId"],
"members":{
"BuildId":{
"shape":"BuildId",
"documentation":"<p>Unique identifier of the build you want to update.</p>"
},
"Name":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Descriptive label associated with a build. Build names do not need to be unique.</p>"
},
"Version":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Version associated with this build. Version strings do not need to be unique to a build.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"UpdateBuildOutput":{
"type":"structure",
"members":{
"Build":{
"shape":"Build",
"documentation":"<p>Object containing the updated build record.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"UpdateFleetAttributesInput":{
"type":"structure",
"required":["FleetId"],
"members":{
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier for the fleet you want to update attribute metadata for.</p>"
},
"Name":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Descriptive label associated with a fleet. Fleet names do not need to be unique.</p>"
},
"Description":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Human-readable description of a fleet.</p>"
},
"NewGameSessionProtectionPolicy":{
"shape":"ProtectionPolicy",
"documentation":"<p>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 <a>UpdateGameSession</a>.</p> <ul> <li> <p> <b>NoProtection</b> The game session can be terminated during a scale-down event.</p> </li> <li> <p> <b>FullProtection</b> If the game session is in an <code>ACTIVE</code> status, it cannot be terminated during a scale-down event.</p> </li> </ul>"
},
"ResourceCreationLimitPolicy":{
"shape":"ResourceCreationLimitPolicy",
"documentation":"<p>Policy that limits the number of game sessions an individual player can create over a span of time. </p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"UpdateFleetAttributesOutput":{
"type":"structure",
"members":{
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier for the updated fleet.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"UpdateFleetCapacityInput":{
"type":"structure",
"required":["FleetId"],
"members":{
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier for the fleet you want to update capacity for.</p>"
},
"DesiredInstances":{
"shape":"WholeNumber",
"documentation":"<p>Number of EC2 instances you want this fleet to host.</p>"
},
"MinSize":{
"shape":"WholeNumber",
"documentation":"<p>Minimum value allowed for the fleet's instance count. Default if not set is 0.</p>"
},
"MaxSize":{
"shape":"WholeNumber",
"documentation":"<p>Maximum value allowed for the fleet's instance count. Default if not set is 1.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"UpdateFleetCapacityOutput":{
"type":"structure",
"members":{
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier for the updated fleet.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"UpdateFleetPortSettingsInput":{
"type":"structure",
"required":["FleetId"],
"members":{
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier for the fleet you want to update port settings for.</p>"
},
"InboundPermissionAuthorizations":{
"shape":"IpPermissionsList",
"documentation":"<p>Collection of port settings to be added to the fleet record.</p>"
},
"InboundPermissionRevocations":{
"shape":"IpPermissionsList",
"documentation":"<p>Collection of port settings to be removed from the fleet record.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"UpdateFleetPortSettingsOutput":{
"type":"structure",
"members":{
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier for the updated fleet.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"UpdateGameSessionInput":{
"type":"structure",
"required":["GameSessionId"],
"members":{
"GameSessionId":{
"shape":"ArnStringModel",
"documentation":"<p>Unique identifier for the game session to update. Game session ID format is as follows: \"arn:aws:gamelift:&lt;region&gt;::gamesession/fleet-&lt;fleet ID&gt;/&lt;ID string&gt;\". The value of &lt;ID string&gt; is either a custom ID string (if one was specified when the game session was created) an auto-generated string. </p>"
},
"MaximumPlayerSessionCount":{
"shape":"WholeNumber",
"documentation":"<p>Maximum number of players that can be simultaneously connected to the game session.</p>"
},
"Name":{
"shape":"NonZeroAndMaxString",
"documentation":"<p>Descriptive label associated with a game session. Session names do not need to be unique.</p>"
},
"PlayerSessionCreationPolicy":{
"shape":"PlayerSessionCreationPolicy",
"documentation":"<p>Policy determining whether or not the game session accepts new players.</p>"
},
"ProtectionPolicy":{
"shape":"ProtectionPolicy",
"documentation":"<p>Game session protection policy to apply to this game session only.</p> <ul> <li> <p> <b>NoProtection</b> The game session can be terminated during a scale-down event.</p> </li> <li> <p> <b>FullProtection</b> If the game session is in an <code>ACTIVE</code> status, it cannot be terminated during a scale-down event.</p> </li> </ul>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"UpdateGameSessionOutput":{
"type":"structure",
"members":{
"GameSession":{
"shape":"GameSession",
"documentation":"<p>Object containing the updated game session metadata.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"UpdateRuntimeConfigurationInput":{
"type":"structure",
"required":[
"FleetId",
"RuntimeConfiguration"
],
"members":{
"FleetId":{
"shape":"FleetId",
"documentation":"<p>Unique identifier of the fleet to update runtime configuration for.</p>"
},
"RuntimeConfiguration":{
"shape":"RuntimeConfiguration",
"documentation":"<p>Instructions for launching server processes on each instance in the fleet. The runtime 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.</p>"
}
},
"documentation":"<p>Represents the input for a request action.</p>"
},
"UpdateRuntimeConfigurationOutput":{
"type":"structure",
"members":{
"RuntimeConfiguration":{
"shape":"RuntimeConfiguration",
"documentation":"<p>The runtime configuration currently in force. If the update was successful, this object matches the one in the request.</p>"
}
},
"documentation":"<p>Represents the returned data in response to a request action.</p>"
},
"WholeNumber":{
"type":"integer",
"min":0
}
},
"documentation":"<fullname>Amazon GameLift Service</fullname> <p>Welcome to the <i>Amazon GameLift API Reference</i>. Amazon GameLift is a managed Amazon Web Services (AWS) service for developers who need a scalable, server-based solution for multiplayer games. Amazon GameLift provides setup and deployment of game servers, and handles infrastructure scaling and session management.</p> <p>This reference describes the low-level service API for GameLift. You can call this API directly or use the <a href=\"http://aws.amazon.com/tools/#sdk\">AWS SDK</a> for your preferred language. The AWS SDK includes a set of high-level GameLift actions multiplayer game sessions. Alternatively, you can use the <a href=\"http://aws.amazon.com/cli/\">AWS command-line interface</a> (CLI) tool, which includes commands for GameLift. For administrative actions, you can also use the Amazon GameLift console. </p> <p> <b>More Resources</b> </p> <ul> <li> <p> <a href=\"http://docs.aws.amazon.com/gamelift/latest/developerguide/\">Amazon GameLift Developer Guide</a>: Learn more about GameLift features and how to use them </p> </li> <li> <p> <a href=\"https://gamedev.amazon.com/forums/tutorials\">Lumberyard and GameLift Tutorials</a>: Get started fast with walkthroughs and sample projects</p> </li> <li> <p> <a href=\"http://aws.amazon.com/blogs/gamedev/\">GameDev Blog</a>: Stay up to date with new features and techniques</p> </li> <li> <p> <a href=\"https://gamedev.amazon.com/forums/spaces/123/gamelift-discussion.html\">GameDev Forums</a>: Connect with the GameDev community</p> </li> </ul> <p> <b>Manage Games and Players Through GameLift</b> </p> <p>Call these actions from your game clients and/or services to create and manage multiplayer game sessions and player sessions.</p> <ul> <li> <p> <b>Game sessions:</b> </p> <ul> <li> <p> <a>CreateGameSession</a> </p> </li> <li> <p> <a>DescribeGameSessions</a> </p> </li> <li> <p> <a>DescribeGameSessionDetails</a> </p> </li> <li> <p> <a>UpdateGameSession</a> </p> </li> <li> <p> <a>SearchGameSessions</a> </p> </li> </ul> </li> <li> <p> <b>Player sessions:</b> </p> <ul> <li> <p> <a>CreatePlayerSession</a> </p> </li> <li> <p> <a>CreatePlayerSessions</a> </p> </li> <li> <p> <a>DescribePlayerSessions</a> </p> </li> </ul> </li> <li> <p> <b>Other actions:</b> </p> <ul> <li> <p> <a>GetGameSessionLogUrl</a> </p> </li> </ul> </li> </ul> <p> <b>Set Up and Manage Game Servers</b> </p> <p>Use these administrative actions to configure GameLift to host your game servers. When setting up GameLift, you will need to (1) configure a build for your game and upload build files, and (2) set up one or more fleets to host game sessions. Once you've created and activated a fleet, you can assign aliases to it, scale capacity, track performance and utilization, etc.</p> <ul> <li> <p> <b>Game builds:</b> </p> <ul> <li> <p> <a>ListBuilds</a> </p> </li> <li> <p> <a>CreateBuild</a> </p> </li> <li> <p> <a>DescribeBuild</a> </p> </li> <li> <p> <a>UpdateBuild</a> </p> </li> <li> <p> <a>DeleteBuild</a> </p> </li> <li> <p> <a>RequestUploadCredentials</a> </p> </li> </ul> </li> <li> <p> <b>Fleets:</b> </p> <ul> <li> <p> <a>ListFleets</a> </p> </li> <li> <p> <a>CreateFleet</a> </p> </li> <li> <p>Describe fleets:</p> <ul> <li> <p> <a>DescribeFleetAttributes</a> </p> </li> <li> <p> <a>DescribeFleetCapacity</a> </p> </li> <li> <p> <a>DescribeFleetPortSettings</a> </p> </li> <li> <p> <a>DescribeFleetUtilization</a> </p> </li> <li> <p> <a>DescribeEC2InstanceLimits</a> </p> </li> <li> <p> <a>DescribeFleetEvents</a> </p> </li> <li> <p> <a>DescribeRuntimeConfiguration</a> </p> </li> </ul> </li> <li> <p>Update fleets:</p> <ul> <li> <p> <a>UpdateFleetAttributes</a> </p> </li> <li> <p> <a>UpdateFleetCapacity</a> </p> </li> <li> <p> <a>UpdateFleetPortSettings</a> </p> </li> <li> <p> <a>UpdateRuntimeConfiguration</a> </p> </li> </ul> </li> <li> <p> <a>DeleteFleet</a> </p> </li> </ul> </li> <li> <p> <b>Manage fleet aliases:</b> </p> <ul> <li> <p> <a>ListAliases</a> </p> </li> <li> <p> <a>CreateAlias</a> </p> </li> <li> <p> <a>DescribeAlias</a> </p> </li> <li> <p> <a>UpdateAlias</a> </p> </li> <li> <p> <a>DeleteAlias</a> </p> </li> <li> <p> <a>ResolveAlias</a> </p> </li> </ul> </li> <li> <p> <b>Manage autoscaling:</b> </p> <ul> <li> <p> <a>PutScalingPolicy</a> </p> </li> <li> <p> <a>DescribeScalingPolicies</a> </p> </li> <li> <p> <a>DeleteScalingPolicy</a> </p> </li> </ul> </li> </ul> <p>To view changes to the API, see the GameLift <a href=\"http://docs.aws.amazon.com/gamelift/latest/developerguide/doc-history.html\">Document History</a> page.</p>"
}