All Downloads are FREE. Search and download functionalities are using the official Maven repository.

models.gamelift-2015-10-01-intermediate.json Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS GameLift module holds the client classes that are used for communicating with AWS GameLift service.

There is a newer version: 1.11.8
Show newest version
{
  "metadata" : {
    "apiVersion" : "2015-10-01",
    "exceptionUnmarshallerImpl" : null,
    "protocol" : "json",
    "checksumFormat" : null,
    "documentation" : "Amazon GameLift Service 

Welcome to the Amazon GameLift API Reference. 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. For more information about the GameLift service, including a feature overview, getting started guide, and tutorial, see the accompanying Amazon GameLift Developer Guide.

This reference describes the low-level service API for GameLift. You can call this API directly or use the AWS SDK for your preferred language. The AWS SDK includes a set of high-level GameLift actions multiplayer game sessions. Alternatively, you can use the AWS command-line interface (CLI) tool, which includes commands for GameLift. For administrative actions, you can use the Amazon GameLift console.

Managing Game and Player Sessions Through GameLift

Call these actions from your game clients and/or services to create and manage multiplayer game sessions.

Setting Up Game Servers

Use these administrative actions to configure GameLift to host your game servers. When configuring GameLift, you'll need to (1) configure a build for your game and provide build files, and (2) set up one or more fleets to host game sessions.

", "defaultEndpoint" : "https://gamelift.us-east-1.amazonaws.com", "defaultEndpointWithoutHttpProtocol" : "gamelift.us-east-1.amazonaws.com", "syncInterface" : "AmazonGameLift", "syncClient" : "AmazonGameLiftClient", "asyncInterface" : "AmazonGameLiftAsync", "asyncClient" : "AmazonGameLiftAsyncClient", "packageName" : "com.amazonaws.services.gamelift", "packagePath" : "com/amazonaws/services/gamelift", "serviceAbbreviation" : null, "serviceFullName" : "Amazon GameLift", "hasApiWithStreamInput" : false, "jsonContentVersion" : "application/x-amz-json-1.1", "jsonVersion" : "1.1", "endpointPrefix" : "gamelift", "signingName" : "gamelift", "jsonProtocol" : true, "serviceName" : "Amazon GameLift", "cborProtocol" : false, "unmarshallerContextClassName" : "JsonUnmarshallerContext", "unmarshallerClassSuffix" : "JsonUnmarshaller", "protocolDefaultExceptionUnmarshallerType" : "JsonErrorUnmarshaller", "xmlProtocol" : false }, "operations" : { "CreateAlias" : { "documentation" : "

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.

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 UpdateAlias.

", "operationName" : "CreateAlias", "deprecated" : false, "input" : { "variableName" : "createAliasRequest", "variableType" : "CreateAliasRequest", "variableDeclarationType" : "CreateAliasRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "CreateAliasRequest", "variableSetterType" : "CreateAliasRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "CreateAliasResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "ConflictException", "documentation" : "

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

" }, { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "LimitExceededException", "documentation" : "

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

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "CreateAliasResult", "asyncReturnType" : "CreateAliasResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "createAlias" }, "CreateBuild" : { "documentation" : "

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 is in an INITIALIZED state, you can upload your game build.

To create a build, use the CLI command upload-build, which creates a new build record and uploads the build files in one step. (See the Amazon GameLift Developer Guide for more details on the CLI and the upload process.) Call the CreateBuild action only if you have your own Amazon Simple Storage Service (Amazon S3) client and need to manually upload your build files.

To create a new build, 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 (but not visible to players). If successful, this action returns the newly created build record along with an Amazon S3 storage location and AWS account credentials. Use the location and credentials to upload your game build.

", "operationName" : "CreateBuild", "deprecated" : false, "input" : { "variableName" : "createBuildRequest", "variableType" : "CreateBuildRequest", "variableDeclarationType" : "CreateBuildRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "CreateBuildRequest", "variableSetterType" : "CreateBuildRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "CreateBuildResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "ConflictException", "documentation" : "

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

" }, { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "CreateBuildResult", "asyncReturnType" : "CreateBuildResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "createBuild" }, "CreateFleet" : { "documentation" : "

Creates a new fleet to host game servers. A fleet consists of a set of Amazon Elastic Compute Cloud (Amazon EC2) instances of a certain type, which defines the CPU, memory, storage, and networking capacity of each host in the fleet. See Amazon EC2 Instance Types for more information. Each instance in the fleet hosts a game server created from the specified game build. Once a fleet is in an ACTIVE state, it can begin hosting game sessions.

To create a new fleet, provide a name and the EC2 instance type for the new fleet, and specify the build and server launch path. Builds must be in a READY state before they can be used to build fleets. When configuring the new fleet, you can optionally (1) provide a set of launch parameters to be passed to a game server when activated; (2) limit incoming traffic to a specified range of IP addresses and port numbers; (3) set game session protection for all instances in the fleet, and (4) configure Amazon GameLift to store game session logs by specifying the path to the logs stored in your game server files. If the call is successful, Amazon GameLift performs the following tasks:

  • Creates a fleet record and sets the state to NEW.
  • Sets the fleet's capacity to 1 \"desired\" and 1 \"active\" EC2 instance count.
  • Creates an EC2 instance and begins the process of initializing the fleet and activating a game server on the instance.
  • Begins writing events to the fleet event log, which can be accessed in the GameLift console.

Once a fleet is created, use the following actions to change certain fleet properties (server launch parameters and log paths cannot be changed):

", "operationName" : "CreateFleet", "deprecated" : false, "input" : { "variableName" : "createFleetRequest", "variableType" : "CreateFleetRequest", "variableDeclarationType" : "CreateFleetRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "CreateFleetRequest", "variableSetterType" : "CreateFleetRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "CreateFleetResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "ConflictException", "documentation" : "

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

" }, { "exceptionName" : "LimitExceededException", "documentation" : "

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

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "CreateFleetResult", "asyncReturnType" : "CreateFleetResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "createFleet" }, "CreateGameSession" : { "documentation" : "

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 activates the server initialization process in your game server. A fleet must be in an ACTIVE state before a game session can be created for it.

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 GameSession 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 UpdateGameSession to change the creation policy.

", "operationName" : "CreateGameSession", "deprecated" : false, "input" : { "variableName" : "createGameSessionRequest", "variableType" : "CreateGameSessionRequest", "variableDeclarationType" : "CreateGameSessionRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "CreateGameSessionRequest", "variableSetterType" : "CreateGameSessionRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "CreateGameSessionResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "ConflictException", "documentation" : "

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

" }, { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "InvalidFleetStatusException", "documentation" : "

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

" }, { "exceptionName" : "TerminalRoutingStrategyException", "documentation" : "

The service is unable to resolve the routing for a particular alias because it has a terminal RoutingStrategy associated with it. The message returned in this exception is the message defined in the TerminalRoutingStrategy itself. Such requests should only be retried if the routing strategy for the specified alias is modified.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "FleetCapacityExceededException", "documentation" : "

The specified fleet has no available instances to fulfill a request to create a new game session. Such requests should only be retried once the fleet capacity has been increased.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "CreateGameSessionResult", "asyncReturnType" : "CreateGameSessionResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "createGameSession" }, "CreatePlayerSession" : { "documentation" : "

Adds a player to a game session and creates a player session record. A game session must be in an ACTIVE state, have a creation policy of ALLOW_ALL, and have an open player slot before players can be added to the session.

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 PlayerSession object is returned.

", "operationName" : "CreatePlayerSession", "deprecated" : false, "input" : { "variableName" : "createPlayerSessionRequest", "variableType" : "CreatePlayerSessionRequest", "variableDeclarationType" : "CreatePlayerSessionRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "CreatePlayerSessionRequest", "variableSetterType" : "CreatePlayerSessionRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "CreatePlayerSessionResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "InvalidGameSessionStatusException", "documentation" : "

The requested operation would cause a conflict with the current state of a resource associated with the request and/or the game instance. Such requests should not be retried by clients without resolving the conflict.

" }, { "exceptionName" : "GameSessionFullException", "documentation" : "

The game instance is currently full and cannot allow the requested player(s) to join. This exception occurs in response to a CreatePlayerSession request.

" }, { "exceptionName" : "TerminalRoutingStrategyException", "documentation" : "

The service is unable to resolve the routing for a particular alias because it has a terminal RoutingStrategy associated with it. The message returned in this exception is the message defined in the TerminalRoutingStrategy itself. Such requests should only be retried if the routing strategy for the specified alias is modified.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "CreatePlayerSessionResult", "asyncReturnType" : "CreatePlayerSessionResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "createPlayerSession" }, "CreatePlayerSessions" : { "documentation" : "

Adds a group of players to a game session. Similar to CreatePlayerSession, 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 ACTIVE state, have a creation policy of ALLOW_ALL, and have an open player slot before players can be added to the session.

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 PlayerSession objects is returned.

", "operationName" : "CreatePlayerSessions", "deprecated" : false, "input" : { "variableName" : "createPlayerSessionsRequest", "variableType" : "CreatePlayerSessionsRequest", "variableDeclarationType" : "CreatePlayerSessionsRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "CreatePlayerSessionsRequest", "variableSetterType" : "CreatePlayerSessionsRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "CreatePlayerSessionsResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "InvalidGameSessionStatusException", "documentation" : "

The requested operation would cause a conflict with the current state of a resource associated with the request and/or the game instance. Such requests should not be retried by clients without resolving the conflict.

" }, { "exceptionName" : "GameSessionFullException", "documentation" : "

The game instance is currently full and cannot allow the requested player(s) to join. This exception occurs in response to a CreatePlayerSession request.

" }, { "exceptionName" : "TerminalRoutingStrategyException", "documentation" : "

The service is unable to resolve the routing for a particular alias because it has a terminal RoutingStrategy associated with it. The message returned in this exception is the message defined in the TerminalRoutingStrategy itself. Such requests should only be retried if the routing strategy for the specified alias is modified.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "CreatePlayerSessionsResult", "asyncReturnType" : "CreatePlayerSessionsResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "createPlayerSessions" }, "DeleteAlias" : { "documentation" : "

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

", "operationName" : "DeleteAlias", "deprecated" : false, "input" : { "variableName" : "deleteAliasRequest", "variableType" : "DeleteAliasRequest", "variableDeclarationType" : "DeleteAliasRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "DeleteAliasRequest", "variableSetterType" : "DeleteAliasRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DeleteAliasResult", "documentation" : null }, "exceptions" : [ { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DeleteAliasResult", "asyncReturnType" : "DeleteAliasResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "deleteAlias" }, "DeleteBuild" : { "documentation" : "

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

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

", "operationName" : "DeleteBuild", "deprecated" : false, "input" : { "variableName" : "deleteBuildRequest", "variableType" : "DeleteBuildRequest", "variableDeclarationType" : "DeleteBuildRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "DeleteBuildRequest", "variableSetterType" : "DeleteBuildRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DeleteBuildResult", "documentation" : null }, "exceptions" : [ { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DeleteBuildResult", "asyncReturnType" : "DeleteBuildResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "deleteBuild" }, "DeleteFleet" : { "documentation" : "

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

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

", "operationName" : "DeleteFleet", "deprecated" : false, "input" : { "variableName" : "deleteFleetRequest", "variableType" : "DeleteFleetRequest", "variableDeclarationType" : "DeleteFleetRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "DeleteFleetRequest", "variableSetterType" : "DeleteFleetRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DeleteFleetResult", "documentation" : null }, "exceptions" : [ { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "InvalidFleetStatusException", "documentation" : "

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

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "InvalidFleetStatusException", "documentation" : "

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

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DeleteFleetResult", "asyncReturnType" : "DeleteFleetResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "deleteFleet" }, "DeleteScalingPolicy" : { "documentation" : "

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

", "operationName" : "DeleteScalingPolicy", "deprecated" : false, "input" : { "variableName" : "deleteScalingPolicyRequest", "variableType" : "DeleteScalingPolicyRequest", "variableDeclarationType" : "DeleteScalingPolicyRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "DeleteScalingPolicyRequest", "variableSetterType" : "DeleteScalingPolicyRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DeleteScalingPolicyResult", "documentation" : null }, "exceptions" : [ { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DeleteScalingPolicyResult", "asyncReturnType" : "DeleteScalingPolicyResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "deleteScalingPolicy" }, "DescribeAlias" : { "documentation" : "

Retrieves properties for a specified alias. To get the alias, specify an alias ID. If successful, an Alias object is returned.

", "operationName" : "DescribeAlias", "deprecated" : false, "input" : { "variableName" : "describeAliasRequest", "variableType" : "DescribeAliasRequest", "variableDeclarationType" : "DescribeAliasRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "DescribeAliasRequest", "variableSetterType" : "DescribeAliasRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DescribeAliasResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DescribeAliasResult", "asyncReturnType" : "DescribeAliasResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "describeAlias" }, "DescribeBuild" : { "documentation" : "

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

", "operationName" : "DescribeBuild", "deprecated" : false, "input" : { "variableName" : "describeBuildRequest", "variableType" : "DescribeBuildRequest", "variableDeclarationType" : "DescribeBuildRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "DescribeBuildRequest", "variableSetterType" : "DescribeBuildRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DescribeBuildResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DescribeBuildResult", "asyncReturnType" : "DescribeBuildResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "describeBuild" }, "DescribeEC2InstanceLimits" : { "documentation" : "

Retrieves the following information for the specified EC2 instance type:

  • maximum number of instances allowed per AWS account (service limit)
  • current usage level for the AWS account

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).

", "operationName" : "DescribeEC2InstanceLimits", "deprecated" : false, "input" : { "variableName" : "describeEC2InstanceLimitsRequest", "variableType" : "DescribeEC2InstanceLimitsRequest", "variableDeclarationType" : "DescribeEC2InstanceLimitsRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "DescribeEC2InstanceLimitsRequest", "variableSetterType" : "DescribeEC2InstanceLimitsRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DescribeEC2InstanceLimitsResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DescribeEC2InstanceLimitsResult", "asyncReturnType" : "DescribeEC2InstanceLimitsResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "describeEC2InstanceLimits" }, "DescribeFleetAttributes" : { "documentation" : "

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

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

", "operationName" : "DescribeFleetAttributes", "deprecated" : false, "input" : { "variableName" : "describeFleetAttributesRequest", "variableType" : "DescribeFleetAttributesRequest", "variableDeclarationType" : "DescribeFleetAttributesRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "DescribeFleetAttributesRequest", "variableSetterType" : "DescribeFleetAttributesRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DescribeFleetAttributesResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DescribeFleetAttributesResult", "asyncReturnType" : "DescribeFleetAttributesResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "describeFleetAttributes" }, "DescribeFleetCapacity" : { "documentation" : "

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

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

", "operationName" : "DescribeFleetCapacity", "deprecated" : false, "input" : { "variableName" : "describeFleetCapacityRequest", "variableType" : "DescribeFleetCapacityRequest", "variableDeclarationType" : "DescribeFleetCapacityRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "DescribeFleetCapacityRequest", "variableSetterType" : "DescribeFleetCapacityRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DescribeFleetCapacityResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DescribeFleetCapacityResult", "asyncReturnType" : "DescribeFleetCapacityResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "describeFleetCapacity" }, "DescribeFleetEvents" : { "documentation" : "

Retrieves entries from the fleet 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.

", "operationName" : "DescribeFleetEvents", "deprecated" : false, "input" : { "variableName" : "describeFleetEventsRequest", "variableType" : "DescribeFleetEventsRequest", "variableDeclarationType" : "DescribeFleetEventsRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "DescribeFleetEventsRequest", "variableSetterType" : "DescribeFleetEventsRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DescribeFleetEventsResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DescribeFleetEventsResult", "asyncReturnType" : "DescribeFleetEventsResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "describeFleetEvents" }, "DescribeFleetPortSettings" : { "documentation" : "

Retrieves the port settings for a fleet. Port settings are used to limit incoming traffic access to game servers in the fleet. To get a fleet's port settings, specify a fleet ID. If successful, an IpPermission object is returned for the requested fleet ID. If the requested fleet has been deleted, the result set will be empty.

", "operationName" : "DescribeFleetPortSettings", "deprecated" : false, "input" : { "variableName" : "describeFleetPortSettingsRequest", "variableType" : "DescribeFleetPortSettingsRequest", "variableDeclarationType" : "DescribeFleetPortSettingsRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "DescribeFleetPortSettingsRequest", "variableSetterType" : "DescribeFleetPortSettingsRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DescribeFleetPortSettingsResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DescribeFleetPortSettingsResult", "asyncReturnType" : "DescribeFleetPortSettingsResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "describeFleetPortSettings" }, "DescribeFleetUtilization" : { "documentation" : "

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

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

", "operationName" : "DescribeFleetUtilization", "deprecated" : false, "input" : { "variableName" : "describeFleetUtilizationRequest", "variableType" : "DescribeFleetUtilizationRequest", "variableDeclarationType" : "DescribeFleetUtilizationRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "DescribeFleetUtilizationRequest", "variableSetterType" : "DescribeFleetUtilizationRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DescribeFleetUtilizationResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DescribeFleetUtilizationResult", "asyncReturnType" : "DescribeFleetUtilizationResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "describeFleetUtilization" }, "DescribeGameSessionDetails" : { "documentation" : "

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

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

", "operationName" : "DescribeGameSessionDetails", "deprecated" : false, "input" : { "variableName" : "describeGameSessionDetailsRequest", "variableType" : "DescribeGameSessionDetailsRequest", "variableDeclarationType" : "DescribeGameSessionDetailsRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "DescribeGameSessionDetailsRequest", "variableSetterType" : "DescribeGameSessionDetailsRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DescribeGameSessionDetailsResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "TerminalRoutingStrategyException", "documentation" : "

The service is unable to resolve the routing for a particular alias because it has a terminal RoutingStrategy associated with it. The message returned in this exception is the message defined in the TerminalRoutingStrategy itself. Such requests should only be retried if the routing strategy for the specified alias is modified.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DescribeGameSessionDetailsResult", "asyncReturnType" : "DescribeGameSessionDetailsResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "describeGameSessionDetails" }, "DescribeGameSessions" : { "documentation" : "

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

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

", "operationName" : "DescribeGameSessions", "deprecated" : false, "input" : { "variableName" : "describeGameSessionsRequest", "variableType" : "DescribeGameSessionsRequest", "variableDeclarationType" : "DescribeGameSessionsRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "DescribeGameSessionsRequest", "variableSetterType" : "DescribeGameSessionsRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DescribeGameSessionsResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "TerminalRoutingStrategyException", "documentation" : "

The service is unable to resolve the routing for a particular alias because it has a terminal RoutingStrategy associated with it. The message returned in this exception is the message defined in the TerminalRoutingStrategy itself. Such requests should only be retried if the routing strategy for the specified alias is modified.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DescribeGameSessionsResult", "asyncReturnType" : "DescribeGameSessionsResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "describeGameSessions" }, "DescribePlayerSessions" : { "documentation" : "

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

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

", "operationName" : "DescribePlayerSessions", "deprecated" : false, "input" : { "variableName" : "describePlayerSessionsRequest", "variableType" : "DescribePlayerSessionsRequest", "variableDeclarationType" : "DescribePlayerSessionsRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "DescribePlayerSessionsRequest", "variableSetterType" : "DescribePlayerSessionsRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DescribePlayerSessionsResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DescribePlayerSessionsResult", "asyncReturnType" : "DescribePlayerSessionsResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "describePlayerSessions" }, "DescribeScalingPolicies" : { "documentation" : "

Retrieves all scaling policies applied to a fleet.

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

", "operationName" : "DescribeScalingPolicies", "deprecated" : false, "input" : { "variableName" : "describeScalingPoliciesRequest", "variableType" : "DescribeScalingPoliciesRequest", "variableDeclarationType" : "DescribeScalingPoliciesRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "DescribeScalingPoliciesRequest", "variableSetterType" : "DescribeScalingPoliciesRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "DescribeScalingPoliciesResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "DescribeScalingPoliciesResult", "asyncReturnType" : "DescribeScalingPoliciesResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "describeScalingPolicies" }, "GetGameSessionLogUrl" : { "documentation" : "

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

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

", "operationName" : "GetGameSessionLogUrl", "deprecated" : false, "input" : { "variableName" : "getGameSessionLogUrlRequest", "variableType" : "GetGameSessionLogUrlRequest", "variableDeclarationType" : "GetGameSessionLogUrlRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "GetGameSessionLogUrlRequest", "variableSetterType" : "GetGameSessionLogUrlRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "GetGameSessionLogUrlResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "GetGameSessionLogUrlResult", "asyncReturnType" : "GetGameSessionLogUrlResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "getGameSessionLogUrl" }, "ListAliases" : { "documentation" : "

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.

Aliases are not listed in any particular order.

", "operationName" : "ListAliases", "deprecated" : false, "input" : { "variableName" : "listAliasesRequest", "variableType" : "ListAliasesRequest", "variableDeclarationType" : "ListAliasesRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "ListAliasesRequest", "variableSetterType" : "ListAliasesRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "ListAliasesResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "ListAliasesResult", "asyncReturnType" : "ListAliasesResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "listAliases" }, "ListBuilds" : { "documentation" : "

Retrieves build records for all builds associated with an AWS account. You can filter the result set by build status. Use the pagination parameters to retrieve results in a set of sequential pages.

Build records are not listed in any particular order.

", "operationName" : "ListBuilds", "deprecated" : false, "input" : { "variableName" : "listBuildsRequest", "variableType" : "ListBuildsRequest", "variableDeclarationType" : "ListBuildsRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "ListBuildsRequest", "variableSetterType" : "ListBuildsRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "ListBuildsResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "ListBuildsResult", "asyncReturnType" : "ListBuildsResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "listBuilds" }, "ListFleets" : { "documentation" : "

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

Fleet records are not listed in any particular order.

", "operationName" : "ListFleets", "deprecated" : false, "input" : { "variableName" : "listFleetsRequest", "variableType" : "ListFleetsRequest", "variableDeclarationType" : "ListFleetsRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "ListFleetsRequest", "variableSetterType" : "ListFleetsRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "ListFleetsResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "ListFleetsResult", "asyncReturnType" : "ListFleetsResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "listFleets" }, "PutScalingPolicy" : { "documentation" : "

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

A scaling policy rule statement has the following structure:

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

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

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

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

", "operationName" : "PutScalingPolicy", "deprecated" : false, "input" : { "variableName" : "putScalingPolicyRequest", "variableType" : "PutScalingPolicyRequest", "variableDeclarationType" : "PutScalingPolicyRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "PutScalingPolicyRequest", "variableSetterType" : "PutScalingPolicyRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "PutScalingPolicyResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "PutScalingPolicyResult", "asyncReturnType" : "PutScalingPolicyResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "putScalingPolicy" }, "RequestUploadCredentials" : { "documentation" : "

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.

Call this action only if you need credentials for a build created with CreateBuild. This is a rare situation; in most cases, builds are created using the CLI command upload-build, which creates a build record and also uploads build files.

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 state of that build changes to READY. Once this happens, you must create a brand new build.

", "operationName" : "RequestUploadCredentials", "deprecated" : false, "input" : { "variableName" : "requestUploadCredentialsRequest", "variableType" : "RequestUploadCredentialsRequest", "variableDeclarationType" : "RequestUploadCredentialsRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "RequestUploadCredentialsRequest", "variableSetterType" : "RequestUploadCredentialsRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "RequestUploadCredentialsResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "RequestUploadCredentialsResult", "asyncReturnType" : "RequestUploadCredentialsResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "requestUploadCredentials" }, "ResolveAlias" : { "documentation" : "

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

", "operationName" : "ResolveAlias", "deprecated" : false, "input" : { "variableName" : "resolveAliasRequest", "variableType" : "ResolveAliasRequest", "variableDeclarationType" : "ResolveAliasRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "ResolveAliasRequest", "variableSetterType" : "ResolveAliasRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "ResolveAliasResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "TerminalRoutingStrategyException", "documentation" : "

The service is unable to resolve the routing for a particular alias because it has a terminal RoutingStrategy associated with it. The message returned in this exception is the message defined in the TerminalRoutingStrategy itself. Such requests should only be retried if the routing strategy for the specified alias is modified.

" }, { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "ResolveAliasResult", "asyncReturnType" : "ResolveAliasResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "resolveAlias" }, "UpdateAlias" : { "documentation" : "

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

", "operationName" : "UpdateAlias", "deprecated" : false, "input" : { "variableName" : "updateAliasRequest", "variableType" : "UpdateAliasRequest", "variableDeclarationType" : "UpdateAliasRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "UpdateAliasRequest", "variableSetterType" : "UpdateAliasRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "UpdateAliasResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "UpdateAliasResult", "asyncReturnType" : "UpdateAliasResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "updateAlias" }, "UpdateBuild" : { "documentation" : "

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

", "operationName" : "UpdateBuild", "deprecated" : false, "input" : { "variableName" : "updateBuildRequest", "variableType" : "UpdateBuildRequest", "variableDeclarationType" : "UpdateBuildRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "UpdateBuildRequest", "variableSetterType" : "UpdateBuildRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "UpdateBuildResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "UpdateBuildResult", "asyncReturnType" : "UpdateBuildResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "updateBuild" }, "UpdateFleetAttributes" : { "documentation" : "

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.

", "operationName" : "UpdateFleetAttributes", "deprecated" : false, "input" : { "variableName" : "updateFleetAttributesRequest", "variableType" : "UpdateFleetAttributesRequest", "variableDeclarationType" : "UpdateFleetAttributesRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "UpdateFleetAttributesRequest", "variableSetterType" : "UpdateFleetAttributesRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "UpdateFleetAttributesResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "ConflictException", "documentation" : "

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

" }, { "exceptionName" : "InvalidFleetStatusException", "documentation" : "

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

" }, { "exceptionName" : "LimitExceededException", "documentation" : "

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

" }, { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "UpdateFleetAttributesResult", "asyncReturnType" : "UpdateFleetAttributesResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "updateFleetAttributes" }, "UpdateFleetCapacity" : { "documentation" : "

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

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

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

", "operationName" : "UpdateFleetCapacity", "deprecated" : false, "input" : { "variableName" : "updateFleetCapacityRequest", "variableType" : "UpdateFleetCapacityRequest", "variableDeclarationType" : "UpdateFleetCapacityRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "UpdateFleetCapacityRequest", "variableSetterType" : "UpdateFleetCapacityRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "UpdateFleetCapacityResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "ConflictException", "documentation" : "

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

" }, { "exceptionName" : "LimitExceededException", "documentation" : "

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

" }, { "exceptionName" : "InvalidFleetStatusException", "documentation" : "

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

" }, { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "UpdateFleetCapacityResult", "asyncReturnType" : "UpdateFleetCapacityResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "updateFleetCapacity" }, "UpdateFleetPortSettings" : { "documentation" : "

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

", "operationName" : "UpdateFleetPortSettings", "deprecated" : false, "input" : { "variableName" : "updateFleetPortSettingsRequest", "variableType" : "UpdateFleetPortSettingsRequest", "variableDeclarationType" : "UpdateFleetPortSettingsRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "UpdateFleetPortSettingsRequest", "variableSetterType" : "UpdateFleetPortSettingsRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "UpdateFleetPortSettingsResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "ConflictException", "documentation" : "

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

" }, { "exceptionName" : "InvalidFleetStatusException", "documentation" : "

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

" }, { "exceptionName" : "LimitExceededException", "documentation" : "

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

" }, { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "UpdateFleetPortSettingsResult", "asyncReturnType" : "UpdateFleetPortSettingsResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "updateFleetPortSettings" }, "UpdateGameSession" : { "documentation" : "

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

", "operationName" : "UpdateGameSession", "deprecated" : false, "input" : { "variableName" : "updateGameSessionRequest", "variableType" : "UpdateGameSessionRequest", "variableDeclarationType" : "UpdateGameSessionRequest", "documentation" : "

Represents the input for a request action.

", "simpleType" : "UpdateGameSessionRequest", "variableSetterType" : "UpdateGameSessionRequest" }, "inputStreamPropertyName" : null, "returnType" : { "returnType" : "UpdateGameSessionResult", "documentation" : "

Represents the returned data in response to a request action.

" }, "exceptions" : [ { "exceptionName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

" }, { "exceptionName" : "ConflictException", "documentation" : "

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

" }, { "exceptionName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

" }, { "exceptionName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

" }, { "exceptionName" : "InvalidGameSessionStatusException", "documentation" : "

The requested operation would cause a conflict with the current state of a resource associated with the request and/or the game instance. Such requests should not be retried by clients without resolving the conflict.

" }, { "exceptionName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

" } ], "hasBlobMemberAsPayload" : false, "syncReturnType" : "UpdateGameSessionResult", "asyncReturnType" : "UpdateGameSessionResult", "asyncFutureType" : "java.util.concurrent.Future", "asyncCallableType" : "java.util.concurrent.Callable", "asyncHandlerType" : "com.amazonaws.handlers.AsyncHandler", "authenticated" : true, "methodName" : "updateGameSession" } }, "shapes" : { "PlayerSession" : { "c2jName" : "PlayerSession", "documentation" : "

Properties describing a player session.

", "shapeName" : "PlayerSession", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for a player session.

", "name" : "PlayerSessionId", "c2jName" : "PlayerSessionId", "c2jShape" : "PlayerSessionId", "variable" : { "variableName" : "playerSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a player session.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "playerSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerSessionId", "marshallLocationName" : "PlayerSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a player session.

\n@param playerSessionId Unique identifier for a player session.*/", "getterDocumentation" : "/**

Unique identifier for a player session.

\n@return Unique identifier for a player session.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a player session.

\n@param playerSessionId Unique identifier for a player session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a player session.

\n@param playerSessionId Unique identifier for a player session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Unique identifier for a player.

", "name" : "PlayerId", "c2jName" : "PlayerId", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "playerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a player.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "playerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerId", "marshallLocationName" : "PlayerId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a player.

\n@param playerId Unique identifier for a player.*/", "getterDocumentation" : "/**

Unique identifier for a player.

\n@return Unique identifier for a player.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a player.

\n@param playerId Unique identifier for a player.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a player.

\n@param playerId Unique identifier for a player.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Unique identifier for a game session.

", "name" : "GameSessionId", "c2jName" : "GameSessionId", "c2jShape" : "GameSessionId", "variable" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a game session.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessionId", "marshallLocationName" : "GameSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.*/", "getterDocumentation" : "/**

Unique identifier for a game session.

\n@return Unique identifier for a game session.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Unique identifier for a fleet.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.*/", "getterDocumentation" : "/**

Unique identifier for a fleet.

\n@return Unique identifier for a fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "CreationTime", "c2jName" : "CreationTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationTime", "marshallLocationName" : "CreationTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "TerminationTime", "c2jName" : "TerminationTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "terminationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "terminationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "TerminationTime", "marshallLocationName" : "TerminationTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param terminationTime Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param terminationTime Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param terminationTime Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Current status of the player session. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

", "name" : "Status", "c2jName" : "Status", "c2jShape" : "PlayerSessionStatus", "variable" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Current status of the player session. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Status", "marshallLocationName" : "Status", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "PlayerSessionStatus", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Current status of the player session. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

\n@param status Current status of the player session. Possible player session states include:
  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
\n@see PlayerSessionStatus*/", "getterDocumentation" : "/**

Current status of the player session. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

\n@return Current status of the player session. Possible player session states include:
  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
\n@see PlayerSessionStatus*/", "fluentSetterDocumentation" : "/**

Current status of the player session. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

\n@param status Current status of the player session. Possible player session states include:
  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
\n@return Returns a reference to this object so that method calls can be chained together.\n@see PlayerSessionStatus*/", "varargSetterDocumentation" : "/**

Current status of the player session. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

\n@param status Current status of the player session. Possible player session states include:
  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
\n@return Returns a reference to this object so that method calls can be chained together.\n@see PlayerSessionStatus*/" }, { "documentation" : "

Game session IP address. All player sessions reference the game session location.

", "name" : "IpAddress", "c2jName" : "IpAddress", "c2jShape" : "IpAddress", "variable" : { "variableName" : "ipAddress", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Game session IP address. All player sessions reference the game session location.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "ipAddress", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "IpAddress", "marshallLocationName" : "IpAddress", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Game session IP address. All player sessions reference the game session location.

\n@param ipAddress Game session IP address. All player sessions reference the game session location.*/", "getterDocumentation" : "/**

Game session IP address. All player sessions reference the game session location.

\n@return Game session IP address. All player sessions reference the game session location.*/", "fluentSetterDocumentation" : "/**

Game session IP address. All player sessions reference the game session location.

\n@param ipAddress Game session IP address. All player sessions reference the game session location.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Game session IP address. All player sessions reference the game session location.

\n@param ipAddress Game session IP address. All player sessions reference the game session location.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "playerSession", "variableType" : "PlayerSession", "variableDeclarationType" : "PlayerSession", "documentation" : null, "simpleType" : "PlayerSession", "variableSetterType" : "PlayerSession" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "CreationTime" : { "documentation" : "

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "CreationTime", "c2jName" : "CreationTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationTime", "marshallLocationName" : "CreationTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "PlayerSessionId" : { "documentation" : "

Unique identifier for a player session.

", "name" : "PlayerSessionId", "c2jName" : "PlayerSessionId", "c2jShape" : "PlayerSessionId", "variable" : { "variableName" : "playerSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a player session.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "playerSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerSessionId", "marshallLocationName" : "PlayerSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a player session.

\n@param playerSessionId Unique identifier for a player session.*/", "getterDocumentation" : "/**

Unique identifier for a player session.

\n@return Unique identifier for a player session.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a player session.

\n@param playerSessionId Unique identifier for a player session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a player session.

\n@param playerSessionId Unique identifier for a player session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Status" : { "documentation" : "

Current status of the player session. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

", "name" : "Status", "c2jName" : "Status", "c2jShape" : "PlayerSessionStatus", "variable" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Current status of the player session. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Status", "marshallLocationName" : "Status", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "PlayerSessionStatus", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Current status of the player session. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

\n@param status Current status of the player session. Possible player session states include:
  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
\n@see PlayerSessionStatus*/", "getterDocumentation" : "/**

Current status of the player session. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

\n@return Current status of the player session. Possible player session states include:
  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
\n@see PlayerSessionStatus*/", "fluentSetterDocumentation" : "/**

Current status of the player session. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

\n@param status Current status of the player session. Possible player session states include:
  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
\n@return Returns a reference to this object so that method calls can be chained together.\n@see PlayerSessionStatus*/", "varargSetterDocumentation" : "/**

Current status of the player session. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

\n@param status Current status of the player session. Possible player session states include:
  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
\n@return Returns a reference to this object so that method calls can be chained together.\n@see PlayerSessionStatus*/" }, "FleetId" : { "documentation" : "

Unique identifier for a fleet.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.*/", "getterDocumentation" : "/**

Unique identifier for a fleet.

\n@return Unique identifier for a fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "GameSessionId" : { "documentation" : "

Unique identifier for a game session.

", "name" : "GameSessionId", "c2jName" : "GameSessionId", "c2jShape" : "GameSessionId", "variable" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a game session.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessionId", "marshallLocationName" : "GameSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.*/", "getterDocumentation" : "/**

Unique identifier for a game session.

\n@return Unique identifier for a game session.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "IpAddress" : { "documentation" : "

Game session IP address. All player sessions reference the game session location.

", "name" : "IpAddress", "c2jName" : "IpAddress", "c2jShape" : "IpAddress", "variable" : { "variableName" : "ipAddress", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Game session IP address. All player sessions reference the game session location.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "ipAddress", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "IpAddress", "marshallLocationName" : "IpAddress", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Game session IP address. All player sessions reference the game session location.

\n@param ipAddress Game session IP address. All player sessions reference the game session location.*/", "getterDocumentation" : "/**

Game session IP address. All player sessions reference the game session location.

\n@return Game session IP address. All player sessions reference the game session location.*/", "fluentSetterDocumentation" : "/**

Game session IP address. All player sessions reference the game session location.

\n@param ipAddress Game session IP address. All player sessions reference the game session location.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Game session IP address. All player sessions reference the game session location.

\n@param ipAddress Game session IP address. All player sessions reference the game session location.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "TerminationTime" : { "documentation" : "

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "TerminationTime", "c2jName" : "TerminationTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "terminationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "terminationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "TerminationTime", "marshallLocationName" : "TerminationTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param terminationTime Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param terminationTime Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param terminationTime Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "PlayerId" : { "documentation" : "

Unique identifier for a player.

", "name" : "PlayerId", "c2jName" : "PlayerId", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "playerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a player.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "playerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerId", "marshallLocationName" : "PlayerId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a player.

\n@param playerId Unique identifier for a player.*/", "getterDocumentation" : "/**

Unique identifier for a player.

\n@return Unique identifier for a player.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a player.

\n@param playerId Unique identifier for a player.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a player.

\n@param playerId Unique identifier for a player.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "S3Location" : { "c2jName" : "S3Location", "documentation" : "

Location in Amazon Simple Storage Service (Amazon S3) where a build's files are stored. This location is assigned in response to a CreateBuild call, and is always in the same region as the service used to create the build. For more details see the Amazon S3 documentation.

", "shapeName" : "S3Location", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Amazon S3 bucket identifier.

", "name" : "Bucket", "c2jName" : "Bucket", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "bucket", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Amazon S3 bucket identifier.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "bucket", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Bucket", "marshallLocationName" : "Bucket", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Amazon S3 bucket identifier.

\n@param bucket Amazon S3 bucket identifier.*/", "getterDocumentation" : "/**

Amazon S3 bucket identifier.

\n@return Amazon S3 bucket identifier.*/", "fluentSetterDocumentation" : "/**

Amazon S3 bucket identifier.

\n@param bucket Amazon S3 bucket identifier.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Amazon S3 bucket identifier.

\n@param bucket Amazon S3 bucket identifier.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Amazon S3 bucket key.

", "name" : "Key", "c2jName" : "Key", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "key", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Amazon S3 bucket key.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "key", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Key", "marshallLocationName" : "Key", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Amazon S3 bucket key.

\n@param key Amazon S3 bucket key.*/", "getterDocumentation" : "/**

Amazon S3 bucket key.

\n@return Amazon S3 bucket key.*/", "fluentSetterDocumentation" : "/**

Amazon S3 bucket key.

\n@param key Amazon S3 bucket key.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Amazon S3 bucket key.

\n@param key Amazon S3 bucket key.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "", "name" : "RoleArn", "c2jName" : "RoleArn", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "roleArn", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "roleArn", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "RoleArn", "marshallLocationName" : "RoleArn", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param roleArn */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param roleArn \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param roleArn \n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "s3Location", "variableType" : "S3Location", "variableDeclarationType" : "S3Location", "documentation" : null, "simpleType" : "S3Location", "variableSetterType" : "S3Location" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Key" : { "documentation" : "

Amazon S3 bucket key.

", "name" : "Key", "c2jName" : "Key", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "key", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Amazon S3 bucket key.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "key", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Key", "marshallLocationName" : "Key", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Amazon S3 bucket key.

\n@param key Amazon S3 bucket key.*/", "getterDocumentation" : "/**

Amazon S3 bucket key.

\n@return Amazon S3 bucket key.*/", "fluentSetterDocumentation" : "/**

Amazon S3 bucket key.

\n@param key Amazon S3 bucket key.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Amazon S3 bucket key.

\n@param key Amazon S3 bucket key.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Bucket" : { "documentation" : "

Amazon S3 bucket identifier.

", "name" : "Bucket", "c2jName" : "Bucket", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "bucket", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Amazon S3 bucket identifier.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "bucket", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Bucket", "marshallLocationName" : "Bucket", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Amazon S3 bucket identifier.

\n@param bucket Amazon S3 bucket identifier.*/", "getterDocumentation" : "/**

Amazon S3 bucket identifier.

\n@return Amazon S3 bucket identifier.*/", "fluentSetterDocumentation" : "/**

Amazon S3 bucket identifier.

\n@param bucket Amazon S3 bucket identifier.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Amazon S3 bucket identifier.

\n@param bucket Amazon S3 bucket identifier.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "RoleArn" : { "documentation" : "", "name" : "RoleArn", "c2jName" : "RoleArn", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "roleArn", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "roleArn", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "RoleArn", "marshallLocationName" : "RoleArn", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param roleArn */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param roleArn \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param roleArn \n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "UnauthorizedException" : { "c2jName" : "UnauthorizedException", "documentation" : "

The client failed authentication. Such requests should not be retried without valid authentication credentials.

", "shapeName" : "UnauthorizedException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ ], "enums" : null, "variable" : { "variableName" : "unauthorizedException", "variableType" : "UnauthorizedException", "variableDeclarationType" : "UnauthorizedException", "documentation" : null, "simpleType" : "UnauthorizedException", "variableSetterType" : "UnauthorizedException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "UnauthorizedException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "DescribeEC2InstanceLimitsRequest" : { "c2jName" : "DescribeEC2InstanceLimitsInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "DescribeEC2InstanceLimitsRequest", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each. Leave this parameter blank to retrieve limits for all types.

", "name" : "EC2InstanceType", "c2jName" : "EC2InstanceType", "c2jShape" : "EC2InstanceType", "variable" : { "variableName" : "eC2InstanceType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each. Leave this parameter blank to retrieve limits for all types.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "eC2InstanceType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "EC2InstanceType", "marshallLocationName" : "EC2InstanceType", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "EC2InstanceType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each. Leave this parameter blank to retrieve limits for all types.

\n@param eC2InstanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each. Leave this parameter blank to retrieve limits for all types.\n@see EC2InstanceType*/", "getterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each. Leave this parameter blank to retrieve limits for all types.

\n@return Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each. Leave this parameter blank to retrieve limits for all types.\n@see EC2InstanceType*/", "fluentSetterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each. Leave this parameter blank to retrieve limits for all types.

\n@param eC2InstanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each. Leave this parameter blank to retrieve limits for all types.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EC2InstanceType*/", "varargSetterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each. Leave this parameter blank to retrieve limits for all types.

\n@param eC2InstanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each. Leave this parameter blank to retrieve limits for all types.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EC2InstanceType*/" } ], "enums" : null, "variable" : { "variableName" : "describeEC2InstanceLimitsRequest", "variableType" : "DescribeEC2InstanceLimitsRequest", "variableDeclarationType" : "DescribeEC2InstanceLimitsRequest", "documentation" : null, "simpleType" : "DescribeEC2InstanceLimitsRequest", "variableSetterType" : "DescribeEC2InstanceLimitsRequest" }, "marshaller" : { "action" : "DescribeEC2InstanceLimits", "verb" : "POST", "target" : "GameLift.DescribeEC2InstanceLimits", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "EC2InstanceType" : { "documentation" : "

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each. Leave this parameter blank to retrieve limits for all types.

", "name" : "EC2InstanceType", "c2jName" : "EC2InstanceType", "c2jShape" : "EC2InstanceType", "variable" : { "variableName" : "eC2InstanceType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each. Leave this parameter blank to retrieve limits for all types.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "eC2InstanceType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "EC2InstanceType", "marshallLocationName" : "EC2InstanceType", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "EC2InstanceType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each. Leave this parameter blank to retrieve limits for all types.

\n@param eC2InstanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each. Leave this parameter blank to retrieve limits for all types.\n@see EC2InstanceType*/", "getterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each. Leave this parameter blank to retrieve limits for all types.

\n@return Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each. Leave this parameter blank to retrieve limits for all types.\n@see EC2InstanceType*/", "fluentSetterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each. Leave this parameter blank to retrieve limits for all types.

\n@param eC2InstanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each. Leave this parameter blank to retrieve limits for all types.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EC2InstanceType*/", "varargSetterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each. Leave this parameter blank to retrieve limits for all types.

\n@param eC2InstanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each. Leave this parameter blank to retrieve limits for all types.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EC2InstanceType*/" } } }, "PutScalingPolicyResult" : { "c2jName" : "PutScalingPolicyOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "PutScalingPolicyResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@return Descriptive label associated with this scaling policy. Policy names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "putScalingPolicyResult", "variableType" : "PutScalingPolicyResult", "variableDeclarationType" : "PutScalingPolicyResult", "documentation" : null, "simpleType" : "PutScalingPolicyResult", "variableSetterType" : "PutScalingPolicyResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Name" : { "documentation" : "

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@return Descriptive label associated with this scaling policy. Policy names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "FleetCapacity" : { "c2jName" : "FleetCapacity", "documentation" : "

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

", "shapeName" : "FleetCapacity", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for a fleet.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.*/", "getterDocumentation" : "/**

Unique identifier for a fleet.

\n@return Unique identifier for a fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

", "name" : "InstanceType", "c2jName" : "InstanceType", "c2jShape" : "EC2InstanceType", "variable" : { "variableName" : "instanceType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "instanceType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "InstanceType", "marshallLocationName" : "InstanceType", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "EC2InstanceType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@param instanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@see EC2InstanceType*/", "getterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@return Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@see EC2InstanceType*/", "fluentSetterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@param instanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EC2InstanceType*/", "varargSetterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@param instanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EC2InstanceType*/" }, { "documentation" : "

Current status of fleet capacity.

", "name" : "InstanceCounts", "c2jName" : "InstanceCounts", "c2jShape" : "EC2InstanceCounts", "variable" : { "variableName" : "instanceCounts", "variableType" : "EC2InstanceCounts", "variableDeclarationType" : "EC2InstanceCounts", "documentation" : "

Current status of fleet capacity.

", "simpleType" : "EC2InstanceCounts", "variableSetterType" : "EC2InstanceCounts" }, "setterModel" : { "variableName" : "instanceCounts", "variableType" : "EC2InstanceCounts", "variableDeclarationType" : "EC2InstanceCounts", "documentation" : "", "simpleType" : "EC2InstanceCounts", "variableSetterType" : "EC2InstanceCounts" }, "getterModel" : { "returnType" : "EC2InstanceCounts", "documentation" : null }, "http" : { "unmarshallLocationName" : "InstanceCounts", "marshallLocationName" : "InstanceCounts", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Current status of fleet capacity.

\n@param instanceCounts Current status of fleet capacity.*/", "getterDocumentation" : "/**

Current status of fleet capacity.

\n@return Current status of fleet capacity.*/", "fluentSetterDocumentation" : "/**

Current status of fleet capacity.

\n@param instanceCounts Current status of fleet capacity.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Current status of fleet capacity.

\n@param instanceCounts Current status of fleet capacity.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "fleetCapacity", "variableType" : "FleetCapacity", "variableDeclarationType" : "FleetCapacity", "documentation" : null, "simpleType" : "FleetCapacity", "variableSetterType" : "FleetCapacity" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "FleetId" : { "documentation" : "

Unique identifier for a fleet.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.*/", "getterDocumentation" : "/**

Unique identifier for a fleet.

\n@return Unique identifier for a fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "InstanceCounts" : { "documentation" : "

Current status of fleet capacity.

", "name" : "InstanceCounts", "c2jName" : "InstanceCounts", "c2jShape" : "EC2InstanceCounts", "variable" : { "variableName" : "instanceCounts", "variableType" : "EC2InstanceCounts", "variableDeclarationType" : "EC2InstanceCounts", "documentation" : "

Current status of fleet capacity.

", "simpleType" : "EC2InstanceCounts", "variableSetterType" : "EC2InstanceCounts" }, "setterModel" : { "variableName" : "instanceCounts", "variableType" : "EC2InstanceCounts", "variableDeclarationType" : "EC2InstanceCounts", "documentation" : "", "simpleType" : "EC2InstanceCounts", "variableSetterType" : "EC2InstanceCounts" }, "getterModel" : { "returnType" : "EC2InstanceCounts", "documentation" : null }, "http" : { "unmarshallLocationName" : "InstanceCounts", "marshallLocationName" : "InstanceCounts", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Current status of fleet capacity.

\n@param instanceCounts Current status of fleet capacity.*/", "getterDocumentation" : "/**

Current status of fleet capacity.

\n@return Current status of fleet capacity.*/", "fluentSetterDocumentation" : "/**

Current status of fleet capacity.

\n@param instanceCounts Current status of fleet capacity.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Current status of fleet capacity.

\n@param instanceCounts Current status of fleet capacity.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "InstanceType" : { "documentation" : "

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

", "name" : "InstanceType", "c2jName" : "InstanceType", "c2jShape" : "EC2InstanceType", "variable" : { "variableName" : "instanceType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "instanceType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "InstanceType", "marshallLocationName" : "InstanceType", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "EC2InstanceType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@param instanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@see EC2InstanceType*/", "getterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@return Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@see EC2InstanceType*/", "fluentSetterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@param instanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EC2InstanceType*/", "varargSetterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@param instanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EC2InstanceType*/" } } }, "DescribePlayerSessionsResult" : { "c2jName" : "DescribePlayerSessionsOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "DescribePlayerSessionsResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

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

", "name" : "PlayerSessions", "c2jName" : "PlayerSessions", "c2jShape" : "PlayerSessionList", "variable" : { "variableName" : "playerSessions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

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

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "playerSessions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerSessions", "marshallLocationName" : "PlayerSessions", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "PlayerSession", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "PlayerSession", "variable" : { "variableName" : "member", "variableType" : "PlayerSession", "variableDeclarationType" : "PlayerSession", "documentation" : "", "simpleType" : "PlayerSession", "variableSetterType" : "PlayerSession" }, "setterModel" : { "variableName" : "member", "variableType" : "PlayerSession", "variableDeclarationType" : "PlayerSession", "documentation" : "", "simpleType" : "PlayerSession", "variableSetterType" : "PlayerSession" }, "getterModel" : { "returnType" : "PlayerSession", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "PlayerSession", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

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

\n@param playerSessions Collection of objects containing properties for each player session that matches the request.*/", "getterDocumentation" : "/**

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

\n@return Collection of objects containing properties for each player session that matches the request.*/", "fluentSetterDocumentation" : "/**

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

\n@param playerSessions Collection of objects containing properties for each player session that matches the request.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setPlayerSessions(java.util.Collection)} or {@link #withPlayerSessions(java.util.Collection)} if you want to override the existing values.

\n@param playerSessions Collection of objects containing properties for each player session that matches the request.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describePlayerSessionsResult", "variableType" : "DescribePlayerSessionsResult", "variableDeclarationType" : "DescribePlayerSessionsResult", "documentation" : null, "simpleType" : "DescribePlayerSessionsResult", "variableSetterType" : "DescribePlayerSessionsResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "PlayerSessions" : { "documentation" : "

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

", "name" : "PlayerSessions", "c2jName" : "PlayerSessions", "c2jShape" : "PlayerSessionList", "variable" : { "variableName" : "playerSessions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

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

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "playerSessions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerSessions", "marshallLocationName" : "PlayerSessions", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "PlayerSession", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "PlayerSession", "variable" : { "variableName" : "member", "variableType" : "PlayerSession", "variableDeclarationType" : "PlayerSession", "documentation" : "", "simpleType" : "PlayerSession", "variableSetterType" : "PlayerSession" }, "setterModel" : { "variableName" : "member", "variableType" : "PlayerSession", "variableDeclarationType" : "PlayerSession", "documentation" : "", "simpleType" : "PlayerSession", "variableSetterType" : "PlayerSession" }, "getterModel" : { "returnType" : "PlayerSession", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "PlayerSession", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

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

\n@param playerSessions Collection of objects containing properties for each player session that matches the request.*/", "getterDocumentation" : "/**

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

\n@return Collection of objects containing properties for each player session that matches the request.*/", "fluentSetterDocumentation" : "/**

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

\n@param playerSessions Collection of objects containing properties for each player session that matches the request.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setPlayerSessions(java.util.Collection)} or {@link #withPlayerSessions(java.util.Collection)} if you want to override the existing values.

\n@param playerSessions Collection of objects containing properties for each player session that matches the request.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "NextToken" : { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "CreatePlayerSessionsResult" : { "c2jName" : "CreatePlayerSessionsOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "CreatePlayerSessionsResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Collection of player session objects created for the added players.

", "name" : "PlayerSessions", "c2jName" : "PlayerSessions", "c2jShape" : "PlayerSessionList", "variable" : { "variableName" : "playerSessions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Collection of player session objects created for the added players.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "playerSessions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerSessions", "marshallLocationName" : "PlayerSessions", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "PlayerSession", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "PlayerSession", "variable" : { "variableName" : "member", "variableType" : "PlayerSession", "variableDeclarationType" : "PlayerSession", "documentation" : "", "simpleType" : "PlayerSession", "variableSetterType" : "PlayerSession" }, "setterModel" : { "variableName" : "member", "variableType" : "PlayerSession", "variableDeclarationType" : "PlayerSession", "documentation" : "", "simpleType" : "PlayerSession", "variableSetterType" : "PlayerSession" }, "getterModel" : { "returnType" : "PlayerSession", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "PlayerSession", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Collection of player session objects created for the added players.

\n@param playerSessions Collection of player session objects created for the added players.*/", "getterDocumentation" : "/**

Collection of player session objects created for the added players.

\n@return Collection of player session objects created for the added players.*/", "fluentSetterDocumentation" : "/**

Collection of player session objects created for the added players.

\n@param playerSessions Collection of player session objects created for the added players.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Collection of player session objects created for the added players.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setPlayerSessions(java.util.Collection)} or {@link #withPlayerSessions(java.util.Collection)} if you want to override the existing values.

\n@param playerSessions Collection of player session objects created for the added players.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "createPlayerSessionsResult", "variableType" : "CreatePlayerSessionsResult", "variableDeclarationType" : "CreatePlayerSessionsResult", "documentation" : null, "simpleType" : "CreatePlayerSessionsResult", "variableSetterType" : "CreatePlayerSessionsResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "PlayerSessions" : { "documentation" : "

Collection of player session objects created for the added players.

", "name" : "PlayerSessions", "c2jName" : "PlayerSessions", "c2jShape" : "PlayerSessionList", "variable" : { "variableName" : "playerSessions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Collection of player session objects created for the added players.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "playerSessions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerSessions", "marshallLocationName" : "PlayerSessions", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "PlayerSession", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "PlayerSession", "variable" : { "variableName" : "member", "variableType" : "PlayerSession", "variableDeclarationType" : "PlayerSession", "documentation" : "", "simpleType" : "PlayerSession", "variableSetterType" : "PlayerSession" }, "setterModel" : { "variableName" : "member", "variableType" : "PlayerSession", "variableDeclarationType" : "PlayerSession", "documentation" : "", "simpleType" : "PlayerSession", "variableSetterType" : "PlayerSession" }, "getterModel" : { "returnType" : "PlayerSession", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "PlayerSession", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Collection of player session objects created for the added players.

\n@param playerSessions Collection of player session objects created for the added players.*/", "getterDocumentation" : "/**

Collection of player session objects created for the added players.

\n@return Collection of player session objects created for the added players.*/", "fluentSetterDocumentation" : "/**

Collection of player session objects created for the added players.

\n@param playerSessions Collection of player session objects created for the added players.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Collection of player session objects created for the added players.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setPlayerSessions(java.util.Collection)} or {@link #withPlayerSessions(java.util.Collection)} if you want to override the existing values.

\n@param playerSessions Collection of player session objects created for the added players.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "LimitExceededException" : { "c2jName" : "LimitExceededException", "documentation" : "

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

", "shapeName" : "LimitExceededException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ ], "enums" : null, "variable" : { "variableName" : "limitExceededException", "variableType" : "LimitExceededException", "variableDeclarationType" : "LimitExceededException", "documentation" : null, "simpleType" : "LimitExceededException", "variableSetterType" : "LimitExceededException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "LimitExceededException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "DescribeGameSessionsRequest" : { "c2jName" : "DescribeGameSessionsInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "DescribeGameSessionsRequest", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

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

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param fleetId Unique identifier for a fleet. Specify a fleet to retrieve information on all game sessions active on the fleet.*/", "getterDocumentation" : "/**

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

\n@return Unique identifier for a fleet. Specify a fleet to retrieve information on all game sessions active on the fleet.*/", "fluentSetterDocumentation" : "/**

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

\n@param fleetId Unique identifier for a fleet. Specify a fleet to retrieve information on all game sessions active on the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param fleetId Unique identifier for a fleet. Specify a fleet to retrieve information on all game sessions active on the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Unique identifier for a game session. Specify the game session to retrieve information on.

", "name" : "GameSessionId", "c2jName" : "GameSessionId", "c2jShape" : "GameSessionId", "variable" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a game session. Specify the game session to retrieve information on.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessionId", "marshallLocationName" : "GameSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a game session. Specify the game session to retrieve information on.

\n@param gameSessionId Unique identifier for a game session. Specify the game session to retrieve information on.*/", "getterDocumentation" : "/**

Unique identifier for a game session. Specify the game session to retrieve information on.

\n@return Unique identifier for a game session. Specify the game session to retrieve information on.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a game session. Specify the game session to retrieve information on.

\n@param gameSessionId Unique identifier for a game session. Specify the game session to retrieve information on.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a game session. Specify the game session to retrieve information on.

\n@param gameSessionId Unique identifier for a game session. Specify the game session to retrieve information on.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

", "name" : "AliasId", "c2jName" : "AliasId", "c2jShape" : "AliasId", "variable" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "AliasId", "marshallLocationName" : "AliasId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

\n@param aliasId Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.*/", "getterDocumentation" : "/**

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

\n@return Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

\n@param aliasId Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

\n@param aliasId Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "StatusFilter", "c2jName" : "StatusFilter", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "statusFilter", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "statusFilter", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "StatusFilter", "marshallLocationName" : "StatusFilter", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param statusFilter Game session status to filter results on. Possible game session states include ACTIVE, TERMINATED, ACTIVATING and TERMINATING (the last two are transitory).*/", "getterDocumentation" : "/**

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

\n@return Game session status to filter results on. Possible game session states include ACTIVE, TERMINATED, ACTIVATING and TERMINATING (the last two are transitory).*/", "fluentSetterDocumentation" : "/**

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

\n@param statusFilter Game session status to filter results on. Possible game session states include ACTIVE, TERMINATED, ACTIVATING and TERMINATING (the last two are transitory).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param statusFilter Game session status to filter results on. Possible game session states include ACTIVE, TERMINATED, ACTIVATING and TERMINATING (the last two are transitory).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeGameSessionsRequest", "variableType" : "DescribeGameSessionsRequest", "variableDeclarationType" : "DescribeGameSessionsRequest", "documentation" : null, "simpleType" : "DescribeGameSessionsRequest", "variableSetterType" : "DescribeGameSessionsRequest" }, "marshaller" : { "action" : "DescribeGameSessions", "verb" : "POST", "target" : "GameLift.DescribeGameSessions", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NextToken" : { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "AliasId" : { "documentation" : "

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

", "name" : "AliasId", "c2jName" : "AliasId", "c2jShape" : "AliasId", "variable" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "AliasId", "marshallLocationName" : "AliasId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

\n@param aliasId Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.*/", "getterDocumentation" : "/**

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

\n@return Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

\n@param aliasId Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

\n@param aliasId Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FleetId" : { "documentation" : "

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

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param fleetId Unique identifier for a fleet. Specify a fleet to retrieve information on all game sessions active on the fleet.*/", "getterDocumentation" : "/**

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

\n@return Unique identifier for a fleet. Specify a fleet to retrieve information on all game sessions active on the fleet.*/", "fluentSetterDocumentation" : "/**

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

\n@param fleetId Unique identifier for a fleet. Specify a fleet to retrieve information on all game sessions active on the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param fleetId Unique identifier for a fleet. Specify a fleet to retrieve information on all game sessions active on the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "GameSessionId" : { "documentation" : "

Unique identifier for a game session. Specify the game session to retrieve information on.

", "name" : "GameSessionId", "c2jName" : "GameSessionId", "c2jShape" : "GameSessionId", "variable" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a game session. Specify the game session to retrieve information on.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessionId", "marshallLocationName" : "GameSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a game session. Specify the game session to retrieve information on.

\n@param gameSessionId Unique identifier for a game session. Specify the game session to retrieve information on.*/", "getterDocumentation" : "/**

Unique identifier for a game session. Specify the game session to retrieve information on.

\n@return Unique identifier for a game session. Specify the game session to retrieve information on.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a game session. Specify the game session to retrieve information on.

\n@param gameSessionId Unique identifier for a game session. Specify the game session to retrieve information on.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a game session. Specify the game session to retrieve information on.

\n@param gameSessionId Unique identifier for a game session. Specify the game session to retrieve information on.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "StatusFilter" : { "documentation" : "

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

", "name" : "StatusFilter", "c2jName" : "StatusFilter", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "statusFilter", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "statusFilter", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "StatusFilter", "marshallLocationName" : "StatusFilter", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param statusFilter Game session status to filter results on. Possible game session states include ACTIVE, TERMINATED, ACTIVATING and TERMINATING (the last two are transitory).*/", "getterDocumentation" : "/**

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

\n@return Game session status to filter results on. Possible game session states include ACTIVE, TERMINATED, ACTIVATING and TERMINATING (the last two are transitory).*/", "fluentSetterDocumentation" : "/**

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

\n@param statusFilter Game session status to filter results on. Possible game session states include ACTIVE, TERMINATED, ACTIVATING and TERMINATING (the last two are transitory).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param statusFilter Game session status to filter results on. Possible game session states include ACTIVE, TERMINATED, ACTIVATING and TERMINATING (the last two are transitory).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Limit" : { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "InvalidGameSessionStatusException" : { "c2jName" : "InvalidGameSessionStatusException", "documentation" : "

The requested operation would cause a conflict with the current state of a resource associated with the request and/or the game instance. Such requests should not be retried by clients without resolving the conflict.

", "shapeName" : "InvalidGameSessionStatusException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ ], "enums" : null, "variable" : { "variableName" : "invalidGameSessionStatusException", "variableType" : "InvalidGameSessionStatusException", "variableDeclarationType" : "InvalidGameSessionStatusException", "documentation" : null, "simpleType" : "InvalidGameSessionStatusException", "variableSetterType" : "InvalidGameSessionStatusException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "InvalidGameSessionStatusException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "DescribeGameSessionDetailsResult" : { "c2jName" : "DescribeGameSessionDetailsOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "DescribeGameSessionDetailsResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

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

", "name" : "GameSessionDetails", "c2jName" : "GameSessionDetails", "c2jShape" : "GameSessionDetailList", "variable" : { "variableName" : "gameSessionDetails", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

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

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "gameSessionDetails", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessionDetails", "marshallLocationName" : "GameSessionDetails", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "GameSessionDetail", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "GameSessionDetail", "variable" : { "variableName" : "member", "variableType" : "GameSessionDetail", "variableDeclarationType" : "GameSessionDetail", "documentation" : "", "simpleType" : "GameSessionDetail", "variableSetterType" : "GameSessionDetail" }, "setterModel" : { "variableName" : "member", "variableType" : "GameSessionDetail", "variableDeclarationType" : "GameSessionDetail", "documentation" : "", "simpleType" : "GameSessionDetail", "variableSetterType" : "GameSessionDetail" }, "getterModel" : { "returnType" : "GameSessionDetail", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "GameSessionDetail", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

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

\n@param gameSessionDetails Collection of objects containing game session properties and the protection policy currently in force for each session matching the request.*/", "getterDocumentation" : "/**

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

\n@return Collection of objects containing game session properties and the protection policy currently in force for each session matching the request.*/", "fluentSetterDocumentation" : "/**

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

\n@param gameSessionDetails Collection of objects containing game session properties and the protection policy currently in force for each session matching the request.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setGameSessionDetails(java.util.Collection)} or {@link #withGameSessionDetails(java.util.Collection)} if you want to override the existing values.

\n@param gameSessionDetails Collection of objects containing game session properties and the protection policy currently in force for each session matching the request.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeGameSessionDetailsResult", "variableType" : "DescribeGameSessionDetailsResult", "variableDeclarationType" : "DescribeGameSessionDetailsResult", "documentation" : null, "simpleType" : "DescribeGameSessionDetailsResult", "variableSetterType" : "DescribeGameSessionDetailsResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NextToken" : { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "GameSessionDetails" : { "documentation" : "

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

", "name" : "GameSessionDetails", "c2jName" : "GameSessionDetails", "c2jShape" : "GameSessionDetailList", "variable" : { "variableName" : "gameSessionDetails", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

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

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "gameSessionDetails", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessionDetails", "marshallLocationName" : "GameSessionDetails", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "GameSessionDetail", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "GameSessionDetail", "variable" : { "variableName" : "member", "variableType" : "GameSessionDetail", "variableDeclarationType" : "GameSessionDetail", "documentation" : "", "simpleType" : "GameSessionDetail", "variableSetterType" : "GameSessionDetail" }, "setterModel" : { "variableName" : "member", "variableType" : "GameSessionDetail", "variableDeclarationType" : "GameSessionDetail", "documentation" : "", "simpleType" : "GameSessionDetail", "variableSetterType" : "GameSessionDetail" }, "getterModel" : { "returnType" : "GameSessionDetail", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "GameSessionDetail", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

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

\n@param gameSessionDetails Collection of objects containing game session properties and the protection policy currently in force for each session matching the request.*/", "getterDocumentation" : "/**

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

\n@return Collection of objects containing game session properties and the protection policy currently in force for each session matching the request.*/", "fluentSetterDocumentation" : "/**

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

\n@param gameSessionDetails Collection of objects containing game session properties and the protection policy currently in force for each session matching the request.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setGameSessionDetails(java.util.Collection)} or {@link #withGameSessionDetails(java.util.Collection)} if you want to override the existing values.

\n@param gameSessionDetails Collection of objects containing game session properties and the protection policy currently in force for each session matching the request.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "UpdateFleetPortSettingsRequest" : { "c2jName" : "UpdateFleetPortSettingsInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "UpdateFleetPortSettingsRequest", "deprecated" : false, "required" : [ "FleetId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for the fleet you want to update port settings for.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the fleet you want to update port settings for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the fleet you want to update port settings for.

\n@param fleetId Unique identifier for the fleet you want to update port settings for.*/", "getterDocumentation" : "/**

Unique identifier for the fleet you want to update port settings for.

\n@return Unique identifier for the fleet you want to update port settings for.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the fleet you want to update port settings for.

\n@param fleetId Unique identifier for the fleet you want to update port settings for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the fleet you want to update port settings for.

\n@param fleetId Unique identifier for the fleet you want to update port settings for.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Collection of port settings to be added to the fleet record.

", "name" : "InboundPermissionAuthorizations", "c2jName" : "InboundPermissionAuthorizations", "c2jShape" : "IpPermissionsList", "variable" : { "variableName" : "inboundPermissionAuthorizations", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Collection of port settings to be added to the fleet record.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "inboundPermissionAuthorizations", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "InboundPermissionAuthorizations", "marshallLocationName" : "InboundPermissionAuthorizations", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "IpPermission", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "IpPermission", "variable" : { "variableName" : "member", "variableType" : "IpPermission", "variableDeclarationType" : "IpPermission", "documentation" : "", "simpleType" : "IpPermission", "variableSetterType" : "IpPermission" }, "setterModel" : { "variableName" : "member", "variableType" : "IpPermission", "variableDeclarationType" : "IpPermission", "documentation" : "", "simpleType" : "IpPermission", "variableSetterType" : "IpPermission" }, "getterModel" : { "returnType" : "IpPermission", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "IpPermission", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Collection of port settings to be added to the fleet record.

\n@param inboundPermissionAuthorizations Collection of port settings to be added to the fleet record.*/", "getterDocumentation" : "/**

Collection of port settings to be added to the fleet record.

\n@return Collection of port settings to be added to the fleet record.*/", "fluentSetterDocumentation" : "/**

Collection of port settings to be added to the fleet record.

\n@param inboundPermissionAuthorizations Collection of port settings to be added to the fleet record.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Collection of port settings to be added to the fleet record.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setInboundPermissionAuthorizations(java.util.Collection)} or {@link #withInboundPermissionAuthorizations(java.util.Collection)} if you want to override the existing values.

\n@param inboundPermissionAuthorizations Collection of port settings to be added to the fleet record.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Collection of port settings to be removed from the fleet record.

", "name" : "InboundPermissionRevocations", "c2jName" : "InboundPermissionRevocations", "c2jShape" : "IpPermissionsList", "variable" : { "variableName" : "inboundPermissionRevocations", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Collection of port settings to be removed from the fleet record.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "inboundPermissionRevocations", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "InboundPermissionRevocations", "marshallLocationName" : "InboundPermissionRevocations", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "IpPermission", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "IpPermission", "variable" : { "variableName" : "member", "variableType" : "IpPermission", "variableDeclarationType" : "IpPermission", "documentation" : "", "simpleType" : "IpPermission", "variableSetterType" : "IpPermission" }, "setterModel" : { "variableName" : "member", "variableType" : "IpPermission", "variableDeclarationType" : "IpPermission", "documentation" : "", "simpleType" : "IpPermission", "variableSetterType" : "IpPermission" }, "getterModel" : { "returnType" : "IpPermission", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "IpPermission", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Collection of port settings to be removed from the fleet record.

\n@param inboundPermissionRevocations Collection of port settings to be removed from the fleet record.*/", "getterDocumentation" : "/**

Collection of port settings to be removed from the fleet record.

\n@return Collection of port settings to be removed from the fleet record.*/", "fluentSetterDocumentation" : "/**

Collection of port settings to be removed from the fleet record.

\n@param inboundPermissionRevocations Collection of port settings to be removed from the fleet record.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Collection of port settings to be removed from the fleet record.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setInboundPermissionRevocations(java.util.Collection)} or {@link #withInboundPermissionRevocations(java.util.Collection)} if you want to override the existing values.

\n@param inboundPermissionRevocations Collection of port settings to be removed from the fleet record.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "updateFleetPortSettingsRequest", "variableType" : "UpdateFleetPortSettingsRequest", "variableDeclarationType" : "UpdateFleetPortSettingsRequest", "documentation" : null, "simpleType" : "UpdateFleetPortSettingsRequest", "variableSetterType" : "UpdateFleetPortSettingsRequest" }, "marshaller" : { "action" : "UpdateFleetPortSettings", "verb" : "POST", "target" : "GameLift.UpdateFleetPortSettings", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "InboundPermissionRevocations" : { "documentation" : "

Collection of port settings to be removed from the fleet record.

", "name" : "InboundPermissionRevocations", "c2jName" : "InboundPermissionRevocations", "c2jShape" : "IpPermissionsList", "variable" : { "variableName" : "inboundPermissionRevocations", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Collection of port settings to be removed from the fleet record.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "inboundPermissionRevocations", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "InboundPermissionRevocations", "marshallLocationName" : "InboundPermissionRevocations", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "IpPermission", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "IpPermission", "variable" : { "variableName" : "member", "variableType" : "IpPermission", "variableDeclarationType" : "IpPermission", "documentation" : "", "simpleType" : "IpPermission", "variableSetterType" : "IpPermission" }, "setterModel" : { "variableName" : "member", "variableType" : "IpPermission", "variableDeclarationType" : "IpPermission", "documentation" : "", "simpleType" : "IpPermission", "variableSetterType" : "IpPermission" }, "getterModel" : { "returnType" : "IpPermission", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "IpPermission", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Collection of port settings to be removed from the fleet record.

\n@param inboundPermissionRevocations Collection of port settings to be removed from the fleet record.*/", "getterDocumentation" : "/**

Collection of port settings to be removed from the fleet record.

\n@return Collection of port settings to be removed from the fleet record.*/", "fluentSetterDocumentation" : "/**

Collection of port settings to be removed from the fleet record.

\n@param inboundPermissionRevocations Collection of port settings to be removed from the fleet record.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Collection of port settings to be removed from the fleet record.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setInboundPermissionRevocations(java.util.Collection)} or {@link #withInboundPermissionRevocations(java.util.Collection)} if you want to override the existing values.

\n@param inboundPermissionRevocations Collection of port settings to be removed from the fleet record.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FleetId" : { "documentation" : "

Unique identifier for the fleet you want to update port settings for.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the fleet you want to update port settings for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the fleet you want to update port settings for.

\n@param fleetId Unique identifier for the fleet you want to update port settings for.*/", "getterDocumentation" : "/**

Unique identifier for the fleet you want to update port settings for.

\n@return Unique identifier for the fleet you want to update port settings for.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the fleet you want to update port settings for.

\n@param fleetId Unique identifier for the fleet you want to update port settings for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the fleet you want to update port settings for.

\n@param fleetId Unique identifier for the fleet you want to update port settings for.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "InboundPermissionAuthorizations" : { "documentation" : "

Collection of port settings to be added to the fleet record.

", "name" : "InboundPermissionAuthorizations", "c2jName" : "InboundPermissionAuthorizations", "c2jShape" : "IpPermissionsList", "variable" : { "variableName" : "inboundPermissionAuthorizations", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Collection of port settings to be added to the fleet record.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "inboundPermissionAuthorizations", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "InboundPermissionAuthorizations", "marshallLocationName" : "InboundPermissionAuthorizations", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "IpPermission", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "IpPermission", "variable" : { "variableName" : "member", "variableType" : "IpPermission", "variableDeclarationType" : "IpPermission", "documentation" : "", "simpleType" : "IpPermission", "variableSetterType" : "IpPermission" }, "setterModel" : { "variableName" : "member", "variableType" : "IpPermission", "variableDeclarationType" : "IpPermission", "documentation" : "", "simpleType" : "IpPermission", "variableSetterType" : "IpPermission" }, "getterModel" : { "returnType" : "IpPermission", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "IpPermission", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Collection of port settings to be added to the fleet record.

\n@param inboundPermissionAuthorizations Collection of port settings to be added to the fleet record.*/", "getterDocumentation" : "/**

Collection of port settings to be added to the fleet record.

\n@return Collection of port settings to be added to the fleet record.*/", "fluentSetterDocumentation" : "/**

Collection of port settings to be added to the fleet record.

\n@param inboundPermissionAuthorizations Collection of port settings to be added to the fleet record.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Collection of port settings to be added to the fleet record.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setInboundPermissionAuthorizations(java.util.Collection)} or {@link #withInboundPermissionAuthorizations(java.util.Collection)} if you want to override the existing values.

\n@param inboundPermissionAuthorizations Collection of port settings to be added to the fleet record.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "FleetStatus" : { "c2jName" : "FleetStatus", "documentation" : "", "shapeName" : "FleetStatus", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : [ { "name" : "NEW", "value" : "NEW" }, { "name" : "DOWNLOADING", "value" : "DOWNLOADING" }, { "name" : "VALIDATING", "value" : "VALIDATING" }, { "name" : "BUILDING", "value" : "BUILDING" }, { "name" : "ACTIVATING", "value" : "ACTIVATING" }, { "name" : "ACTIVE", "value" : "ACTIVE" }, { "name" : "DELETING", "value" : "DELETING" }, { "name" : "ERROR", "value" : "ERROR" }, { "name" : "TERMINATED", "value" : "TERMINATED" } ], "variable" : { "variableName" : "fleetStatus", "variableType" : "FleetStatus", "variableDeclarationType" : "FleetStatus", "documentation" : null, "simpleType" : "FleetStatus", "variableSetterType" : "FleetStatus" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "DescribeFleetCapacityRequest" : { "c2jName" : "DescribeFleetCapacityInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "DescribeFleetCapacityRequest", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for the fleet(s) you want to retrieve capacity information for.

", "name" : "FleetIds", "c2jName" : "FleetIds", "c2jShape" : "FleetIdList", "variable" : { "variableName" : "fleetIds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Unique identifier for the fleet(s) you want to retrieve capacity information for.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "fleetIds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetIds", "marshallLocationName" : "FleetIds", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "FleetId", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Unique identifier for the fleet(s) you want to retrieve capacity information for.

\n@param fleetIds Unique identifier for the fleet(s) you want to retrieve capacity information for.*/", "getterDocumentation" : "/**

Unique identifier for the fleet(s) you want to retrieve capacity information for.

\n@return Unique identifier for the fleet(s) you want to retrieve capacity information for.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the fleet(s) you want to retrieve capacity information for.

\n@param fleetIds Unique identifier for the fleet(s) you want to retrieve capacity information for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the fleet(s) you want to retrieve capacity information for.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setFleetIds(java.util.Collection)} or {@link #withFleetIds(java.util.Collection)} if you want to override the existing values.

\n@param fleetIds Unique identifier for the fleet(s) you want to retrieve capacity information for.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeFleetCapacityRequest", "variableType" : "DescribeFleetCapacityRequest", "variableDeclarationType" : "DescribeFleetCapacityRequest", "documentation" : null, "simpleType" : "DescribeFleetCapacityRequest", "variableSetterType" : "DescribeFleetCapacityRequest" }, "marshaller" : { "action" : "DescribeFleetCapacity", "verb" : "POST", "target" : "GameLift.DescribeFleetCapacity", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NextToken" : { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FleetIds" : { "documentation" : "

Unique identifier for the fleet(s) you want to retrieve capacity information for.

", "name" : "FleetIds", "c2jName" : "FleetIds", "c2jShape" : "FleetIdList", "variable" : { "variableName" : "fleetIds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Unique identifier for the fleet(s) you want to retrieve capacity information for.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "fleetIds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetIds", "marshallLocationName" : "FleetIds", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "FleetId", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Unique identifier for the fleet(s) you want to retrieve capacity information for.

\n@param fleetIds Unique identifier for the fleet(s) you want to retrieve capacity information for.*/", "getterDocumentation" : "/**

Unique identifier for the fleet(s) you want to retrieve capacity information for.

\n@return Unique identifier for the fleet(s) you want to retrieve capacity information for.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the fleet(s) you want to retrieve capacity information for.

\n@param fleetIds Unique identifier for the fleet(s) you want to retrieve capacity information for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the fleet(s) you want to retrieve capacity information for.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setFleetIds(java.util.Collection)} or {@link #withFleetIds(java.util.Collection)} if you want to override the existing values.

\n@param fleetIds Unique identifier for the fleet(s) you want to retrieve capacity information for.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Limit" : { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "UpdateFleetCapacityResult" : { "c2jName" : "UpdateFleetCapacityOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "UpdateFleetCapacityResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for the updated fleet.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the updated fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@param fleetId Unique identifier for the updated fleet.*/", "getterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@return Unique identifier for the updated fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@param fleetId Unique identifier for the updated fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@param fleetId Unique identifier for the updated fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "updateFleetCapacityResult", "variableType" : "UpdateFleetCapacityResult", "variableDeclarationType" : "UpdateFleetCapacityResult", "documentation" : null, "simpleType" : "UpdateFleetCapacityResult", "variableSetterType" : "UpdateFleetCapacityResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "FleetId" : { "documentation" : "

Unique identifier for the updated fleet.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the updated fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@param fleetId Unique identifier for the updated fleet.*/", "getterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@return Unique identifier for the updated fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@param fleetId Unique identifier for the updated fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@param fleetId Unique identifier for the updated fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "CreateFleetRequest" : { "c2jName" : "CreateFleetInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "CreateFleetRequest", "deprecated" : false, "required" : [ "Name", "BuildId", "ServerLaunchPath", "EC2InstanceType" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Descriptive label associated with this fleet. Fleet names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this fleet. Fleet names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@param name Descriptive label associated with this fleet. Fleet names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@return Descriptive label associated with this fleet. Fleet names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@param name Descriptive label associated with this fleet. Fleet names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@param name Descriptive label associated with this fleet. Fleet names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Human-readable description of the fleet.

", "name" : "Description", "c2jName" : "Description", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Human-readable description of the fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Description", "marshallLocationName" : "Description", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Human-readable description of the fleet.

\n@param description Human-readable description of the fleet.*/", "getterDocumentation" : "/**

Human-readable description of the fleet.

\n@return Human-readable description of the fleet.*/", "fluentSetterDocumentation" : "/**

Human-readable description of the fleet.

\n@param description Human-readable description of the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Human-readable description of the fleet.

\n@param description Human-readable description of the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Unique identifier for the build you want the new fleet to use.

", "name" : "BuildId", "c2jName" : "BuildId", "c2jShape" : "BuildId", "variable" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the build you want the new fleet to use.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "BuildId", "marshallLocationName" : "BuildId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the build you want the new fleet to use.

\n@param buildId Unique identifier for the build you want the new fleet to use.*/", "getterDocumentation" : "/**

Unique identifier for the build you want the new fleet to use.

\n@return Unique identifier for the build you want the new fleet to use.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the build you want the new fleet to use.

\n@param buildId Unique identifier for the build you want the new fleet to use.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the build you want the new fleet to use.

\n@param buildId Unique identifier for the build you want the new fleet to use.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

", "name" : "ServerLaunchPath", "c2jName" : "ServerLaunchPath", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "serverLaunchPath", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "serverLaunchPath", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ServerLaunchPath", "marshallLocationName" : "ServerLaunchPath", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

\n@param serverLaunchPath Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.*/", "getterDocumentation" : "/**

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

\n@return Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.*/", "fluentSetterDocumentation" : "/**

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

\n@param serverLaunchPath Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

\n@param serverLaunchPath Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

", "name" : "ServerLaunchParameters", "c2jName" : "ServerLaunchParameters", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "serverLaunchParameters", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "serverLaunchParameters", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ServerLaunchParameters", "marshallLocationName" : "ServerLaunchParameters", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

\n@param serverLaunchParameters Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".*/", "getterDocumentation" : "/**

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

\n@return Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".*/", "fluentSetterDocumentation" : "/**

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

\n@param serverLaunchParameters Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

\n@param serverLaunchParameters Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

", "name" : "LogPaths", "c2jName" : "LogPaths", "c2jShape" : "StringList", "variable" : { "variableName" : "logPaths", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "logPaths", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "LogPaths", "marshallLocationName" : "LogPaths", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

\n@param logPaths Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.*/", "getterDocumentation" : "/**

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

\n@return Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.*/", "fluentSetterDocumentation" : "/**

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

\n@param logPaths Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setLogPaths(java.util.Collection)} or {@link #withLogPaths(java.util.Collection)} if you want to override the existing values.

\n@param logPaths Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

", "name" : "EC2InstanceType", "c2jName" : "EC2InstanceType", "c2jShape" : "EC2InstanceType", "variable" : { "variableName" : "eC2InstanceType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "eC2InstanceType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "EC2InstanceType", "marshallLocationName" : "EC2InstanceType", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "EC2InstanceType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@param eC2InstanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@see EC2InstanceType*/", "getterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@return Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@see EC2InstanceType*/", "fluentSetterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@param eC2InstanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EC2InstanceType*/", "varargSetterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@param eC2InstanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EC2InstanceType*/" }, { "documentation" : "

Access limits for incoming traffic. Setting these values limits game server access to incoming traffic using specified IP ranges and port numbers. Some ports in a range may be restricted. You can provide one or more sets of permissions for the fleet.

", "name" : "EC2InboundPermissions", "c2jName" : "EC2InboundPermissions", "c2jShape" : "IpPermissionsList", "variable" : { "variableName" : "eC2InboundPermissions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Access limits for incoming traffic. Setting these values limits game server access to incoming traffic using specified IP ranges and port numbers. Some ports in a range may be restricted. You can provide one or more sets of permissions for the fleet.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "eC2InboundPermissions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "EC2InboundPermissions", "marshallLocationName" : "EC2InboundPermissions", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "IpPermission", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "IpPermission", "variable" : { "variableName" : "member", "variableType" : "IpPermission", "variableDeclarationType" : "IpPermission", "documentation" : "", "simpleType" : "IpPermission", "variableSetterType" : "IpPermission" }, "setterModel" : { "variableName" : "member", "variableType" : "IpPermission", "variableDeclarationType" : "IpPermission", "documentation" : "", "simpleType" : "IpPermission", "variableSetterType" : "IpPermission" }, "getterModel" : { "returnType" : "IpPermission", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "IpPermission", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Access limits for incoming traffic. Setting these values limits game server access to incoming traffic using specified IP ranges and port numbers. Some ports in a range may be restricted. You can provide one or more sets of permissions for the fleet.

\n@param eC2InboundPermissions Access limits for incoming traffic. Setting these values limits game server access to incoming traffic using specified IP ranges and port numbers. Some ports in a range may be restricted. You can provide one or more sets of permissions for the fleet.*/", "getterDocumentation" : "/**

Access limits for incoming traffic. Setting these values limits game server access to incoming traffic using specified IP ranges and port numbers. Some ports in a range may be restricted. You can provide one or more sets of permissions for the fleet.

\n@return Access limits for incoming traffic. Setting these values limits game server access to incoming traffic using specified IP ranges and port numbers. Some ports in a range may be restricted. You can provide one or more sets of permissions for the fleet.*/", "fluentSetterDocumentation" : "/**

Access limits for incoming traffic. Setting these values limits game server access to incoming traffic using specified IP ranges and port numbers. Some ports in a range may be restricted. You can provide one or more sets of permissions for the fleet.

\n@param eC2InboundPermissions Access limits for incoming traffic. Setting these values limits game server access to incoming traffic using specified IP ranges and port numbers. Some ports in a range may be restricted. You can provide one or more sets of permissions for the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Access limits for incoming traffic. Setting these values limits game server access to incoming traffic using specified IP ranges and port numbers. Some ports in a range may be restricted. You can provide one or more sets of permissions for the fleet.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setEC2InboundPermissions(java.util.Collection)} or {@link #withEC2InboundPermissions(java.util.Collection)} if you want to override the existing values.

\n@param eC2InboundPermissions Access limits for incoming traffic. Setting these values limits game server access to incoming traffic using specified IP ranges and port numbers. Some ports in a range may be restricted. You can provide one or more sets of permissions for the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Game session protection policy to apply to all instances created in this fleet. If this parameter is not set, new instances in this fleet will default to no protection. Protection can be set for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

", "name" : "NewGameSessionProtectionPolicy", "c2jName" : "NewGameSessionProtectionPolicy", "c2jShape" : "ProtectionPolicy", "variable" : { "variableName" : "newGameSessionProtectionPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Game session protection policy to apply to all instances created in this fleet. If this parameter is not set, new instances in this fleet will default to no protection. Protection can be set for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "newGameSessionProtectionPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NewGameSessionProtectionPolicy", "marshallLocationName" : "NewGameSessionProtectionPolicy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ProtectionPolicy", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Game session protection policy to apply to all instances created in this fleet. If this parameter is not set, new instances in this fleet will default to no protection. Protection can be set for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param newGameSessionProtectionPolicy Game session protection policy to apply to all instances created in this fleet. If this parameter is not set, new instances in this fleet will default to no protection. Protection can be set for individual instances using UpdateGameSession.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@see ProtectionPolicy*/", "getterDocumentation" : "/**

Game session protection policy to apply to all instances created in this fleet. If this parameter is not set, new instances in this fleet will default to no protection. Protection can be set for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@return Game session protection policy to apply to all instances created in this fleet. If this parameter is not set, new instances in this fleet will default to no protection. Protection can be set for individual instances using UpdateGameSession.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@see ProtectionPolicy*/", "fluentSetterDocumentation" : "/**

Game session protection policy to apply to all instances created in this fleet. If this parameter is not set, new instances in this fleet will default to no protection. Protection can be set for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param newGameSessionProtectionPolicy Game session protection policy to apply to all instances created in this fleet. If this parameter is not set, new instances in this fleet will default to no protection. Protection can be set for individual instances using UpdateGameSession.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ProtectionPolicy*/", "varargSetterDocumentation" : "/**

Game session protection policy to apply to all instances created in this fleet. If this parameter is not set, new instances in this fleet will default to no protection. Protection can be set for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param newGameSessionProtectionPolicy Game session protection policy to apply to all instances created in this fleet. If this parameter is not set, new instances in this fleet will default to no protection. Protection can be set for individual instances using UpdateGameSession.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ProtectionPolicy*/" } ], "enums" : null, "variable" : { "variableName" : "createFleetRequest", "variableType" : "CreateFleetRequest", "variableDeclarationType" : "CreateFleetRequest", "documentation" : null, "simpleType" : "CreateFleetRequest", "variableSetterType" : "CreateFleetRequest" }, "marshaller" : { "action" : "CreateFleet", "verb" : "POST", "target" : "GameLift.CreateFleet", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ServerLaunchParameters" : { "documentation" : "

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

", "name" : "ServerLaunchParameters", "c2jName" : "ServerLaunchParameters", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "serverLaunchParameters", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "serverLaunchParameters", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ServerLaunchParameters", "marshallLocationName" : "ServerLaunchParameters", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

\n@param serverLaunchParameters Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".*/", "getterDocumentation" : "/**

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

\n@return Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".*/", "fluentSetterDocumentation" : "/**

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

\n@param serverLaunchParameters Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

\n@param serverLaunchParameters Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Name" : { "documentation" : "

Descriptive label associated with this fleet. Fleet names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this fleet. Fleet names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@param name Descriptive label associated with this fleet. Fleet names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@return Descriptive label associated with this fleet. Fleet names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@param name Descriptive label associated with this fleet. Fleet names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@param name Descriptive label associated with this fleet. Fleet names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Description" : { "documentation" : "

Human-readable description of the fleet.

", "name" : "Description", "c2jName" : "Description", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Human-readable description of the fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Description", "marshallLocationName" : "Description", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Human-readable description of the fleet.

\n@param description Human-readable description of the fleet.*/", "getterDocumentation" : "/**

Human-readable description of the fleet.

\n@return Human-readable description of the fleet.*/", "fluentSetterDocumentation" : "/**

Human-readable description of the fleet.

\n@param description Human-readable description of the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Human-readable description of the fleet.

\n@param description Human-readable description of the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "LogPaths" : { "documentation" : "

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

", "name" : "LogPaths", "c2jName" : "LogPaths", "c2jShape" : "StringList", "variable" : { "variableName" : "logPaths", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "logPaths", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "LogPaths", "marshallLocationName" : "LogPaths", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

\n@param logPaths Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.*/", "getterDocumentation" : "/**

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

\n@return Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.*/", "fluentSetterDocumentation" : "/**

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

\n@param logPaths Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setLogPaths(java.util.Collection)} or {@link #withLogPaths(java.util.Collection)} if you want to override the existing values.

\n@param logPaths Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "EC2InstanceType" : { "documentation" : "

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

", "name" : "EC2InstanceType", "c2jName" : "EC2InstanceType", "c2jShape" : "EC2InstanceType", "variable" : { "variableName" : "eC2InstanceType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "eC2InstanceType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "EC2InstanceType", "marshallLocationName" : "EC2InstanceType", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "EC2InstanceType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@param eC2InstanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@see EC2InstanceType*/", "getterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@return Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@see EC2InstanceType*/", "fluentSetterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@param eC2InstanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EC2InstanceType*/", "varargSetterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@param eC2InstanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EC2InstanceType*/" }, "NewGameSessionProtectionPolicy" : { "documentation" : "

Game session protection policy to apply to all instances created in this fleet. If this parameter is not set, new instances in this fleet will default to no protection. Protection can be set for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

", "name" : "NewGameSessionProtectionPolicy", "c2jName" : "NewGameSessionProtectionPolicy", "c2jShape" : "ProtectionPolicy", "variable" : { "variableName" : "newGameSessionProtectionPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Game session protection policy to apply to all instances created in this fleet. If this parameter is not set, new instances in this fleet will default to no protection. Protection can be set for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "newGameSessionProtectionPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NewGameSessionProtectionPolicy", "marshallLocationName" : "NewGameSessionProtectionPolicy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ProtectionPolicy", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Game session protection policy to apply to all instances created in this fleet. If this parameter is not set, new instances in this fleet will default to no protection. Protection can be set for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param newGameSessionProtectionPolicy Game session protection policy to apply to all instances created in this fleet. If this parameter is not set, new instances in this fleet will default to no protection. Protection can be set for individual instances using UpdateGameSession.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@see ProtectionPolicy*/", "getterDocumentation" : "/**

Game session protection policy to apply to all instances created in this fleet. If this parameter is not set, new instances in this fleet will default to no protection. Protection can be set for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@return Game session protection policy to apply to all instances created in this fleet. If this parameter is not set, new instances in this fleet will default to no protection. Protection can be set for individual instances using UpdateGameSession.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@see ProtectionPolicy*/", "fluentSetterDocumentation" : "/**

Game session protection policy to apply to all instances created in this fleet. If this parameter is not set, new instances in this fleet will default to no protection. Protection can be set for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param newGameSessionProtectionPolicy Game session protection policy to apply to all instances created in this fleet. If this parameter is not set, new instances in this fleet will default to no protection. Protection can be set for individual instances using UpdateGameSession.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ProtectionPolicy*/", "varargSetterDocumentation" : "/**

Game session protection policy to apply to all instances created in this fleet. If this parameter is not set, new instances in this fleet will default to no protection. Protection can be set for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param newGameSessionProtectionPolicy Game session protection policy to apply to all instances created in this fleet. If this parameter is not set, new instances in this fleet will default to no protection. Protection can be set for individual instances using UpdateGameSession.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ProtectionPolicy*/" }, "ServerLaunchPath" : { "documentation" : "

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

", "name" : "ServerLaunchPath", "c2jName" : "ServerLaunchPath", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "serverLaunchPath", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "serverLaunchPath", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ServerLaunchPath", "marshallLocationName" : "ServerLaunchPath", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

\n@param serverLaunchPath Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.*/", "getterDocumentation" : "/**

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

\n@return Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.*/", "fluentSetterDocumentation" : "/**

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

\n@param serverLaunchPath Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

\n@param serverLaunchPath Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "BuildId" : { "documentation" : "

Unique identifier for the build you want the new fleet to use.

", "name" : "BuildId", "c2jName" : "BuildId", "c2jShape" : "BuildId", "variable" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the build you want the new fleet to use.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "BuildId", "marshallLocationName" : "BuildId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the build you want the new fleet to use.

\n@param buildId Unique identifier for the build you want the new fleet to use.*/", "getterDocumentation" : "/**

Unique identifier for the build you want the new fleet to use.

\n@return Unique identifier for the build you want the new fleet to use.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the build you want the new fleet to use.

\n@param buildId Unique identifier for the build you want the new fleet to use.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the build you want the new fleet to use.

\n@param buildId Unique identifier for the build you want the new fleet to use.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "EC2InboundPermissions" : { "documentation" : "

Access limits for incoming traffic. Setting these values limits game server access to incoming traffic using specified IP ranges and port numbers. Some ports in a range may be restricted. You can provide one or more sets of permissions for the fleet.

", "name" : "EC2InboundPermissions", "c2jName" : "EC2InboundPermissions", "c2jShape" : "IpPermissionsList", "variable" : { "variableName" : "eC2InboundPermissions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Access limits for incoming traffic. Setting these values limits game server access to incoming traffic using specified IP ranges and port numbers. Some ports in a range may be restricted. You can provide one or more sets of permissions for the fleet.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "eC2InboundPermissions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "EC2InboundPermissions", "marshallLocationName" : "EC2InboundPermissions", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "IpPermission", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "IpPermission", "variable" : { "variableName" : "member", "variableType" : "IpPermission", "variableDeclarationType" : "IpPermission", "documentation" : "", "simpleType" : "IpPermission", "variableSetterType" : "IpPermission" }, "setterModel" : { "variableName" : "member", "variableType" : "IpPermission", "variableDeclarationType" : "IpPermission", "documentation" : "", "simpleType" : "IpPermission", "variableSetterType" : "IpPermission" }, "getterModel" : { "returnType" : "IpPermission", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "IpPermission", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Access limits for incoming traffic. Setting these values limits game server access to incoming traffic using specified IP ranges and port numbers. Some ports in a range may be restricted. You can provide one or more sets of permissions for the fleet.

\n@param eC2InboundPermissions Access limits for incoming traffic. Setting these values limits game server access to incoming traffic using specified IP ranges and port numbers. Some ports in a range may be restricted. You can provide one or more sets of permissions for the fleet.*/", "getterDocumentation" : "/**

Access limits for incoming traffic. Setting these values limits game server access to incoming traffic using specified IP ranges and port numbers. Some ports in a range may be restricted. You can provide one or more sets of permissions for the fleet.

\n@return Access limits for incoming traffic. Setting these values limits game server access to incoming traffic using specified IP ranges and port numbers. Some ports in a range may be restricted. You can provide one or more sets of permissions for the fleet.*/", "fluentSetterDocumentation" : "/**

Access limits for incoming traffic. Setting these values limits game server access to incoming traffic using specified IP ranges and port numbers. Some ports in a range may be restricted. You can provide one or more sets of permissions for the fleet.

\n@param eC2InboundPermissions Access limits for incoming traffic. Setting these values limits game server access to incoming traffic using specified IP ranges and port numbers. Some ports in a range may be restricted. You can provide one or more sets of permissions for the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Access limits for incoming traffic. Setting these values limits game server access to incoming traffic using specified IP ranges and port numbers. Some ports in a range may be restricted. You can provide one or more sets of permissions for the fleet.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setEC2InboundPermissions(java.util.Collection)} or {@link #withEC2InboundPermissions(java.util.Collection)} if you want to override the existing values.

\n@param eC2InboundPermissions Access limits for incoming traffic. Setting these values limits game server access to incoming traffic using specified IP ranges and port numbers. Some ports in a range may be restricted. You can provide one or more sets of permissions for the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DeleteScalingPolicyRequest" : { "c2jName" : "DeleteScalingPolicyInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "DeleteScalingPolicyRequest", "deprecated" : false, "required" : [ "Name", "FleetId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@return Descriptive label associated with this scaling policy. Policy names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Unique identifier for a fleet.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.*/", "getterDocumentation" : "/**

Unique identifier for a fleet.

\n@return Unique identifier for a fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "deleteScalingPolicyRequest", "variableType" : "DeleteScalingPolicyRequest", "variableDeclarationType" : "DeleteScalingPolicyRequest", "documentation" : null, "simpleType" : "DeleteScalingPolicyRequest", "variableSetterType" : "DeleteScalingPolicyRequest" }, "marshaller" : { "action" : "DeleteScalingPolicy", "verb" : "POST", "target" : "GameLift.DeleteScalingPolicy", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Name" : { "documentation" : "

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@return Descriptive label associated with this scaling policy. Policy names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FleetId" : { "documentation" : "

Unique identifier for a fleet.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.*/", "getterDocumentation" : "/**

Unique identifier for a fleet.

\n@return Unique identifier for a fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DeleteAliasRequest" : { "c2jName" : "DeleteAliasInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "DeleteAliasRequest", "deprecated" : false, "required" : [ "AliasId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

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

", "name" : "AliasId", "c2jName" : "AliasId", "c2jShape" : "AliasId", "variable" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "AliasId", "marshallLocationName" : "AliasId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param aliasId Unique identifier for a fleet alias. Specify the alias you want to delete.*/", "getterDocumentation" : "/**

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

\n@return Unique identifier for a fleet alias. Specify the alias you want to delete.*/", "fluentSetterDocumentation" : "/**

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

\n@param aliasId Unique identifier for a fleet alias. Specify the alias you want to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param aliasId Unique identifier for a fleet alias. Specify the alias you want to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "deleteAliasRequest", "variableType" : "DeleteAliasRequest", "variableDeclarationType" : "DeleteAliasRequest", "documentation" : null, "simpleType" : "DeleteAliasRequest", "variableSetterType" : "DeleteAliasRequest" }, "marshaller" : { "action" : "DeleteAlias", "verb" : "POST", "target" : "GameLift.DeleteAlias", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "AliasId" : { "documentation" : "

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

", "name" : "AliasId", "c2jName" : "AliasId", "c2jShape" : "AliasId", "variable" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "AliasId", "marshallLocationName" : "AliasId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param aliasId Unique identifier for a fleet alias. Specify the alias you want to delete.*/", "getterDocumentation" : "/**

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

\n@return Unique identifier for a fleet alias. Specify the alias you want to delete.*/", "fluentSetterDocumentation" : "/**

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

\n@param aliasId Unique identifier for a fleet alias. Specify the alias you want to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param aliasId Unique identifier for a fleet alias. Specify the alias you want to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "CreateBuildRequest" : { "c2jName" : "CreateBuildInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "CreateBuildRequest", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Descriptive label associated with this build. Build names do not need to be unique. A build name can be changed later using UpdateBuild.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this build. Build names do not need to be unique. A build name can be changed later using UpdateBuild.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this build. Build names do not need to be unique. A build name can be changed later using UpdateBuild.

\n@param name Descriptive label associated with this build. Build names do not need to be unique. A build name can be changed later using UpdateBuild.*/", "getterDocumentation" : "/**

Descriptive label associated with this build. Build names do not need to be unique. A build name can be changed later using UpdateBuild.

\n@return Descriptive label associated with this build. Build names do not need to be unique. A build name can be changed later using UpdateBuild.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this build. Build names do not need to be unique. A build name can be changed later using UpdateBuild.

\n@param name Descriptive label associated with this build. Build names do not need to be unique. A build name can be changed later using UpdateBuild.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this build. Build names do not need to be unique. A build name can be changed later using UpdateBuild.

\n@param name Descriptive label associated with this build. Build names do not need to be unique. A build name can be changed later using UpdateBuild.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Version associated with this build. Version strings do not need to be unique to a build. A build version can be changed later using UpdateBuild.

", "name" : "Version", "c2jName" : "Version", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "version", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Version associated with this build. Version strings do not need to be unique to a build. A build version can be changed later using UpdateBuild.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "version", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Version", "marshallLocationName" : "Version", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Version associated with this build. Version strings do not need to be unique to a build. A build version can be changed later using UpdateBuild.

\n@param version Version associated with this build. Version strings do not need to be unique to a build. A build version can be changed later using UpdateBuild.*/", "getterDocumentation" : "/**

Version associated with this build. Version strings do not need to be unique to a build. A build version can be changed later using UpdateBuild.

\n@return Version associated with this build. Version strings do not need to be unique to a build. A build version can be changed later using UpdateBuild.*/", "fluentSetterDocumentation" : "/**

Version associated with this build. Version strings do not need to be unique to a build. A build version can be changed later using UpdateBuild.

\n@param version Version associated with this build. Version strings do not need to be unique to a build. A build version can be changed later using UpdateBuild.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Version associated with this build. Version strings do not need to be unique to a build. A build version can be changed later using UpdateBuild.

\n@param version Version associated with this build. Version strings do not need to be unique to a build. A build version can be changed later using UpdateBuild.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "", "name" : "StorageLocation", "c2jName" : "StorageLocation", "c2jShape" : "S3Location", "variable" : { "variableName" : "storageLocation", "variableType" : "S3Location", "variableDeclarationType" : "S3Location", "documentation" : "", "simpleType" : "S3Location", "variableSetterType" : "S3Location" }, "setterModel" : { "variableName" : "storageLocation", "variableType" : "S3Location", "variableDeclarationType" : "S3Location", "documentation" : "", "simpleType" : "S3Location", "variableSetterType" : "S3Location" }, "getterModel" : { "returnType" : "S3Location", "documentation" : null }, "http" : { "unmarshallLocationName" : "StorageLocation", "marshallLocationName" : "StorageLocation", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param storageLocation */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param storageLocation \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param storageLocation \n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "createBuildRequest", "variableType" : "CreateBuildRequest", "variableDeclarationType" : "CreateBuildRequest", "documentation" : null, "simpleType" : "CreateBuildRequest", "variableSetterType" : "CreateBuildRequest" }, "marshaller" : { "action" : "CreateBuild", "verb" : "POST", "target" : "GameLift.CreateBuild", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Name" : { "documentation" : "

Descriptive label associated with this build. Build names do not need to be unique. A build name can be changed later using UpdateBuild.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this build. Build names do not need to be unique. A build name can be changed later using UpdateBuild.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this build. Build names do not need to be unique. A build name can be changed later using UpdateBuild.

\n@param name Descriptive label associated with this build. Build names do not need to be unique. A build name can be changed later using UpdateBuild.*/", "getterDocumentation" : "/**

Descriptive label associated with this build. Build names do not need to be unique. A build name can be changed later using UpdateBuild.

\n@return Descriptive label associated with this build. Build names do not need to be unique. A build name can be changed later using UpdateBuild.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this build. Build names do not need to be unique. A build name can be changed later using UpdateBuild.

\n@param name Descriptive label associated with this build. Build names do not need to be unique. A build name can be changed later using UpdateBuild.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this build. Build names do not need to be unique. A build name can be changed later using UpdateBuild.

\n@param name Descriptive label associated with this build. Build names do not need to be unique. A build name can be changed later using UpdateBuild.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "StorageLocation" : { "documentation" : "", "name" : "StorageLocation", "c2jName" : "StorageLocation", "c2jShape" : "S3Location", "variable" : { "variableName" : "storageLocation", "variableType" : "S3Location", "variableDeclarationType" : "S3Location", "documentation" : "", "simpleType" : "S3Location", "variableSetterType" : "S3Location" }, "setterModel" : { "variableName" : "storageLocation", "variableType" : "S3Location", "variableDeclarationType" : "S3Location", "documentation" : "", "simpleType" : "S3Location", "variableSetterType" : "S3Location" }, "getterModel" : { "returnType" : "S3Location", "documentation" : null }, "http" : { "unmarshallLocationName" : "StorageLocation", "marshallLocationName" : "StorageLocation", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param storageLocation */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param storageLocation \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param storageLocation \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Version" : { "documentation" : "

Version associated with this build. Version strings do not need to be unique to a build. A build version can be changed later using UpdateBuild.

", "name" : "Version", "c2jName" : "Version", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "version", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Version associated with this build. Version strings do not need to be unique to a build. A build version can be changed later using UpdateBuild.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "version", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Version", "marshallLocationName" : "Version", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Version associated with this build. Version strings do not need to be unique to a build. A build version can be changed later using UpdateBuild.

\n@param version Version associated with this build. Version strings do not need to be unique to a build. A build version can be changed later using UpdateBuild.*/", "getterDocumentation" : "/**

Version associated with this build. Version strings do not need to be unique to a build. A build version can be changed later using UpdateBuild.

\n@return Version associated with this build. Version strings do not need to be unique to a build. A build version can be changed later using UpdateBuild.*/", "fluentSetterDocumentation" : "/**

Version associated with this build. Version strings do not need to be unique to a build. A build version can be changed later using UpdateBuild.

\n@param version Version associated with this build. Version strings do not need to be unique to a build. A build version can be changed later using UpdateBuild.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Version associated with this build. Version strings do not need to be unique to a build. A build version can be changed later using UpdateBuild.

\n@param version Version associated with this build. Version strings do not need to be unique to a build. A build version can be changed later using UpdateBuild.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "GetGameSessionLogUrlResult" : { "c2jName" : "GetGameSessionLogUrlOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "GetGameSessionLogUrlResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

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

", "name" : "PreSignedUrl", "c2jName" : "PreSignedUrl", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "preSignedUrl", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "preSignedUrl", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PreSignedUrl", "marshallLocationName" : "PreSignedUrl", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param preSignedUrl Location of the requested game session logs, available for download.*/", "getterDocumentation" : "/**

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

\n@return Location of the requested game session logs, available for download.*/", "fluentSetterDocumentation" : "/**

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

\n@param preSignedUrl Location of the requested game session logs, available for download.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param preSignedUrl Location of the requested game session logs, available for download.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "getGameSessionLogUrlResult", "variableType" : "GetGameSessionLogUrlResult", "variableDeclarationType" : "GetGameSessionLogUrlResult", "documentation" : null, "simpleType" : "GetGameSessionLogUrlResult", "variableSetterType" : "GetGameSessionLogUrlResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "PreSignedUrl" : { "documentation" : "

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

", "name" : "PreSignedUrl", "c2jName" : "PreSignedUrl", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "preSignedUrl", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "preSignedUrl", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PreSignedUrl", "marshallLocationName" : "PreSignedUrl", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param preSignedUrl Location of the requested game session logs, available for download.*/", "getterDocumentation" : "/**

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

\n@return Location of the requested game session logs, available for download.*/", "fluentSetterDocumentation" : "/**

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

\n@param preSignedUrl Location of the requested game session logs, available for download.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param preSignedUrl Location of the requested game session logs, available for download.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "ListBuildsResult" : { "c2jName" : "ListBuildsOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "ListBuildsResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Collection of build records that match the request.

", "name" : "Builds", "c2jName" : "Builds", "c2jShape" : "BuildList", "variable" : { "variableName" : "builds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Collection of build records that match the request.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "builds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "Builds", "marshallLocationName" : "Builds", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "Build", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "Build", "variable" : { "variableName" : "member", "variableType" : "Build", "variableDeclarationType" : "Build", "documentation" : "", "simpleType" : "Build", "variableSetterType" : "Build" }, "setterModel" : { "variableName" : "member", "variableType" : "Build", "variableDeclarationType" : "Build", "documentation" : "", "simpleType" : "Build", "variableSetterType" : "Build" }, "getterModel" : { "returnType" : "Build", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "Build", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Collection of build records that match the request.

\n@param builds Collection of build records that match the request.*/", "getterDocumentation" : "/**

Collection of build records that match the request.

\n@return Collection of build records that match the request.*/", "fluentSetterDocumentation" : "/**

Collection of build records that match the request.

\n@param builds Collection of build records that match the request.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Collection of build records that match the request.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setBuilds(java.util.Collection)} or {@link #withBuilds(java.util.Collection)} if you want to override the existing values.

\n@param builds Collection of build records that match the request.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "listBuildsResult", "variableType" : "ListBuildsResult", "variableDeclarationType" : "ListBuildsResult", "documentation" : null, "simpleType" : "ListBuildsResult", "variableSetterType" : "ListBuildsResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NextToken" : { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Builds" : { "documentation" : "

Collection of build records that match the request.

", "name" : "Builds", "c2jName" : "Builds", "c2jShape" : "BuildList", "variable" : { "variableName" : "builds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Collection of build records that match the request.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "builds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "Builds", "marshallLocationName" : "Builds", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "Build", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "Build", "variable" : { "variableName" : "member", "variableType" : "Build", "variableDeclarationType" : "Build", "documentation" : "", "simpleType" : "Build", "variableSetterType" : "Build" }, "setterModel" : { "variableName" : "member", "variableType" : "Build", "variableDeclarationType" : "Build", "documentation" : "", "simpleType" : "Build", "variableSetterType" : "Build" }, "getterModel" : { "returnType" : "Build", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "Build", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Collection of build records that match the request.

\n@param builds Collection of build records that match the request.*/", "getterDocumentation" : "/**

Collection of build records that match the request.

\n@return Collection of build records that match the request.*/", "fluentSetterDocumentation" : "/**

Collection of build records that match the request.

\n@param builds Collection of build records that match the request.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Collection of build records that match the request.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setBuilds(java.util.Collection)} or {@link #withBuilds(java.util.Collection)} if you want to override the existing values.

\n@param builds Collection of build records that match the request.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "UpdateGameSessionResult" : { "c2jName" : "UpdateGameSessionOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "UpdateGameSessionResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Object containing the updated game session metadata.

", "name" : "GameSession", "c2jName" : "GameSession", "c2jShape" : "GameSession", "variable" : { "variableName" : "gameSession", "variableType" : "GameSession", "variableDeclarationType" : "GameSession", "documentation" : "

Object containing the updated game session metadata.

", "simpleType" : "GameSession", "variableSetterType" : "GameSession" }, "setterModel" : { "variableName" : "gameSession", "variableType" : "GameSession", "variableDeclarationType" : "GameSession", "documentation" : "", "simpleType" : "GameSession", "variableSetterType" : "GameSession" }, "getterModel" : { "returnType" : "GameSession", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSession", "marshallLocationName" : "GameSession", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Object containing the updated game session metadata.

\n@param gameSession Object containing the updated game session metadata.*/", "getterDocumentation" : "/**

Object containing the updated game session metadata.

\n@return Object containing the updated game session metadata.*/", "fluentSetterDocumentation" : "/**

Object containing the updated game session metadata.

\n@param gameSession Object containing the updated game session metadata.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object containing the updated game session metadata.

\n@param gameSession Object containing the updated game session metadata.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "updateGameSessionResult", "variableType" : "UpdateGameSessionResult", "variableDeclarationType" : "UpdateGameSessionResult", "documentation" : null, "simpleType" : "UpdateGameSessionResult", "variableSetterType" : "UpdateGameSessionResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "GameSession" : { "documentation" : "

Object containing the updated game session metadata.

", "name" : "GameSession", "c2jName" : "GameSession", "c2jShape" : "GameSession", "variable" : { "variableName" : "gameSession", "variableType" : "GameSession", "variableDeclarationType" : "GameSession", "documentation" : "

Object containing the updated game session metadata.

", "simpleType" : "GameSession", "variableSetterType" : "GameSession" }, "setterModel" : { "variableName" : "gameSession", "variableType" : "GameSession", "variableDeclarationType" : "GameSession", "documentation" : "", "simpleType" : "GameSession", "variableSetterType" : "GameSession" }, "getterModel" : { "returnType" : "GameSession", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSession", "marshallLocationName" : "GameSession", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Object containing the updated game session metadata.

\n@param gameSession Object containing the updated game session metadata.*/", "getterDocumentation" : "/**

Object containing the updated game session metadata.

\n@return Object containing the updated game session metadata.*/", "fluentSetterDocumentation" : "/**

Object containing the updated game session metadata.

\n@param gameSession Object containing the updated game session metadata.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object containing the updated game session metadata.

\n@param gameSession Object containing the updated game session metadata.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DescribeFleetPortSettingsResult" : { "c2jName" : "DescribeFleetPortSettingsOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "DescribeFleetPortSettingsResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Object containing port settings for the requested fleet ID.

", "name" : "InboundPermissions", "c2jName" : "InboundPermissions", "c2jShape" : "IpPermissionsList", "variable" : { "variableName" : "inboundPermissions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Object containing port settings for the requested fleet ID.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "inboundPermissions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "InboundPermissions", "marshallLocationName" : "InboundPermissions", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "IpPermission", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "IpPermission", "variable" : { "variableName" : "member", "variableType" : "IpPermission", "variableDeclarationType" : "IpPermission", "documentation" : "", "simpleType" : "IpPermission", "variableSetterType" : "IpPermission" }, "setterModel" : { "variableName" : "member", "variableType" : "IpPermission", "variableDeclarationType" : "IpPermission", "documentation" : "", "simpleType" : "IpPermission", "variableSetterType" : "IpPermission" }, "getterModel" : { "returnType" : "IpPermission", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "IpPermission", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Object containing port settings for the requested fleet ID.

\n@param inboundPermissions Object containing port settings for the requested fleet ID.*/", "getterDocumentation" : "/**

Object containing port settings for the requested fleet ID.

\n@return Object containing port settings for the requested fleet ID.*/", "fluentSetterDocumentation" : "/**

Object containing port settings for the requested fleet ID.

\n@param inboundPermissions Object containing port settings for the requested fleet ID.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object containing port settings for the requested fleet ID.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setInboundPermissions(java.util.Collection)} or {@link #withInboundPermissions(java.util.Collection)} if you want to override the existing values.

\n@param inboundPermissions Object containing port settings for the requested fleet ID.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeFleetPortSettingsResult", "variableType" : "DescribeFleetPortSettingsResult", "variableDeclarationType" : "DescribeFleetPortSettingsResult", "documentation" : null, "simpleType" : "DescribeFleetPortSettingsResult", "variableSetterType" : "DescribeFleetPortSettingsResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "InboundPermissions" : { "documentation" : "

Object containing port settings for the requested fleet ID.

", "name" : "InboundPermissions", "c2jName" : "InboundPermissions", "c2jShape" : "IpPermissionsList", "variable" : { "variableName" : "inboundPermissions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Object containing port settings for the requested fleet ID.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "inboundPermissions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "InboundPermissions", "marshallLocationName" : "InboundPermissions", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "IpPermission", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "IpPermission", "variable" : { "variableName" : "member", "variableType" : "IpPermission", "variableDeclarationType" : "IpPermission", "documentation" : "", "simpleType" : "IpPermission", "variableSetterType" : "IpPermission" }, "setterModel" : { "variableName" : "member", "variableType" : "IpPermission", "variableDeclarationType" : "IpPermission", "documentation" : "", "simpleType" : "IpPermission", "variableSetterType" : "IpPermission" }, "getterModel" : { "returnType" : "IpPermission", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "IpPermission", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Object containing port settings for the requested fleet ID.

\n@param inboundPermissions Object containing port settings for the requested fleet ID.*/", "getterDocumentation" : "/**

Object containing port settings for the requested fleet ID.

\n@return Object containing port settings for the requested fleet ID.*/", "fluentSetterDocumentation" : "/**

Object containing port settings for the requested fleet ID.

\n@param inboundPermissions Object containing port settings for the requested fleet ID.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object containing port settings for the requested fleet ID.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setInboundPermissions(java.util.Collection)} or {@link #withInboundPermissions(java.util.Collection)} if you want to override the existing values.

\n@param inboundPermissions Object containing port settings for the requested fleet ID.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "ResolveAliasResult" : { "c2jName" : "ResolveAliasOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "ResolveAliasResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Fleet ID associated with the requested alias.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Fleet ID associated with the requested alias.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Fleet ID associated with the requested alias.

\n@param fleetId Fleet ID associated with the requested alias.*/", "getterDocumentation" : "/**

Fleet ID associated with the requested alias.

\n@return Fleet ID associated with the requested alias.*/", "fluentSetterDocumentation" : "/**

Fleet ID associated with the requested alias.

\n@param fleetId Fleet ID associated with the requested alias.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Fleet ID associated with the requested alias.

\n@param fleetId Fleet ID associated with the requested alias.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "resolveAliasResult", "variableType" : "ResolveAliasResult", "variableDeclarationType" : "ResolveAliasResult", "documentation" : null, "simpleType" : "ResolveAliasResult", "variableSetterType" : "ResolveAliasResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "FleetId" : { "documentation" : "

Fleet ID associated with the requested alias.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Fleet ID associated with the requested alias.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Fleet ID associated with the requested alias.

\n@param fleetId Fleet ID associated with the requested alias.*/", "getterDocumentation" : "/**

Fleet ID associated with the requested alias.

\n@return Fleet ID associated with the requested alias.*/", "fluentSetterDocumentation" : "/**

Fleet ID associated with the requested alias.

\n@param fleetId Fleet ID associated with the requested alias.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Fleet ID associated with the requested alias.

\n@param fleetId Fleet ID associated with the requested alias.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "ConflictException" : { "c2jName" : "ConflictException", "documentation" : "

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

", "shapeName" : "ConflictException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ ], "enums" : null, "variable" : { "variableName" : "conflictException", "variableType" : "ConflictException", "variableDeclarationType" : "ConflictException", "documentation" : null, "simpleType" : "ConflictException", "variableSetterType" : "ConflictException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "ConflictException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "DescribeAliasResult" : { "c2jName" : "DescribeAliasOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "DescribeAliasResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Object containing the requested alias.

", "name" : "Alias", "c2jName" : "Alias", "c2jShape" : "Alias", "variable" : { "variableName" : "alias", "variableType" : "Alias", "variableDeclarationType" : "Alias", "documentation" : "

Object containing the requested alias.

", "simpleType" : "Alias", "variableSetterType" : "Alias" }, "setterModel" : { "variableName" : "alias", "variableType" : "Alias", "variableDeclarationType" : "Alias", "documentation" : "", "simpleType" : "Alias", "variableSetterType" : "Alias" }, "getterModel" : { "returnType" : "Alias", "documentation" : null }, "http" : { "unmarshallLocationName" : "Alias", "marshallLocationName" : "Alias", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Object containing the requested alias.

\n@param alias Object containing the requested alias.*/", "getterDocumentation" : "/**

Object containing the requested alias.

\n@return Object containing the requested alias.*/", "fluentSetterDocumentation" : "/**

Object containing the requested alias.

\n@param alias Object containing the requested alias.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object containing the requested alias.

\n@param alias Object containing the requested alias.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeAliasResult", "variableType" : "DescribeAliasResult", "variableDeclarationType" : "DescribeAliasResult", "documentation" : null, "simpleType" : "DescribeAliasResult", "variableSetterType" : "DescribeAliasResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Alias" : { "documentation" : "

Object containing the requested alias.

", "name" : "Alias", "c2jName" : "Alias", "c2jShape" : "Alias", "variable" : { "variableName" : "alias", "variableType" : "Alias", "variableDeclarationType" : "Alias", "documentation" : "

Object containing the requested alias.

", "simpleType" : "Alias", "variableSetterType" : "Alias" }, "setterModel" : { "variableName" : "alias", "variableType" : "Alias", "variableDeclarationType" : "Alias", "documentation" : "", "simpleType" : "Alias", "variableSetterType" : "Alias" }, "getterModel" : { "returnType" : "Alias", "documentation" : null }, "http" : { "unmarshallLocationName" : "Alias", "marshallLocationName" : "Alias", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Object containing the requested alias.

\n@param alias Object containing the requested alias.*/", "getterDocumentation" : "/**

Object containing the requested alias.

\n@return Object containing the requested alias.*/", "fluentSetterDocumentation" : "/**

Object containing the requested alias.

\n@param alias Object containing the requested alias.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object containing the requested alias.

\n@param alias Object containing the requested alias.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "GameSessionDetail" : { "c2jName" : "GameSessionDetail", "documentation" : "

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

", "shapeName" : "GameSessionDetail", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "", "name" : "GameSession", "c2jName" : "GameSession", "c2jShape" : "GameSession", "variable" : { "variableName" : "gameSession", "variableType" : "GameSession", "variableDeclarationType" : "GameSession", "documentation" : "", "simpleType" : "GameSession", "variableSetterType" : "GameSession" }, "setterModel" : { "variableName" : "gameSession", "variableType" : "GameSession", "variableDeclarationType" : "GameSession", "documentation" : "", "simpleType" : "GameSession", "variableSetterType" : "GameSession" }, "getterModel" : { "returnType" : "GameSession", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSession", "marshallLocationName" : "GameSession", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param gameSession */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param gameSession \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param gameSession \n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Current status of protection for the game session.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

", "name" : "ProtectionPolicy", "c2jName" : "ProtectionPolicy", "c2jShape" : "ProtectionPolicy", "variable" : { "variableName" : "protectionPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Current status of protection for the game session.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "protectionPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ProtectionPolicy", "marshallLocationName" : "ProtectionPolicy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ProtectionPolicy", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Current status of protection for the game session.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param protectionPolicy Current status of protection for the game session.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@see ProtectionPolicy*/", "getterDocumentation" : "/**

Current status of protection for the game session.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@return Current status of protection for the game session.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@see ProtectionPolicy*/", "fluentSetterDocumentation" : "/**

Current status of protection for the game session.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param protectionPolicy Current status of protection for the game session.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ProtectionPolicy*/", "varargSetterDocumentation" : "/**

Current status of protection for the game session.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param protectionPolicy Current status of protection for the game session.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ProtectionPolicy*/" } ], "enums" : null, "variable" : { "variableName" : "gameSessionDetail", "variableType" : "GameSessionDetail", "variableDeclarationType" : "GameSessionDetail", "documentation" : null, "simpleType" : "GameSessionDetail", "variableSetterType" : "GameSessionDetail" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "GameSession" : { "documentation" : "", "name" : "GameSession", "c2jName" : "GameSession", "c2jShape" : "GameSession", "variable" : { "variableName" : "gameSession", "variableType" : "GameSession", "variableDeclarationType" : "GameSession", "documentation" : "", "simpleType" : "GameSession", "variableSetterType" : "GameSession" }, "setterModel" : { "variableName" : "gameSession", "variableType" : "GameSession", "variableDeclarationType" : "GameSession", "documentation" : "", "simpleType" : "GameSession", "variableSetterType" : "GameSession" }, "getterModel" : { "returnType" : "GameSession", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSession", "marshallLocationName" : "GameSession", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param gameSession */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param gameSession \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param gameSession \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "ProtectionPolicy" : { "documentation" : "

Current status of protection for the game session.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

", "name" : "ProtectionPolicy", "c2jName" : "ProtectionPolicy", "c2jShape" : "ProtectionPolicy", "variable" : { "variableName" : "protectionPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Current status of protection for the game session.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "protectionPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ProtectionPolicy", "marshallLocationName" : "ProtectionPolicy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ProtectionPolicy", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Current status of protection for the game session.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param protectionPolicy Current status of protection for the game session.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@see ProtectionPolicy*/", "getterDocumentation" : "/**

Current status of protection for the game session.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@return Current status of protection for the game session.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@see ProtectionPolicy*/", "fluentSetterDocumentation" : "/**

Current status of protection for the game session.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param protectionPolicy Current status of protection for the game session.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ProtectionPolicy*/", "varargSetterDocumentation" : "/**

Current status of protection for the game session.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param protectionPolicy Current status of protection for the game session.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ProtectionPolicy*/" } } }, "UpdateBuildResult" : { "c2jName" : "UpdateBuildOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "UpdateBuildResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Object containing the updated build record.

", "name" : "Build", "c2jName" : "Build", "c2jShape" : "Build", "variable" : { "variableName" : "build", "variableType" : "Build", "variableDeclarationType" : "Build", "documentation" : "

Object containing the updated build record.

", "simpleType" : "Build", "variableSetterType" : "Build" }, "setterModel" : { "variableName" : "build", "variableType" : "Build", "variableDeclarationType" : "Build", "documentation" : "", "simpleType" : "Build", "variableSetterType" : "Build" }, "getterModel" : { "returnType" : "Build", "documentation" : null }, "http" : { "unmarshallLocationName" : "Build", "marshallLocationName" : "Build", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Object containing the updated build record.

\n@param build Object containing the updated build record.*/", "getterDocumentation" : "/**

Object containing the updated build record.

\n@return Object containing the updated build record.*/", "fluentSetterDocumentation" : "/**

Object containing the updated build record.

\n@param build Object containing the updated build record.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object containing the updated build record.

\n@param build Object containing the updated build record.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "updateBuildResult", "variableType" : "UpdateBuildResult", "variableDeclarationType" : "UpdateBuildResult", "documentation" : null, "simpleType" : "UpdateBuildResult", "variableSetterType" : "UpdateBuildResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Build" : { "documentation" : "

Object containing the updated build record.

", "name" : "Build", "c2jName" : "Build", "c2jShape" : "Build", "variable" : { "variableName" : "build", "variableType" : "Build", "variableDeclarationType" : "Build", "documentation" : "

Object containing the updated build record.

", "simpleType" : "Build", "variableSetterType" : "Build" }, "setterModel" : { "variableName" : "build", "variableType" : "Build", "variableDeclarationType" : "Build", "documentation" : "", "simpleType" : "Build", "variableSetterType" : "Build" }, "getterModel" : { "returnType" : "Build", "documentation" : null }, "http" : { "unmarshallLocationName" : "Build", "marshallLocationName" : "Build", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Object containing the updated build record.

\n@param build Object containing the updated build record.*/", "getterDocumentation" : "/**

Object containing the updated build record.

\n@return Object containing the updated build record.*/", "fluentSetterDocumentation" : "/**

Object containing the updated build record.

\n@param build Object containing the updated build record.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object containing the updated build record.

\n@param build Object containing the updated build record.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "ScalingStatusType" : { "c2jName" : "ScalingStatusType", "documentation" : "", "shapeName" : "ScalingStatusType", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : [ { "name" : "ACTIVE", "value" : "ACTIVE" }, { "name" : "UPDATE_REQUESTED", "value" : "UPDATE_REQUESTED" }, { "name" : "UPDATING", "value" : "UPDATING" }, { "name" : "DELETE_REQUESTED", "value" : "DELETE_REQUESTED" }, { "name" : "DELETING", "value" : "DELETING" }, { "name" : "DELETED", "value" : "DELETED" }, { "name" : "ERROR", "value" : "ERROR" } ], "variable" : { "variableName" : "scalingStatusType", "variableType" : "ScalingStatusType", "variableDeclarationType" : "ScalingStatusType", "documentation" : null, "simpleType" : "ScalingStatusType", "variableSetterType" : "ScalingStatusType" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "DescribeBuildResult" : { "c2jName" : "DescribeBuildOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "DescribeBuildResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Set of properties describing the requested build.

", "name" : "Build", "c2jName" : "Build", "c2jShape" : "Build", "variable" : { "variableName" : "build", "variableType" : "Build", "variableDeclarationType" : "Build", "documentation" : "

Set of properties describing the requested build.

", "simpleType" : "Build", "variableSetterType" : "Build" }, "setterModel" : { "variableName" : "build", "variableType" : "Build", "variableDeclarationType" : "Build", "documentation" : "", "simpleType" : "Build", "variableSetterType" : "Build" }, "getterModel" : { "returnType" : "Build", "documentation" : null }, "http" : { "unmarshallLocationName" : "Build", "marshallLocationName" : "Build", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Set of properties describing the requested build.

\n@param build Set of properties describing the requested build.*/", "getterDocumentation" : "/**

Set of properties describing the requested build.

\n@return Set of properties describing the requested build.*/", "fluentSetterDocumentation" : "/**

Set of properties describing the requested build.

\n@param build Set of properties describing the requested build.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Set of properties describing the requested build.

\n@param build Set of properties describing the requested build.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeBuildResult", "variableType" : "DescribeBuildResult", "variableDeclarationType" : "DescribeBuildResult", "documentation" : null, "simpleType" : "DescribeBuildResult", "variableSetterType" : "DescribeBuildResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Build" : { "documentation" : "

Set of properties describing the requested build.

", "name" : "Build", "c2jName" : "Build", "c2jShape" : "Build", "variable" : { "variableName" : "build", "variableType" : "Build", "variableDeclarationType" : "Build", "documentation" : "

Set of properties describing the requested build.

", "simpleType" : "Build", "variableSetterType" : "Build" }, "setterModel" : { "variableName" : "build", "variableType" : "Build", "variableDeclarationType" : "Build", "documentation" : "", "simpleType" : "Build", "variableSetterType" : "Build" }, "getterModel" : { "returnType" : "Build", "documentation" : null }, "http" : { "unmarshallLocationName" : "Build", "marshallLocationName" : "Build", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Set of properties describing the requested build.

\n@param build Set of properties describing the requested build.*/", "getterDocumentation" : "/**

Set of properties describing the requested build.

\n@return Set of properties describing the requested build.*/", "fluentSetterDocumentation" : "/**

Set of properties describing the requested build.

\n@param build Set of properties describing the requested build.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Set of properties describing the requested build.

\n@param build Set of properties describing the requested build.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "CreatePlayerSessionResult" : { "c2jName" : "CreatePlayerSessionOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "CreatePlayerSessionResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Object containing the newly created player session record.

", "name" : "PlayerSession", "c2jName" : "PlayerSession", "c2jShape" : "PlayerSession", "variable" : { "variableName" : "playerSession", "variableType" : "PlayerSession", "variableDeclarationType" : "PlayerSession", "documentation" : "

Object containing the newly created player session record.

", "simpleType" : "PlayerSession", "variableSetterType" : "PlayerSession" }, "setterModel" : { "variableName" : "playerSession", "variableType" : "PlayerSession", "variableDeclarationType" : "PlayerSession", "documentation" : "", "simpleType" : "PlayerSession", "variableSetterType" : "PlayerSession" }, "getterModel" : { "returnType" : "PlayerSession", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerSession", "marshallLocationName" : "PlayerSession", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Object containing the newly created player session record.

\n@param playerSession Object containing the newly created player session record.*/", "getterDocumentation" : "/**

Object containing the newly created player session record.

\n@return Object containing the newly created player session record.*/", "fluentSetterDocumentation" : "/**

Object containing the newly created player session record.

\n@param playerSession Object containing the newly created player session record.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object containing the newly created player session record.

\n@param playerSession Object containing the newly created player session record.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "createPlayerSessionResult", "variableType" : "CreatePlayerSessionResult", "variableDeclarationType" : "CreatePlayerSessionResult", "documentation" : null, "simpleType" : "CreatePlayerSessionResult", "variableSetterType" : "CreatePlayerSessionResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "PlayerSession" : { "documentation" : "

Object containing the newly created player session record.

", "name" : "PlayerSession", "c2jName" : "PlayerSession", "c2jShape" : "PlayerSession", "variable" : { "variableName" : "playerSession", "variableType" : "PlayerSession", "variableDeclarationType" : "PlayerSession", "documentation" : "

Object containing the newly created player session record.

", "simpleType" : "PlayerSession", "variableSetterType" : "PlayerSession" }, "setterModel" : { "variableName" : "playerSession", "variableType" : "PlayerSession", "variableDeclarationType" : "PlayerSession", "documentation" : "", "simpleType" : "PlayerSession", "variableSetterType" : "PlayerSession" }, "getterModel" : { "returnType" : "PlayerSession", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerSession", "marshallLocationName" : "PlayerSession", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Object containing the newly created player session record.

\n@param playerSession Object containing the newly created player session record.*/", "getterDocumentation" : "/**

Object containing the newly created player session record.

\n@return Object containing the newly created player session record.*/", "fluentSetterDocumentation" : "/**

Object containing the newly created player session record.

\n@param playerSession Object containing the newly created player session record.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object containing the newly created player session record.

\n@param playerSession Object containing the newly created player session record.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "ProtectionPolicy" : { "c2jName" : "ProtectionPolicy", "documentation" : "", "shapeName" : "ProtectionPolicy", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : [ { "name" : "NoProtection", "value" : "NoProtection" }, { "name" : "FullProtection", "value" : "FullProtection" } ], "variable" : { "variableName" : "protectionPolicy", "variableType" : "ProtectionPolicy", "variableDeclarationType" : "ProtectionPolicy", "documentation" : null, "simpleType" : "ProtectionPolicy", "variableSetterType" : "ProtectionPolicy" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "DescribeEC2InstanceLimitsResult" : { "c2jName" : "DescribeEC2InstanceLimitsOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "DescribeEC2InstanceLimitsResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Object containing the maximum number of instances for the specified instance type.

", "name" : "EC2InstanceLimits", "c2jName" : "EC2InstanceLimits", "c2jShape" : "EC2InstanceLimitList", "variable" : { "variableName" : "eC2InstanceLimits", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Object containing the maximum number of instances for the specified instance type.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "eC2InstanceLimits", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "EC2InstanceLimits", "marshallLocationName" : "EC2InstanceLimits", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "EC2InstanceLimit", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "EC2InstanceLimit", "variable" : { "variableName" : "member", "variableType" : "EC2InstanceLimit", "variableDeclarationType" : "EC2InstanceLimit", "documentation" : "", "simpleType" : "EC2InstanceLimit", "variableSetterType" : "EC2InstanceLimit" }, "setterModel" : { "variableName" : "member", "variableType" : "EC2InstanceLimit", "variableDeclarationType" : "EC2InstanceLimit", "documentation" : "", "simpleType" : "EC2InstanceLimit", "variableSetterType" : "EC2InstanceLimit" }, "getterModel" : { "returnType" : "EC2InstanceLimit", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "EC2InstanceLimit", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Object containing the maximum number of instances for the specified instance type.

\n@param eC2InstanceLimits Object containing the maximum number of instances for the specified instance type.*/", "getterDocumentation" : "/**

Object containing the maximum number of instances for the specified instance type.

\n@return Object containing the maximum number of instances for the specified instance type.*/", "fluentSetterDocumentation" : "/**

Object containing the maximum number of instances for the specified instance type.

\n@param eC2InstanceLimits Object containing the maximum number of instances for the specified instance type.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object containing the maximum number of instances for the specified instance type.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setEC2InstanceLimits(java.util.Collection)} or {@link #withEC2InstanceLimits(java.util.Collection)} if you want to override the existing values.

\n@param eC2InstanceLimits Object containing the maximum number of instances for the specified instance type.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeEC2InstanceLimitsResult", "variableType" : "DescribeEC2InstanceLimitsResult", "variableDeclarationType" : "DescribeEC2InstanceLimitsResult", "documentation" : null, "simpleType" : "DescribeEC2InstanceLimitsResult", "variableSetterType" : "DescribeEC2InstanceLimitsResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "EC2InstanceLimits" : { "documentation" : "

Object containing the maximum number of instances for the specified instance type.

", "name" : "EC2InstanceLimits", "c2jName" : "EC2InstanceLimits", "c2jShape" : "EC2InstanceLimitList", "variable" : { "variableName" : "eC2InstanceLimits", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Object containing the maximum number of instances for the specified instance type.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "eC2InstanceLimits", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "EC2InstanceLimits", "marshallLocationName" : "EC2InstanceLimits", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "EC2InstanceLimit", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "EC2InstanceLimit", "variable" : { "variableName" : "member", "variableType" : "EC2InstanceLimit", "variableDeclarationType" : "EC2InstanceLimit", "documentation" : "", "simpleType" : "EC2InstanceLimit", "variableSetterType" : "EC2InstanceLimit" }, "setterModel" : { "variableName" : "member", "variableType" : "EC2InstanceLimit", "variableDeclarationType" : "EC2InstanceLimit", "documentation" : "", "simpleType" : "EC2InstanceLimit", "variableSetterType" : "EC2InstanceLimit" }, "getterModel" : { "returnType" : "EC2InstanceLimit", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "EC2InstanceLimit", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Object containing the maximum number of instances for the specified instance type.

\n@param eC2InstanceLimits Object containing the maximum number of instances for the specified instance type.*/", "getterDocumentation" : "/**

Object containing the maximum number of instances for the specified instance type.

\n@return Object containing the maximum number of instances for the specified instance type.*/", "fluentSetterDocumentation" : "/**

Object containing the maximum number of instances for the specified instance type.

\n@param eC2InstanceLimits Object containing the maximum number of instances for the specified instance type.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object containing the maximum number of instances for the specified instance type.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setEC2InstanceLimits(java.util.Collection)} or {@link #withEC2InstanceLimits(java.util.Collection)} if you want to override the existing values.

\n@param eC2InstanceLimits Object containing the maximum number of instances for the specified instance type.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DescribeAliasRequest" : { "c2jName" : "DescribeAliasInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "DescribeAliasRequest", "deprecated" : false, "required" : [ "AliasId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

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

", "name" : "AliasId", "c2jName" : "AliasId", "c2jShape" : "AliasId", "variable" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "AliasId", "marshallLocationName" : "AliasId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param aliasId Unique identifier for a fleet alias. Specify the alias you want to retrieve.*/", "getterDocumentation" : "/**

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

\n@return Unique identifier for a fleet alias. Specify the alias you want to retrieve.*/", "fluentSetterDocumentation" : "/**

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

\n@param aliasId Unique identifier for a fleet alias. Specify the alias you want to retrieve.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param aliasId Unique identifier for a fleet alias. Specify the alias you want to retrieve.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeAliasRequest", "variableType" : "DescribeAliasRequest", "variableDeclarationType" : "DescribeAliasRequest", "documentation" : null, "simpleType" : "DescribeAliasRequest", "variableSetterType" : "DescribeAliasRequest" }, "marshaller" : { "action" : "DescribeAlias", "verb" : "POST", "target" : "GameLift.DescribeAlias", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "AliasId" : { "documentation" : "

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

", "name" : "AliasId", "c2jName" : "AliasId", "c2jShape" : "AliasId", "variable" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "AliasId", "marshallLocationName" : "AliasId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param aliasId Unique identifier for a fleet alias. Specify the alias you want to retrieve.*/", "getterDocumentation" : "/**

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

\n@return Unique identifier for a fleet alias. Specify the alias you want to retrieve.*/", "fluentSetterDocumentation" : "/**

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

\n@param aliasId Unique identifier for a fleet alias. Specify the alias you want to retrieve.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param aliasId Unique identifier for a fleet alias. Specify the alias you want to retrieve.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DescribeFleetEventsRequest" : { "c2jName" : "DescribeFleetEventsInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "DescribeFleetEventsRequest", "deprecated" : false, "required" : [ "FleetId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for the fleet to get event logs for.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the fleet to get event logs for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the fleet to get event logs for.

\n@param fleetId Unique identifier for the fleet to get event logs for.*/", "getterDocumentation" : "/**

Unique identifier for the fleet to get event logs for.

\n@return Unique identifier for the fleet to get event logs for.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the fleet to get event logs for.

\n@param fleetId Unique identifier for the fleet to get event logs for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the fleet to get event logs for.

\n@param fleetId Unique identifier for the fleet to get event logs for.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Earliest date to retrieve event logs for. If no start time is specified, this call returns entries starting from when the fleet was created to the specified end time. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "StartTime", "c2jName" : "StartTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "startTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Earliest date to retrieve event logs for. If no start time is specified, this call returns entries starting from when the fleet was created to the specified end time. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "startTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "StartTime", "marshallLocationName" : "StartTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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 an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param startTime 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 an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

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 an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return 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 an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

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 an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param startTime 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 an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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 an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param startTime 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 an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Most recent date to retrieve event logs for. If no end time is specified, this call returns entries from the specified start time up to the present. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "EndTime", "c2jName" : "EndTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "endTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Most recent date to retrieve event logs for. If no end time is specified, this call returns entries from the specified start time up to the present. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "endTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "EndTime", "marshallLocationName" : "EndTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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 an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param endTime 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 an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

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 an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return 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 an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

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 an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param endTime 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 an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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 an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param endTime 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 an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeFleetEventsRequest", "variableType" : "DescribeFleetEventsRequest", "variableDeclarationType" : "DescribeFleetEventsRequest", "documentation" : null, "simpleType" : "DescribeFleetEventsRequest", "variableSetterType" : "DescribeFleetEventsRequest" }, "marshaller" : { "action" : "DescribeFleetEvents", "verb" : "POST", "target" : "GameLift.DescribeFleetEvents", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NextToken" : { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FleetId" : { "documentation" : "

Unique identifier for the fleet to get event logs for.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the fleet to get event logs for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the fleet to get event logs for.

\n@param fleetId Unique identifier for the fleet to get event logs for.*/", "getterDocumentation" : "/**

Unique identifier for the fleet to get event logs for.

\n@return Unique identifier for the fleet to get event logs for.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the fleet to get event logs for.

\n@param fleetId Unique identifier for the fleet to get event logs for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the fleet to get event logs for.

\n@param fleetId Unique identifier for the fleet to get event logs for.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "EndTime" : { "documentation" : "

Most recent date to retrieve event logs for. If no end time is specified, this call returns entries from the specified start time up to the present. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "EndTime", "c2jName" : "EndTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "endTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Most recent date to retrieve event logs for. If no end time is specified, this call returns entries from the specified start time up to the present. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "endTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "EndTime", "marshallLocationName" : "EndTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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 an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param endTime 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 an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

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 an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return 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 an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

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 an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param endTime 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 an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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 an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param endTime 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 an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "StartTime" : { "documentation" : "

Earliest date to retrieve event logs for. If no start time is specified, this call returns entries starting from when the fleet was created to the specified end time. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "StartTime", "c2jName" : "StartTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "startTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Earliest date to retrieve event logs for. If no start time is specified, this call returns entries starting from when the fleet was created to the specified end time. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "startTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "StartTime", "marshallLocationName" : "StartTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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 an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param startTime 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 an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

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 an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return 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 an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

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 an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param startTime 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 an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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 an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param startTime 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 an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Limit" : { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "FleetUtilization" : { "c2jName" : "FleetUtilization", "documentation" : "

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

", "shapeName" : "FleetUtilization", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for a fleet.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.*/", "getterDocumentation" : "/**

Unique identifier for a fleet.

\n@return Unique identifier for a fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Number of active game sessions currently being hosted on fleet game servers.

", "name" : "ActiveGameSessionCount", "c2jName" : "ActiveGameSessionCount", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "activeGameSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Number of active game sessions currently being hosted on fleet game servers.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "activeGameSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "ActiveGameSessionCount", "marshallLocationName" : "ActiveGameSessionCount", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Number of active game sessions currently being hosted on fleet game servers.

\n@param activeGameSessionCount Number of active game sessions currently being hosted on fleet game servers.*/", "getterDocumentation" : "/**

Number of active game sessions currently being hosted on fleet game servers.

\n@return Number of active game sessions currently being hosted on fleet game servers.*/", "fluentSetterDocumentation" : "/**

Number of active game sessions currently being hosted on fleet game servers.

\n@param activeGameSessionCount Number of active game sessions currently being hosted on fleet game servers.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Number of active game sessions currently being hosted on fleet game servers.

\n@param activeGameSessionCount Number of active game sessions currently being hosted on fleet game servers.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Number of active player sessions currently being hosted on fleet game servers.

", "name" : "CurrentPlayerSessionCount", "c2jName" : "CurrentPlayerSessionCount", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "currentPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Number of active player sessions currently being hosted on fleet game servers.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "currentPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "CurrentPlayerSessionCount", "marshallLocationName" : "CurrentPlayerSessionCount", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Number of active player sessions currently being hosted on fleet game servers.

\n@param currentPlayerSessionCount Number of active player sessions currently being hosted on fleet game servers.*/", "getterDocumentation" : "/**

Number of active player sessions currently being hosted on fleet game servers.

\n@return Number of active player sessions currently being hosted on fleet game servers.*/", "fluentSetterDocumentation" : "/**

Number of active player sessions currently being hosted on fleet game servers.

\n@param currentPlayerSessionCount Number of active player sessions currently being hosted on fleet game servers.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Number of active player sessions currently being hosted on fleet game servers.

\n@param currentPlayerSessionCount Number of active player sessions currently being hosted on fleet game servers.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "MaximumPlayerSessionCount", "c2jName" : "MaximumPlayerSessionCount", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "maximumPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "maximumPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MaximumPlayerSessionCount", "marshallLocationName" : "MaximumPlayerSessionCount", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param maximumPlayerSessionCount Maximum players allowed across all game sessions currently hosted in the fleet.*/", "getterDocumentation" : "/**

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

\n@return Maximum players allowed across all game sessions currently hosted in the fleet.*/", "fluentSetterDocumentation" : "/**

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

\n@param maximumPlayerSessionCount Maximum players allowed across all game sessions currently hosted in the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param maximumPlayerSessionCount Maximum players allowed across all game sessions currently hosted in the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "fleetUtilization", "variableType" : "FleetUtilization", "variableDeclarationType" : "FleetUtilization", "documentation" : null, "simpleType" : "FleetUtilization", "variableSetterType" : "FleetUtilization" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "FleetId" : { "documentation" : "

Unique identifier for a fleet.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.*/", "getterDocumentation" : "/**

Unique identifier for a fleet.

\n@return Unique identifier for a fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "MaximumPlayerSessionCount" : { "documentation" : "

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

", "name" : "MaximumPlayerSessionCount", "c2jName" : "MaximumPlayerSessionCount", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "maximumPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "maximumPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MaximumPlayerSessionCount", "marshallLocationName" : "MaximumPlayerSessionCount", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param maximumPlayerSessionCount Maximum players allowed across all game sessions currently hosted in the fleet.*/", "getterDocumentation" : "/**

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

\n@return Maximum players allowed across all game sessions currently hosted in the fleet.*/", "fluentSetterDocumentation" : "/**

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

\n@param maximumPlayerSessionCount Maximum players allowed across all game sessions currently hosted in the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param maximumPlayerSessionCount Maximum players allowed across all game sessions currently hosted in the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "CurrentPlayerSessionCount" : { "documentation" : "

Number of active player sessions currently being hosted on fleet game servers.

", "name" : "CurrentPlayerSessionCount", "c2jName" : "CurrentPlayerSessionCount", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "currentPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Number of active player sessions currently being hosted on fleet game servers.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "currentPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "CurrentPlayerSessionCount", "marshallLocationName" : "CurrentPlayerSessionCount", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Number of active player sessions currently being hosted on fleet game servers.

\n@param currentPlayerSessionCount Number of active player sessions currently being hosted on fleet game servers.*/", "getterDocumentation" : "/**

Number of active player sessions currently being hosted on fleet game servers.

\n@return Number of active player sessions currently being hosted on fleet game servers.*/", "fluentSetterDocumentation" : "/**

Number of active player sessions currently being hosted on fleet game servers.

\n@param currentPlayerSessionCount Number of active player sessions currently being hosted on fleet game servers.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Number of active player sessions currently being hosted on fleet game servers.

\n@param currentPlayerSessionCount Number of active player sessions currently being hosted on fleet game servers.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "ActiveGameSessionCount" : { "documentation" : "

Number of active game sessions currently being hosted on fleet game servers.

", "name" : "ActiveGameSessionCount", "c2jName" : "ActiveGameSessionCount", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "activeGameSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Number of active game sessions currently being hosted on fleet game servers.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "activeGameSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "ActiveGameSessionCount", "marshallLocationName" : "ActiveGameSessionCount", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Number of active game sessions currently being hosted on fleet game servers.

\n@param activeGameSessionCount Number of active game sessions currently being hosted on fleet game servers.*/", "getterDocumentation" : "/**

Number of active game sessions currently being hosted on fleet game servers.

\n@return Number of active game sessions currently being hosted on fleet game servers.*/", "fluentSetterDocumentation" : "/**

Number of active game sessions currently being hosted on fleet game servers.

\n@param activeGameSessionCount Number of active game sessions currently being hosted on fleet game servers.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Number of active game sessions currently being hosted on fleet game servers.

\n@param activeGameSessionCount Number of active game sessions currently being hosted on fleet game servers.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "EC2InstanceLimit" : { "c2jName" : "EC2InstanceLimit", "documentation" : "

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

", "shapeName" : "EC2InstanceLimit", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

", "name" : "EC2InstanceType", "c2jName" : "EC2InstanceType", "c2jShape" : "EC2InstanceType", "variable" : { "variableName" : "eC2InstanceType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "eC2InstanceType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "EC2InstanceType", "marshallLocationName" : "EC2InstanceType", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "EC2InstanceType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@param eC2InstanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@see EC2InstanceType*/", "getterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@return Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@see EC2InstanceType*/", "fluentSetterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@param eC2InstanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EC2InstanceType*/", "varargSetterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@param eC2InstanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EC2InstanceType*/" }, { "documentation" : "

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

", "name" : "CurrentInstances", "c2jName" : "CurrentInstances", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "currentInstances", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "currentInstances", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "CurrentInstances", "marshallLocationName" : "CurrentInstances", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param currentInstances Number of instances of the specified type that are currently in use by this AWS account.*/", "getterDocumentation" : "/**

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

\n@return Number of instances of the specified type that are currently in use by this AWS account.*/", "fluentSetterDocumentation" : "/**

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

\n@param currentInstances Number of instances of the specified type that are currently in use by this AWS account.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param currentInstances Number of instances of the specified type that are currently in use by this AWS account.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Number of instances allowed.

", "name" : "InstanceLimit", "c2jName" : "InstanceLimit", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "instanceLimit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Number of instances allowed.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "instanceLimit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "InstanceLimit", "marshallLocationName" : "InstanceLimit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Number of instances allowed.

\n@param instanceLimit Number of instances allowed.*/", "getterDocumentation" : "/**

Number of instances allowed.

\n@return Number of instances allowed.*/", "fluentSetterDocumentation" : "/**

Number of instances allowed.

\n@param instanceLimit Number of instances allowed.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Number of instances allowed.

\n@param instanceLimit Number of instances allowed.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "eC2InstanceLimit", "variableType" : "EC2InstanceLimit", "variableDeclarationType" : "EC2InstanceLimit", "documentation" : null, "simpleType" : "EC2InstanceLimit", "variableSetterType" : "EC2InstanceLimit" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "InstanceLimit" : { "documentation" : "

Number of instances allowed.

", "name" : "InstanceLimit", "c2jName" : "InstanceLimit", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "instanceLimit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Number of instances allowed.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "instanceLimit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "InstanceLimit", "marshallLocationName" : "InstanceLimit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Number of instances allowed.

\n@param instanceLimit Number of instances allowed.*/", "getterDocumentation" : "/**

Number of instances allowed.

\n@return Number of instances allowed.*/", "fluentSetterDocumentation" : "/**

Number of instances allowed.

\n@param instanceLimit Number of instances allowed.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Number of instances allowed.

\n@param instanceLimit Number of instances allowed.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "EC2InstanceType" : { "documentation" : "

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

", "name" : "EC2InstanceType", "c2jName" : "EC2InstanceType", "c2jShape" : "EC2InstanceType", "variable" : { "variableName" : "eC2InstanceType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "eC2InstanceType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "EC2InstanceType", "marshallLocationName" : "EC2InstanceType", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "EC2InstanceType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@param eC2InstanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@see EC2InstanceType*/", "getterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@return Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@see EC2InstanceType*/", "fluentSetterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@param eC2InstanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EC2InstanceType*/", "varargSetterDocumentation" : "/**

Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.

\n@param eC2InstanceType Type of EC2 instances used in the fleet. EC2 instance types define the CPU, memory, storage, and networking capacity of the fleetaposs hosts. Amazon GameLift supports the EC2 instance types listed below. See Amazon EC2 Instance Types for detailed descriptions of each.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EC2InstanceType*/" }, "CurrentInstances" : { "documentation" : "

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

", "name" : "CurrentInstances", "c2jName" : "CurrentInstances", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "currentInstances", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "currentInstances", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "CurrentInstances", "marshallLocationName" : "CurrentInstances", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param currentInstances Number of instances of the specified type that are currently in use by this AWS account.*/", "getterDocumentation" : "/**

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

\n@return Number of instances of the specified type that are currently in use by this AWS account.*/", "fluentSetterDocumentation" : "/**

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

\n@param currentInstances Number of instances of the specified type that are currently in use by this AWS account.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param currentInstances Number of instances of the specified type that are currently in use by this AWS account.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "ComparisonOperatorType" : { "c2jName" : "ComparisonOperatorType", "documentation" : "", "shapeName" : "ComparisonOperatorType", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : [ { "name" : "GreaterThanOrEqualToThreshold", "value" : "GreaterThanOrEqualToThreshold" }, { "name" : "GreaterThanThreshold", "value" : "GreaterThanThreshold" }, { "name" : "LessThanThreshold", "value" : "LessThanThreshold" }, { "name" : "LessThanOrEqualToThreshold", "value" : "LessThanOrEqualToThreshold" } ], "variable" : { "variableName" : "comparisonOperatorType", "variableType" : "ComparisonOperatorType", "variableDeclarationType" : "ComparisonOperatorType", "documentation" : null, "simpleType" : "ComparisonOperatorType", "variableSetterType" : "ComparisonOperatorType" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "CreateAliasResult" : { "c2jName" : "CreateAliasOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "CreateAliasResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Object containing the newly created alias record.

", "name" : "Alias", "c2jName" : "Alias", "c2jShape" : "Alias", "variable" : { "variableName" : "alias", "variableType" : "Alias", "variableDeclarationType" : "Alias", "documentation" : "

Object containing the newly created alias record.

", "simpleType" : "Alias", "variableSetterType" : "Alias" }, "setterModel" : { "variableName" : "alias", "variableType" : "Alias", "variableDeclarationType" : "Alias", "documentation" : "", "simpleType" : "Alias", "variableSetterType" : "Alias" }, "getterModel" : { "returnType" : "Alias", "documentation" : null }, "http" : { "unmarshallLocationName" : "Alias", "marshallLocationName" : "Alias", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Object containing the newly created alias record.

\n@param alias Object containing the newly created alias record.*/", "getterDocumentation" : "/**

Object containing the newly created alias record.

\n@return Object containing the newly created alias record.*/", "fluentSetterDocumentation" : "/**

Object containing the newly created alias record.

\n@param alias Object containing the newly created alias record.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object containing the newly created alias record.

\n@param alias Object containing the newly created alias record.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "createAliasResult", "variableType" : "CreateAliasResult", "variableDeclarationType" : "CreateAliasResult", "documentation" : null, "simpleType" : "CreateAliasResult", "variableSetterType" : "CreateAliasResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Alias" : { "documentation" : "

Object containing the newly created alias record.

", "name" : "Alias", "c2jName" : "Alias", "c2jShape" : "Alias", "variable" : { "variableName" : "alias", "variableType" : "Alias", "variableDeclarationType" : "Alias", "documentation" : "

Object containing the newly created alias record.

", "simpleType" : "Alias", "variableSetterType" : "Alias" }, "setterModel" : { "variableName" : "alias", "variableType" : "Alias", "variableDeclarationType" : "Alias", "documentation" : "", "simpleType" : "Alias", "variableSetterType" : "Alias" }, "getterModel" : { "returnType" : "Alias", "documentation" : null }, "http" : { "unmarshallLocationName" : "Alias", "marshallLocationName" : "Alias", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Object containing the newly created alias record.

\n@param alias Object containing the newly created alias record.*/", "getterDocumentation" : "/**

Object containing the newly created alias record.

\n@return Object containing the newly created alias record.*/", "fluentSetterDocumentation" : "/**

Object containing the newly created alias record.

\n@param alias Object containing the newly created alias record.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object containing the newly created alias record.

\n@param alias Object containing the newly created alias record.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "EventCode" : { "c2jName" : "EventCode", "documentation" : "", "shapeName" : "EventCode", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : [ { "name" : "GENERIC_EVENT", "value" : "GENERIC_EVENT" }, { "name" : "FLEET_CREATED", "value" : "FLEET_CREATED" }, { "name" : "FLEET_DELETED", "value" : "FLEET_DELETED" }, { "name" : "FLEET_SCALING_EVENT", "value" : "FLEET_SCALING_EVENT" }, { "name" : "FLEET_STATE_DOWNLOADING", "value" : "FLEET_STATE_DOWNLOADING" }, { "name" : "FLEET_STATE_VALIDATING", "value" : "FLEET_STATE_VALIDATING" }, { "name" : "FLEET_STATE_BUILDING", "value" : "FLEET_STATE_BUILDING" }, { "name" : "FLEET_STATE_ACTIVATING", "value" : "FLEET_STATE_ACTIVATING" }, { "name" : "FLEET_STATE_ACTIVE", "value" : "FLEET_STATE_ACTIVE" }, { "name" : "FLEET_STATE_ERROR", "value" : "FLEET_STATE_ERROR" }, { "name" : "FLEET_INITIALIZATION_FAILED", "value" : "FLEET_INITIALIZATION_FAILED" }, { "name" : "FLEET_BINARY_DOWNLOAD_FAILED", "value" : "FLEET_BINARY_DOWNLOAD_FAILED" }, { "name" : "FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND", "value" : "FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND" }, { "name" : "FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE", "value" : "FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE" }, { "name" : "FLEET_VALIDATION_TIMED_OUT", "value" : "FLEET_VALIDATION_TIMED_OUT" }, { "name" : "FLEET_ACTIVATION_FAILED", "value" : "FLEET_ACTIVATION_FAILED" }, { "name" : "FLEET_ACTIVATION_FAILED_NO_INSTANCES", "value" : "FLEET_ACTIVATION_FAILED_NO_INSTANCES" }, { "name" : "FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED", "value" : "FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED" } ], "variable" : { "variableName" : "eventCode", "variableType" : "EventCode", "variableDeclarationType" : "EventCode", "documentation" : null, "simpleType" : "EventCode", "variableSetterType" : "EventCode" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "BuildStatus" : { "c2jName" : "BuildStatus", "documentation" : "", "shapeName" : "BuildStatus", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : [ { "name" : "INITIALIZED", "value" : "INITIALIZED" }, { "name" : "READY", "value" : "READY" }, { "name" : "FAILED", "value" : "FAILED" } ], "variable" : { "variableName" : "buildStatus", "variableType" : "BuildStatus", "variableDeclarationType" : "BuildStatus", "documentation" : null, "simpleType" : "BuildStatus", "variableSetterType" : "BuildStatus" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "DescribeGameSessionDetailsRequest" : { "c2jName" : "DescribeGameSessionDetailsInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "DescribeGameSessionDetailsRequest", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

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

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param fleetId Unique identifier for a fleet. Specify a fleet to retrieve information on all game sessions active on the fleet.*/", "getterDocumentation" : "/**

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

\n@return Unique identifier for a fleet. Specify a fleet to retrieve information on all game sessions active on the fleet.*/", "fluentSetterDocumentation" : "/**

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

\n@param fleetId Unique identifier for a fleet. Specify a fleet to retrieve information on all game sessions active on the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param fleetId Unique identifier for a fleet. Specify a fleet to retrieve information on all game sessions active on the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Unique identifier for a game session. Specify the game session to retrieve information on.

", "name" : "GameSessionId", "c2jName" : "GameSessionId", "c2jShape" : "GameSessionId", "variable" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a game session. Specify the game session to retrieve information on.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessionId", "marshallLocationName" : "GameSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a game session. Specify the game session to retrieve information on.

\n@param gameSessionId Unique identifier for a game session. Specify the game session to retrieve information on.*/", "getterDocumentation" : "/**

Unique identifier for a game session. Specify the game session to retrieve information on.

\n@return Unique identifier for a game session. Specify the game session to retrieve information on.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a game session. Specify the game session to retrieve information on.

\n@param gameSessionId Unique identifier for a game session. Specify the game session to retrieve information on.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a game session. Specify the game session to retrieve information on.

\n@param gameSessionId Unique identifier for a game session. Specify the game session to retrieve information on.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

", "name" : "AliasId", "c2jName" : "AliasId", "c2jShape" : "AliasId", "variable" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "AliasId", "marshallLocationName" : "AliasId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

\n@param aliasId Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.*/", "getterDocumentation" : "/**

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

\n@return Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

\n@param aliasId Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

\n@param aliasId Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "StatusFilter", "c2jName" : "StatusFilter", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "statusFilter", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "statusFilter", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "StatusFilter", "marshallLocationName" : "StatusFilter", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param statusFilter Game session status to filter results on. Possible game session states include ACTIVE, TERMINATED, ACTIVATING and TERMINATING (the last two are transitory).*/", "getterDocumentation" : "/**

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

\n@return Game session status to filter results on. Possible game session states include ACTIVE, TERMINATED, ACTIVATING and TERMINATING (the last two are transitory).*/", "fluentSetterDocumentation" : "/**

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

\n@param statusFilter Game session status to filter results on. Possible game session states include ACTIVE, TERMINATED, ACTIVATING and TERMINATING (the last two are transitory).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param statusFilter Game session status to filter results on. Possible game session states include ACTIVE, TERMINATED, ACTIVATING and TERMINATING (the last two are transitory).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeGameSessionDetailsRequest", "variableType" : "DescribeGameSessionDetailsRequest", "variableDeclarationType" : "DescribeGameSessionDetailsRequest", "documentation" : null, "simpleType" : "DescribeGameSessionDetailsRequest", "variableSetterType" : "DescribeGameSessionDetailsRequest" }, "marshaller" : { "action" : "DescribeGameSessionDetails", "verb" : "POST", "target" : "GameLift.DescribeGameSessionDetails", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NextToken" : { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "AliasId" : { "documentation" : "

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

", "name" : "AliasId", "c2jName" : "AliasId", "c2jShape" : "AliasId", "variable" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "AliasId", "marshallLocationName" : "AliasId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

\n@param aliasId Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.*/", "getterDocumentation" : "/**

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

\n@return Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

\n@param aliasId Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.

\n@param aliasId Unique identifier for a fleet alias. Specify an alias to retrieve information on all game sessions active on the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FleetId" : { "documentation" : "

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

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param fleetId Unique identifier for a fleet. Specify a fleet to retrieve information on all game sessions active on the fleet.*/", "getterDocumentation" : "/**

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

\n@return Unique identifier for a fleet. Specify a fleet to retrieve information on all game sessions active on the fleet.*/", "fluentSetterDocumentation" : "/**

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

\n@param fleetId Unique identifier for a fleet. Specify a fleet to retrieve information on all game sessions active on the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param fleetId Unique identifier for a fleet. Specify a fleet to retrieve information on all game sessions active on the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "GameSessionId" : { "documentation" : "

Unique identifier for a game session. Specify the game session to retrieve information on.

", "name" : "GameSessionId", "c2jName" : "GameSessionId", "c2jShape" : "GameSessionId", "variable" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a game session. Specify the game session to retrieve information on.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessionId", "marshallLocationName" : "GameSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a game session. Specify the game session to retrieve information on.

\n@param gameSessionId Unique identifier for a game session. Specify the game session to retrieve information on.*/", "getterDocumentation" : "/**

Unique identifier for a game session. Specify the game session to retrieve information on.

\n@return Unique identifier for a game session. Specify the game session to retrieve information on.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a game session. Specify the game session to retrieve information on.

\n@param gameSessionId Unique identifier for a game session. Specify the game session to retrieve information on.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a game session. Specify the game session to retrieve information on.

\n@param gameSessionId Unique identifier for a game session. Specify the game session to retrieve information on.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "StatusFilter" : { "documentation" : "

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

", "name" : "StatusFilter", "c2jName" : "StatusFilter", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "statusFilter", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "statusFilter", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "StatusFilter", "marshallLocationName" : "StatusFilter", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param statusFilter Game session status to filter results on. Possible game session states include ACTIVE, TERMINATED, ACTIVATING and TERMINATING (the last two are transitory).*/", "getterDocumentation" : "/**

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

\n@return Game session status to filter results on. Possible game session states include ACTIVE, TERMINATED, ACTIVATING and TERMINATING (the last two are transitory).*/", "fluentSetterDocumentation" : "/**

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

\n@param statusFilter Game session status to filter results on. Possible game session states include ACTIVE, TERMINATED, ACTIVATING and TERMINATING (the last two are transitory).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param statusFilter Game session status to filter results on. Possible game session states include ACTIVE, TERMINATED, ACTIVATING and TERMINATING (the last two are transitory).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Limit" : { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "CreateFleetResult" : { "c2jName" : "CreateFleetOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "CreateFleetResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Properties for the newly created fleet.

", "name" : "FleetAttributes", "c2jName" : "FleetAttributes", "c2jShape" : "FleetAttributes", "variable" : { "variableName" : "fleetAttributes", "variableType" : "FleetAttributes", "variableDeclarationType" : "FleetAttributes", "documentation" : "

Properties for the newly created fleet.

", "simpleType" : "FleetAttributes", "variableSetterType" : "FleetAttributes" }, "setterModel" : { "variableName" : "fleetAttributes", "variableType" : "FleetAttributes", "variableDeclarationType" : "FleetAttributes", "documentation" : "", "simpleType" : "FleetAttributes", "variableSetterType" : "FleetAttributes" }, "getterModel" : { "returnType" : "FleetAttributes", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetAttributes", "marshallLocationName" : "FleetAttributes", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Properties for the newly created fleet.

\n@param fleetAttributes Properties for the newly created fleet.*/", "getterDocumentation" : "/**

Properties for the newly created fleet.

\n@return Properties for the newly created fleet.*/", "fluentSetterDocumentation" : "/**

Properties for the newly created fleet.

\n@param fleetAttributes Properties for the newly created fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Properties for the newly created fleet.

\n@param fleetAttributes Properties for the newly created fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "createFleetResult", "variableType" : "CreateFleetResult", "variableDeclarationType" : "CreateFleetResult", "documentation" : null, "simpleType" : "CreateFleetResult", "variableSetterType" : "CreateFleetResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "FleetAttributes" : { "documentation" : "

Properties for the newly created fleet.

", "name" : "FleetAttributes", "c2jName" : "FleetAttributes", "c2jShape" : "FleetAttributes", "variable" : { "variableName" : "fleetAttributes", "variableType" : "FleetAttributes", "variableDeclarationType" : "FleetAttributes", "documentation" : "

Properties for the newly created fleet.

", "simpleType" : "FleetAttributes", "variableSetterType" : "FleetAttributes" }, "setterModel" : { "variableName" : "fleetAttributes", "variableType" : "FleetAttributes", "variableDeclarationType" : "FleetAttributes", "documentation" : "", "simpleType" : "FleetAttributes", "variableSetterType" : "FleetAttributes" }, "getterModel" : { "returnType" : "FleetAttributes", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetAttributes", "marshallLocationName" : "FleetAttributes", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Properties for the newly created fleet.

\n@param fleetAttributes Properties for the newly created fleet.*/", "getterDocumentation" : "/**

Properties for the newly created fleet.

\n@return Properties for the newly created fleet.*/", "fluentSetterDocumentation" : "/**

Properties for the newly created fleet.

\n@param fleetAttributes Properties for the newly created fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Properties for the newly created fleet.

\n@param fleetAttributes Properties for the newly created fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "ScalingPolicy" : { "c2jName" : "ScalingPolicy", "documentation" : "

Rule that controls how a fleet is scaled. Scaling policies are uniquely identified by the combination of name and fleet ID.

", "shapeName" : "ScalingPolicy", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identity for the fleet associated with this scaling policy.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identity for the fleet associated with this scaling policy.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identity for the fleet associated with this scaling policy.

\n@param fleetId Unique identity for the fleet associated with this scaling policy.*/", "getterDocumentation" : "/**

Unique identity for the fleet associated with this scaling policy.

\n@return Unique identity for the fleet associated with this scaling policy.*/", "fluentSetterDocumentation" : "/**

Unique identity for the fleet associated with this scaling policy.

\n@param fleetId Unique identity for the fleet associated with this scaling policy.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identity for the fleet associated with this scaling policy.

\n@param fleetId Unique identity for the fleet associated with this scaling policy.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@return Descriptive label associated with this scaling policy. Policy names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Current status of the scaling policy. The scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

", "name" : "Status", "c2jName" : "Status", "c2jShape" : "ScalingStatusType", "variable" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Current status of the scaling policy. The scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Status", "marshallLocationName" : "Status", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ScalingStatusType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Current status of the scaling policy. The scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

\n@param status Current status of the scaling policy. The scaling policy is only in force when in an Active state.
  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.
\n@see ScalingStatusType*/", "getterDocumentation" : "/**

Current status of the scaling policy. The scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

\n@return Current status of the scaling policy. The scaling policy is only in force when in an Active state.
  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.
\n@see ScalingStatusType*/", "fluentSetterDocumentation" : "/**

Current status of the scaling policy. The scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

\n@param status Current status of the scaling policy. The scaling policy is only in force when in an Active state.
  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ScalingStatusType*/", "varargSetterDocumentation" : "/**

Current status of the scaling policy. The scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

\n@param status Current status of the scaling policy. The scaling policy is only in force when in an Active state.
  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ScalingStatusType*/" }, { "documentation" : "

Amount of adjustment to make, based on the scaling adjustment type.

", "name" : "ScalingAdjustment", "c2jName" : "ScalingAdjustment", "c2jShape" : "Integer", "variable" : { "variableName" : "scalingAdjustment", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Amount of adjustment to make, based on the scaling adjustment type.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "scalingAdjustment", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "ScalingAdjustment", "marshallLocationName" : "ScalingAdjustment", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Amount of adjustment to make, based on the scaling adjustment type.

\n@param scalingAdjustment Amount of adjustment to make, based on the scaling adjustment type.*/", "getterDocumentation" : "/**

Amount of adjustment to make, based on the scaling adjustment type.

\n@return Amount of adjustment to make, based on the scaling adjustment type.*/", "fluentSetterDocumentation" : "/**

Amount of adjustment to make, based on the scaling adjustment type.

\n@param scalingAdjustment Amount of adjustment to make, based on the scaling adjustment type.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Amount of adjustment to make, based on the scaling adjustment type.

\n@param scalingAdjustment Amount of adjustment to make, based on the scaling adjustment type.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down.

", "name" : "ScalingAdjustmentType", "c2jName" : "ScalingAdjustmentType", "c2jShape" : "ScalingAdjustmentType", "variable" : { "variableName" : "scalingAdjustmentType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "scalingAdjustmentType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ScalingAdjustmentType", "marshallLocationName" : "ScalingAdjustmentType", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ScalingAdjustmentType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down.

\n@param scalingAdjustmentType Type of adjustment to make to a fleet's instance count (see FleetCapacity):
  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down.
\n@see ScalingAdjustmentType*/", "getterDocumentation" : "/**

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down.

\n@return Type of adjustment to make to a fleet's instance count (see FleetCapacity):
  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down.
\n@see ScalingAdjustmentType*/", "fluentSetterDocumentation" : "/**

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down.

\n@param scalingAdjustmentType Type of adjustment to make to a fleet's instance count (see FleetCapacity):
  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ScalingAdjustmentType*/", "varargSetterDocumentation" : "/**

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down.

\n@param scalingAdjustmentType Type of adjustment to make to a fleet's instance count (see FleetCapacity):
  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ScalingAdjustmentType*/" }, { "documentation" : "

Comparison operator to use when measuring a metric against the threshold value.

", "name" : "ComparisonOperator", "c2jName" : "ComparisonOperator", "c2jShape" : "ComparisonOperatorType", "variable" : { "variableName" : "comparisonOperator", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Comparison operator to use when measuring a metric against the threshold value.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "comparisonOperator", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ComparisonOperator", "marshallLocationName" : "ComparisonOperator", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ComparisonOperatorType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Comparison operator to use when measuring a metric against the threshold value.

\n@param comparisonOperator Comparison operator to use when measuring a metric against the threshold value.\n@see ComparisonOperatorType*/", "getterDocumentation" : "/**

Comparison operator to use when measuring a metric against the threshold value.

\n@return Comparison operator to use when measuring a metric against the threshold value.\n@see ComparisonOperatorType*/", "fluentSetterDocumentation" : "/**

Comparison operator to use when measuring a metric against the threshold value.

\n@param comparisonOperator Comparison operator to use when measuring a metric against the threshold value.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ComparisonOperatorType*/", "varargSetterDocumentation" : "/**

Comparison operator to use when measuring a metric against the threshold value.

\n@param comparisonOperator Comparison operator to use when measuring a metric against the threshold value.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ComparisonOperatorType*/" }, { "documentation" : "

Metric value used to trigger a scaling event.

", "name" : "Threshold", "c2jName" : "Threshold", "c2jShape" : "Double", "variable" : { "variableName" : "threshold", "variableType" : "Double", "variableDeclarationType" : "Double", "documentation" : "

Metric value used to trigger a scaling event.

", "simpleType" : "Double", "variableSetterType" : "Double" }, "setterModel" : { "variableName" : "threshold", "variableType" : "Double", "variableDeclarationType" : "Double", "documentation" : "", "simpleType" : "Double", "variableSetterType" : "Double" }, "getterModel" : { "returnType" : "Double", "documentation" : null }, "http" : { "unmarshallLocationName" : "Threshold", "marshallLocationName" : "Threshold", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Metric value used to trigger a scaling event.

\n@param threshold Metric value used to trigger a scaling event.*/", "getterDocumentation" : "/**

Metric value used to trigger a scaling event.

\n@return Metric value used to trigger a scaling event.*/", "fluentSetterDocumentation" : "/**

Metric value used to trigger a scaling event.

\n@param threshold Metric value used to trigger a scaling event.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Metric value used to trigger a scaling event.

\n@param threshold Metric value used to trigger a scaling event.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

", "name" : "EvaluationPeriods", "c2jName" : "EvaluationPeriods", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "evaluationPeriods", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "evaluationPeriods", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "EvaluationPeriods", "marshallLocationName" : "EvaluationPeriods", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

\n@param evaluationPeriods Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.*/", "getterDocumentation" : "/**

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

\n@return Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.*/", "fluentSetterDocumentation" : "/**

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

\n@param evaluationPeriods Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

\n@param evaluationPeriods Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Name of the GameLift-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

", "name" : "MetricName", "c2jName" : "MetricName", "c2jShape" : "MetricName", "variable" : { "variableName" : "metricName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Name of the GameLift-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "metricName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "MetricName", "marshallLocationName" : "MetricName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "MetricName", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Name of the GameLift-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

\n@param metricName Name of the GameLift-defined metric that is used to trigger an adjustment.
  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.
\n@see MetricName*/", "getterDocumentation" : "/**

Name of the GameLift-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

\n@return Name of the GameLift-defined metric that is used to trigger an adjustment.
  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.
\n@see MetricName*/", "fluentSetterDocumentation" : "/**

Name of the GameLift-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

\n@param metricName Name of the GameLift-defined metric that is used to trigger an adjustment.
  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricName*/", "varargSetterDocumentation" : "/**

Name of the GameLift-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

\n@param metricName Name of the GameLift-defined metric that is used to trigger an adjustment.
  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricName*/" } ], "enums" : null, "variable" : { "variableName" : "scalingPolicy", "variableType" : "ScalingPolicy", "variableDeclarationType" : "ScalingPolicy", "documentation" : null, "simpleType" : "ScalingPolicy", "variableSetterType" : "ScalingPolicy" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Name" : { "documentation" : "

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@return Descriptive label associated with this scaling policy. Policy names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Status" : { "documentation" : "

Current status of the scaling policy. The scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

", "name" : "Status", "c2jName" : "Status", "c2jShape" : "ScalingStatusType", "variable" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Current status of the scaling policy. The scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Status", "marshallLocationName" : "Status", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ScalingStatusType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Current status of the scaling policy. The scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

\n@param status Current status of the scaling policy. The scaling policy is only in force when in an Active state.
  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.
\n@see ScalingStatusType*/", "getterDocumentation" : "/**

Current status of the scaling policy. The scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

\n@return Current status of the scaling policy. The scaling policy is only in force when in an Active state.
  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.
\n@see ScalingStatusType*/", "fluentSetterDocumentation" : "/**

Current status of the scaling policy. The scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

\n@param status Current status of the scaling policy. The scaling policy is only in force when in an Active state.
  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ScalingStatusType*/", "varargSetterDocumentation" : "/**

Current status of the scaling policy. The scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

\n@param status Current status of the scaling policy. The scaling policy is only in force when in an Active state.
  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ScalingStatusType*/" }, "MetricName" : { "documentation" : "

Name of the GameLift-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

", "name" : "MetricName", "c2jName" : "MetricName", "c2jShape" : "MetricName", "variable" : { "variableName" : "metricName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Name of the GameLift-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "metricName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "MetricName", "marshallLocationName" : "MetricName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "MetricName", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Name of the GameLift-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

\n@param metricName Name of the GameLift-defined metric that is used to trigger an adjustment.
  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.
\n@see MetricName*/", "getterDocumentation" : "/**

Name of the GameLift-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

\n@return Name of the GameLift-defined metric that is used to trigger an adjustment.
  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.
\n@see MetricName*/", "fluentSetterDocumentation" : "/**

Name of the GameLift-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

\n@param metricName Name of the GameLift-defined metric that is used to trigger an adjustment.
  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricName*/", "varargSetterDocumentation" : "/**

Name of the GameLift-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

\n@param metricName Name of the GameLift-defined metric that is used to trigger an adjustment.
  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricName*/" }, "Threshold" : { "documentation" : "

Metric value used to trigger a scaling event.

", "name" : "Threshold", "c2jName" : "Threshold", "c2jShape" : "Double", "variable" : { "variableName" : "threshold", "variableType" : "Double", "variableDeclarationType" : "Double", "documentation" : "

Metric value used to trigger a scaling event.

", "simpleType" : "Double", "variableSetterType" : "Double" }, "setterModel" : { "variableName" : "threshold", "variableType" : "Double", "variableDeclarationType" : "Double", "documentation" : "", "simpleType" : "Double", "variableSetterType" : "Double" }, "getterModel" : { "returnType" : "Double", "documentation" : null }, "http" : { "unmarshallLocationName" : "Threshold", "marshallLocationName" : "Threshold", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Metric value used to trigger a scaling event.

\n@param threshold Metric value used to trigger a scaling event.*/", "getterDocumentation" : "/**

Metric value used to trigger a scaling event.

\n@return Metric value used to trigger a scaling event.*/", "fluentSetterDocumentation" : "/**

Metric value used to trigger a scaling event.

\n@param threshold Metric value used to trigger a scaling event.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Metric value used to trigger a scaling event.

\n@param threshold Metric value used to trigger a scaling event.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "EvaluationPeriods" : { "documentation" : "

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

", "name" : "EvaluationPeriods", "c2jName" : "EvaluationPeriods", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "evaluationPeriods", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "evaluationPeriods", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "EvaluationPeriods", "marshallLocationName" : "EvaluationPeriods", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

\n@param evaluationPeriods Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.*/", "getterDocumentation" : "/**

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

\n@return Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.*/", "fluentSetterDocumentation" : "/**

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

\n@param evaluationPeriods Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

\n@param evaluationPeriods Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "ScalingAdjustment" : { "documentation" : "

Amount of adjustment to make, based on the scaling adjustment type.

", "name" : "ScalingAdjustment", "c2jName" : "ScalingAdjustment", "c2jShape" : "Integer", "variable" : { "variableName" : "scalingAdjustment", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Amount of adjustment to make, based on the scaling adjustment type.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "scalingAdjustment", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "ScalingAdjustment", "marshallLocationName" : "ScalingAdjustment", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Amount of adjustment to make, based on the scaling adjustment type.

\n@param scalingAdjustment Amount of adjustment to make, based on the scaling adjustment type.*/", "getterDocumentation" : "/**

Amount of adjustment to make, based on the scaling adjustment type.

\n@return Amount of adjustment to make, based on the scaling adjustment type.*/", "fluentSetterDocumentation" : "/**

Amount of adjustment to make, based on the scaling adjustment type.

\n@param scalingAdjustment Amount of adjustment to make, based on the scaling adjustment type.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Amount of adjustment to make, based on the scaling adjustment type.

\n@param scalingAdjustment Amount of adjustment to make, based on the scaling adjustment type.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FleetId" : { "documentation" : "

Unique identity for the fleet associated with this scaling policy.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identity for the fleet associated with this scaling policy.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identity for the fleet associated with this scaling policy.

\n@param fleetId Unique identity for the fleet associated with this scaling policy.*/", "getterDocumentation" : "/**

Unique identity for the fleet associated with this scaling policy.

\n@return Unique identity for the fleet associated with this scaling policy.*/", "fluentSetterDocumentation" : "/**

Unique identity for the fleet associated with this scaling policy.

\n@param fleetId Unique identity for the fleet associated with this scaling policy.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identity for the fleet associated with this scaling policy.

\n@param fleetId Unique identity for the fleet associated with this scaling policy.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "ScalingAdjustmentType" : { "documentation" : "

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down.

", "name" : "ScalingAdjustmentType", "c2jName" : "ScalingAdjustmentType", "c2jShape" : "ScalingAdjustmentType", "variable" : { "variableName" : "scalingAdjustmentType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "scalingAdjustmentType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ScalingAdjustmentType", "marshallLocationName" : "ScalingAdjustmentType", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ScalingAdjustmentType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down.

\n@param scalingAdjustmentType Type of adjustment to make to a fleet's instance count (see FleetCapacity):
  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down.
\n@see ScalingAdjustmentType*/", "getterDocumentation" : "/**

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down.

\n@return Type of adjustment to make to a fleet's instance count (see FleetCapacity):
  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down.
\n@see ScalingAdjustmentType*/", "fluentSetterDocumentation" : "/**

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down.

\n@param scalingAdjustmentType Type of adjustment to make to a fleet's instance count (see FleetCapacity):
  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ScalingAdjustmentType*/", "varargSetterDocumentation" : "/**

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down.

\n@param scalingAdjustmentType Type of adjustment to make to a fleet's instance count (see FleetCapacity):
  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: increase or reduce the current instance count by the scaling adjustment, read as a percentage. Positive values scale up while negative values scale down.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ScalingAdjustmentType*/" }, "ComparisonOperator" : { "documentation" : "

Comparison operator to use when measuring a metric against the threshold value.

", "name" : "ComparisonOperator", "c2jName" : "ComparisonOperator", "c2jShape" : "ComparisonOperatorType", "variable" : { "variableName" : "comparisonOperator", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Comparison operator to use when measuring a metric against the threshold value.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "comparisonOperator", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ComparisonOperator", "marshallLocationName" : "ComparisonOperator", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ComparisonOperatorType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Comparison operator to use when measuring a metric against the threshold value.

\n@param comparisonOperator Comparison operator to use when measuring a metric against the threshold value.\n@see ComparisonOperatorType*/", "getterDocumentation" : "/**

Comparison operator to use when measuring a metric against the threshold value.

\n@return Comparison operator to use when measuring a metric against the threshold value.\n@see ComparisonOperatorType*/", "fluentSetterDocumentation" : "/**

Comparison operator to use when measuring a metric against the threshold value.

\n@param comparisonOperator Comparison operator to use when measuring a metric against the threshold value.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ComparisonOperatorType*/", "varargSetterDocumentation" : "/**

Comparison operator to use when measuring a metric against the threshold value.

\n@param comparisonOperator Comparison operator to use when measuring a metric against the threshold value.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ComparisonOperatorType*/" } } }, "DescribeBuildRequest" : { "c2jName" : "DescribeBuildInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "DescribeBuildRequest", "deprecated" : false, "required" : [ "BuildId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for the build you want to retrieve properties for.

", "name" : "BuildId", "c2jName" : "BuildId", "c2jShape" : "BuildId", "variable" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the build you want to retrieve properties for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "BuildId", "marshallLocationName" : "BuildId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the build you want to retrieve properties for.

\n@param buildId Unique identifier for the build you want to retrieve properties for.*/", "getterDocumentation" : "/**

Unique identifier for the build you want to retrieve properties for.

\n@return Unique identifier for the build you want to retrieve properties for.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the build you want to retrieve properties for.

\n@param buildId Unique identifier for the build you want to retrieve properties for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the build you want to retrieve properties for.

\n@param buildId Unique identifier for the build you want to retrieve properties for.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeBuildRequest", "variableType" : "DescribeBuildRequest", "variableDeclarationType" : "DescribeBuildRequest", "documentation" : null, "simpleType" : "DescribeBuildRequest", "variableSetterType" : "DescribeBuildRequest" }, "marshaller" : { "action" : "DescribeBuild", "verb" : "POST", "target" : "GameLift.DescribeBuild", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "BuildId" : { "documentation" : "

Unique identifier for the build you want to retrieve properties for.

", "name" : "BuildId", "c2jName" : "BuildId", "c2jShape" : "BuildId", "variable" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the build you want to retrieve properties for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "BuildId", "marshallLocationName" : "BuildId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the build you want to retrieve properties for.

\n@param buildId Unique identifier for the build you want to retrieve properties for.*/", "getterDocumentation" : "/**

Unique identifier for the build you want to retrieve properties for.

\n@return Unique identifier for the build you want to retrieve properties for.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the build you want to retrieve properties for.

\n@param buildId Unique identifier for the build you want to retrieve properties for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the build you want to retrieve properties for.

\n@param buildId Unique identifier for the build you want to retrieve properties for.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "NotFoundException" : { "c2jName" : "NotFoundException", "documentation" : "

A service resource associated with the request could not be found. Such requests should not be retried by clients.

", "shapeName" : "NotFoundException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ ], "enums" : null, "variable" : { "variableName" : "notFoundException", "variableType" : "NotFoundException", "variableDeclarationType" : "NotFoundException", "documentation" : null, "simpleType" : "NotFoundException", "variableSetterType" : "NotFoundException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "NotFoundException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "UpdateFleetPortSettingsResult" : { "c2jName" : "UpdateFleetPortSettingsOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "UpdateFleetPortSettingsResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for the updated fleet.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the updated fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@param fleetId Unique identifier for the updated fleet.*/", "getterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@return Unique identifier for the updated fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@param fleetId Unique identifier for the updated fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@param fleetId Unique identifier for the updated fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "updateFleetPortSettingsResult", "variableType" : "UpdateFleetPortSettingsResult", "variableDeclarationType" : "UpdateFleetPortSettingsResult", "documentation" : null, "simpleType" : "UpdateFleetPortSettingsResult", "variableSetterType" : "UpdateFleetPortSettingsResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "FleetId" : { "documentation" : "

Unique identifier for the updated fleet.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the updated fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@param fleetId Unique identifier for the updated fleet.*/", "getterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@return Unique identifier for the updated fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@param fleetId Unique identifier for the updated fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@param fleetId Unique identifier for the updated fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DeleteAliasResult" : { "c2jName" : "DeleteAliasResult", "documentation" : null, "shapeName" : "DeleteAliasResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "deleteAliasResult", "variableType" : "DeleteAliasResult", "variableDeclarationType" : "DeleteAliasResult", "documentation" : null, "simpleType" : "DeleteAliasResult", "variableSetterType" : "DeleteAliasResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "GameSession" : { "c2jName" : "GameSession", "documentation" : "

Properties describing a game session.

", "shapeName" : "GameSession", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for a game session.

", "name" : "GameSessionId", "c2jName" : "GameSessionId", "c2jShape" : "GameSessionId", "variable" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a game session.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessionId", "marshallLocationName" : "GameSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.*/", "getterDocumentation" : "/**

Unique identifier for a game session.

\n@return Unique identifier for a game session.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Descriptive label associated with this game session. Session names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this game session. Session names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@param name Descriptive label associated with this game session. Session names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@return Descriptive label associated with this game session. Session names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@param name Descriptive label associated with this game session. Session names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@param name Descriptive label associated with this game session. Session names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Unique identifier for a fleet.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.*/", "getterDocumentation" : "/**

Unique identifier for a fleet.

\n@return Unique identifier for a fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "CreationTime", "c2jName" : "CreationTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationTime", "marshallLocationName" : "CreationTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "TerminationTime", "c2jName" : "TerminationTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "terminationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "terminationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "TerminationTime", "marshallLocationName" : "TerminationTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param terminationTime Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param terminationTime Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param terminationTime Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Number of players currently in the game session.

", "name" : "CurrentPlayerSessionCount", "c2jName" : "CurrentPlayerSessionCount", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "currentPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Number of players currently in the game session.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "currentPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "CurrentPlayerSessionCount", "marshallLocationName" : "CurrentPlayerSessionCount", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Number of players currently in the game session.

\n@param currentPlayerSessionCount Number of players currently in the game session.*/", "getterDocumentation" : "/**

Number of players currently in the game session.

\n@return Number of players currently in the game session.*/", "fluentSetterDocumentation" : "/**

Number of players currently in the game session.

\n@param currentPlayerSessionCount Number of players currently in the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Number of players currently in the game session.

\n@param currentPlayerSessionCount Number of players currently in the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Maximum number of players allowed in the game session.

", "name" : "MaximumPlayerSessionCount", "c2jName" : "MaximumPlayerSessionCount", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "maximumPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Maximum number of players allowed in the game session.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "maximumPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MaximumPlayerSessionCount", "marshallLocationName" : "MaximumPlayerSessionCount", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Maximum number of players allowed in the game session.

\n@param maximumPlayerSessionCount Maximum number of players allowed in the game session.*/", "getterDocumentation" : "/**

Maximum number of players allowed in the game session.

\n@return Maximum number of players allowed in the game session.*/", "fluentSetterDocumentation" : "/**

Maximum number of players allowed in the game session.

\n@param maximumPlayerSessionCount Maximum number of players allowed in the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Maximum number of players allowed in the game session.

\n@param maximumPlayerSessionCount Maximum number of players allowed in the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "Status", "c2jName" : "Status", "c2jShape" : "GameSessionStatus", "variable" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Status", "marshallLocationName" : "Status", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "GameSessionStatus", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param status Current status of the game session. A game session must be in an ACTIVE state to have player sessions.\n@see GameSessionStatus*/", "getterDocumentation" : "/**

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

\n@return Current status of the game session. A game session must be in an ACTIVE state to have player sessions.\n@see GameSessionStatus*/", "fluentSetterDocumentation" : "/**

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

\n@param status Current status of the game session. A game session must be in an ACTIVE state to have player sessions.\n@return Returns a reference to this object so that method calls can be chained together.\n@see GameSessionStatus*/", "varargSetterDocumentation" : "/**

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

\n@param status Current status of the game session. A game session must be in an ACTIVE state to have player sessions.\n@return Returns a reference to this object so that method calls can be chained together.\n@see GameSessionStatus*/" }, { "documentation" : "

Set of custom properties for the game session.

", "name" : "GameProperties", "c2jName" : "GameProperties", "c2jShape" : "GamePropertyList", "variable" : { "variableName" : "gameProperties", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Set of custom properties for the game session.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "gameProperties", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameProperties", "marshallLocationName" : "GameProperties", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "GameProperty", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "GameProperty", "variable" : { "variableName" : "member", "variableType" : "GameProperty", "variableDeclarationType" : "GameProperty", "documentation" : "", "simpleType" : "GameProperty", "variableSetterType" : "GameProperty" }, "setterModel" : { "variableName" : "member", "variableType" : "GameProperty", "variableDeclarationType" : "GameProperty", "documentation" : "", "simpleType" : "GameProperty", "variableSetterType" : "GameProperty" }, "getterModel" : { "returnType" : "GameProperty", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "GameProperty", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Set of custom properties for the game session.

\n@param gameProperties Set of custom properties for the game session.*/", "getterDocumentation" : "/**

Set of custom properties for the game session.

\n@return Set of custom properties for the game session.*/", "fluentSetterDocumentation" : "/**

Set of custom properties for the game session.

\n@param gameProperties Set of custom properties for the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Set of custom properties for the game session.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setGameProperties(java.util.Collection)} or {@link #withGameProperties(java.util.Collection)} if you want to override the existing values.

\n@param gameProperties Set of custom properties for the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

IP address of the game session.

", "name" : "IpAddress", "c2jName" : "IpAddress", "c2jShape" : "IpAddress", "variable" : { "variableName" : "ipAddress", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

IP address of the game session.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "ipAddress", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "IpAddress", "marshallLocationName" : "IpAddress", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

IP address of the game session.

\n@param ipAddress IP address of the game session.*/", "getterDocumentation" : "/**

IP address of the game session.

\n@return IP address of the game session.*/", "fluentSetterDocumentation" : "/**

IP address of the game session.

\n@param ipAddress IP address of the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

IP address of the game session.

\n@param ipAddress IP address of the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "PlayerSessionCreationPolicy", "c2jName" : "PlayerSessionCreationPolicy", "c2jShape" : "PlayerSessionCreationPolicy", "variable" : { "variableName" : "playerSessionCreationPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "playerSessionCreationPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerSessionCreationPolicy", "marshallLocationName" : "PlayerSessionCreationPolicy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "PlayerSessionCreationPolicy", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param playerSessionCreationPolicy Indicates whether or not the game session is accepting new players.\n@see PlayerSessionCreationPolicy*/", "getterDocumentation" : "/**

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

\n@return Indicates whether or not the game session is accepting new players.\n@see PlayerSessionCreationPolicy*/", "fluentSetterDocumentation" : "/**

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

\n@param playerSessionCreationPolicy Indicates whether or not the game session is accepting new players.\n@return Returns a reference to this object so that method calls can be chained together.\n@see PlayerSessionCreationPolicy*/", "varargSetterDocumentation" : "/**

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

\n@param playerSessionCreationPolicy Indicates whether or not the game session is accepting new players.\n@return Returns a reference to this object so that method calls can be chained together.\n@see PlayerSessionCreationPolicy*/" } ], "enums" : null, "variable" : { "variableName" : "gameSession", "variableType" : "GameSession", "variableDeclarationType" : "GameSession", "documentation" : null, "simpleType" : "GameSession", "variableSetterType" : "GameSession" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "CreationTime" : { "documentation" : "

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "CreationTime", "c2jName" : "CreationTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationTime", "marshallLocationName" : "CreationTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Name" : { "documentation" : "

Descriptive label associated with this game session. Session names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this game session. Session names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@param name Descriptive label associated with this game session. Session names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@return Descriptive label associated with this game session. Session names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@param name Descriptive label associated with this game session. Session names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@param name Descriptive label associated with this game session. Session names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Status" : { "documentation" : "

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

", "name" : "Status", "c2jName" : "Status", "c2jShape" : "GameSessionStatus", "variable" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Status", "marshallLocationName" : "Status", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "GameSessionStatus", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param status Current status of the game session. A game session must be in an ACTIVE state to have player sessions.\n@see GameSessionStatus*/", "getterDocumentation" : "/**

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

\n@return Current status of the game session. A game session must be in an ACTIVE state to have player sessions.\n@see GameSessionStatus*/", "fluentSetterDocumentation" : "/**

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

\n@param status Current status of the game session. A game session must be in an ACTIVE state to have player sessions.\n@return Returns a reference to this object so that method calls can be chained together.\n@see GameSessionStatus*/", "varargSetterDocumentation" : "/**

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

\n@param status Current status of the game session. A game session must be in an ACTIVE state to have player sessions.\n@return Returns a reference to this object so that method calls can be chained together.\n@see GameSessionStatus*/" }, "PlayerSessionCreationPolicy" : { "documentation" : "

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

", "name" : "PlayerSessionCreationPolicy", "c2jName" : "PlayerSessionCreationPolicy", "c2jShape" : "PlayerSessionCreationPolicy", "variable" : { "variableName" : "playerSessionCreationPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "playerSessionCreationPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerSessionCreationPolicy", "marshallLocationName" : "PlayerSessionCreationPolicy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "PlayerSessionCreationPolicy", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param playerSessionCreationPolicy Indicates whether or not the game session is accepting new players.\n@see PlayerSessionCreationPolicy*/", "getterDocumentation" : "/**

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

\n@return Indicates whether or not the game session is accepting new players.\n@see PlayerSessionCreationPolicy*/", "fluentSetterDocumentation" : "/**

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

\n@param playerSessionCreationPolicy Indicates whether or not the game session is accepting new players.\n@return Returns a reference to this object so that method calls can be chained together.\n@see PlayerSessionCreationPolicy*/", "varargSetterDocumentation" : "/**

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

\n@param playerSessionCreationPolicy Indicates whether or not the game session is accepting new players.\n@return Returns a reference to this object so that method calls can be chained together.\n@see PlayerSessionCreationPolicy*/" }, "FleetId" : { "documentation" : "

Unique identifier for a fleet.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.*/", "getterDocumentation" : "/**

Unique identifier for a fleet.

\n@return Unique identifier for a fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "GameSessionId" : { "documentation" : "

Unique identifier for a game session.

", "name" : "GameSessionId", "c2jName" : "GameSessionId", "c2jShape" : "GameSessionId", "variable" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a game session.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessionId", "marshallLocationName" : "GameSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.*/", "getterDocumentation" : "/**

Unique identifier for a game session.

\n@return Unique identifier for a game session.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "IpAddress" : { "documentation" : "

IP address of the game session.

", "name" : "IpAddress", "c2jName" : "IpAddress", "c2jShape" : "IpAddress", "variable" : { "variableName" : "ipAddress", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

IP address of the game session.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "ipAddress", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "IpAddress", "marshallLocationName" : "IpAddress", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

IP address of the game session.

\n@param ipAddress IP address of the game session.*/", "getterDocumentation" : "/**

IP address of the game session.

\n@return IP address of the game session.*/", "fluentSetterDocumentation" : "/**

IP address of the game session.

\n@param ipAddress IP address of the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

IP address of the game session.

\n@param ipAddress IP address of the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "MaximumPlayerSessionCount" : { "documentation" : "

Maximum number of players allowed in the game session.

", "name" : "MaximumPlayerSessionCount", "c2jName" : "MaximumPlayerSessionCount", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "maximumPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Maximum number of players allowed in the game session.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "maximumPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MaximumPlayerSessionCount", "marshallLocationName" : "MaximumPlayerSessionCount", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Maximum number of players allowed in the game session.

\n@param maximumPlayerSessionCount Maximum number of players allowed in the game session.*/", "getterDocumentation" : "/**

Maximum number of players allowed in the game session.

\n@return Maximum number of players allowed in the game session.*/", "fluentSetterDocumentation" : "/**

Maximum number of players allowed in the game session.

\n@param maximumPlayerSessionCount Maximum number of players allowed in the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Maximum number of players allowed in the game session.

\n@param maximumPlayerSessionCount Maximum number of players allowed in the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "CurrentPlayerSessionCount" : { "documentation" : "

Number of players currently in the game session.

", "name" : "CurrentPlayerSessionCount", "c2jName" : "CurrentPlayerSessionCount", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "currentPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Number of players currently in the game session.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "currentPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "CurrentPlayerSessionCount", "marshallLocationName" : "CurrentPlayerSessionCount", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Number of players currently in the game session.

\n@param currentPlayerSessionCount Number of players currently in the game session.*/", "getterDocumentation" : "/**

Number of players currently in the game session.

\n@return Number of players currently in the game session.*/", "fluentSetterDocumentation" : "/**

Number of players currently in the game session.

\n@param currentPlayerSessionCount Number of players currently in the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Number of players currently in the game session.

\n@param currentPlayerSessionCount Number of players currently in the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "TerminationTime" : { "documentation" : "

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "TerminationTime", "c2jName" : "TerminationTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "terminationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "terminationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "TerminationTime", "marshallLocationName" : "TerminationTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param terminationTime Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param terminationTime Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param terminationTime Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "GameProperties" : { "documentation" : "

Set of custom properties for the game session.

", "name" : "GameProperties", "c2jName" : "GameProperties", "c2jShape" : "GamePropertyList", "variable" : { "variableName" : "gameProperties", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Set of custom properties for the game session.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "gameProperties", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameProperties", "marshallLocationName" : "GameProperties", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "GameProperty", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "GameProperty", "variable" : { "variableName" : "member", "variableType" : "GameProperty", "variableDeclarationType" : "GameProperty", "documentation" : "", "simpleType" : "GameProperty", "variableSetterType" : "GameProperty" }, "setterModel" : { "variableName" : "member", "variableType" : "GameProperty", "variableDeclarationType" : "GameProperty", "documentation" : "", "simpleType" : "GameProperty", "variableSetterType" : "GameProperty" }, "getterModel" : { "returnType" : "GameProperty", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "GameProperty", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Set of custom properties for the game session.

\n@param gameProperties Set of custom properties for the game session.*/", "getterDocumentation" : "/**

Set of custom properties for the game session.

\n@return Set of custom properties for the game session.*/", "fluentSetterDocumentation" : "/**

Set of custom properties for the game session.

\n@param gameProperties Set of custom properties for the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Set of custom properties for the game session.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setGameProperties(java.util.Collection)} or {@link #withGameProperties(java.util.Collection)} if you want to override the existing values.

\n@param gameProperties Set of custom properties for the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DescribeScalingPoliciesRequest" : { "c2jName" : "DescribeScalingPoliciesInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "DescribeScalingPoliciesRequest", "deprecated" : false, "required" : [ "FleetId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for a fleet. Specify the fleet to retrieve scaling policies for.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet. Specify the fleet to retrieve scaling policies for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet. Specify the fleet to retrieve scaling policies for.

\n@param fleetId Unique identifier for a fleet. Specify the fleet to retrieve scaling policies for.*/", "getterDocumentation" : "/**

Unique identifier for a fleet. Specify the fleet to retrieve scaling policies for.

\n@return Unique identifier for a fleet. Specify the fleet to retrieve scaling policies for.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet. Specify the fleet to retrieve scaling policies for.

\n@param fleetId Unique identifier for a fleet. Specify the fleet to retrieve scaling policies for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet. Specify the fleet to retrieve scaling policies for.

\n@param fleetId Unique identifier for a fleet. Specify the fleet to retrieve scaling policies for.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Game session status to filter results on. A scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

", "name" : "StatusFilter", "c2jName" : "StatusFilter", "c2jShape" : "ScalingStatusType", "variable" : { "variableName" : "statusFilter", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Game session status to filter results on. A scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "statusFilter", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "StatusFilter", "marshallLocationName" : "StatusFilter", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ScalingStatusType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Game session status to filter results on. A scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

\n@param statusFilter Game session status to filter results on. A scaling policy is only in force when in an Active state.
  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.
\n@see ScalingStatusType*/", "getterDocumentation" : "/**

Game session status to filter results on. A scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

\n@return Game session status to filter results on. A scaling policy is only in force when in an Active state.
  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.
\n@see ScalingStatusType*/", "fluentSetterDocumentation" : "/**

Game session status to filter results on. A scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

\n@param statusFilter Game session status to filter results on. A scaling policy is only in force when in an Active state.
  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ScalingStatusType*/", "varargSetterDocumentation" : "/**

Game session status to filter results on. A scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

\n@param statusFilter Game session status to filter results on. A scaling policy is only in force when in an Active state.
  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ScalingStatusType*/" }, { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeScalingPoliciesRequest", "variableType" : "DescribeScalingPoliciesRequest", "variableDeclarationType" : "DescribeScalingPoliciesRequest", "documentation" : null, "simpleType" : "DescribeScalingPoliciesRequest", "variableSetterType" : "DescribeScalingPoliciesRequest" }, "marshaller" : { "action" : "DescribeScalingPolicies", "verb" : "POST", "target" : "GameLift.DescribeScalingPolicies", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NextToken" : { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FleetId" : { "documentation" : "

Unique identifier for a fleet. Specify the fleet to retrieve scaling policies for.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet. Specify the fleet to retrieve scaling policies for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet. Specify the fleet to retrieve scaling policies for.

\n@param fleetId Unique identifier for a fleet. Specify the fleet to retrieve scaling policies for.*/", "getterDocumentation" : "/**

Unique identifier for a fleet. Specify the fleet to retrieve scaling policies for.

\n@return Unique identifier for a fleet. Specify the fleet to retrieve scaling policies for.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet. Specify the fleet to retrieve scaling policies for.

\n@param fleetId Unique identifier for a fleet. Specify the fleet to retrieve scaling policies for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet. Specify the fleet to retrieve scaling policies for.

\n@param fleetId Unique identifier for a fleet. Specify the fleet to retrieve scaling policies for.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "StatusFilter" : { "documentation" : "

Game session status to filter results on. A scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

", "name" : "StatusFilter", "c2jName" : "StatusFilter", "c2jShape" : "ScalingStatusType", "variable" : { "variableName" : "statusFilter", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Game session status to filter results on. A scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "statusFilter", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "StatusFilter", "marshallLocationName" : "StatusFilter", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ScalingStatusType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Game session status to filter results on. A scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

\n@param statusFilter Game session status to filter results on. A scaling policy is only in force when in an Active state.
  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.
\n@see ScalingStatusType*/", "getterDocumentation" : "/**

Game session status to filter results on. A scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

\n@return Game session status to filter results on. A scaling policy is only in force when in an Active state.
  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.
\n@see ScalingStatusType*/", "fluentSetterDocumentation" : "/**

Game session status to filter results on. A scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

\n@param statusFilter Game session status to filter results on. A scaling policy is only in force when in an Active state.
  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ScalingStatusType*/", "varargSetterDocumentation" : "/**

Game session status to filter results on. A scaling policy is only in force when in an Active state.

  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.

\n@param statusFilter Game session status to filter results on. A scaling policy is only in force when in an Active state.
  • ACTIVE: The scaling policy is currently in force.
  • UPDATEREQUESTED: A request to update the scaling policy has been received.
  • UPDATING: A change is being made to the scaling policy.
  • DELETEREQUESTED: A request to delete the scaling policy has been received.
  • DELETING: The scaling policy is being deleted.
  • DELETED: The scaling policy has been deleted.
  • ERROR: An error occurred in creating the policy. It should be removed and recreated.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ScalingStatusType*/" }, "Limit" : { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "RequestUploadCredentialsResult" : { "c2jName" : "RequestUploadCredentialsOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "RequestUploadCredentialsResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

AWS credentials required when uploading a game build to the storage location. These credentials have a limited lifespan and are valid only for the build they were issued for.

", "name" : "UploadCredentials", "c2jName" : "UploadCredentials", "c2jShape" : "Credentials", "variable" : { "variableName" : "uploadCredentials", "variableType" : "Credentials", "variableDeclarationType" : "Credentials", "documentation" : "

AWS credentials required when uploading a game build to the storage location. These credentials have a limited lifespan and are valid only for the build they were issued for.

", "simpleType" : "Credentials", "variableSetterType" : "Credentials" }, "setterModel" : { "variableName" : "uploadCredentials", "variableType" : "Credentials", "variableDeclarationType" : "Credentials", "documentation" : "", "simpleType" : "Credentials", "variableSetterType" : "Credentials" }, "getterModel" : { "returnType" : "Credentials", "documentation" : null }, "http" : { "unmarshallLocationName" : "UploadCredentials", "marshallLocationName" : "UploadCredentials", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param uploadCredentials 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param uploadCredentials 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param uploadCredentials 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Amazon S3 path and key, identifying where the game build files are stored.

", "name" : "StorageLocation", "c2jName" : "StorageLocation", "c2jShape" : "S3Location", "variable" : { "variableName" : "storageLocation", "variableType" : "S3Location", "variableDeclarationType" : "S3Location", "documentation" : "

Amazon S3 path and key, identifying where the game build files are stored.

", "simpleType" : "S3Location", "variableSetterType" : "S3Location" }, "setterModel" : { "variableName" : "storageLocation", "variableType" : "S3Location", "variableDeclarationType" : "S3Location", "documentation" : "", "simpleType" : "S3Location", "variableSetterType" : "S3Location" }, "getterModel" : { "returnType" : "S3Location", "documentation" : null }, "http" : { "unmarshallLocationName" : "StorageLocation", "marshallLocationName" : "StorageLocation", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Amazon S3 path and key, identifying where the game build files are stored.

\n@param storageLocation Amazon S3 path and key, identifying where the game build files are stored.*/", "getterDocumentation" : "/**

Amazon S3 path and key, identifying where the game build files are stored.

\n@return Amazon S3 path and key, identifying where the game build files are stored.*/", "fluentSetterDocumentation" : "/**

Amazon S3 path and key, identifying where the game build files are stored.

\n@param storageLocation Amazon S3 path and key, identifying where the game build files are stored.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Amazon S3 path and key, identifying where the game build files are stored.

\n@param storageLocation Amazon S3 path and key, identifying where the game build files are stored.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "requestUploadCredentialsResult", "variableType" : "RequestUploadCredentialsResult", "variableDeclarationType" : "RequestUploadCredentialsResult", "documentation" : null, "simpleType" : "RequestUploadCredentialsResult", "variableSetterType" : "RequestUploadCredentialsResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "UploadCredentials" : { "documentation" : "

AWS credentials required when uploading a game build to the storage location. These credentials have a limited lifespan and are valid only for the build they were issued for.

", "name" : "UploadCredentials", "c2jName" : "UploadCredentials", "c2jShape" : "Credentials", "variable" : { "variableName" : "uploadCredentials", "variableType" : "Credentials", "variableDeclarationType" : "Credentials", "documentation" : "

AWS credentials required when uploading a game build to the storage location. These credentials have a limited lifespan and are valid only for the build they were issued for.

", "simpleType" : "Credentials", "variableSetterType" : "Credentials" }, "setterModel" : { "variableName" : "uploadCredentials", "variableType" : "Credentials", "variableDeclarationType" : "Credentials", "documentation" : "", "simpleType" : "Credentials", "variableSetterType" : "Credentials" }, "getterModel" : { "returnType" : "Credentials", "documentation" : null }, "http" : { "unmarshallLocationName" : "UploadCredentials", "marshallLocationName" : "UploadCredentials", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param uploadCredentials 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param uploadCredentials 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param uploadCredentials 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "StorageLocation" : { "documentation" : "

Amazon S3 path and key, identifying where the game build files are stored.

", "name" : "StorageLocation", "c2jName" : "StorageLocation", "c2jShape" : "S3Location", "variable" : { "variableName" : "storageLocation", "variableType" : "S3Location", "variableDeclarationType" : "S3Location", "documentation" : "

Amazon S3 path and key, identifying where the game build files are stored.

", "simpleType" : "S3Location", "variableSetterType" : "S3Location" }, "setterModel" : { "variableName" : "storageLocation", "variableType" : "S3Location", "variableDeclarationType" : "S3Location", "documentation" : "", "simpleType" : "S3Location", "variableSetterType" : "S3Location" }, "getterModel" : { "returnType" : "S3Location", "documentation" : null }, "http" : { "unmarshallLocationName" : "StorageLocation", "marshallLocationName" : "StorageLocation", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Amazon S3 path and key, identifying where the game build files are stored.

\n@param storageLocation Amazon S3 path and key, identifying where the game build files are stored.*/", "getterDocumentation" : "/**

Amazon S3 path and key, identifying where the game build files are stored.

\n@return Amazon S3 path and key, identifying where the game build files are stored.*/", "fluentSetterDocumentation" : "/**

Amazon S3 path and key, identifying where the game build files are stored.

\n@param storageLocation Amazon S3 path and key, identifying where the game build files are stored.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Amazon S3 path and key, identifying where the game build files are stored.

\n@param storageLocation Amazon S3 path and key, identifying where the game build files are stored.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "ListAliasesRequest" : { "c2jName" : "ListAliasesInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "ListAliasesRequest", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

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

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

", "name" : "RoutingStrategyType", "c2jName" : "RoutingStrategyType", "c2jShape" : "RoutingStrategyType", "variable" : { "variableName" : "routingStrategyType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "routingStrategyType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "RoutingStrategyType", "marshallLocationName" : "RoutingStrategyType", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "RoutingStrategyType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

\n@param routingStrategyType Type of routing to filter results on. Use this parameter to retrieve only aliases of a certain type. To retrieve all aliases, leave this parameter empty. Possible routing types include:
  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.
\n@see RoutingStrategyType*/", "getterDocumentation" : "/**

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

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

\n@return Type of routing to filter results on. Use this parameter to retrieve only aliases of a certain type. To retrieve all aliases, leave this parameter empty. Possible routing types include:
  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.
\n@see RoutingStrategyType*/", "fluentSetterDocumentation" : "/**

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

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

\n@param routingStrategyType Type of routing to filter results on. Use this parameter to retrieve only aliases of a certain type. To retrieve all aliases, leave this parameter empty. Possible routing types include:
  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see RoutingStrategyType*/", "varargSetterDocumentation" : "/**

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

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

\n@param routingStrategyType Type of routing to filter results on. Use this parameter to retrieve only aliases of a certain type. To retrieve all aliases, leave this parameter empty. Possible routing types include:
  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see RoutingStrategyType*/" }, { "documentation" : "

Descriptive label associated with this alias. Alias names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this alias. Alias names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@return Descriptive label associated with this alias. Alias names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "listAliasesRequest", "variableType" : "ListAliasesRequest", "variableDeclarationType" : "ListAliasesRequest", "documentation" : null, "simpleType" : "ListAliasesRequest", "variableSetterType" : "ListAliasesRequest" }, "marshaller" : { "action" : "ListAliases", "verb" : "POST", "target" : "GameLift.ListAliases", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Name" : { "documentation" : "

Descriptive label associated with this alias. Alias names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this alias. Alias names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@return Descriptive label associated with this alias. Alias names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "NextToken" : { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "RoutingStrategyType" : { "documentation" : "

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

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

", "name" : "RoutingStrategyType", "c2jName" : "RoutingStrategyType", "c2jShape" : "RoutingStrategyType", "variable" : { "variableName" : "routingStrategyType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "routingStrategyType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "RoutingStrategyType", "marshallLocationName" : "RoutingStrategyType", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "RoutingStrategyType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

\n@param routingStrategyType Type of routing to filter results on. Use this parameter to retrieve only aliases of a certain type. To retrieve all aliases, leave this parameter empty. Possible routing types include:
  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.
\n@see RoutingStrategyType*/", "getterDocumentation" : "/**

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

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

\n@return Type of routing to filter results on. Use this parameter to retrieve only aliases of a certain type. To retrieve all aliases, leave this parameter empty. Possible routing types include:
  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.
\n@see RoutingStrategyType*/", "fluentSetterDocumentation" : "/**

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

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

\n@param routingStrategyType Type of routing to filter results on. Use this parameter to retrieve only aliases of a certain type. To retrieve all aliases, leave this parameter empty. Possible routing types include:
  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see RoutingStrategyType*/", "varargSetterDocumentation" : "/**

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

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

\n@param routingStrategyType Type of routing to filter results on. Use this parameter to retrieve only aliases of a certain type. To retrieve all aliases, leave this parameter empty. Possible routing types include:
  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see RoutingStrategyType*/" }, "Limit" : { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "InternalServiceException" : { "c2jName" : "InternalServiceException", "documentation" : "

The service encountered an unrecoverable internal failure while processing the request. Such requests can be retried by clients, either immediately or after a back-off period.

", "shapeName" : "InternalServiceException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ ], "enums" : null, "variable" : { "variableName" : "internalServiceException", "variableType" : "InternalServiceException", "variableDeclarationType" : "InternalServiceException", "documentation" : null, "simpleType" : "InternalServiceException", "variableSetterType" : "InternalServiceException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "InternalServiceException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "DescribeGameSessionsResult" : { "c2jName" : "DescribeGameSessionsOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "DescribeGameSessionsResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

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

", "name" : "GameSessions", "c2jName" : "GameSessions", "c2jShape" : "GameSessionList", "variable" : { "variableName" : "gameSessions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

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

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "gameSessions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessions", "marshallLocationName" : "GameSessions", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "GameSession", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "GameSession", "variable" : { "variableName" : "member", "variableType" : "GameSession", "variableDeclarationType" : "GameSession", "documentation" : "", "simpleType" : "GameSession", "variableSetterType" : "GameSession" }, "setterModel" : { "variableName" : "member", "variableType" : "GameSession", "variableDeclarationType" : "GameSession", "documentation" : "", "simpleType" : "GameSession", "variableSetterType" : "GameSession" }, "getterModel" : { "returnType" : "GameSession", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "GameSession", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

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

\n@param gameSessions Collection of objects containing game session properties for each session matching the request.*/", "getterDocumentation" : "/**

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

\n@return Collection of objects containing game session properties for each session matching the request.*/", "fluentSetterDocumentation" : "/**

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

\n@param gameSessions Collection of objects containing game session properties for each session matching the request.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setGameSessions(java.util.Collection)} or {@link #withGameSessions(java.util.Collection)} if you want to override the existing values.

\n@param gameSessions Collection of objects containing game session properties for each session matching the request.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeGameSessionsResult", "variableType" : "DescribeGameSessionsResult", "variableDeclarationType" : "DescribeGameSessionsResult", "documentation" : null, "simpleType" : "DescribeGameSessionsResult", "variableSetterType" : "DescribeGameSessionsResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NextToken" : { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "GameSessions" : { "documentation" : "

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

", "name" : "GameSessions", "c2jName" : "GameSessions", "c2jShape" : "GameSessionList", "variable" : { "variableName" : "gameSessions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

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

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "gameSessions", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessions", "marshallLocationName" : "GameSessions", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "GameSession", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "GameSession", "variable" : { "variableName" : "member", "variableType" : "GameSession", "variableDeclarationType" : "GameSession", "documentation" : "", "simpleType" : "GameSession", "variableSetterType" : "GameSession" }, "setterModel" : { "variableName" : "member", "variableType" : "GameSession", "variableDeclarationType" : "GameSession", "documentation" : "", "simpleType" : "GameSession", "variableSetterType" : "GameSession" }, "getterModel" : { "returnType" : "GameSession", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "GameSession", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

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

\n@param gameSessions Collection of objects containing game session properties for each session matching the request.*/", "getterDocumentation" : "/**

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

\n@return Collection of objects containing game session properties for each session matching the request.*/", "fluentSetterDocumentation" : "/**

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

\n@param gameSessions Collection of objects containing game session properties for each session matching the request.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setGameSessions(java.util.Collection)} or {@link #withGameSessions(java.util.Collection)} if you want to override the existing values.

\n@param gameSessions Collection of objects containing game session properties for each session matching the request.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "EC2InstanceType" : { "c2jName" : "EC2InstanceType", "documentation" : "", "shapeName" : "EC2InstanceType", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : [ { "name" : "T2Micro", "value" : "t2.micro" }, { "name" : "T2Small", "value" : "t2.small" }, { "name" : "T2Medium", "value" : "t2.medium" }, { "name" : "T2Large", "value" : "t2.large" }, { "name" : "C3Large", "value" : "c3.large" }, { "name" : "C3Xlarge", "value" : "c3.xlarge" }, { "name" : "C32xlarge", "value" : "c3.2xlarge" }, { "name" : "C34xlarge", "value" : "c3.4xlarge" }, { "name" : "C38xlarge", "value" : "c3.8xlarge" }, { "name" : "C4Large", "value" : "c4.large" }, { "name" : "C4Xlarge", "value" : "c4.xlarge" }, { "name" : "C42xlarge", "value" : "c4.2xlarge" }, { "name" : "C44xlarge", "value" : "c4.4xlarge" }, { "name" : "C48xlarge", "value" : "c4.8xlarge" }, { "name" : "R3Large", "value" : "r3.large" }, { "name" : "R3Xlarge", "value" : "r3.xlarge" }, { "name" : "R32xlarge", "value" : "r3.2xlarge" }, { "name" : "R34xlarge", "value" : "r3.4xlarge" }, { "name" : "R38xlarge", "value" : "r3.8xlarge" }, { "name" : "M3Medium", "value" : "m3.medium" }, { "name" : "M3Large", "value" : "m3.large" }, { "name" : "M3Xlarge", "value" : "m3.xlarge" }, { "name" : "M32xlarge", "value" : "m3.2xlarge" }, { "name" : "M4Large", "value" : "m4.large" }, { "name" : "M4Xlarge", "value" : "m4.xlarge" }, { "name" : "M42xlarge", "value" : "m4.2xlarge" }, { "name" : "M44xlarge", "value" : "m4.4xlarge" }, { "name" : "M410xlarge", "value" : "m4.10xlarge" } ], "variable" : { "variableName" : "eC2InstanceType", "variableType" : "EC2InstanceType", "variableDeclarationType" : "EC2InstanceType", "documentation" : null, "simpleType" : "EC2InstanceType", "variableSetterType" : "EC2InstanceType" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "DescribeFleetAttributesResult" : { "c2jName" : "DescribeFleetAttributesOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "DescribeFleetAttributesResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

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

", "name" : "FleetAttributes", "c2jName" : "FleetAttributes", "c2jShape" : "FleetAttributesList", "variable" : { "variableName" : "fleetAttributes", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

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

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "fleetAttributes", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetAttributes", "marshallLocationName" : "FleetAttributes", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "FleetAttributes", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "FleetAttributes", "variable" : { "variableName" : "member", "variableType" : "FleetAttributes", "variableDeclarationType" : "FleetAttributes", "documentation" : "", "simpleType" : "FleetAttributes", "variableSetterType" : "FleetAttributes" }, "setterModel" : { "variableName" : "member", "variableType" : "FleetAttributes", "variableDeclarationType" : "FleetAttributes", "documentation" : "", "simpleType" : "FleetAttributes", "variableSetterType" : "FleetAttributes" }, "getterModel" : { "returnType" : "FleetAttributes", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "FleetAttributes", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

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

\n@param fleetAttributes Collection of objects containing attribute metadata for each requested fleet ID.*/", "getterDocumentation" : "/**

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

\n@return Collection of objects containing attribute metadata for each requested fleet ID.*/", "fluentSetterDocumentation" : "/**

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

\n@param fleetAttributes Collection of objects containing attribute metadata for each requested fleet ID.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setFleetAttributes(java.util.Collection)} or {@link #withFleetAttributes(java.util.Collection)} if you want to override the existing values.

\n@param fleetAttributes Collection of objects containing attribute metadata for each requested fleet ID.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeFleetAttributesResult", "variableType" : "DescribeFleetAttributesResult", "variableDeclarationType" : "DescribeFleetAttributesResult", "documentation" : null, "simpleType" : "DescribeFleetAttributesResult", "variableSetterType" : "DescribeFleetAttributesResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NextToken" : { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FleetAttributes" : { "documentation" : "

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

", "name" : "FleetAttributes", "c2jName" : "FleetAttributes", "c2jShape" : "FleetAttributesList", "variable" : { "variableName" : "fleetAttributes", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

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

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "fleetAttributes", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetAttributes", "marshallLocationName" : "FleetAttributes", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "FleetAttributes", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "FleetAttributes", "variable" : { "variableName" : "member", "variableType" : "FleetAttributes", "variableDeclarationType" : "FleetAttributes", "documentation" : "", "simpleType" : "FleetAttributes", "variableSetterType" : "FleetAttributes" }, "setterModel" : { "variableName" : "member", "variableType" : "FleetAttributes", "variableDeclarationType" : "FleetAttributes", "documentation" : "", "simpleType" : "FleetAttributes", "variableSetterType" : "FleetAttributes" }, "getterModel" : { "returnType" : "FleetAttributes", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "FleetAttributes", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

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

\n@param fleetAttributes Collection of objects containing attribute metadata for each requested fleet ID.*/", "getterDocumentation" : "/**

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

\n@return Collection of objects containing attribute metadata for each requested fleet ID.*/", "fluentSetterDocumentation" : "/**

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

\n@param fleetAttributes Collection of objects containing attribute metadata for each requested fleet ID.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setFleetAttributes(java.util.Collection)} or {@link #withFleetAttributes(java.util.Collection)} if you want to override the existing values.

\n@param fleetAttributes Collection of objects containing attribute metadata for each requested fleet ID.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "EC2InstanceCounts" : { "c2jName" : "EC2InstanceCounts", "documentation" : "

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

", "shapeName" : "EC2InstanceCounts", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Ideal number of active instances in the fleet.

", "name" : "DESIRED", "c2jName" : "DESIRED", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "dESIRED", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Ideal number of active instances in the fleet.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "dESIRED", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "DESIRED", "marshallLocationName" : "DESIRED", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Ideal number of active instances in the fleet.

\n@param dESIRED Ideal number of active instances in the fleet.*/", "getterDocumentation" : "/**

Ideal number of active instances in the fleet.

\n@return Ideal number of active instances in the fleet.*/", "fluentSetterDocumentation" : "/**

Ideal number of active instances in the fleet.

\n@param dESIRED Ideal number of active instances in the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Ideal number of active instances in the fleet.

\n@param dESIRED Ideal number of active instances in the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Minimum value allowed for the fleet's instance count.

", "name" : "MINIMUM", "c2jName" : "MINIMUM", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "mINIMUM", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Minimum value allowed for the fleet's instance count.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "mINIMUM", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MINIMUM", "marshallLocationName" : "MINIMUM", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Minimum value allowed for the fleet's instance count.

\n@param mINIMUM Minimum value allowed for the fleet's instance count.*/", "getterDocumentation" : "/**

Minimum value allowed for the fleet's instance count.

\n@return Minimum value allowed for the fleet's instance count.*/", "fluentSetterDocumentation" : "/**

Minimum value allowed for the fleet's instance count.

\n@param mINIMUM Minimum value allowed for the fleet's instance count.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Minimum value allowed for the fleet's instance count.

\n@param mINIMUM Minimum value allowed for the fleet's instance count.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Maximum value allowed for the fleet's instance count.

", "name" : "MAXIMUM", "c2jName" : "MAXIMUM", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "mAXIMUM", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Maximum value allowed for the fleet's instance count.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "mAXIMUM", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MAXIMUM", "marshallLocationName" : "MAXIMUM", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Maximum value allowed for the fleet's instance count.

\n@param mAXIMUM Maximum value allowed for the fleet's instance count.*/", "getterDocumentation" : "/**

Maximum value allowed for the fleet's instance count.

\n@return Maximum value allowed for the fleet's instance count.*/", "fluentSetterDocumentation" : "/**

Maximum value allowed for the fleet's instance count.

\n@param mAXIMUM Maximum value allowed for the fleet's instance count.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Maximum value allowed for the fleet's instance count.

\n@param mAXIMUM Maximum value allowed for the fleet's instance count.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "PENDING", "c2jName" : "PENDING", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "pENDING", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "pENDING", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "PENDING", "marshallLocationName" : "PENDING", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param pENDING Number of instances in the fleet that are starting but not yet active.*/", "getterDocumentation" : "/**

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

\n@return Number of instances in the fleet that are starting but not yet active.*/", "fluentSetterDocumentation" : "/**

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

\n@param pENDING Number of instances in the fleet that are starting but not yet active.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param pENDING Number of instances in the fleet that are starting but not yet active.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Actual number of active instances in the fleet.

", "name" : "ACTIVE", "c2jName" : "ACTIVE", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "aCTIVE", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Actual number of active instances in the fleet.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "aCTIVE", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "ACTIVE", "marshallLocationName" : "ACTIVE", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Actual number of active instances in the fleet.

\n@param aCTIVE Actual number of active instances in the fleet.*/", "getterDocumentation" : "/**

Actual number of active instances in the fleet.

\n@return Actual number of active instances in the fleet.*/", "fluentSetterDocumentation" : "/**

Actual number of active instances in the fleet.

\n@param aCTIVE Actual number of active instances in the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Actual number of active instances in the fleet.

\n@param aCTIVE Actual number of active instances in the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "IDLE", "c2jName" : "IDLE", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "iDLE", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "iDLE", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "IDLE", "marshallLocationName" : "IDLE", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param iDLE Number of active instances in the fleet that are not currently hosting a game session.*/", "getterDocumentation" : "/**

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

\n@return Number of active instances in the fleet that are not currently hosting a game session.*/", "fluentSetterDocumentation" : "/**

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

\n@param iDLE Number of active instances in the fleet that are not currently hosting a game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param iDLE Number of active instances in the fleet that are not currently hosting a game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "TERMINATING", "c2jName" : "TERMINATING", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "tERMINATING", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "tERMINATING", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "TERMINATING", "marshallLocationName" : "TERMINATING", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param tERMINATING Number of instances in the fleet that are no longer active but haven't yet been terminated.*/", "getterDocumentation" : "/**

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

\n@return Number of instances in the fleet that are no longer active but haven't yet been terminated.*/", "fluentSetterDocumentation" : "/**

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

\n@param tERMINATING Number of instances in the fleet that are no longer active but haven't yet been terminated.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param tERMINATING Number of instances in the fleet that are no longer active but haven't yet been terminated.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "eC2InstanceCounts", "variableType" : "EC2InstanceCounts", "variableDeclarationType" : "EC2InstanceCounts", "documentation" : null, "simpleType" : "EC2InstanceCounts", "variableSetterType" : "EC2InstanceCounts" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "TERMINATING" : { "documentation" : "

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

", "name" : "TERMINATING", "c2jName" : "TERMINATING", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "tERMINATING", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "tERMINATING", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "TERMINATING", "marshallLocationName" : "TERMINATING", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param tERMINATING Number of instances in the fleet that are no longer active but haven't yet been terminated.*/", "getterDocumentation" : "/**

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

\n@return Number of instances in the fleet that are no longer active but haven't yet been terminated.*/", "fluentSetterDocumentation" : "/**

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

\n@param tERMINATING Number of instances in the fleet that are no longer active but haven't yet been terminated.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param tERMINATING Number of instances in the fleet that are no longer active but haven't yet been terminated.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "IDLE" : { "documentation" : "

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

", "name" : "IDLE", "c2jName" : "IDLE", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "iDLE", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "iDLE", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "IDLE", "marshallLocationName" : "IDLE", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param iDLE Number of active instances in the fleet that are not currently hosting a game session.*/", "getterDocumentation" : "/**

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

\n@return Number of active instances in the fleet that are not currently hosting a game session.*/", "fluentSetterDocumentation" : "/**

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

\n@param iDLE Number of active instances in the fleet that are not currently hosting a game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param iDLE Number of active instances in the fleet that are not currently hosting a game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "MAXIMUM" : { "documentation" : "

Maximum value allowed for the fleet's instance count.

", "name" : "MAXIMUM", "c2jName" : "MAXIMUM", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "mAXIMUM", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Maximum value allowed for the fleet's instance count.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "mAXIMUM", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MAXIMUM", "marshallLocationName" : "MAXIMUM", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Maximum value allowed for the fleet's instance count.

\n@param mAXIMUM Maximum value allowed for the fleet's instance count.*/", "getterDocumentation" : "/**

Maximum value allowed for the fleet's instance count.

\n@return Maximum value allowed for the fleet's instance count.*/", "fluentSetterDocumentation" : "/**

Maximum value allowed for the fleet's instance count.

\n@param mAXIMUM Maximum value allowed for the fleet's instance count.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Maximum value allowed for the fleet's instance count.

\n@param mAXIMUM Maximum value allowed for the fleet's instance count.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "PENDING" : { "documentation" : "

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

", "name" : "PENDING", "c2jName" : "PENDING", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "pENDING", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "pENDING", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "PENDING", "marshallLocationName" : "PENDING", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param pENDING Number of instances in the fleet that are starting but not yet active.*/", "getterDocumentation" : "/**

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

\n@return Number of instances in the fleet that are starting but not yet active.*/", "fluentSetterDocumentation" : "/**

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

\n@param pENDING Number of instances in the fleet that are starting but not yet active.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param pENDING Number of instances in the fleet that are starting but not yet active.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "MINIMUM" : { "documentation" : "

Minimum value allowed for the fleet's instance count.

", "name" : "MINIMUM", "c2jName" : "MINIMUM", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "mINIMUM", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Minimum value allowed for the fleet's instance count.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "mINIMUM", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MINIMUM", "marshallLocationName" : "MINIMUM", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Minimum value allowed for the fleet's instance count.

\n@param mINIMUM Minimum value allowed for the fleet's instance count.*/", "getterDocumentation" : "/**

Minimum value allowed for the fleet's instance count.

\n@return Minimum value allowed for the fleet's instance count.*/", "fluentSetterDocumentation" : "/**

Minimum value allowed for the fleet's instance count.

\n@param mINIMUM Minimum value allowed for the fleet's instance count.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Minimum value allowed for the fleet's instance count.

\n@param mINIMUM Minimum value allowed for the fleet's instance count.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "DESIRED" : { "documentation" : "

Ideal number of active instances in the fleet.

", "name" : "DESIRED", "c2jName" : "DESIRED", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "dESIRED", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Ideal number of active instances in the fleet.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "dESIRED", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "DESIRED", "marshallLocationName" : "DESIRED", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Ideal number of active instances in the fleet.

\n@param dESIRED Ideal number of active instances in the fleet.*/", "getterDocumentation" : "/**

Ideal number of active instances in the fleet.

\n@return Ideal number of active instances in the fleet.*/", "fluentSetterDocumentation" : "/**

Ideal number of active instances in the fleet.

\n@param dESIRED Ideal number of active instances in the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Ideal number of active instances in the fleet.

\n@param dESIRED Ideal number of active instances in the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "ACTIVE" : { "documentation" : "

Actual number of active instances in the fleet.

", "name" : "ACTIVE", "c2jName" : "ACTIVE", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "aCTIVE", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Actual number of active instances in the fleet.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "aCTIVE", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "ACTIVE", "marshallLocationName" : "ACTIVE", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Actual number of active instances in the fleet.

\n@param aCTIVE Actual number of active instances in the fleet.*/", "getterDocumentation" : "/**

Actual number of active instances in the fleet.

\n@return Actual number of active instances in the fleet.*/", "fluentSetterDocumentation" : "/**

Actual number of active instances in the fleet.

\n@param aCTIVE Actual number of active instances in the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Actual number of active instances in the fleet.

\n@param aCTIVE Actual number of active instances in the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "PlayerSessionStatus" : { "c2jName" : "PlayerSessionStatus", "documentation" : "", "shapeName" : "PlayerSessionStatus", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : [ { "name" : "RESERVED", "value" : "RESERVED" }, { "name" : "ACTIVE", "value" : "ACTIVE" }, { "name" : "COMPLETED", "value" : "COMPLETED" }, { "name" : "TIMEDOUT", "value" : "TIMEDOUT" } ], "variable" : { "variableName" : "playerSessionStatus", "variableType" : "PlayerSessionStatus", "variableDeclarationType" : "PlayerSessionStatus", "documentation" : null, "simpleType" : "PlayerSessionStatus", "variableSetterType" : "PlayerSessionStatus" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "FleetAttributes" : { "c2jName" : "FleetAttributes", "documentation" : "

General properties describing a fleet.

", "shapeName" : "FleetAttributes", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for a fleet.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.*/", "getterDocumentation" : "/**

Unique identifier for a fleet.

\n@return Unique identifier for a fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Human-readable description of the fleet.

", "name" : "Description", "c2jName" : "Description", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Human-readable description of the fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Description", "marshallLocationName" : "Description", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Human-readable description of the fleet.

\n@param description Human-readable description of the fleet.*/", "getterDocumentation" : "/**

Human-readable description of the fleet.

\n@return Human-readable description of the fleet.*/", "fluentSetterDocumentation" : "/**

Human-readable description of the fleet.

\n@param description Human-readable description of the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Human-readable description of the fleet.

\n@param description Human-readable description of the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Descriptive label associated with this fleet. Fleet names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this fleet. Fleet names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@param name Descriptive label associated with this fleet. Fleet names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@return Descriptive label associated with this fleet. Fleet names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@param name Descriptive label associated with this fleet. Fleet names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@param name Descriptive label associated with this fleet. Fleet names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "CreationTime", "c2jName" : "CreationTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationTime", "marshallLocationName" : "CreationTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "TerminationTime", "c2jName" : "TerminationTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "terminationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "terminationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "TerminationTime", "marshallLocationName" : "TerminationTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param terminationTime Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param terminationTime Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param terminationTime Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Current status of the fleet. Possible fleet states include:

  • NEW: A new fleet has been defined and hosts allocated.
  • DOWNLOADING/VALIDATING/BUILDING/ACTIVATING: The new fleet is being set up with the game build, and new hosts are being started.
  • ACTIVE: Hosts can now accept game sessions.
  • ERROR: An error occurred when downloading, validating, building, or activating the fleet.
  • DELETING: Hosts are responding to a delete fleet request.
  • TERMINATED: The fleet no longer exists.

", "name" : "Status", "c2jName" : "Status", "c2jShape" : "FleetStatus", "variable" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Current status of the fleet. Possible fleet states include:

  • NEW: A new fleet has been defined and hosts allocated.
  • DOWNLOADING/VALIDATING/BUILDING/ACTIVATING: The new fleet is being set up with the game build, and new hosts are being started.
  • ACTIVE: Hosts can now accept game sessions.
  • ERROR: An error occurred when downloading, validating, building, or activating the fleet.
  • DELETING: Hosts are responding to a delete fleet request.
  • TERMINATED: The fleet no longer exists.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Status", "marshallLocationName" : "Status", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "FleetStatus", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Current status of the fleet. Possible fleet states include:

  • NEW: A new fleet has been defined and hosts allocated.
  • DOWNLOADING/VALIDATING/BUILDING/ACTIVATING: The new fleet is being set up with the game build, and new hosts are being started.
  • ACTIVE: Hosts can now accept game sessions.
  • ERROR: An error occurred when downloading, validating, building, or activating the fleet.
  • DELETING: Hosts are responding to a delete fleet request.
  • TERMINATED: The fleet no longer exists.

\n@param status Current status of the fleet. Possible fleet states include:
  • NEW: A new fleet has been defined and hosts allocated.
  • DOWNLOADING/VALIDATING/BUILDING/ACTIVATING: The new fleet is being set up with the game build, and new hosts are being started.
  • ACTIVE: Hosts can now accept game sessions.
  • ERROR: An error occurred when downloading, validating, building, or activating the fleet.
  • DELETING: Hosts are responding to a delete fleet request.
  • TERMINATED: The fleet no longer exists.
\n@see FleetStatus*/", "getterDocumentation" : "/**

Current status of the fleet. Possible fleet states include:

  • NEW: A new fleet has been defined and hosts allocated.
  • DOWNLOADING/VALIDATING/BUILDING/ACTIVATING: The new fleet is being set up with the game build, and new hosts are being started.
  • ACTIVE: Hosts can now accept game sessions.
  • ERROR: An error occurred when downloading, validating, building, or activating the fleet.
  • DELETING: Hosts are responding to a delete fleet request.
  • TERMINATED: The fleet no longer exists.

\n@return Current status of the fleet. Possible fleet states include:
  • NEW: A new fleet has been defined and hosts allocated.
  • DOWNLOADING/VALIDATING/BUILDING/ACTIVATING: The new fleet is being set up with the game build, and new hosts are being started.
  • ACTIVE: Hosts can now accept game sessions.
  • ERROR: An error occurred when downloading, validating, building, or activating the fleet.
  • DELETING: Hosts are responding to a delete fleet request.
  • TERMINATED: The fleet no longer exists.
\n@see FleetStatus*/", "fluentSetterDocumentation" : "/**

Current status of the fleet. Possible fleet states include:

  • NEW: A new fleet has been defined and hosts allocated.
  • DOWNLOADING/VALIDATING/BUILDING/ACTIVATING: The new fleet is being set up with the game build, and new hosts are being started.
  • ACTIVE: Hosts can now accept game sessions.
  • ERROR: An error occurred when downloading, validating, building, or activating the fleet.
  • DELETING: Hosts are responding to a delete fleet request.
  • TERMINATED: The fleet no longer exists.

\n@param status Current status of the fleet. Possible fleet states include:
  • NEW: A new fleet has been defined and hosts allocated.
  • DOWNLOADING/VALIDATING/BUILDING/ACTIVATING: The new fleet is being set up with the game build, and new hosts are being started.
  • ACTIVE: Hosts can now accept game sessions.
  • ERROR: An error occurred when downloading, validating, building, or activating the fleet.
  • DELETING: Hosts are responding to a delete fleet request.
  • TERMINATED: The fleet no longer exists.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see FleetStatus*/", "varargSetterDocumentation" : "/**

Current status of the fleet. Possible fleet states include:

  • NEW: A new fleet has been defined and hosts allocated.
  • DOWNLOADING/VALIDATING/BUILDING/ACTIVATING: The new fleet is being set up with the game build, and new hosts are being started.
  • ACTIVE: Hosts can now accept game sessions.
  • ERROR: An error occurred when downloading, validating, building, or activating the fleet.
  • DELETING: Hosts are responding to a delete fleet request.
  • TERMINATED: The fleet no longer exists.

\n@param status Current status of the fleet. Possible fleet states include:
  • NEW: A new fleet has been defined and hosts allocated.
  • DOWNLOADING/VALIDATING/BUILDING/ACTIVATING: The new fleet is being set up with the game build, and new hosts are being started.
  • ACTIVE: Hosts can now accept game sessions.
  • ERROR: An error occurred when downloading, validating, building, or activating the fleet.
  • DELETING: Hosts are responding to a delete fleet request.
  • TERMINATED: The fleet no longer exists.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see FleetStatus*/" }, { "documentation" : "

Unique identifier for a build.

", "name" : "BuildId", "c2jName" : "BuildId", "c2jShape" : "BuildId", "variable" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a build.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "BuildId", "marshallLocationName" : "BuildId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a build.

\n@param buildId Unique identifier for a build.*/", "getterDocumentation" : "/**

Unique identifier for a build.

\n@return Unique identifier for a build.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a build.

\n@param buildId Unique identifier for a build.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a build.

\n@param buildId Unique identifier for a build.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

", "name" : "ServerLaunchPath", "c2jName" : "ServerLaunchPath", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "serverLaunchPath", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "serverLaunchPath", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ServerLaunchPath", "marshallLocationName" : "ServerLaunchPath", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

\n@param serverLaunchPath Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.*/", "getterDocumentation" : "/**

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

\n@return Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.*/", "fluentSetterDocumentation" : "/**

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

\n@param serverLaunchPath Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

\n@param serverLaunchPath Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

", "name" : "ServerLaunchParameters", "c2jName" : "ServerLaunchParameters", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "serverLaunchParameters", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "serverLaunchParameters", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ServerLaunchParameters", "marshallLocationName" : "ServerLaunchParameters", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

\n@param serverLaunchParameters Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".*/", "getterDocumentation" : "/**

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

\n@return Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".*/", "fluentSetterDocumentation" : "/**

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

\n@param serverLaunchParameters Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

\n@param serverLaunchParameters Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

", "name" : "LogPaths", "c2jName" : "LogPaths", "c2jShape" : "StringList", "variable" : { "variableName" : "logPaths", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "logPaths", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "LogPaths", "marshallLocationName" : "LogPaths", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

\n@param logPaths Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.*/", "getterDocumentation" : "/**

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

\n@return Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.*/", "fluentSetterDocumentation" : "/**

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

\n@param logPaths Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setLogPaths(java.util.Collection)} or {@link #withLogPaths(java.util.Collection)} if you want to override the existing values.

\n@param logPaths Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

", "name" : "NewGameSessionProtectionPolicy", "c2jName" : "NewGameSessionProtectionPolicy", "c2jShape" : "ProtectionPolicy", "variable" : { "variableName" : "newGameSessionProtectionPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "newGameSessionProtectionPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NewGameSessionProtectionPolicy", "marshallLocationName" : "NewGameSessionProtectionPolicy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ProtectionPolicy", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param newGameSessionProtectionPolicy Type of game session protection to set for all new instances started in the fleet.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@see ProtectionPolicy*/", "getterDocumentation" : "/**

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

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@return Type of game session protection to set for all new instances started in the fleet.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@see ProtectionPolicy*/", "fluentSetterDocumentation" : "/**

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

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param newGameSessionProtectionPolicy Type of game session protection to set for all new instances started in the fleet.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ProtectionPolicy*/", "varargSetterDocumentation" : "/**

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

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param newGameSessionProtectionPolicy Type of game session protection to set for all new instances started in the fleet.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ProtectionPolicy*/" } ], "enums" : null, "variable" : { "variableName" : "fleetAttributes", "variableType" : "FleetAttributes", "variableDeclarationType" : "FleetAttributes", "documentation" : null, "simpleType" : "FleetAttributes", "variableSetterType" : "FleetAttributes" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ServerLaunchParameters" : { "documentation" : "

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

", "name" : "ServerLaunchParameters", "c2jName" : "ServerLaunchParameters", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "serverLaunchParameters", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "serverLaunchParameters", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ServerLaunchParameters", "marshallLocationName" : "ServerLaunchParameters", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

\n@param serverLaunchParameters Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".*/", "getterDocumentation" : "/**

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

\n@return Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".*/", "fluentSetterDocumentation" : "/**

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

\n@param serverLaunchParameters Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".

\n@param serverLaunchParameters Parameters required to launch your game server. These parameters should be expressed as a string of command-line parameters. Example: \"+sv_port 33435 +start_lobby\".\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "CreationTime" : { "documentation" : "

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "CreationTime", "c2jName" : "CreationTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationTime", "marshallLocationName" : "CreationTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Name" : { "documentation" : "

Descriptive label associated with this fleet. Fleet names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this fleet. Fleet names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@param name Descriptive label associated with this fleet. Fleet names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@return Descriptive label associated with this fleet. Fleet names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@param name Descriptive label associated with this fleet. Fleet names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@param name Descriptive label associated with this fleet. Fleet names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Status" : { "documentation" : "

Current status of the fleet. Possible fleet states include:

  • NEW: A new fleet has been defined and hosts allocated.
  • DOWNLOADING/VALIDATING/BUILDING/ACTIVATING: The new fleet is being set up with the game build, and new hosts are being started.
  • ACTIVE: Hosts can now accept game sessions.
  • ERROR: An error occurred when downloading, validating, building, or activating the fleet.
  • DELETING: Hosts are responding to a delete fleet request.
  • TERMINATED: The fleet no longer exists.

", "name" : "Status", "c2jName" : "Status", "c2jShape" : "FleetStatus", "variable" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Current status of the fleet. Possible fleet states include:

  • NEW: A new fleet has been defined and hosts allocated.
  • DOWNLOADING/VALIDATING/BUILDING/ACTIVATING: The new fleet is being set up with the game build, and new hosts are being started.
  • ACTIVE: Hosts can now accept game sessions.
  • ERROR: An error occurred when downloading, validating, building, or activating the fleet.
  • DELETING: Hosts are responding to a delete fleet request.
  • TERMINATED: The fleet no longer exists.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Status", "marshallLocationName" : "Status", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "FleetStatus", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Current status of the fleet. Possible fleet states include:

  • NEW: A new fleet has been defined and hosts allocated.
  • DOWNLOADING/VALIDATING/BUILDING/ACTIVATING: The new fleet is being set up with the game build, and new hosts are being started.
  • ACTIVE: Hosts can now accept game sessions.
  • ERROR: An error occurred when downloading, validating, building, or activating the fleet.
  • DELETING: Hosts are responding to a delete fleet request.
  • TERMINATED: The fleet no longer exists.

\n@param status Current status of the fleet. Possible fleet states include:
  • NEW: A new fleet has been defined and hosts allocated.
  • DOWNLOADING/VALIDATING/BUILDING/ACTIVATING: The new fleet is being set up with the game build, and new hosts are being started.
  • ACTIVE: Hosts can now accept game sessions.
  • ERROR: An error occurred when downloading, validating, building, or activating the fleet.
  • DELETING: Hosts are responding to a delete fleet request.
  • TERMINATED: The fleet no longer exists.
\n@see FleetStatus*/", "getterDocumentation" : "/**

Current status of the fleet. Possible fleet states include:

  • NEW: A new fleet has been defined and hosts allocated.
  • DOWNLOADING/VALIDATING/BUILDING/ACTIVATING: The new fleet is being set up with the game build, and new hosts are being started.
  • ACTIVE: Hosts can now accept game sessions.
  • ERROR: An error occurred when downloading, validating, building, or activating the fleet.
  • DELETING: Hosts are responding to a delete fleet request.
  • TERMINATED: The fleet no longer exists.

\n@return Current status of the fleet. Possible fleet states include:
  • NEW: A new fleet has been defined and hosts allocated.
  • DOWNLOADING/VALIDATING/BUILDING/ACTIVATING: The new fleet is being set up with the game build, and new hosts are being started.
  • ACTIVE: Hosts can now accept game sessions.
  • ERROR: An error occurred when downloading, validating, building, or activating the fleet.
  • DELETING: Hosts are responding to a delete fleet request.
  • TERMINATED: The fleet no longer exists.
\n@see FleetStatus*/", "fluentSetterDocumentation" : "/**

Current status of the fleet. Possible fleet states include:

  • NEW: A new fleet has been defined and hosts allocated.
  • DOWNLOADING/VALIDATING/BUILDING/ACTIVATING: The new fleet is being set up with the game build, and new hosts are being started.
  • ACTIVE: Hosts can now accept game sessions.
  • ERROR: An error occurred when downloading, validating, building, or activating the fleet.
  • DELETING: Hosts are responding to a delete fleet request.
  • TERMINATED: The fleet no longer exists.

\n@param status Current status of the fleet. Possible fleet states include:
  • NEW: A new fleet has been defined and hosts allocated.
  • DOWNLOADING/VALIDATING/BUILDING/ACTIVATING: The new fleet is being set up with the game build, and new hosts are being started.
  • ACTIVE: Hosts can now accept game sessions.
  • ERROR: An error occurred when downloading, validating, building, or activating the fleet.
  • DELETING: Hosts are responding to a delete fleet request.
  • TERMINATED: The fleet no longer exists.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see FleetStatus*/", "varargSetterDocumentation" : "/**

Current status of the fleet. Possible fleet states include:

  • NEW: A new fleet has been defined and hosts allocated.
  • DOWNLOADING/VALIDATING/BUILDING/ACTIVATING: The new fleet is being set up with the game build, and new hosts are being started.
  • ACTIVE: Hosts can now accept game sessions.
  • ERROR: An error occurred when downloading, validating, building, or activating the fleet.
  • DELETING: Hosts are responding to a delete fleet request.
  • TERMINATED: The fleet no longer exists.

\n@param status Current status of the fleet. Possible fleet states include:
  • NEW: A new fleet has been defined and hosts allocated.
  • DOWNLOADING/VALIDATING/BUILDING/ACTIVATING: The new fleet is being set up with the game build, and new hosts are being started.
  • ACTIVE: Hosts can now accept game sessions.
  • ERROR: An error occurred when downloading, validating, building, or activating the fleet.
  • DELETING: Hosts are responding to a delete fleet request.
  • TERMINATED: The fleet no longer exists.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see FleetStatus*/" }, "Description" : { "documentation" : "

Human-readable description of the fleet.

", "name" : "Description", "c2jName" : "Description", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Human-readable description of the fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Description", "marshallLocationName" : "Description", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Human-readable description of the fleet.

\n@param description Human-readable description of the fleet.*/", "getterDocumentation" : "/**

Human-readable description of the fleet.

\n@return Human-readable description of the fleet.*/", "fluentSetterDocumentation" : "/**

Human-readable description of the fleet.

\n@param description Human-readable description of the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Human-readable description of the fleet.

\n@param description Human-readable description of the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "LogPaths" : { "documentation" : "

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

", "name" : "LogPaths", "c2jName" : "LogPaths", "c2jShape" : "StringList", "variable" : { "variableName" : "logPaths", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "logPaths", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "LogPaths", "marshallLocationName" : "LogPaths", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

\n@param logPaths Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.*/", "getterDocumentation" : "/**

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

\n@return Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.*/", "fluentSetterDocumentation" : "/**

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

\n@param logPaths Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setLogPaths(java.util.Collection)} or {@link #withLogPaths(java.util.Collection)} if you want to override the existing values.

\n@param logPaths Path to game-session log files generated by your game server. Once a game session has been terminated, Amazon GameLift captures and stores the logs on Amazon S3. Use the GameLift console to access the stored logs.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FleetId" : { "documentation" : "

Unique identifier for a fleet.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.*/", "getterDocumentation" : "/**

Unique identifier for a fleet.

\n@return Unique identifier for a fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "NewGameSessionProtectionPolicy" : { "documentation" : "

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

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

", "name" : "NewGameSessionProtectionPolicy", "c2jName" : "NewGameSessionProtectionPolicy", "c2jShape" : "ProtectionPolicy", "variable" : { "variableName" : "newGameSessionProtectionPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "newGameSessionProtectionPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NewGameSessionProtectionPolicy", "marshallLocationName" : "NewGameSessionProtectionPolicy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ProtectionPolicy", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param newGameSessionProtectionPolicy Type of game session protection to set for all new instances started in the fleet.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@see ProtectionPolicy*/", "getterDocumentation" : "/**

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

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@return Type of game session protection to set for all new instances started in the fleet.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@see ProtectionPolicy*/", "fluentSetterDocumentation" : "/**

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

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param newGameSessionProtectionPolicy Type of game session protection to set for all new instances started in the fleet.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ProtectionPolicy*/", "varargSetterDocumentation" : "/**

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

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param newGameSessionProtectionPolicy Type of game session protection to set for all new instances started in the fleet.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ProtectionPolicy*/" }, "ServerLaunchPath" : { "documentation" : "

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

", "name" : "ServerLaunchPath", "c2jName" : "ServerLaunchPath", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "serverLaunchPath", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "serverLaunchPath", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ServerLaunchPath", "marshallLocationName" : "ServerLaunchPath", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

\n@param serverLaunchPath Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.*/", "getterDocumentation" : "/**

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

\n@return Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.*/", "fluentSetterDocumentation" : "/**

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

\n@param serverLaunchPath Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.

\n@param serverLaunchPath Path to the launch executable for the game server. A game server is built into a C:\\game drive. This value must be expressed as C:\\game\\[launchpath]. Example: If, when built, your game server files are in a folder called \"MyGame\", your log path should be C:\\game\\MyGame\\server.exe.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "BuildId" : { "documentation" : "

Unique identifier for a build.

", "name" : "BuildId", "c2jName" : "BuildId", "c2jShape" : "BuildId", "variable" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a build.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "BuildId", "marshallLocationName" : "BuildId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a build.

\n@param buildId Unique identifier for a build.*/", "getterDocumentation" : "/**

Unique identifier for a build.

\n@return Unique identifier for a build.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a build.

\n@param buildId Unique identifier for a build.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a build.

\n@param buildId Unique identifier for a build.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "TerminationTime" : { "documentation" : "

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "TerminationTime", "c2jName" : "TerminationTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "terminationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "terminationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "TerminationTime", "marshallLocationName" : "TerminationTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param terminationTime Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param terminationTime Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param terminationTime Time stamp indicating when this fleet was terminated. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "ListBuildsRequest" : { "c2jName" : "ListBuildsInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "ListBuildsRequest", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Build state to filter results on. Use this parameter to retrieve builds in a certain state. To retrieve all builds, leave this parameter empty. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

", "name" : "Status", "c2jName" : "Status", "c2jShape" : "BuildStatus", "variable" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Build state to filter results on. Use this parameter to retrieve builds in a certain state. To retrieve all builds, leave this parameter empty. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Status", "marshallLocationName" : "Status", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "BuildStatus", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Build state to filter results on. Use this parameter to retrieve builds in a certain state. To retrieve all builds, leave this parameter empty. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

\n@param status Build state to filter results on. Use this parameter to retrieve builds in a certain state. To retrieve all builds, leave this parameter empty. Possible build states include:
  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.
\n@see BuildStatus*/", "getterDocumentation" : "/**

Build state to filter results on. Use this parameter to retrieve builds in a certain state. To retrieve all builds, leave this parameter empty. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

\n@return Build state to filter results on. Use this parameter to retrieve builds in a certain state. To retrieve all builds, leave this parameter empty. Possible build states include:
  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.
\n@see BuildStatus*/", "fluentSetterDocumentation" : "/**

Build state to filter results on. Use this parameter to retrieve builds in a certain state. To retrieve all builds, leave this parameter empty. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

\n@param status Build state to filter results on. Use this parameter to retrieve builds in a certain state. To retrieve all builds, leave this parameter empty. Possible build states include:
  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see BuildStatus*/", "varargSetterDocumentation" : "/**

Build state to filter results on. Use this parameter to retrieve builds in a certain state. To retrieve all builds, leave this parameter empty. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

\n@param status Build state to filter results on. Use this parameter to retrieve builds in a certain state. To retrieve all builds, leave this parameter empty. Possible build states include:
  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see BuildStatus*/" }, { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "listBuildsRequest", "variableType" : "ListBuildsRequest", "variableDeclarationType" : "ListBuildsRequest", "documentation" : null, "simpleType" : "ListBuildsRequest", "variableSetterType" : "ListBuildsRequest" }, "marshaller" : { "action" : "ListBuilds", "verb" : "POST", "target" : "GameLift.ListBuilds", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Status" : { "documentation" : "

Build state to filter results on. Use this parameter to retrieve builds in a certain state. To retrieve all builds, leave this parameter empty. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

", "name" : "Status", "c2jName" : "Status", "c2jShape" : "BuildStatus", "variable" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Build state to filter results on. Use this parameter to retrieve builds in a certain state. To retrieve all builds, leave this parameter empty. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Status", "marshallLocationName" : "Status", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "BuildStatus", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Build state to filter results on. Use this parameter to retrieve builds in a certain state. To retrieve all builds, leave this parameter empty. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

\n@param status Build state to filter results on. Use this parameter to retrieve builds in a certain state. To retrieve all builds, leave this parameter empty. Possible build states include:
  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.
\n@see BuildStatus*/", "getterDocumentation" : "/**

Build state to filter results on. Use this parameter to retrieve builds in a certain state. To retrieve all builds, leave this parameter empty. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

\n@return Build state to filter results on. Use this parameter to retrieve builds in a certain state. To retrieve all builds, leave this parameter empty. Possible build states include:
  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.
\n@see BuildStatus*/", "fluentSetterDocumentation" : "/**

Build state to filter results on. Use this parameter to retrieve builds in a certain state. To retrieve all builds, leave this parameter empty. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

\n@param status Build state to filter results on. Use this parameter to retrieve builds in a certain state. To retrieve all builds, leave this parameter empty. Possible build states include:
  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see BuildStatus*/", "varargSetterDocumentation" : "/**

Build state to filter results on. Use this parameter to retrieve builds in a certain state. To retrieve all builds, leave this parameter empty. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

\n@param status Build state to filter results on. Use this parameter to retrieve builds in a certain state. To retrieve all builds, leave this parameter empty. Possible build states include:
  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see BuildStatus*/" }, "NextToken" : { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Limit" : { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DescribePlayerSessionsRequest" : { "c2jName" : "DescribePlayerSessionsInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "DescribePlayerSessionsRequest", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for a game session.

", "name" : "GameSessionId", "c2jName" : "GameSessionId", "c2jShape" : "GameSessionId", "variable" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a game session.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessionId", "marshallLocationName" : "GameSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.*/", "getterDocumentation" : "/**

Unique identifier for a game session.

\n@return Unique identifier for a game session.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Unique identifier for a player.

", "name" : "PlayerId", "c2jName" : "PlayerId", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "playerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a player.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "playerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerId", "marshallLocationName" : "PlayerId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a player.

\n@param playerId Unique identifier for a player.*/", "getterDocumentation" : "/**

Unique identifier for a player.

\n@return Unique identifier for a player.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a player.

\n@param playerId Unique identifier for a player.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a player.

\n@param playerId Unique identifier for a player.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Unique identifier for a player session.

", "name" : "PlayerSessionId", "c2jName" : "PlayerSessionId", "c2jShape" : "PlayerSessionId", "variable" : { "variableName" : "playerSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a player session.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "playerSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerSessionId", "marshallLocationName" : "PlayerSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a player session.

\n@param playerSessionId Unique identifier for a player session.*/", "getterDocumentation" : "/**

Unique identifier for a player session.

\n@return Unique identifier for a player session.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a player session.

\n@param playerSessionId Unique identifier for a player session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a player session.

\n@param playerSessionId Unique identifier for a player session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Player session status to filter results on. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

", "name" : "PlayerSessionStatusFilter", "c2jName" : "PlayerSessionStatusFilter", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "playerSessionStatusFilter", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Player session status to filter results on. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "playerSessionStatusFilter", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerSessionStatusFilter", "marshallLocationName" : "PlayerSessionStatusFilter", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Player session status to filter results on. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

\n@param playerSessionStatusFilter Player session status to filter results on. Possible player session states include:
  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
*/", "getterDocumentation" : "/**

Player session status to filter results on. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

\n@return Player session status to filter results on. Possible player session states include:
  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
*/", "fluentSetterDocumentation" : "/**

Player session status to filter results on. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

\n@param playerSessionStatusFilter Player session status to filter results on. Possible player session states include:
  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Player session status to filter results on. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

\n@param playerSessionStatusFilter Player session status to filter results on. Possible player session states include:
  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. If a player session ID is specified, this parameter is ignored.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. If a player session ID is specified, this parameter is ignored.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. If a player session ID is specified, this parameter is ignored.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. If a player session ID is specified, this parameter is ignored.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describePlayerSessionsRequest", "variableType" : "DescribePlayerSessionsRequest", "variableDeclarationType" : "DescribePlayerSessionsRequest", "documentation" : null, "simpleType" : "DescribePlayerSessionsRequest", "variableSetterType" : "DescribePlayerSessionsRequest" }, "marshaller" : { "action" : "DescribePlayerSessions", "verb" : "POST", "target" : "GameLift.DescribePlayerSessions", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "PlayerSessionId" : { "documentation" : "

Unique identifier for a player session.

", "name" : "PlayerSessionId", "c2jName" : "PlayerSessionId", "c2jShape" : "PlayerSessionId", "variable" : { "variableName" : "playerSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a player session.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "playerSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerSessionId", "marshallLocationName" : "PlayerSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a player session.

\n@param playerSessionId Unique identifier for a player session.*/", "getterDocumentation" : "/**

Unique identifier for a player session.

\n@return Unique identifier for a player session.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a player session.

\n@param playerSessionId Unique identifier for a player session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a player session.

\n@param playerSessionId Unique identifier for a player session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "NextToken" : { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "GameSessionId" : { "documentation" : "

Unique identifier for a game session.

", "name" : "GameSessionId", "c2jName" : "GameSessionId", "c2jShape" : "GameSessionId", "variable" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a game session.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessionId", "marshallLocationName" : "GameSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.*/", "getterDocumentation" : "/**

Unique identifier for a game session.

\n@return Unique identifier for a game session.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "PlayerSessionStatusFilter" : { "documentation" : "

Player session status to filter results on. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

", "name" : "PlayerSessionStatusFilter", "c2jName" : "PlayerSessionStatusFilter", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "playerSessionStatusFilter", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Player session status to filter results on. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "playerSessionStatusFilter", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerSessionStatusFilter", "marshallLocationName" : "PlayerSessionStatusFilter", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Player session status to filter results on. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

\n@param playerSessionStatusFilter Player session status to filter results on. Possible player session states include:
  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
*/", "getterDocumentation" : "/**

Player session status to filter results on. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

\n@return Player session status to filter results on. Possible player session states include:
  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
*/", "fluentSetterDocumentation" : "/**

Player session status to filter results on. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

\n@param playerSessionStatusFilter Player session status to filter results on. Possible player session states include:
  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Player session status to filter results on. Possible player session states include:

  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).

\n@param playerSessionStatusFilter Player session status to filter results on. Possible player session states include:
  • RESERVED: The player session request has been received, but the player has not yet connected to the game server and/or been validated.
  • ACTIVE: The player has been validated by the game server and is currently connected.
  • COMPLETED: The player connection has been dropped.
  • TIMEDOUT: A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Limit" : { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. If a player session ID is specified, this parameter is ignored.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. If a player session ID is specified, this parameter is ignored.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. If a player session ID is specified, this parameter is ignored.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. If a player session ID is specified, this parameter is ignored.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "PlayerId" : { "documentation" : "

Unique identifier for a player.

", "name" : "PlayerId", "c2jName" : "PlayerId", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "playerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a player.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "playerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerId", "marshallLocationName" : "PlayerId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a player.

\n@param playerId Unique identifier for a player.*/", "getterDocumentation" : "/**

Unique identifier for a player.

\n@return Unique identifier for a player.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a player.

\n@param playerId Unique identifier for a player.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a player.

\n@param playerId Unique identifier for a player.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "GameSessionStatus" : { "c2jName" : "GameSessionStatus", "documentation" : "", "shapeName" : "GameSessionStatus", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : [ { "name" : "ACTIVE", "value" : "ACTIVE" }, { "name" : "ACTIVATING", "value" : "ACTIVATING" }, { "name" : "TERMINATED", "value" : "TERMINATED" }, { "name" : "TERMINATING", "value" : "TERMINATING" } ], "variable" : { "variableName" : "gameSessionStatus", "variableType" : "GameSessionStatus", "variableDeclarationType" : "GameSessionStatus", "documentation" : null, "simpleType" : "GameSessionStatus", "variableSetterType" : "GameSessionStatus" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "PlayerSessionCreationPolicy" : { "c2jName" : "PlayerSessionCreationPolicy", "documentation" : "", "shapeName" : "PlayerSessionCreationPolicy", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : [ { "name" : "ACCEPT_ALL", "value" : "ACCEPT_ALL" }, { "name" : "DENY_ALL", "value" : "DENY_ALL" } ], "variable" : { "variableName" : "playerSessionCreationPolicy", "variableType" : "PlayerSessionCreationPolicy", "variableDeclarationType" : "PlayerSessionCreationPolicy", "documentation" : null, "simpleType" : "PlayerSessionCreationPolicy", "variableSetterType" : "PlayerSessionCreationPolicy" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "RequestUploadCredentialsRequest" : { "c2jName" : "RequestUploadCredentialsInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "RequestUploadCredentialsRequest", "deprecated" : false, "required" : [ "BuildId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for the build you want to get credentials for.

", "name" : "BuildId", "c2jName" : "BuildId", "c2jShape" : "BuildId", "variable" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the build you want to get credentials for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "BuildId", "marshallLocationName" : "BuildId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the build you want to get credentials for.

\n@param buildId Unique identifier for the build you want to get credentials for.*/", "getterDocumentation" : "/**

Unique identifier for the build you want to get credentials for.

\n@return Unique identifier for the build you want to get credentials for.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the build you want to get credentials for.

\n@param buildId Unique identifier for the build you want to get credentials for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the build you want to get credentials for.

\n@param buildId Unique identifier for the build you want to get credentials for.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "requestUploadCredentialsRequest", "variableType" : "RequestUploadCredentialsRequest", "variableDeclarationType" : "RequestUploadCredentialsRequest", "documentation" : null, "simpleType" : "RequestUploadCredentialsRequest", "variableSetterType" : "RequestUploadCredentialsRequest" }, "marshaller" : { "action" : "RequestUploadCredentials", "verb" : "POST", "target" : "GameLift.RequestUploadCredentials", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "BuildId" : { "documentation" : "

Unique identifier for the build you want to get credentials for.

", "name" : "BuildId", "c2jName" : "BuildId", "c2jShape" : "BuildId", "variable" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the build you want to get credentials for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "BuildId", "marshallLocationName" : "BuildId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the build you want to get credentials for.

\n@param buildId Unique identifier for the build you want to get credentials for.*/", "getterDocumentation" : "/**

Unique identifier for the build you want to get credentials for.

\n@return Unique identifier for the build you want to get credentials for.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the build you want to get credentials for.

\n@param buildId Unique identifier for the build you want to get credentials for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the build you want to get credentials for.

\n@param buildId Unique identifier for the build you want to get credentials for.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DescribeFleetAttributesRequest" : { "c2jName" : "DescribeFleetAttributesInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "DescribeFleetAttributesRequest", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifiers for the fleet(s) that you want to retrieve attributes for. Leave this parameter empty to retrieve attributes for all fleets.

", "name" : "FleetIds", "c2jName" : "FleetIds", "c2jShape" : "FleetIdList", "variable" : { "variableName" : "fleetIds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Unique identifiers for the fleet(s) that you want to retrieve attributes for. Leave this parameter empty to retrieve attributes for all fleets.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "fleetIds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetIds", "marshallLocationName" : "FleetIds", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "FleetId", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Unique identifiers for the fleet(s) that you want to retrieve attributes for. Leave this parameter empty to retrieve attributes for all fleets.

\n@param fleetIds Unique identifiers for the fleet(s) that you want to retrieve attributes for. Leave this parameter empty to retrieve attributes for all fleets.*/", "getterDocumentation" : "/**

Unique identifiers for the fleet(s) that you want to retrieve attributes for. Leave this parameter empty to retrieve attributes for all fleets.

\n@return Unique identifiers for the fleet(s) that you want to retrieve attributes for. Leave this parameter empty to retrieve attributes for all fleets.*/", "fluentSetterDocumentation" : "/**

Unique identifiers for the fleet(s) that you want to retrieve attributes for. Leave this parameter empty to retrieve attributes for all fleets.

\n@param fleetIds Unique identifiers for the fleet(s) that you want to retrieve attributes for. Leave this parameter empty to retrieve attributes for all fleets.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifiers for the fleet(s) that you want to retrieve attributes for. Leave this parameter empty to retrieve attributes for all fleets.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setFleetIds(java.util.Collection)} or {@link #withFleetIds(java.util.Collection)} if you want to override the existing values.

\n@param fleetIds Unique identifiers for the fleet(s) that you want to retrieve attributes for. Leave this parameter empty to retrieve attributes for all fleets.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeFleetAttributesRequest", "variableType" : "DescribeFleetAttributesRequest", "variableDeclarationType" : "DescribeFleetAttributesRequest", "documentation" : null, "simpleType" : "DescribeFleetAttributesRequest", "variableSetterType" : "DescribeFleetAttributesRequest" }, "marshaller" : { "action" : "DescribeFleetAttributes", "verb" : "POST", "target" : "GameLift.DescribeFleetAttributes", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NextToken" : { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FleetIds" : { "documentation" : "

Unique identifiers for the fleet(s) that you want to retrieve attributes for. Leave this parameter empty to retrieve attributes for all fleets.

", "name" : "FleetIds", "c2jName" : "FleetIds", "c2jShape" : "FleetIdList", "variable" : { "variableName" : "fleetIds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Unique identifiers for the fleet(s) that you want to retrieve attributes for. Leave this parameter empty to retrieve attributes for all fleets.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "fleetIds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetIds", "marshallLocationName" : "FleetIds", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "FleetId", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Unique identifiers for the fleet(s) that you want to retrieve attributes for. Leave this parameter empty to retrieve attributes for all fleets.

\n@param fleetIds Unique identifiers for the fleet(s) that you want to retrieve attributes for. Leave this parameter empty to retrieve attributes for all fleets.*/", "getterDocumentation" : "/**

Unique identifiers for the fleet(s) that you want to retrieve attributes for. Leave this parameter empty to retrieve attributes for all fleets.

\n@return Unique identifiers for the fleet(s) that you want to retrieve attributes for. Leave this parameter empty to retrieve attributes for all fleets.*/", "fluentSetterDocumentation" : "/**

Unique identifiers for the fleet(s) that you want to retrieve attributes for. Leave this parameter empty to retrieve attributes for all fleets.

\n@param fleetIds Unique identifiers for the fleet(s) that you want to retrieve attributes for. Leave this parameter empty to retrieve attributes for all fleets.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifiers for the fleet(s) that you want to retrieve attributes for. Leave this parameter empty to retrieve attributes for all fleets.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setFleetIds(java.util.Collection)} or {@link #withFleetIds(java.util.Collection)} if you want to override the existing values.

\n@param fleetIds Unique identifiers for the fleet(s) that you want to retrieve attributes for. Leave this parameter empty to retrieve attributes for all fleets.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Limit" : { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "UpdateGameSessionRequest" : { "c2jName" : "UpdateGameSessionInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "UpdateGameSessionRequest", "deprecated" : false, "required" : [ "GameSessionId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for a game session. Specify the game session you want to update.

", "name" : "GameSessionId", "c2jName" : "GameSessionId", "c2jShape" : "GameSessionId", "variable" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a game session. Specify the game session you want to update.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessionId", "marshallLocationName" : "GameSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to update.

\n@param gameSessionId Unique identifier for a game session. Specify the game session you want to update.*/", "getterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to update.

\n@return Unique identifier for a game session. Specify the game session you want to update.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to update.

\n@param gameSessionId Unique identifier for a game session. Specify the game session you want to update.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to update.

\n@param gameSessionId Unique identifier for a game session. Specify the game session you want to update.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "MaximumPlayerSessionCount", "c2jName" : "MaximumPlayerSessionCount", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "maximumPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "maximumPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MaximumPlayerSessionCount", "marshallLocationName" : "MaximumPlayerSessionCount", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param maximumPlayerSessionCount Maximum number of players that can be simultaneously connected to the game session.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of players that can be simultaneously connected to the game session.*/", "fluentSetterDocumentation" : "/**

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

\n@param maximumPlayerSessionCount Maximum number of players that can be simultaneously connected to the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param maximumPlayerSessionCount Maximum number of players that can be simultaneously connected to the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Descriptive label associated with this game session. Session names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this game session. Session names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@param name Descriptive label associated with this game session. Session names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@return Descriptive label associated with this game session. Session names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@param name Descriptive label associated with this game session. Session names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@param name Descriptive label associated with this game session. Session names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Policy determining whether or not the game session accepts new players.

", "name" : "PlayerSessionCreationPolicy", "c2jName" : "PlayerSessionCreationPolicy", "c2jShape" : "PlayerSessionCreationPolicy", "variable" : { "variableName" : "playerSessionCreationPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Policy determining whether or not the game session accepts new players.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "playerSessionCreationPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerSessionCreationPolicy", "marshallLocationName" : "PlayerSessionCreationPolicy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "PlayerSessionCreationPolicy", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Policy determining whether or not the game session accepts new players.

\n@param playerSessionCreationPolicy Policy determining whether or not the game session accepts new players.\n@see PlayerSessionCreationPolicy*/", "getterDocumentation" : "/**

Policy determining whether or not the game session accepts new players.

\n@return Policy determining whether or not the game session accepts new players.\n@see PlayerSessionCreationPolicy*/", "fluentSetterDocumentation" : "/**

Policy determining whether or not the game session accepts new players.

\n@param playerSessionCreationPolicy Policy determining whether or not the game session accepts new players.\n@return Returns a reference to this object so that method calls can be chained together.\n@see PlayerSessionCreationPolicy*/", "varargSetterDocumentation" : "/**

Policy determining whether or not the game session accepts new players.

\n@param playerSessionCreationPolicy Policy determining whether or not the game session accepts new players.\n@return Returns a reference to this object so that method calls can be chained together.\n@see PlayerSessionCreationPolicy*/" }, { "documentation" : "

Game session protection policy to apply to this game session only.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

", "name" : "ProtectionPolicy", "c2jName" : "ProtectionPolicy", "c2jShape" : "ProtectionPolicy", "variable" : { "variableName" : "protectionPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Game session protection policy to apply to this game session only.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "protectionPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ProtectionPolicy", "marshallLocationName" : "ProtectionPolicy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ProtectionPolicy", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Game session protection policy to apply to this game session only.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param protectionPolicy Game session protection policy to apply to this game session only.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@see ProtectionPolicy*/", "getterDocumentation" : "/**

Game session protection policy to apply to this game session only.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@return Game session protection policy to apply to this game session only.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@see ProtectionPolicy*/", "fluentSetterDocumentation" : "/**

Game session protection policy to apply to this game session only.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param protectionPolicy Game session protection policy to apply to this game session only.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ProtectionPolicy*/", "varargSetterDocumentation" : "/**

Game session protection policy to apply to this game session only.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param protectionPolicy Game session protection policy to apply to this game session only.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ProtectionPolicy*/" } ], "enums" : null, "variable" : { "variableName" : "updateGameSessionRequest", "variableType" : "UpdateGameSessionRequest", "variableDeclarationType" : "UpdateGameSessionRequest", "documentation" : null, "simpleType" : "UpdateGameSessionRequest", "variableSetterType" : "UpdateGameSessionRequest" }, "marshaller" : { "action" : "UpdateGameSession", "verb" : "POST", "target" : "GameLift.UpdateGameSession", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Name" : { "documentation" : "

Descriptive label associated with this game session. Session names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this game session. Session names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@param name Descriptive label associated with this game session. Session names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@return Descriptive label associated with this game session. Session names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@param name Descriptive label associated with this game session. Session names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@param name Descriptive label associated with this game session. Session names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "PlayerSessionCreationPolicy" : { "documentation" : "

Policy determining whether or not the game session accepts new players.

", "name" : "PlayerSessionCreationPolicy", "c2jName" : "PlayerSessionCreationPolicy", "c2jShape" : "PlayerSessionCreationPolicy", "variable" : { "variableName" : "playerSessionCreationPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Policy determining whether or not the game session accepts new players.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "playerSessionCreationPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerSessionCreationPolicy", "marshallLocationName" : "PlayerSessionCreationPolicy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "PlayerSessionCreationPolicy", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Policy determining whether or not the game session accepts new players.

\n@param playerSessionCreationPolicy Policy determining whether or not the game session accepts new players.\n@see PlayerSessionCreationPolicy*/", "getterDocumentation" : "/**

Policy determining whether or not the game session accepts new players.

\n@return Policy determining whether or not the game session accepts new players.\n@see PlayerSessionCreationPolicy*/", "fluentSetterDocumentation" : "/**

Policy determining whether or not the game session accepts new players.

\n@param playerSessionCreationPolicy Policy determining whether or not the game session accepts new players.\n@return Returns a reference to this object so that method calls can be chained together.\n@see PlayerSessionCreationPolicy*/", "varargSetterDocumentation" : "/**

Policy determining whether or not the game session accepts new players.

\n@param playerSessionCreationPolicy Policy determining whether or not the game session accepts new players.\n@return Returns a reference to this object so that method calls can be chained together.\n@see PlayerSessionCreationPolicy*/" }, "ProtectionPolicy" : { "documentation" : "

Game session protection policy to apply to this game session only.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

", "name" : "ProtectionPolicy", "c2jName" : "ProtectionPolicy", "c2jShape" : "ProtectionPolicy", "variable" : { "variableName" : "protectionPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Game session protection policy to apply to this game session only.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "protectionPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ProtectionPolicy", "marshallLocationName" : "ProtectionPolicy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ProtectionPolicy", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Game session protection policy to apply to this game session only.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param protectionPolicy Game session protection policy to apply to this game session only.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@see ProtectionPolicy*/", "getterDocumentation" : "/**

Game session protection policy to apply to this game session only.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@return Game session protection policy to apply to this game session only.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@see ProtectionPolicy*/", "fluentSetterDocumentation" : "/**

Game session protection policy to apply to this game session only.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param protectionPolicy Game session protection policy to apply to this game session only.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ProtectionPolicy*/", "varargSetterDocumentation" : "/**

Game session protection policy to apply to this game session only.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param protectionPolicy Game session protection policy to apply to this game session only.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ProtectionPolicy*/" }, "GameSessionId" : { "documentation" : "

Unique identifier for a game session. Specify the game session you want to update.

", "name" : "GameSessionId", "c2jName" : "GameSessionId", "c2jShape" : "GameSessionId", "variable" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a game session. Specify the game session you want to update.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessionId", "marshallLocationName" : "GameSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to update.

\n@param gameSessionId Unique identifier for a game session. Specify the game session you want to update.*/", "getterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to update.

\n@return Unique identifier for a game session. Specify the game session you want to update.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to update.

\n@param gameSessionId Unique identifier for a game session. Specify the game session you want to update.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to update.

\n@param gameSessionId Unique identifier for a game session. Specify the game session you want to update.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "MaximumPlayerSessionCount" : { "documentation" : "

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

", "name" : "MaximumPlayerSessionCount", "c2jName" : "MaximumPlayerSessionCount", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "maximumPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "maximumPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MaximumPlayerSessionCount", "marshallLocationName" : "MaximumPlayerSessionCount", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param maximumPlayerSessionCount Maximum number of players that can be simultaneously connected to the game session.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of players that can be simultaneously connected to the game session.*/", "fluentSetterDocumentation" : "/**

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

\n@param maximumPlayerSessionCount Maximum number of players that can be simultaneously connected to the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param maximumPlayerSessionCount Maximum number of players that can be simultaneously connected to the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "CreateGameSessionResult" : { "c2jName" : "CreateGameSessionOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "CreateGameSessionResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Object containing the newly created game session record.

", "name" : "GameSession", "c2jName" : "GameSession", "c2jShape" : "GameSession", "variable" : { "variableName" : "gameSession", "variableType" : "GameSession", "variableDeclarationType" : "GameSession", "documentation" : "

Object containing the newly created game session record.

", "simpleType" : "GameSession", "variableSetterType" : "GameSession" }, "setterModel" : { "variableName" : "gameSession", "variableType" : "GameSession", "variableDeclarationType" : "GameSession", "documentation" : "", "simpleType" : "GameSession", "variableSetterType" : "GameSession" }, "getterModel" : { "returnType" : "GameSession", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSession", "marshallLocationName" : "GameSession", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Object containing the newly created game session record.

\n@param gameSession Object containing the newly created game session record.*/", "getterDocumentation" : "/**

Object containing the newly created game session record.

\n@return Object containing the newly created game session record.*/", "fluentSetterDocumentation" : "/**

Object containing the newly created game session record.

\n@param gameSession Object containing the newly created game session record.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object containing the newly created game session record.

\n@param gameSession Object containing the newly created game session record.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "createGameSessionResult", "variableType" : "CreateGameSessionResult", "variableDeclarationType" : "CreateGameSessionResult", "documentation" : null, "simpleType" : "CreateGameSessionResult", "variableSetterType" : "CreateGameSessionResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "GameSession" : { "documentation" : "

Object containing the newly created game session record.

", "name" : "GameSession", "c2jName" : "GameSession", "c2jShape" : "GameSession", "variable" : { "variableName" : "gameSession", "variableType" : "GameSession", "variableDeclarationType" : "GameSession", "documentation" : "

Object containing the newly created game session record.

", "simpleType" : "GameSession", "variableSetterType" : "GameSession" }, "setterModel" : { "variableName" : "gameSession", "variableType" : "GameSession", "variableDeclarationType" : "GameSession", "documentation" : "", "simpleType" : "GameSession", "variableSetterType" : "GameSession" }, "getterModel" : { "returnType" : "GameSession", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSession", "marshallLocationName" : "GameSession", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Object containing the newly created game session record.

\n@param gameSession Object containing the newly created game session record.*/", "getterDocumentation" : "/**

Object containing the newly created game session record.

\n@return Object containing the newly created game session record.*/", "fluentSetterDocumentation" : "/**

Object containing the newly created game session record.

\n@param gameSession Object containing the newly created game session record.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object containing the newly created game session record.

\n@param gameSession Object containing the newly created game session record.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "GetGameSessionLogUrlRequest" : { "c2jName" : "GetGameSessionLogUrlInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "GetGameSessionLogUrlRequest", "deprecated" : false, "required" : [ "GameSessionId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for a game session. Specify the game session you want to get logs for.

", "name" : "GameSessionId", "c2jName" : "GameSessionId", "c2jShape" : "GameSessionId", "variable" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a game session. Specify the game session you want to get logs for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessionId", "marshallLocationName" : "GameSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to get logs for.

\n@param gameSessionId Unique identifier for a game session. Specify the game session you want to get logs for.*/", "getterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to get logs for.

\n@return Unique identifier for a game session. Specify the game session you want to get logs for.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to get logs for.

\n@param gameSessionId Unique identifier for a game session. Specify the game session you want to get logs for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to get logs for.

\n@param gameSessionId Unique identifier for a game session. Specify the game session you want to get logs for.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "getGameSessionLogUrlRequest", "variableType" : "GetGameSessionLogUrlRequest", "variableDeclarationType" : "GetGameSessionLogUrlRequest", "documentation" : null, "simpleType" : "GetGameSessionLogUrlRequest", "variableSetterType" : "GetGameSessionLogUrlRequest" }, "marshaller" : { "action" : "GetGameSessionLogUrl", "verb" : "POST", "target" : "GameLift.GetGameSessionLogUrl", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "GameSessionId" : { "documentation" : "

Unique identifier for a game session. Specify the game session you want to get logs for.

", "name" : "GameSessionId", "c2jName" : "GameSessionId", "c2jShape" : "GameSessionId", "variable" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a game session. Specify the game session you want to get logs for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessionId", "marshallLocationName" : "GameSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to get logs for.

\n@param gameSessionId Unique identifier for a game session. Specify the game session you want to get logs for.*/", "getterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to get logs for.

\n@return Unique identifier for a game session. Specify the game session you want to get logs for.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to get logs for.

\n@param gameSessionId Unique identifier for a game session. Specify the game session you want to get logs for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to get logs for.

\n@param gameSessionId Unique identifier for a game session. Specify the game session you want to get logs for.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "Build" : { "c2jName" : "Build", "documentation" : "

Properties describing a game build.

", "shapeName" : "Build", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for a build.

", "name" : "BuildId", "c2jName" : "BuildId", "c2jShape" : "BuildId", "variable" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a build.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "BuildId", "marshallLocationName" : "BuildId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a build.

\n@param buildId Unique identifier for a build.*/", "getterDocumentation" : "/**

Unique identifier for a build.

\n@return Unique identifier for a build.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a build.

\n@param buildId Unique identifier for a build.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a build.

\n@param buildId Unique identifier for a build.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "FreeText", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param name Descriptive label associated with this build. Build names do not need to be unique. It can be set using CreateBuild or UpdateBuild.*/", "getterDocumentation" : "/**

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

\n@return Descriptive label associated with this build. Build names do not need to be unique. It can be set using CreateBuild or UpdateBuild.*/", "fluentSetterDocumentation" : "/**

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

\n@param name Descriptive label associated with this build. Build names do not need to be unique. It can be set using CreateBuild or UpdateBuild.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param name Descriptive label associated with this build. Build names do not need to be unique. It can be set using CreateBuild or UpdateBuild.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "Version", "c2jName" : "Version", "c2jShape" : "FreeText", "variable" : { "variableName" : "version", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "version", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Version", "marshallLocationName" : "Version", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param version Version associated with this build. Version strings do not need to be unique to a build. This value can be set using CreateBuild or UpdateBuild.*/", "getterDocumentation" : "/**

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

\n@return Version associated with this build. Version strings do not need to be unique to a build. This value can be set using CreateBuild or UpdateBuild.*/", "fluentSetterDocumentation" : "/**

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

\n@param version Version associated with this build. Version strings do not need to be unique to a build. This value can be set using CreateBuild or UpdateBuild.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param version Version associated with this build. Version strings do not need to be unique to a build. This value can be set using CreateBuild or UpdateBuild.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Current status of the build. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

", "name" : "Status", "c2jName" : "Status", "c2jShape" : "BuildStatus", "variable" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Current status of the build. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Status", "marshallLocationName" : "Status", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "BuildStatus", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Current status of the build. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

\n@param status Current status of the build. Possible build states include:
  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.
\n@see BuildStatus*/", "getterDocumentation" : "/**

Current status of the build. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

\n@return Current status of the build. Possible build states include:
  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.
\n@see BuildStatus*/", "fluentSetterDocumentation" : "/**

Current status of the build. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

\n@param status Current status of the build. Possible build states include:
  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see BuildStatus*/", "varargSetterDocumentation" : "/**

Current status of the build. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

\n@param status Current status of the build. Possible build states include:
  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see BuildStatus*/" }, { "documentation" : "

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

", "name" : "SizeOnDisk", "c2jName" : "SizeOnDisk", "c2jShape" : "PositiveLong", "variable" : { "variableName" : "sizeOnDisk", "variableType" : "Long", "variableDeclarationType" : "Long", "documentation" : "

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

", "simpleType" : "Long", "variableSetterType" : "Long" }, "setterModel" : { "variableName" : "sizeOnDisk", "variableType" : "Long", "variableDeclarationType" : "Long", "documentation" : "", "simpleType" : "Long", "variableSetterType" : "Long" }, "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "unmarshallLocationName" : "SizeOnDisk", "marshallLocationName" : "SizeOnDisk", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param sizeOnDisk File size of the uploaded game build, expressed in bytes. When the build state is INITIALIZED, this value is 0.*/", "getterDocumentation" : "/**

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

\n@return File size of the uploaded game build, expressed in bytes. When the build state is INITIALIZED, this value is 0.*/", "fluentSetterDocumentation" : "/**

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

\n@param sizeOnDisk File size of the uploaded game build, expressed in bytes. When the build state is INITIALIZED, this value is 0.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param sizeOnDisk File size of the uploaded game build, expressed in bytes. When the build state is INITIALIZED, this value is 0.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "CreationTime", "c2jName" : "CreationTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationTime", "marshallLocationName" : "CreationTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "build", "variableType" : "Build", "variableDeclarationType" : "Build", "documentation" : null, "simpleType" : "Build", "variableSetterType" : "Build" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "CreationTime" : { "documentation" : "

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "CreationTime", "c2jName" : "CreationTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationTime", "marshallLocationName" : "CreationTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Name" : { "documentation" : "

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

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "FreeText", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param name Descriptive label associated with this build. Build names do not need to be unique. It can be set using CreateBuild or UpdateBuild.*/", "getterDocumentation" : "/**

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

\n@return Descriptive label associated with this build. Build names do not need to be unique. It can be set using CreateBuild or UpdateBuild.*/", "fluentSetterDocumentation" : "/**

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

\n@param name Descriptive label associated with this build. Build names do not need to be unique. It can be set using CreateBuild or UpdateBuild.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param name Descriptive label associated with this build. Build names do not need to be unique. It can be set using CreateBuild or UpdateBuild.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Status" : { "documentation" : "

Current status of the build. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

", "name" : "Status", "c2jName" : "Status", "c2jShape" : "BuildStatus", "variable" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Current status of the build. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "status", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Status", "marshallLocationName" : "Status", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "BuildStatus", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Current status of the build. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

\n@param status Current status of the build. Possible build states include:
  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.
\n@see BuildStatus*/", "getterDocumentation" : "/**

Current status of the build. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

\n@return Current status of the build. Possible build states include:
  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.
\n@see BuildStatus*/", "fluentSetterDocumentation" : "/**

Current status of the build. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

\n@param status Current status of the build. Possible build states include:
  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see BuildStatus*/", "varargSetterDocumentation" : "/**

Current status of the build. Possible build states include:

  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.

\n@param status Current status of the build. Possible build states include:
  • INITIALIZED: A new build has been defined, but no files have been uploaded. You cannot create fleets for builds that are in this state. When a build is successfully created, the build state is set to this value.
  • READY: The game build has been successfully uploaded. You can now create new fleets for this build.
  • FAILED: The game build upload failed. You cannot create new fleets for this build.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see BuildStatus*/" }, "SizeOnDisk" : { "documentation" : "

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

", "name" : "SizeOnDisk", "c2jName" : "SizeOnDisk", "c2jShape" : "PositiveLong", "variable" : { "variableName" : "sizeOnDisk", "variableType" : "Long", "variableDeclarationType" : "Long", "documentation" : "

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

", "simpleType" : "Long", "variableSetterType" : "Long" }, "setterModel" : { "variableName" : "sizeOnDisk", "variableType" : "Long", "variableDeclarationType" : "Long", "documentation" : "", "simpleType" : "Long", "variableSetterType" : "Long" }, "getterModel" : { "returnType" : "Long", "documentation" : null }, "http" : { "unmarshallLocationName" : "SizeOnDisk", "marshallLocationName" : "SizeOnDisk", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param sizeOnDisk File size of the uploaded game build, expressed in bytes. When the build state is INITIALIZED, this value is 0.*/", "getterDocumentation" : "/**

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

\n@return File size of the uploaded game build, expressed in bytes. When the build state is INITIALIZED, this value is 0.*/", "fluentSetterDocumentation" : "/**

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

\n@param sizeOnDisk File size of the uploaded game build, expressed in bytes. When the build state is INITIALIZED, this value is 0.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param sizeOnDisk File size of the uploaded game build, expressed in bytes. When the build state is INITIALIZED, this value is 0.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "BuildId" : { "documentation" : "

Unique identifier for a build.

", "name" : "BuildId", "c2jName" : "BuildId", "c2jShape" : "BuildId", "variable" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a build.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "BuildId", "marshallLocationName" : "BuildId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a build.

\n@param buildId Unique identifier for a build.*/", "getterDocumentation" : "/**

Unique identifier for a build.

\n@return Unique identifier for a build.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a build.

\n@param buildId Unique identifier for a build.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a build.

\n@param buildId Unique identifier for a build.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Version" : { "documentation" : "

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

", "name" : "Version", "c2jName" : "Version", "c2jShape" : "FreeText", "variable" : { "variableName" : "version", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "version", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Version", "marshallLocationName" : "Version", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param version Version associated with this build. Version strings do not need to be unique to a build. This value can be set using CreateBuild or UpdateBuild.*/", "getterDocumentation" : "/**

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

\n@return Version associated with this build. Version strings do not need to be unique to a build. This value can be set using CreateBuild or UpdateBuild.*/", "fluentSetterDocumentation" : "/**

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

\n@param version Version associated with this build. Version strings do not need to be unique to a build. This value can be set using CreateBuild or UpdateBuild.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param version Version associated with this build. Version strings do not need to be unique to a build. This value can be set using CreateBuild or UpdateBuild.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DescribeScalingPoliciesResult" : { "c2jName" : "DescribeScalingPoliciesOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "DescribeScalingPoliciesResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Collection of objects containing the scaling policies matching the request.

", "name" : "ScalingPolicies", "c2jName" : "ScalingPolicies", "c2jShape" : "ScalingPolicyList", "variable" : { "variableName" : "scalingPolicies", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Collection of objects containing the scaling policies matching the request.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "scalingPolicies", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "ScalingPolicies", "marshallLocationName" : "ScalingPolicies", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "ScalingPolicy", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "ScalingPolicy", "variable" : { "variableName" : "member", "variableType" : "ScalingPolicy", "variableDeclarationType" : "ScalingPolicy", "documentation" : "", "simpleType" : "ScalingPolicy", "variableSetterType" : "ScalingPolicy" }, "setterModel" : { "variableName" : "member", "variableType" : "ScalingPolicy", "variableDeclarationType" : "ScalingPolicy", "documentation" : "", "simpleType" : "ScalingPolicy", "variableSetterType" : "ScalingPolicy" }, "getterModel" : { "returnType" : "ScalingPolicy", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "ScalingPolicy", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Collection of objects containing the scaling policies matching the request.

\n@param scalingPolicies Collection of objects containing the scaling policies matching the request.*/", "getterDocumentation" : "/**

Collection of objects containing the scaling policies matching the request.

\n@return Collection of objects containing the scaling policies matching the request.*/", "fluentSetterDocumentation" : "/**

Collection of objects containing the scaling policies matching the request.

\n@param scalingPolicies Collection of objects containing the scaling policies matching the request.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Collection of objects containing the scaling policies matching the request.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setScalingPolicies(java.util.Collection)} or {@link #withScalingPolicies(java.util.Collection)} if you want to override the existing values.

\n@param scalingPolicies Collection of objects containing the scaling policies matching the request.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeScalingPoliciesResult", "variableType" : "DescribeScalingPoliciesResult", "variableDeclarationType" : "DescribeScalingPoliciesResult", "documentation" : null, "simpleType" : "DescribeScalingPoliciesResult", "variableSetterType" : "DescribeScalingPoliciesResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NextToken" : { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "ScalingPolicies" : { "documentation" : "

Collection of objects containing the scaling policies matching the request.

", "name" : "ScalingPolicies", "c2jName" : "ScalingPolicies", "c2jShape" : "ScalingPolicyList", "variable" : { "variableName" : "scalingPolicies", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Collection of objects containing the scaling policies matching the request.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "scalingPolicies", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "ScalingPolicies", "marshallLocationName" : "ScalingPolicies", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "ScalingPolicy", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "ScalingPolicy", "variable" : { "variableName" : "member", "variableType" : "ScalingPolicy", "variableDeclarationType" : "ScalingPolicy", "documentation" : "", "simpleType" : "ScalingPolicy", "variableSetterType" : "ScalingPolicy" }, "setterModel" : { "variableName" : "member", "variableType" : "ScalingPolicy", "variableDeclarationType" : "ScalingPolicy", "documentation" : "", "simpleType" : "ScalingPolicy", "variableSetterType" : "ScalingPolicy" }, "getterModel" : { "returnType" : "ScalingPolicy", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "ScalingPolicy", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Collection of objects containing the scaling policies matching the request.

\n@param scalingPolicies Collection of objects containing the scaling policies matching the request.*/", "getterDocumentation" : "/**

Collection of objects containing the scaling policies matching the request.

\n@return Collection of objects containing the scaling policies matching the request.*/", "fluentSetterDocumentation" : "/**

Collection of objects containing the scaling policies matching the request.

\n@param scalingPolicies Collection of objects containing the scaling policies matching the request.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Collection of objects containing the scaling policies matching the request.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setScalingPolicies(java.util.Collection)} or {@link #withScalingPolicies(java.util.Collection)} if you want to override the existing values.

\n@param scalingPolicies Collection of objects containing the scaling policies matching the request.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "FleetCapacityExceededException" : { "c2jName" : "FleetCapacityExceededException", "documentation" : "

The specified fleet has no available instances to fulfill a request to create a new game session. Such requests should only be retried once the fleet capacity has been increased.

", "shapeName" : "FleetCapacityExceededException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ ], "enums" : null, "variable" : { "variableName" : "fleetCapacityExceededException", "variableType" : "FleetCapacityExceededException", "variableDeclarationType" : "FleetCapacityExceededException", "documentation" : null, "simpleType" : "FleetCapacityExceededException", "variableSetterType" : "FleetCapacityExceededException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "FleetCapacityExceededException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "CreateBuildResult" : { "c2jName" : "CreateBuildOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "CreateBuildResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Set of properties for the newly created build.

", "name" : "Build", "c2jName" : "Build", "c2jShape" : "Build", "variable" : { "variableName" : "build", "variableType" : "Build", "variableDeclarationType" : "Build", "documentation" : "

Set of properties for the newly created build.

", "simpleType" : "Build", "variableSetterType" : "Build" }, "setterModel" : { "variableName" : "build", "variableType" : "Build", "variableDeclarationType" : "Build", "documentation" : "", "simpleType" : "Build", "variableSetterType" : "Build" }, "getterModel" : { "returnType" : "Build", "documentation" : null }, "http" : { "unmarshallLocationName" : "Build", "marshallLocationName" : "Build", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Set of properties for the newly created build.

\n@param build Set of properties for the newly created build.*/", "getterDocumentation" : "/**

Set of properties for the newly created build.

\n@return Set of properties for the newly created build.*/", "fluentSetterDocumentation" : "/**

Set of properties for the newly created build.

\n@param build Set of properties for the newly created build.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Set of properties for the newly created build.

\n@param build Set of properties for the newly created build.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

AWS credentials required when uploading a game build to the storage location. These credentials have a limited lifespan and are valid only for the build they were issued for. If you need to get fresh credentials, call RequestUploadCredentials.

", "name" : "UploadCredentials", "c2jName" : "UploadCredentials", "c2jShape" : "Credentials", "variable" : { "variableName" : "uploadCredentials", "variableType" : "Credentials", "variableDeclarationType" : "Credentials", "documentation" : "

AWS credentials required when uploading a game build to the storage location. These credentials have a limited lifespan and are valid only for the build they were issued for. If you need to get fresh credentials, call RequestUploadCredentials.

", "simpleType" : "Credentials", "variableSetterType" : "Credentials" }, "setterModel" : { "variableName" : "uploadCredentials", "variableType" : "Credentials", "variableDeclarationType" : "Credentials", "documentation" : "", "simpleType" : "Credentials", "variableSetterType" : "Credentials" }, "getterModel" : { "returnType" : "Credentials", "documentation" : null }, "http" : { "unmarshallLocationName" : "UploadCredentials", "marshallLocationName" : "UploadCredentials", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

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 RequestUploadCredentials.

\n@param uploadCredentials 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 RequestUploadCredentials.*/", "getterDocumentation" : "/**

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 RequestUploadCredentials.

\n@return 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 RequestUploadCredentials.*/", "fluentSetterDocumentation" : "/**

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 RequestUploadCredentials.

\n@param uploadCredentials 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 RequestUploadCredentials.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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 RequestUploadCredentials.

\n@param uploadCredentials 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 RequestUploadCredentials.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Amazon S3 path and key, identifying where the game build files are stored.

", "name" : "StorageLocation", "c2jName" : "StorageLocation", "c2jShape" : "S3Location", "variable" : { "variableName" : "storageLocation", "variableType" : "S3Location", "variableDeclarationType" : "S3Location", "documentation" : "

Amazon S3 path and key, identifying where the game build files are stored.

", "simpleType" : "S3Location", "variableSetterType" : "S3Location" }, "setterModel" : { "variableName" : "storageLocation", "variableType" : "S3Location", "variableDeclarationType" : "S3Location", "documentation" : "", "simpleType" : "S3Location", "variableSetterType" : "S3Location" }, "getterModel" : { "returnType" : "S3Location", "documentation" : null }, "http" : { "unmarshallLocationName" : "StorageLocation", "marshallLocationName" : "StorageLocation", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Amazon S3 path and key, identifying where the game build files are stored.

\n@param storageLocation Amazon S3 path and key, identifying where the game build files are stored.*/", "getterDocumentation" : "/**

Amazon S3 path and key, identifying where the game build files are stored.

\n@return Amazon S3 path and key, identifying where the game build files are stored.*/", "fluentSetterDocumentation" : "/**

Amazon S3 path and key, identifying where the game build files are stored.

\n@param storageLocation Amazon S3 path and key, identifying where the game build files are stored.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Amazon S3 path and key, identifying where the game build files are stored.

\n@param storageLocation Amazon S3 path and key, identifying where the game build files are stored.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "createBuildResult", "variableType" : "CreateBuildResult", "variableDeclarationType" : "CreateBuildResult", "documentation" : null, "simpleType" : "CreateBuildResult", "variableSetterType" : "CreateBuildResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "UploadCredentials" : { "documentation" : "

AWS credentials required when uploading a game build to the storage location. These credentials have a limited lifespan and are valid only for the build they were issued for. If you need to get fresh credentials, call RequestUploadCredentials.

", "name" : "UploadCredentials", "c2jName" : "UploadCredentials", "c2jShape" : "Credentials", "variable" : { "variableName" : "uploadCredentials", "variableType" : "Credentials", "variableDeclarationType" : "Credentials", "documentation" : "

AWS credentials required when uploading a game build to the storage location. These credentials have a limited lifespan and are valid only for the build they were issued for. If you need to get fresh credentials, call RequestUploadCredentials.

", "simpleType" : "Credentials", "variableSetterType" : "Credentials" }, "setterModel" : { "variableName" : "uploadCredentials", "variableType" : "Credentials", "variableDeclarationType" : "Credentials", "documentation" : "", "simpleType" : "Credentials", "variableSetterType" : "Credentials" }, "getterModel" : { "returnType" : "Credentials", "documentation" : null }, "http" : { "unmarshallLocationName" : "UploadCredentials", "marshallLocationName" : "UploadCredentials", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

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 RequestUploadCredentials.

\n@param uploadCredentials 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 RequestUploadCredentials.*/", "getterDocumentation" : "/**

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 RequestUploadCredentials.

\n@return 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 RequestUploadCredentials.*/", "fluentSetterDocumentation" : "/**

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 RequestUploadCredentials.

\n@param uploadCredentials 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 RequestUploadCredentials.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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 RequestUploadCredentials.

\n@param uploadCredentials 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 RequestUploadCredentials.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Build" : { "documentation" : "

Set of properties for the newly created build.

", "name" : "Build", "c2jName" : "Build", "c2jShape" : "Build", "variable" : { "variableName" : "build", "variableType" : "Build", "variableDeclarationType" : "Build", "documentation" : "

Set of properties for the newly created build.

", "simpleType" : "Build", "variableSetterType" : "Build" }, "setterModel" : { "variableName" : "build", "variableType" : "Build", "variableDeclarationType" : "Build", "documentation" : "", "simpleType" : "Build", "variableSetterType" : "Build" }, "getterModel" : { "returnType" : "Build", "documentation" : null }, "http" : { "unmarshallLocationName" : "Build", "marshallLocationName" : "Build", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Set of properties for the newly created build.

\n@param build Set of properties for the newly created build.*/", "getterDocumentation" : "/**

Set of properties for the newly created build.

\n@return Set of properties for the newly created build.*/", "fluentSetterDocumentation" : "/**

Set of properties for the newly created build.

\n@param build Set of properties for the newly created build.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Set of properties for the newly created build.

\n@param build Set of properties for the newly created build.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "StorageLocation" : { "documentation" : "

Amazon S3 path and key, identifying where the game build files are stored.

", "name" : "StorageLocation", "c2jName" : "StorageLocation", "c2jShape" : "S3Location", "variable" : { "variableName" : "storageLocation", "variableType" : "S3Location", "variableDeclarationType" : "S3Location", "documentation" : "

Amazon S3 path and key, identifying where the game build files are stored.

", "simpleType" : "S3Location", "variableSetterType" : "S3Location" }, "setterModel" : { "variableName" : "storageLocation", "variableType" : "S3Location", "variableDeclarationType" : "S3Location", "documentation" : "", "simpleType" : "S3Location", "variableSetterType" : "S3Location" }, "getterModel" : { "returnType" : "S3Location", "documentation" : null }, "http" : { "unmarshallLocationName" : "StorageLocation", "marshallLocationName" : "StorageLocation", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Amazon S3 path and key, identifying where the game build files are stored.

\n@param storageLocation Amazon S3 path and key, identifying where the game build files are stored.*/", "getterDocumentation" : "/**

Amazon S3 path and key, identifying where the game build files are stored.

\n@return Amazon S3 path and key, identifying where the game build files are stored.*/", "fluentSetterDocumentation" : "/**

Amazon S3 path and key, identifying where the game build files are stored.

\n@param storageLocation Amazon S3 path and key, identifying where the game build files are stored.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Amazon S3 path and key, identifying where the game build files are stored.

\n@param storageLocation Amazon S3 path and key, identifying where the game build files are stored.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "TerminalRoutingStrategyException" : { "c2jName" : "TerminalRoutingStrategyException", "documentation" : "

The service is unable to resolve the routing for a particular alias because it has a terminal RoutingStrategy associated with it. The message returned in this exception is the message defined in the TerminalRoutingStrategy itself. Such requests should only be retried if the routing strategy for the specified alias is modified.

", "shapeName" : "TerminalRoutingStrategyException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ ], "enums" : null, "variable" : { "variableName" : "terminalRoutingStrategyException", "variableType" : "TerminalRoutingStrategyException", "variableDeclarationType" : "TerminalRoutingStrategyException", "documentation" : null, "simpleType" : "TerminalRoutingStrategyException", "variableSetterType" : "TerminalRoutingStrategyException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "TerminalRoutingStrategyException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "Event" : { "c2jName" : "Event", "documentation" : "

Log entry describing an event involving an Amazon GameLift resource (such as a fleet).

", "shapeName" : "Event", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for a fleet event.

", "name" : "EventId", "c2jName" : "EventId", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "eventId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet event.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "eventId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "EventId", "marshallLocationName" : "EventId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet event.

\n@param eventId Unique identifier for a fleet event.*/", "getterDocumentation" : "/**

Unique identifier for a fleet event.

\n@return Unique identifier for a fleet event.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet event.

\n@param eventId Unique identifier for a fleet event.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet event.

\n@param eventId Unique identifier for a fleet event.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Unique identifier for the resource, such as a fleet ID.

", "name" : "ResourceId", "c2jName" : "ResourceId", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "resourceId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the resource, such as a fleet ID.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "resourceId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ResourceId", "marshallLocationName" : "ResourceId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the resource, such as a fleet ID.

\n@param resourceId Unique identifier for the resource, such as a fleet ID.*/", "getterDocumentation" : "/**

Unique identifier for the resource, such as a fleet ID.

\n@return Unique identifier for the resource, such as a fleet ID.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the resource, such as a fleet ID.

\n@param resourceId Unique identifier for the resource, such as a fleet ID.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the resource, such as a fleet ID.

\n@param resourceId Unique identifier for the resource, such as a fleet ID.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Type of event being logged.

", "name" : "EventCode", "c2jName" : "EventCode", "c2jShape" : "EventCode", "variable" : { "variableName" : "eventCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Type of event being logged.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "eventCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "EventCode", "marshallLocationName" : "EventCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "EventCode", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Type of event being logged.

\n@param eventCode Type of event being logged.\n@see EventCode*/", "getterDocumentation" : "/**

Type of event being logged.

\n@return Type of event being logged.\n@see EventCode*/", "fluentSetterDocumentation" : "/**

Type of event being logged.

\n@param eventCode Type of event being logged.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EventCode*/", "varargSetterDocumentation" : "/**

Type of event being logged.

\n@param eventCode Type of event being logged.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EventCode*/" }, { "documentation" : "

Additional information related to the event.

", "name" : "Message", "c2jName" : "Message", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "message", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Additional information related to the event.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "message", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Message", "marshallLocationName" : "Message", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Additional information related to the event.

\n@param message Additional information related to the event.*/", "getterDocumentation" : "/**

Additional information related to the event.

\n@return Additional information related to the event.*/", "fluentSetterDocumentation" : "/**

Additional information related to the event.

\n@param message Additional information related to the event.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Additional information related to the event.

\n@param message Additional information related to the event.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Time stamp indicating when this event occurred. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "EventTime", "c2jName" : "EventTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "eventTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time stamp indicating when this event occurred. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "eventTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "EventTime", "marshallLocationName" : "EventTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time stamp indicating when this event occurred. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param eventTime Time stamp indicating when this event occurred. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

Time stamp indicating when this event occurred. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return Time stamp indicating when this event occurred. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

Time stamp indicating when this event occurred. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param eventTime Time stamp indicating when this event occurred. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time stamp indicating when this event occurred. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param eventTime Time stamp indicating when this event occurred. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "event", "variableType" : "Event", "variableDeclarationType" : "Event", "documentation" : null, "simpleType" : "Event", "variableSetterType" : "Event" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Message" : { "documentation" : "

Additional information related to the event.

", "name" : "Message", "c2jName" : "Message", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "message", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Additional information related to the event.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "message", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Message", "marshallLocationName" : "Message", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Additional information related to the event.

\n@param message Additional information related to the event.*/", "getterDocumentation" : "/**

Additional information related to the event.

\n@return Additional information related to the event.*/", "fluentSetterDocumentation" : "/**

Additional information related to the event.

\n@param message Additional information related to the event.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Additional information related to the event.

\n@param message Additional information related to the event.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "ResourceId" : { "documentation" : "

Unique identifier for the resource, such as a fleet ID.

", "name" : "ResourceId", "c2jName" : "ResourceId", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "resourceId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the resource, such as a fleet ID.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "resourceId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ResourceId", "marshallLocationName" : "ResourceId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the resource, such as a fleet ID.

\n@param resourceId Unique identifier for the resource, such as a fleet ID.*/", "getterDocumentation" : "/**

Unique identifier for the resource, such as a fleet ID.

\n@return Unique identifier for the resource, such as a fleet ID.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the resource, such as a fleet ID.

\n@param resourceId Unique identifier for the resource, such as a fleet ID.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the resource, such as a fleet ID.

\n@param resourceId Unique identifier for the resource, such as a fleet ID.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "EventTime" : { "documentation" : "

Time stamp indicating when this event occurred. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "EventTime", "c2jName" : "EventTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "eventTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time stamp indicating when this event occurred. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "eventTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "EventTime", "marshallLocationName" : "EventTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time stamp indicating when this event occurred. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param eventTime Time stamp indicating when this event occurred. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

Time stamp indicating when this event occurred. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return Time stamp indicating when this event occurred. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

Time stamp indicating when this event occurred. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param eventTime Time stamp indicating when this event occurred. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time stamp indicating when this event occurred. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param eventTime Time stamp indicating when this event occurred. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "EventId" : { "documentation" : "

Unique identifier for a fleet event.

", "name" : "EventId", "c2jName" : "EventId", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "eventId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet event.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "eventId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "EventId", "marshallLocationName" : "EventId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet event.

\n@param eventId Unique identifier for a fleet event.*/", "getterDocumentation" : "/**

Unique identifier for a fleet event.

\n@return Unique identifier for a fleet event.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet event.

\n@param eventId Unique identifier for a fleet event.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet event.

\n@param eventId Unique identifier for a fleet event.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "EventCode" : { "documentation" : "

Type of event being logged.

", "name" : "EventCode", "c2jName" : "EventCode", "c2jShape" : "EventCode", "variable" : { "variableName" : "eventCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Type of event being logged.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "eventCode", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "EventCode", "marshallLocationName" : "EventCode", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "EventCode", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Type of event being logged.

\n@param eventCode Type of event being logged.\n@see EventCode*/", "getterDocumentation" : "/**

Type of event being logged.

\n@return Type of event being logged.\n@see EventCode*/", "fluentSetterDocumentation" : "/**

Type of event being logged.

\n@param eventCode Type of event being logged.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EventCode*/", "varargSetterDocumentation" : "/**

Type of event being logged.

\n@param eventCode Type of event being logged.\n@return Returns a reference to this object so that method calls can be chained together.\n@see EventCode*/" } } }, "GameProperty" : { "c2jName" : "GameProperty", "documentation" : "

Set of key-value pairs containing information your game server requires to set up sessions. This object allows you to pass in any set of data needed for your game. For more information, see the Amazon GameLift Developer Guide.

", "shapeName" : "GameProperty", "deprecated" : false, "required" : [ "Key", "Value" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "", "name" : "Key", "c2jName" : "Key", "c2jShape" : "GamePropertyKey", "variable" : { "variableName" : "key", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "key", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Key", "marshallLocationName" : "Key", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param key */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param key \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param key \n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "", "name" : "Value", "c2jName" : "Value", "c2jShape" : "GamePropertyValue", "variable" : { "variableName" : "value", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "value", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Value", "marshallLocationName" : "Value", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param value */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "gameProperty", "variableType" : "GameProperty", "variableDeclarationType" : "GameProperty", "documentation" : null, "simpleType" : "GameProperty", "variableSetterType" : "GameProperty" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Value" : { "documentation" : "", "name" : "Value", "c2jName" : "Value", "c2jShape" : "GamePropertyValue", "variable" : { "variableName" : "value", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "value", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Value", "marshallLocationName" : "Value", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param value */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param value \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Key" : { "documentation" : "", "name" : "Key", "c2jName" : "Key", "c2jShape" : "GamePropertyKey", "variable" : { "variableName" : "key", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "key", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Key", "marshallLocationName" : "Key", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param key */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param key \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param key \n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DescribeFleetEventsResult" : { "c2jName" : "DescribeFleetEventsOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "DescribeFleetEventsResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

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

", "name" : "Events", "c2jName" : "Events", "c2jShape" : "EventList", "variable" : { "variableName" : "events", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

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

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "events", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "Events", "marshallLocationName" : "Events", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "Event", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "Event", "variable" : { "variableName" : "member", "variableType" : "Event", "variableDeclarationType" : "Event", "documentation" : "", "simpleType" : "Event", "variableSetterType" : "Event" }, "setterModel" : { "variableName" : "member", "variableType" : "Event", "variableDeclarationType" : "Event", "documentation" : "", "simpleType" : "Event", "variableSetterType" : "Event" }, "getterModel" : { "returnType" : "Event", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "Event", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

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

\n@param events Collection of objects containing event log entries for the specified fleet.*/", "getterDocumentation" : "/**

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

\n@return Collection of objects containing event log entries for the specified fleet.*/", "fluentSetterDocumentation" : "/**

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

\n@param events Collection of objects containing event log entries for the specified fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setEvents(java.util.Collection)} or {@link #withEvents(java.util.Collection)} if you want to override the existing values.

\n@param events Collection of objects containing event log entries for the specified fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeFleetEventsResult", "variableType" : "DescribeFleetEventsResult", "variableDeclarationType" : "DescribeFleetEventsResult", "documentation" : null, "simpleType" : "DescribeFleetEventsResult", "variableSetterType" : "DescribeFleetEventsResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NextToken" : { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Events" : { "documentation" : "

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

", "name" : "Events", "c2jName" : "Events", "c2jShape" : "EventList", "variable" : { "variableName" : "events", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

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

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "events", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "Events", "marshallLocationName" : "Events", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "Event", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "Event", "variable" : { "variableName" : "member", "variableType" : "Event", "variableDeclarationType" : "Event", "documentation" : "", "simpleType" : "Event", "variableSetterType" : "Event" }, "setterModel" : { "variableName" : "member", "variableType" : "Event", "variableDeclarationType" : "Event", "documentation" : "", "simpleType" : "Event", "variableSetterType" : "Event" }, "getterModel" : { "returnType" : "Event", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "Event", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

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

\n@param events Collection of objects containing event log entries for the specified fleet.*/", "getterDocumentation" : "/**

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

\n@return Collection of objects containing event log entries for the specified fleet.*/", "fluentSetterDocumentation" : "/**

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

\n@param events Collection of objects containing event log entries for the specified fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setEvents(java.util.Collection)} or {@link #withEvents(java.util.Collection)} if you want to override the existing values.

\n@param events Collection of objects containing event log entries for the specified fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "ListAliasesResult" : { "c2jName" : "ListAliasesOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "ListAliasesResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Collection of alias records that match the list request.

", "name" : "Aliases", "c2jName" : "Aliases", "c2jShape" : "AliasList", "variable" : { "variableName" : "aliases", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Collection of alias records that match the list request.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "aliases", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "Aliases", "marshallLocationName" : "Aliases", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "Alias", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "Alias", "variable" : { "variableName" : "member", "variableType" : "Alias", "variableDeclarationType" : "Alias", "documentation" : "", "simpleType" : "Alias", "variableSetterType" : "Alias" }, "setterModel" : { "variableName" : "member", "variableType" : "Alias", "variableDeclarationType" : "Alias", "documentation" : "", "simpleType" : "Alias", "variableSetterType" : "Alias" }, "getterModel" : { "returnType" : "Alias", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "Alias", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Collection of alias records that match the list request.

\n@param aliases Collection of alias records that match the list request.*/", "getterDocumentation" : "/**

Collection of alias records that match the list request.

\n@return Collection of alias records that match the list request.*/", "fluentSetterDocumentation" : "/**

Collection of alias records that match the list request.

\n@param aliases Collection of alias records that match the list request.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Collection of alias records that match the list request.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setAliases(java.util.Collection)} or {@link #withAliases(java.util.Collection)} if you want to override the existing values.

\n@param aliases Collection of alias records that match the list request.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "listAliasesResult", "variableType" : "ListAliasesResult", "variableDeclarationType" : "ListAliasesResult", "documentation" : null, "simpleType" : "ListAliasesResult", "variableSetterType" : "ListAliasesResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Aliases" : { "documentation" : "

Collection of alias records that match the list request.

", "name" : "Aliases", "c2jName" : "Aliases", "c2jShape" : "AliasList", "variable" : { "variableName" : "aliases", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Collection of alias records that match the list request.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "aliases", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "Aliases", "marshallLocationName" : "Aliases", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "Alias", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "Alias", "variable" : { "variableName" : "member", "variableType" : "Alias", "variableDeclarationType" : "Alias", "documentation" : "", "simpleType" : "Alias", "variableSetterType" : "Alias" }, "setterModel" : { "variableName" : "member", "variableType" : "Alias", "variableDeclarationType" : "Alias", "documentation" : "", "simpleType" : "Alias", "variableSetterType" : "Alias" }, "getterModel" : { "returnType" : "Alias", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "Alias", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Collection of alias records that match the list request.

\n@param aliases Collection of alias records that match the list request.*/", "getterDocumentation" : "/**

Collection of alias records that match the list request.

\n@return Collection of alias records that match the list request.*/", "fluentSetterDocumentation" : "/**

Collection of alias records that match the list request.

\n@param aliases Collection of alias records that match the list request.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Collection of alias records that match the list request.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setAliases(java.util.Collection)} or {@link #withAliases(java.util.Collection)} if you want to override the existing values.

\n@param aliases Collection of alias records that match the list request.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "NextToken" : { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "UpdateFleetCapacityRequest" : { "c2jName" : "UpdateFleetCapacityInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "UpdateFleetCapacityRequest", "deprecated" : false, "required" : [ "FleetId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for the fleet you want to update capacity for.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the fleet you want to update capacity for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the fleet you want to update capacity for.

\n@param fleetId Unique identifier for the fleet you want to update capacity for.*/", "getterDocumentation" : "/**

Unique identifier for the fleet you want to update capacity for.

\n@return Unique identifier for the fleet you want to update capacity for.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the fleet you want to update capacity for.

\n@param fleetId Unique identifier for the fleet you want to update capacity for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the fleet you want to update capacity for.

\n@param fleetId Unique identifier for the fleet you want to update capacity for.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Number of EC2 instances you want this fleet to host.

", "name" : "DesiredInstances", "c2jName" : "DesiredInstances", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "desiredInstances", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Number of EC2 instances you want this fleet to host.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "desiredInstances", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "DesiredInstances", "marshallLocationName" : "DesiredInstances", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Number of EC2 instances you want this fleet to host.

\n@param desiredInstances Number of EC2 instances you want this fleet to host.*/", "getterDocumentation" : "/**

Number of EC2 instances you want this fleet to host.

\n@return Number of EC2 instances you want this fleet to host.*/", "fluentSetterDocumentation" : "/**

Number of EC2 instances you want this fleet to host.

\n@param desiredInstances Number of EC2 instances you want this fleet to host.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Number of EC2 instances you want this fleet to host.

\n@param desiredInstances Number of EC2 instances you want this fleet to host.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Minimum value allowed for the fleet's instance count. Default if not set is 0.

", "name" : "MinSize", "c2jName" : "MinSize", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "minSize", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Minimum value allowed for the fleet's instance count. Default if not set is 0.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "minSize", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MinSize", "marshallLocationName" : "MinSize", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Minimum value allowed for the fleet's instance count. Default if not set is 0.

\n@param minSize Minimum value allowed for the fleet's instance count. Default if not set is 0.*/", "getterDocumentation" : "/**

Minimum value allowed for the fleet's instance count. Default if not set is 0.

\n@return Minimum value allowed for the fleet's instance count. Default if not set is 0.*/", "fluentSetterDocumentation" : "/**

Minimum value allowed for the fleet's instance count. Default if not set is 0.

\n@param minSize Minimum value allowed for the fleet's instance count. Default if not set is 0.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Minimum value allowed for the fleet's instance count. Default if not set is 0.

\n@param minSize Minimum value allowed for the fleet's instance count. Default if not set is 0.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Maximum value allowed for the fleet's instance count. Default if not set is 1.

", "name" : "MaxSize", "c2jName" : "MaxSize", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "maxSize", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Maximum value allowed for the fleet's instance count. Default if not set is 1.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "maxSize", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MaxSize", "marshallLocationName" : "MaxSize", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Maximum value allowed for the fleet's instance count. Default if not set is 1.

\n@param maxSize Maximum value allowed for the fleet's instance count. Default if not set is 1.*/", "getterDocumentation" : "/**

Maximum value allowed for the fleet's instance count. Default if not set is 1.

\n@return Maximum value allowed for the fleet's instance count. Default if not set is 1.*/", "fluentSetterDocumentation" : "/**

Maximum value allowed for the fleet's instance count. Default if not set is 1.

\n@param maxSize Maximum value allowed for the fleet's instance count. Default if not set is 1.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Maximum value allowed for the fleet's instance count. Default if not set is 1.

\n@param maxSize Maximum value allowed for the fleet's instance count. Default if not set is 1.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "updateFleetCapacityRequest", "variableType" : "UpdateFleetCapacityRequest", "variableDeclarationType" : "UpdateFleetCapacityRequest", "documentation" : null, "simpleType" : "UpdateFleetCapacityRequest", "variableSetterType" : "UpdateFleetCapacityRequest" }, "marshaller" : { "action" : "UpdateFleetCapacity", "verb" : "POST", "target" : "GameLift.UpdateFleetCapacity", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "DesiredInstances" : { "documentation" : "

Number of EC2 instances you want this fleet to host.

", "name" : "DesiredInstances", "c2jName" : "DesiredInstances", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "desiredInstances", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Number of EC2 instances you want this fleet to host.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "desiredInstances", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "DesiredInstances", "marshallLocationName" : "DesiredInstances", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Number of EC2 instances you want this fleet to host.

\n@param desiredInstances Number of EC2 instances you want this fleet to host.*/", "getterDocumentation" : "/**

Number of EC2 instances you want this fleet to host.

\n@return Number of EC2 instances you want this fleet to host.*/", "fluentSetterDocumentation" : "/**

Number of EC2 instances you want this fleet to host.

\n@param desiredInstances Number of EC2 instances you want this fleet to host.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Number of EC2 instances you want this fleet to host.

\n@param desiredInstances Number of EC2 instances you want this fleet to host.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FleetId" : { "documentation" : "

Unique identifier for the fleet you want to update capacity for.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the fleet you want to update capacity for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the fleet you want to update capacity for.

\n@param fleetId Unique identifier for the fleet you want to update capacity for.*/", "getterDocumentation" : "/**

Unique identifier for the fleet you want to update capacity for.

\n@return Unique identifier for the fleet you want to update capacity for.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the fleet you want to update capacity for.

\n@param fleetId Unique identifier for the fleet you want to update capacity for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the fleet you want to update capacity for.

\n@param fleetId Unique identifier for the fleet you want to update capacity for.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "MaxSize" : { "documentation" : "

Maximum value allowed for the fleet's instance count. Default if not set is 1.

", "name" : "MaxSize", "c2jName" : "MaxSize", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "maxSize", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Maximum value allowed for the fleet's instance count. Default if not set is 1.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "maxSize", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MaxSize", "marshallLocationName" : "MaxSize", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Maximum value allowed for the fleet's instance count. Default if not set is 1.

\n@param maxSize Maximum value allowed for the fleet's instance count. Default if not set is 1.*/", "getterDocumentation" : "/**

Maximum value allowed for the fleet's instance count. Default if not set is 1.

\n@return Maximum value allowed for the fleet's instance count. Default if not set is 1.*/", "fluentSetterDocumentation" : "/**

Maximum value allowed for the fleet's instance count. Default if not set is 1.

\n@param maxSize Maximum value allowed for the fleet's instance count. Default if not set is 1.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Maximum value allowed for the fleet's instance count. Default if not set is 1.

\n@param maxSize Maximum value allowed for the fleet's instance count. Default if not set is 1.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "MinSize" : { "documentation" : "

Minimum value allowed for the fleet's instance count. Default if not set is 0.

", "name" : "MinSize", "c2jName" : "MinSize", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "minSize", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Minimum value allowed for the fleet's instance count. Default if not set is 0.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "minSize", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MinSize", "marshallLocationName" : "MinSize", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Minimum value allowed for the fleet's instance count. Default if not set is 0.

\n@param minSize Minimum value allowed for the fleet's instance count. Default if not set is 0.*/", "getterDocumentation" : "/**

Minimum value allowed for the fleet's instance count. Default if not set is 0.

\n@return Minimum value allowed for the fleet's instance count. Default if not set is 0.*/", "fluentSetterDocumentation" : "/**

Minimum value allowed for the fleet's instance count. Default if not set is 0.

\n@param minSize Minimum value allowed for the fleet's instance count. Default if not set is 0.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Minimum value allowed for the fleet's instance count. Default if not set is 0.

\n@param minSize Minimum value allowed for the fleet's instance count. Default if not set is 0.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "CreatePlayerSessionsRequest" : { "c2jName" : "CreatePlayerSessionsInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "CreatePlayerSessionsRequest", "deprecated" : false, "required" : [ "GameSessionId", "PlayerIds" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for a game session.

", "name" : "GameSessionId", "c2jName" : "GameSessionId", "c2jShape" : "GameSessionId", "variable" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a game session.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessionId", "marshallLocationName" : "GameSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.*/", "getterDocumentation" : "/**

Unique identifier for a game session.

\n@return Unique identifier for a game session.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

List of unique identifiers for the players to be added.

", "name" : "PlayerIds", "c2jName" : "PlayerIds", "c2jShape" : "PlayerIdList", "variable" : { "variableName" : "playerIds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

List of unique identifiers for the players to be added.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "playerIds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerIds", "marshallLocationName" : "PlayerIds", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

List of unique identifiers for the players to be added.

\n@param playerIds List of unique identifiers for the players to be added.*/", "getterDocumentation" : "/**

List of unique identifiers for the players to be added.

\n@return List of unique identifiers for the players to be added.*/", "fluentSetterDocumentation" : "/**

List of unique identifiers for the players to be added.

\n@param playerIds List of unique identifiers for the players to be added.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

List of unique identifiers for the players to be added.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setPlayerIds(java.util.Collection)} or {@link #withPlayerIds(java.util.Collection)} if you want to override the existing values.

\n@param playerIds List of unique identifiers for the players to be added.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "createPlayerSessionsRequest", "variableType" : "CreatePlayerSessionsRequest", "variableDeclarationType" : "CreatePlayerSessionsRequest", "documentation" : null, "simpleType" : "CreatePlayerSessionsRequest", "variableSetterType" : "CreatePlayerSessionsRequest" }, "marshaller" : { "action" : "CreatePlayerSessions", "verb" : "POST", "target" : "GameLift.CreatePlayerSessions", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "PlayerIds" : { "documentation" : "

List of unique identifiers for the players to be added.

", "name" : "PlayerIds", "c2jName" : "PlayerIds", "c2jShape" : "PlayerIdList", "variable" : { "variableName" : "playerIds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

List of unique identifiers for the players to be added.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "playerIds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerIds", "marshallLocationName" : "PlayerIds", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

List of unique identifiers for the players to be added.

\n@param playerIds List of unique identifiers for the players to be added.*/", "getterDocumentation" : "/**

List of unique identifiers for the players to be added.

\n@return List of unique identifiers for the players to be added.*/", "fluentSetterDocumentation" : "/**

List of unique identifiers for the players to be added.

\n@param playerIds List of unique identifiers for the players to be added.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

List of unique identifiers for the players to be added.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setPlayerIds(java.util.Collection)} or {@link #withPlayerIds(java.util.Collection)} if you want to override the existing values.

\n@param playerIds List of unique identifiers for the players to be added.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "GameSessionId" : { "documentation" : "

Unique identifier for a game session.

", "name" : "GameSessionId", "c2jName" : "GameSessionId", "c2jShape" : "GameSessionId", "variable" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a game session.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessionId", "marshallLocationName" : "GameSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.*/", "getterDocumentation" : "/**

Unique identifier for a game session.

\n@return Unique identifier for a game session.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a game session.

\n@param gameSessionId Unique identifier for a game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "ResolveAliasRequest" : { "c2jName" : "ResolveAliasInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "ResolveAliasRequest", "deprecated" : false, "required" : [ "AliasId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for the alias you want to resolve.

", "name" : "AliasId", "c2jName" : "AliasId", "c2jShape" : "AliasId", "variable" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the alias you want to resolve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "AliasId", "marshallLocationName" : "AliasId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the alias you want to resolve.

\n@param aliasId Unique identifier for the alias you want to resolve.*/", "getterDocumentation" : "/**

Unique identifier for the alias you want to resolve.

\n@return Unique identifier for the alias you want to resolve.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the alias you want to resolve.

\n@param aliasId Unique identifier for the alias you want to resolve.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the alias you want to resolve.

\n@param aliasId Unique identifier for the alias you want to resolve.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "resolveAliasRequest", "variableType" : "ResolveAliasRequest", "variableDeclarationType" : "ResolveAliasRequest", "documentation" : null, "simpleType" : "ResolveAliasRequest", "variableSetterType" : "ResolveAliasRequest" }, "marshaller" : { "action" : "ResolveAlias", "verb" : "POST", "target" : "GameLift.ResolveAlias", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "AliasId" : { "documentation" : "

Unique identifier for the alias you want to resolve.

", "name" : "AliasId", "c2jName" : "AliasId", "c2jShape" : "AliasId", "variable" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the alias you want to resolve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "AliasId", "marshallLocationName" : "AliasId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the alias you want to resolve.

\n@param aliasId Unique identifier for the alias you want to resolve.*/", "getterDocumentation" : "/**

Unique identifier for the alias you want to resolve.

\n@return Unique identifier for the alias you want to resolve.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the alias you want to resolve.

\n@param aliasId Unique identifier for the alias you want to resolve.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the alias you want to resolve.

\n@param aliasId Unique identifier for the alias you want to resolve.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DeleteScalingPolicyResult" : { "c2jName" : "DeleteScalingPolicyResult", "documentation" : null, "shapeName" : "DeleteScalingPolicyResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "deleteScalingPolicyResult", "variableType" : "DeleteScalingPolicyResult", "variableDeclarationType" : "DeleteScalingPolicyResult", "documentation" : null, "simpleType" : "DeleteScalingPolicyResult", "variableSetterType" : "DeleteScalingPolicyResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "GameSessionFullException" : { "c2jName" : "GameSessionFullException", "documentation" : "

The game instance is currently full and cannot allow the requested player(s) to join. This exception occurs in response to a CreatePlayerSession request.

", "shapeName" : "GameSessionFullException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ ], "enums" : null, "variable" : { "variableName" : "gameSessionFullException", "variableType" : "GameSessionFullException", "variableDeclarationType" : "GameSessionFullException", "documentation" : null, "simpleType" : "GameSessionFullException", "variableSetterType" : "GameSessionFullException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "GameSessionFullException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "InvalidFleetStatusException" : { "c2jName" : "InvalidFleetStatusException", "documentation" : "

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

", "shapeName" : "InvalidFleetStatusException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ ], "enums" : null, "variable" : { "variableName" : "invalidFleetStatusException", "variableType" : "InvalidFleetStatusException", "variableDeclarationType" : "InvalidFleetStatusException", "documentation" : null, "simpleType" : "InvalidFleetStatusException", "variableSetterType" : "InvalidFleetStatusException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "InvalidFleetStatusException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "DescribeFleetCapacityResult" : { "c2jName" : "DescribeFleetCapacityOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "DescribeFleetCapacityResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

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

", "name" : "FleetCapacity", "c2jName" : "FleetCapacity", "c2jShape" : "FleetCapacityList", "variable" : { "variableName" : "fleetCapacity", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

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

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "fleetCapacity", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetCapacity", "marshallLocationName" : "FleetCapacity", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "FleetCapacity", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "FleetCapacity", "variable" : { "variableName" : "member", "variableType" : "FleetCapacity", "variableDeclarationType" : "FleetCapacity", "documentation" : "", "simpleType" : "FleetCapacity", "variableSetterType" : "FleetCapacity" }, "setterModel" : { "variableName" : "member", "variableType" : "FleetCapacity", "variableDeclarationType" : "FleetCapacity", "documentation" : "", "simpleType" : "FleetCapacity", "variableSetterType" : "FleetCapacity" }, "getterModel" : { "returnType" : "FleetCapacity", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "FleetCapacity", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

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

\n@param fleetCapacity Collection of objects containing capacity information for each requested fleet ID. Leave this parameter empty to retrieve capacity information for all fleets.*/", "getterDocumentation" : "/**

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

\n@return Collection of objects containing capacity information for each requested fleet ID. Leave this parameter empty to retrieve capacity information for all fleets.*/", "fluentSetterDocumentation" : "/**

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

\n@param fleetCapacity Collection of objects containing capacity information for each requested fleet ID. Leave this parameter empty to retrieve capacity information for all fleets.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setFleetCapacity(java.util.Collection)} or {@link #withFleetCapacity(java.util.Collection)} if you want to override the existing values.

\n@param fleetCapacity Collection of objects containing capacity information for each requested fleet ID. Leave this parameter empty to retrieve capacity information for all fleets.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeFleetCapacityResult", "variableType" : "DescribeFleetCapacityResult", "variableDeclarationType" : "DescribeFleetCapacityResult", "documentation" : null, "simpleType" : "DescribeFleetCapacityResult", "variableSetterType" : "DescribeFleetCapacityResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NextToken" : { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FleetCapacity" : { "documentation" : "

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

", "name" : "FleetCapacity", "c2jName" : "FleetCapacity", "c2jShape" : "FleetCapacityList", "variable" : { "variableName" : "fleetCapacity", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

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

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "fleetCapacity", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetCapacity", "marshallLocationName" : "FleetCapacity", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "FleetCapacity", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "FleetCapacity", "variable" : { "variableName" : "member", "variableType" : "FleetCapacity", "variableDeclarationType" : "FleetCapacity", "documentation" : "", "simpleType" : "FleetCapacity", "variableSetterType" : "FleetCapacity" }, "setterModel" : { "variableName" : "member", "variableType" : "FleetCapacity", "variableDeclarationType" : "FleetCapacity", "documentation" : "", "simpleType" : "FleetCapacity", "variableSetterType" : "FleetCapacity" }, "getterModel" : { "returnType" : "FleetCapacity", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "FleetCapacity", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

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

\n@param fleetCapacity Collection of objects containing capacity information for each requested fleet ID. Leave this parameter empty to retrieve capacity information for all fleets.*/", "getterDocumentation" : "/**

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

\n@return Collection of objects containing capacity information for each requested fleet ID. Leave this parameter empty to retrieve capacity information for all fleets.*/", "fluentSetterDocumentation" : "/**

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

\n@param fleetCapacity Collection of objects containing capacity information for each requested fleet ID. Leave this parameter empty to retrieve capacity information for all fleets.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setFleetCapacity(java.util.Collection)} or {@link #withFleetCapacity(java.util.Collection)} if you want to override the existing values.

\n@param fleetCapacity Collection of objects containing capacity information for each requested fleet ID. Leave this parameter empty to retrieve capacity information for all fleets.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "UpdateFleetAttributesRequest" : { "c2jName" : "UpdateFleetAttributesInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "UpdateFleetAttributesRequest", "deprecated" : false, "required" : [ "FleetId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for the fleet you want to update attribute metadata for.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the fleet you want to update attribute metadata for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the fleet you want to update attribute metadata for.

\n@param fleetId Unique identifier for the fleet you want to update attribute metadata for.*/", "getterDocumentation" : "/**

Unique identifier for the fleet you want to update attribute metadata for.

\n@return Unique identifier for the fleet you want to update attribute metadata for.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the fleet you want to update attribute metadata for.

\n@param fleetId Unique identifier for the fleet you want to update attribute metadata for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the fleet you want to update attribute metadata for.

\n@param fleetId Unique identifier for the fleet you want to update attribute metadata for.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Descriptive label associated with this fleet. Fleet names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this fleet. Fleet names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@param name Descriptive label associated with this fleet. Fleet names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@return Descriptive label associated with this fleet. Fleet names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@param name Descriptive label associated with this fleet. Fleet names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@param name Descriptive label associated with this fleet. Fleet names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Human-readable description of the fleet.

", "name" : "Description", "c2jName" : "Description", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Human-readable description of the fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Description", "marshallLocationName" : "Description", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Human-readable description of the fleet.

\n@param description Human-readable description of the fleet.*/", "getterDocumentation" : "/**

Human-readable description of the fleet.

\n@return Human-readable description of the fleet.*/", "fluentSetterDocumentation" : "/**

Human-readable description of the fleet.

\n@param description Human-readable description of the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Human-readable description of the fleet.

\n@param description Human-readable description of the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Game session protection policy to apply to all new instances created in this fleet. Instances that already exist will not be affected. You can set protection for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

", "name" : "NewGameSessionProtectionPolicy", "c2jName" : "NewGameSessionProtectionPolicy", "c2jShape" : "ProtectionPolicy", "variable" : { "variableName" : "newGameSessionProtectionPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Game session protection policy to apply to all new instances created in this fleet. Instances that already exist will not be affected. You can set protection for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "newGameSessionProtectionPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NewGameSessionProtectionPolicy", "marshallLocationName" : "NewGameSessionProtectionPolicy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ProtectionPolicy", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Game session protection policy to apply to all new instances created in this fleet. Instances that already exist will not be affected. You can set protection for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param newGameSessionProtectionPolicy Game session protection policy to apply to all new instances created in this fleet. Instances that already exist will not be affected. You can set protection for individual instances using UpdateGameSession.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@see ProtectionPolicy*/", "getterDocumentation" : "/**

Game session protection policy to apply to all new instances created in this fleet. Instances that already exist will not be affected. You can set protection for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@return Game session protection policy to apply to all new instances created in this fleet. Instances that already exist will not be affected. You can set protection for individual instances using UpdateGameSession.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@see ProtectionPolicy*/", "fluentSetterDocumentation" : "/**

Game session protection policy to apply to all new instances created in this fleet. Instances that already exist will not be affected. You can set protection for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param newGameSessionProtectionPolicy Game session protection policy to apply to all new instances created in this fleet. Instances that already exist will not be affected. You can set protection for individual instances using UpdateGameSession.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ProtectionPolicy*/", "varargSetterDocumentation" : "/**

Game session protection policy to apply to all new instances created in this fleet. Instances that already exist will not be affected. You can set protection for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param newGameSessionProtectionPolicy Game session protection policy to apply to all new instances created in this fleet. Instances that already exist will not be affected. You can set protection for individual instances using UpdateGameSession.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ProtectionPolicy*/" } ], "enums" : null, "variable" : { "variableName" : "updateFleetAttributesRequest", "variableType" : "UpdateFleetAttributesRequest", "variableDeclarationType" : "UpdateFleetAttributesRequest", "documentation" : null, "simpleType" : "UpdateFleetAttributesRequest", "variableSetterType" : "UpdateFleetAttributesRequest" }, "marshaller" : { "action" : "UpdateFleetAttributes", "verb" : "POST", "target" : "GameLift.UpdateFleetAttributes", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Name" : { "documentation" : "

Descriptive label associated with this fleet. Fleet names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this fleet. Fleet names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@param name Descriptive label associated with this fleet. Fleet names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@return Descriptive label associated with this fleet. Fleet names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@param name Descriptive label associated with this fleet. Fleet names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this fleet. Fleet names do not need to be unique.

\n@param name Descriptive label associated with this fleet. Fleet names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Description" : { "documentation" : "

Human-readable description of the fleet.

", "name" : "Description", "c2jName" : "Description", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Human-readable description of the fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Description", "marshallLocationName" : "Description", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Human-readable description of the fleet.

\n@param description Human-readable description of the fleet.*/", "getterDocumentation" : "/**

Human-readable description of the fleet.

\n@return Human-readable description of the fleet.*/", "fluentSetterDocumentation" : "/**

Human-readable description of the fleet.

\n@param description Human-readable description of the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Human-readable description of the fleet.

\n@param description Human-readable description of the fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FleetId" : { "documentation" : "

Unique identifier for the fleet you want to update attribute metadata for.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the fleet you want to update attribute metadata for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the fleet you want to update attribute metadata for.

\n@param fleetId Unique identifier for the fleet you want to update attribute metadata for.*/", "getterDocumentation" : "/**

Unique identifier for the fleet you want to update attribute metadata for.

\n@return Unique identifier for the fleet you want to update attribute metadata for.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the fleet you want to update attribute metadata for.

\n@param fleetId Unique identifier for the fleet you want to update attribute metadata for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the fleet you want to update attribute metadata for.

\n@param fleetId Unique identifier for the fleet you want to update attribute metadata for.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "NewGameSessionProtectionPolicy" : { "documentation" : "

Game session protection policy to apply to all new instances created in this fleet. Instances that already exist will not be affected. You can set protection for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

", "name" : "NewGameSessionProtectionPolicy", "c2jName" : "NewGameSessionProtectionPolicy", "c2jShape" : "ProtectionPolicy", "variable" : { "variableName" : "newGameSessionProtectionPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Game session protection policy to apply to all new instances created in this fleet. Instances that already exist will not be affected. You can set protection for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "newGameSessionProtectionPolicy", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NewGameSessionProtectionPolicy", "marshallLocationName" : "NewGameSessionProtectionPolicy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ProtectionPolicy", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Game session protection policy to apply to all new instances created in this fleet. Instances that already exist will not be affected. You can set protection for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param newGameSessionProtectionPolicy Game session protection policy to apply to all new instances created in this fleet. Instances that already exist will not be affected. You can set protection for individual instances using UpdateGameSession.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@see ProtectionPolicy*/", "getterDocumentation" : "/**

Game session protection policy to apply to all new instances created in this fleet. Instances that already exist will not be affected. You can set protection for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@return Game session protection policy to apply to all new instances created in this fleet. Instances that already exist will not be affected. You can set protection for individual instances using UpdateGameSession.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@see ProtectionPolicy*/", "fluentSetterDocumentation" : "/**

Game session protection policy to apply to all new instances created in this fleet. Instances that already exist will not be affected. You can set protection for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param newGameSessionProtectionPolicy Game session protection policy to apply to all new instances created in this fleet. Instances that already exist will not be affected. You can set protection for individual instances using UpdateGameSession.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ProtectionPolicy*/", "varargSetterDocumentation" : "/**

Game session protection policy to apply to all new instances created in this fleet. Instances that already exist will not be affected. You can set protection for individual instances using UpdateGameSession.

  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

\n@param newGameSessionProtectionPolicy Game session protection policy to apply to all new instances created in this fleet. Instances that already exist will not be affected. You can set protection for individual instances using UpdateGameSession.
  • NoProtection: The game session can be terminated during a scale-down event.
  • FullProtection: If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ProtectionPolicy*/" } } }, "DescribeFleetPortSettingsRequest" : { "c2jName" : "DescribeFleetPortSettingsInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "DescribeFleetPortSettingsRequest", "deprecated" : false, "required" : [ "FleetId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for the fleet you want to retrieve port settings for.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the fleet you want to retrieve port settings for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the fleet you want to retrieve port settings for.

\n@param fleetId Unique identifier for the fleet you want to retrieve port settings for.*/", "getterDocumentation" : "/**

Unique identifier for the fleet you want to retrieve port settings for.

\n@return Unique identifier for the fleet you want to retrieve port settings for.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the fleet you want to retrieve port settings for.

\n@param fleetId Unique identifier for the fleet you want to retrieve port settings for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the fleet you want to retrieve port settings for.

\n@param fleetId Unique identifier for the fleet you want to retrieve port settings for.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeFleetPortSettingsRequest", "variableType" : "DescribeFleetPortSettingsRequest", "variableDeclarationType" : "DescribeFleetPortSettingsRequest", "documentation" : null, "simpleType" : "DescribeFleetPortSettingsRequest", "variableSetterType" : "DescribeFleetPortSettingsRequest" }, "marshaller" : { "action" : "DescribeFleetPortSettings", "verb" : "POST", "target" : "GameLift.DescribeFleetPortSettings", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "FleetId" : { "documentation" : "

Unique identifier for the fleet you want to retrieve port settings for.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the fleet you want to retrieve port settings for.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the fleet you want to retrieve port settings for.

\n@param fleetId Unique identifier for the fleet you want to retrieve port settings for.*/", "getterDocumentation" : "/**

Unique identifier for the fleet you want to retrieve port settings for.

\n@return Unique identifier for the fleet you want to retrieve port settings for.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the fleet you want to retrieve port settings for.

\n@param fleetId Unique identifier for the fleet you want to retrieve port settings for.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the fleet you want to retrieve port settings for.

\n@param fleetId Unique identifier for the fleet you want to retrieve port settings for.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "UpdateAliasResult" : { "c2jName" : "UpdateAliasOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "UpdateAliasResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Object containing the updated alias configuration.

", "name" : "Alias", "c2jName" : "Alias", "c2jShape" : "Alias", "variable" : { "variableName" : "alias", "variableType" : "Alias", "variableDeclarationType" : "Alias", "documentation" : "

Object containing the updated alias configuration.

", "simpleType" : "Alias", "variableSetterType" : "Alias" }, "setterModel" : { "variableName" : "alias", "variableType" : "Alias", "variableDeclarationType" : "Alias", "documentation" : "", "simpleType" : "Alias", "variableSetterType" : "Alias" }, "getterModel" : { "returnType" : "Alias", "documentation" : null }, "http" : { "unmarshallLocationName" : "Alias", "marshallLocationName" : "Alias", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Object containing the updated alias configuration.

\n@param alias Object containing the updated alias configuration.*/", "getterDocumentation" : "/**

Object containing the updated alias configuration.

\n@return Object containing the updated alias configuration.*/", "fluentSetterDocumentation" : "/**

Object containing the updated alias configuration.

\n@param alias Object containing the updated alias configuration.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object containing the updated alias configuration.

\n@param alias Object containing the updated alias configuration.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "updateAliasResult", "variableType" : "UpdateAliasResult", "variableDeclarationType" : "UpdateAliasResult", "documentation" : null, "simpleType" : "UpdateAliasResult", "variableSetterType" : "UpdateAliasResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Alias" : { "documentation" : "

Object containing the updated alias configuration.

", "name" : "Alias", "c2jName" : "Alias", "c2jShape" : "Alias", "variable" : { "variableName" : "alias", "variableType" : "Alias", "variableDeclarationType" : "Alias", "documentation" : "

Object containing the updated alias configuration.

", "simpleType" : "Alias", "variableSetterType" : "Alias" }, "setterModel" : { "variableName" : "alias", "variableType" : "Alias", "variableDeclarationType" : "Alias", "documentation" : "", "simpleType" : "Alias", "variableSetterType" : "Alias" }, "getterModel" : { "returnType" : "Alias", "documentation" : null }, "http" : { "unmarshallLocationName" : "Alias", "marshallLocationName" : "Alias", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Object containing the updated alias configuration.

\n@param alias Object containing the updated alias configuration.*/", "getterDocumentation" : "/**

Object containing the updated alias configuration.

\n@return Object containing the updated alias configuration.*/", "fluentSetterDocumentation" : "/**

Object containing the updated alias configuration.

\n@param alias Object containing the updated alias configuration.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object containing the updated alias configuration.

\n@param alias Object containing the updated alias configuration.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "IpPermission" : { "c2jName" : "IpPermission", "documentation" : "

IP addresses and port settings used to limit access by incoming traffic (players) to a fleet. Permissions specify a range of IP addresses and port settings that must be used to gain access to a game server on a fleet machine.

", "shapeName" : "IpPermission", "deprecated" : false, "required" : [ "FromPort", "ToPort", "IpRange", "Protocol" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Starting value for a range of allowed port numbers.

", "name" : "FromPort", "c2jName" : "FromPort", "c2jShape" : "PortNumber", "variable" : { "variableName" : "fromPort", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Starting value for a range of allowed port numbers.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "fromPort", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "FromPort", "marshallLocationName" : "FromPort", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Starting value for a range of allowed port numbers.

\n@param fromPort Starting value for a range of allowed port numbers.*/", "getterDocumentation" : "/**

Starting value for a range of allowed port numbers.

\n@return Starting value for a range of allowed port numbers.*/", "fluentSetterDocumentation" : "/**

Starting value for a range of allowed port numbers.

\n@param fromPort Starting value for a range of allowed port numbers.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Starting value for a range of allowed port numbers.

\n@param fromPort Starting value for a range of allowed port numbers.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "ToPort", "c2jName" : "ToPort", "c2jShape" : "PortNumber", "variable" : { "variableName" : "toPort", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "toPort", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "ToPort", "marshallLocationName" : "ToPort", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param toPort Ending value for a range of allowed port numbers. Port numbers are end-inclusive. This value must be higher than FromPort.*/", "getterDocumentation" : "/**

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

\n@return Ending value for a range of allowed port numbers. Port numbers are end-inclusive. This value must be higher than FromPort.*/", "fluentSetterDocumentation" : "/**

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

\n@param toPort Ending value for a range of allowed port numbers. Port numbers are end-inclusive. This value must be higher than FromPort.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param toPort Ending value for a range of allowed port numbers. Port numbers are end-inclusive. This value must be higher than FromPort.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "IpRange", "c2jName" : "IpRange", "c2jShape" : "NonBlankString", "variable" : { "variableName" : "ipRange", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "ipRange", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "IpRange", "marshallLocationName" : "IpRange", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

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

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

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

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

\n@param ipRange Range of allowed IP addresses. This value must be expressed in CIDR notation. Example: \"000.000.000.000/[subnet mask]\" or optionally the shortened version \"0.0.0.0/[subnet mask]\".\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param ipRange Range of allowed IP addresses. This value must be expressed in CIDR notation. Example: \"000.000.000.000/[subnet mask]\" or optionally the shortened version \"0.0.0.0/[subnet mask]\".\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Network communication protocol used by the fleet.

", "name" : "Protocol", "c2jName" : "Protocol", "c2jShape" : "IpProtocol", "variable" : { "variableName" : "protocol", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Network communication protocol used by the fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "protocol", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Protocol", "marshallLocationName" : "Protocol", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "IpProtocol", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Network communication protocol used by the fleet.

\n@param protocol Network communication protocol used by the fleet.\n@see IpProtocol*/", "getterDocumentation" : "/**

Network communication protocol used by the fleet.

\n@return Network communication protocol used by the fleet.\n@see IpProtocol*/", "fluentSetterDocumentation" : "/**

Network communication protocol used by the fleet.

\n@param protocol Network communication protocol used by the fleet.\n@return Returns a reference to this object so that method calls can be chained together.\n@see IpProtocol*/", "varargSetterDocumentation" : "/**

Network communication protocol used by the fleet.

\n@param protocol Network communication protocol used by the fleet.\n@return Returns a reference to this object so that method calls can be chained together.\n@see IpProtocol*/" } ], "enums" : null, "variable" : { "variableName" : "ipPermission", "variableType" : "IpPermission", "variableDeclarationType" : "IpPermission", "documentation" : null, "simpleType" : "IpPermission", "variableSetterType" : "IpPermission" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "ToPort" : { "documentation" : "

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

", "name" : "ToPort", "c2jName" : "ToPort", "c2jShape" : "PortNumber", "variable" : { "variableName" : "toPort", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "toPort", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "ToPort", "marshallLocationName" : "ToPort", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param toPort Ending value for a range of allowed port numbers. Port numbers are end-inclusive. This value must be higher than FromPort.*/", "getterDocumentation" : "/**

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

\n@return Ending value for a range of allowed port numbers. Port numbers are end-inclusive. This value must be higher than FromPort.*/", "fluentSetterDocumentation" : "/**

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

\n@param toPort Ending value for a range of allowed port numbers. Port numbers are end-inclusive. This value must be higher than FromPort.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param toPort Ending value for a range of allowed port numbers. Port numbers are end-inclusive. This value must be higher than FromPort.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FromPort" : { "documentation" : "

Starting value for a range of allowed port numbers.

", "name" : "FromPort", "c2jName" : "FromPort", "c2jShape" : "PortNumber", "variable" : { "variableName" : "fromPort", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Starting value for a range of allowed port numbers.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "fromPort", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "FromPort", "marshallLocationName" : "FromPort", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Starting value for a range of allowed port numbers.

\n@param fromPort Starting value for a range of allowed port numbers.*/", "getterDocumentation" : "/**

Starting value for a range of allowed port numbers.

\n@return Starting value for a range of allowed port numbers.*/", "fluentSetterDocumentation" : "/**

Starting value for a range of allowed port numbers.

\n@param fromPort Starting value for a range of allowed port numbers.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Starting value for a range of allowed port numbers.

\n@param fromPort Starting value for a range of allowed port numbers.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Protocol" : { "documentation" : "

Network communication protocol used by the fleet.

", "name" : "Protocol", "c2jName" : "Protocol", "c2jShape" : "IpProtocol", "variable" : { "variableName" : "protocol", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Network communication protocol used by the fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "protocol", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Protocol", "marshallLocationName" : "Protocol", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "IpProtocol", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Network communication protocol used by the fleet.

\n@param protocol Network communication protocol used by the fleet.\n@see IpProtocol*/", "getterDocumentation" : "/**

Network communication protocol used by the fleet.

\n@return Network communication protocol used by the fleet.\n@see IpProtocol*/", "fluentSetterDocumentation" : "/**

Network communication protocol used by the fleet.

\n@param protocol Network communication protocol used by the fleet.\n@return Returns a reference to this object so that method calls can be chained together.\n@see IpProtocol*/", "varargSetterDocumentation" : "/**

Network communication protocol used by the fleet.

\n@param protocol Network communication protocol used by the fleet.\n@return Returns a reference to this object so that method calls can be chained together.\n@see IpProtocol*/" }, "IpRange" : { "documentation" : "

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

", "name" : "IpRange", "c2jName" : "IpRange", "c2jShape" : "NonBlankString", "variable" : { "variableName" : "ipRange", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "ipRange", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "IpRange", "marshallLocationName" : "IpRange", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

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

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

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

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

\n@param ipRange Range of allowed IP addresses. This value must be expressed in CIDR notation. Example: \"000.000.000.000/[subnet mask]\" or optionally the shortened version \"0.0.0.0/[subnet mask]\".\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param ipRange Range of allowed IP addresses. This value must be expressed in CIDR notation. Example: \"000.000.000.000/[subnet mask]\" or optionally the shortened version \"0.0.0.0/[subnet mask]\".\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "ScalingAdjustmentType" : { "c2jName" : "ScalingAdjustmentType", "documentation" : "", "shapeName" : "ScalingAdjustmentType", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : [ { "name" : "ChangeInCapacity", "value" : "ChangeInCapacity" }, { "name" : "ExactCapacity", "value" : "ExactCapacity" }, { "name" : "PercentChangeInCapacity", "value" : "PercentChangeInCapacity" } ], "variable" : { "variableName" : "scalingAdjustmentType", "variableType" : "ScalingAdjustmentType", "variableDeclarationType" : "ScalingAdjustmentType", "documentation" : null, "simpleType" : "ScalingAdjustmentType", "variableSetterType" : "ScalingAdjustmentType" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "DeleteBuildResult" : { "c2jName" : "DeleteBuildResult", "documentation" : null, "shapeName" : "DeleteBuildResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "deleteBuildResult", "variableType" : "DeleteBuildResult", "variableDeclarationType" : "DeleteBuildResult", "documentation" : null, "simpleType" : "DeleteBuildResult", "variableSetterType" : "DeleteBuildResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "UpdateFleetAttributesResult" : { "c2jName" : "UpdateFleetAttributesOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "UpdateFleetAttributesResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for the updated fleet.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the updated fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@param fleetId Unique identifier for the updated fleet.*/", "getterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@return Unique identifier for the updated fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@param fleetId Unique identifier for the updated fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@param fleetId Unique identifier for the updated fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "updateFleetAttributesResult", "variableType" : "UpdateFleetAttributesResult", "variableDeclarationType" : "UpdateFleetAttributesResult", "documentation" : null, "simpleType" : "UpdateFleetAttributesResult", "variableSetterType" : "UpdateFleetAttributesResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "FleetId" : { "documentation" : "

Unique identifier for the updated fleet.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the updated fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@param fleetId Unique identifier for the updated fleet.*/", "getterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@return Unique identifier for the updated fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@param fleetId Unique identifier for the updated fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the updated fleet.

\n@param fleetId Unique identifier for the updated fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DeleteBuildRequest" : { "c2jName" : "DeleteBuildInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "DeleteBuildRequest", "deprecated" : false, "required" : [ "BuildId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for the build you want to delete.

", "name" : "BuildId", "c2jName" : "BuildId", "c2jShape" : "BuildId", "variable" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the build you want to delete.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "BuildId", "marshallLocationName" : "BuildId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the build you want to delete.

\n@param buildId Unique identifier for the build you want to delete.*/", "getterDocumentation" : "/**

Unique identifier for the build you want to delete.

\n@return Unique identifier for the build you want to delete.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the build you want to delete.

\n@param buildId Unique identifier for the build you want to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the build you want to delete.

\n@param buildId Unique identifier for the build you want to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "deleteBuildRequest", "variableType" : "DeleteBuildRequest", "variableDeclarationType" : "DeleteBuildRequest", "documentation" : null, "simpleType" : "DeleteBuildRequest", "variableSetterType" : "DeleteBuildRequest" }, "marshaller" : { "action" : "DeleteBuild", "verb" : "POST", "target" : "GameLift.DeleteBuild", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "BuildId" : { "documentation" : "

Unique identifier for the build you want to delete.

", "name" : "BuildId", "c2jName" : "BuildId", "c2jShape" : "BuildId", "variable" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the build you want to delete.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "BuildId", "marshallLocationName" : "BuildId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the build you want to delete.

\n@param buildId Unique identifier for the build you want to delete.*/", "getterDocumentation" : "/**

Unique identifier for the build you want to delete.

\n@return Unique identifier for the build you want to delete.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the build you want to delete.

\n@param buildId Unique identifier for the build you want to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the build you want to delete.

\n@param buildId Unique identifier for the build you want to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "Credentials" : { "c2jName" : "Credentials", "documentation" : "

AWS access credentials required to upload game build files to Amazon GameLift. These credentials are generated with CreateBuild, and are valid for a limited time. If they expire before you upload your game build, get a new set by calling RequestUploadCredentials.

", "shapeName" : "Credentials", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Access key for an AWS account.

", "name" : "AccessKeyId", "c2jName" : "AccessKeyId", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "accessKeyId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Access key for an AWS account.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "accessKeyId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "AccessKeyId", "marshallLocationName" : "AccessKeyId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Access key for an AWS account.

\n@param accessKeyId Access key for an AWS account.*/", "getterDocumentation" : "/**

Access key for an AWS account.

\n@return Access key for an AWS account.*/", "fluentSetterDocumentation" : "/**

Access key for an AWS account.

\n@param accessKeyId Access key for an AWS account.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Access key for an AWS account.

\n@param accessKeyId Access key for an AWS account.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Secret key for an AWS account.

", "name" : "SecretAccessKey", "c2jName" : "SecretAccessKey", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "secretAccessKey", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Secret key for an AWS account.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "secretAccessKey", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "SecretAccessKey", "marshallLocationName" : "SecretAccessKey", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Secret key for an AWS account.

\n@param secretAccessKey Secret key for an AWS account.*/", "getterDocumentation" : "/**

Secret key for an AWS account.

\n@return Secret key for an AWS account.*/", "fluentSetterDocumentation" : "/**

Secret key for an AWS account.

\n@param secretAccessKey Secret key for an AWS account.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Secret key for an AWS account.

\n@param secretAccessKey Secret key for an AWS account.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Token specific to a build ID.

", "name" : "SessionToken", "c2jName" : "SessionToken", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "sessionToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Token specific to a build ID.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "sessionToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "SessionToken", "marshallLocationName" : "SessionToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Token specific to a build ID.

\n@param sessionToken Token specific to a build ID.*/", "getterDocumentation" : "/**

Token specific to a build ID.

\n@return Token specific to a build ID.*/", "fluentSetterDocumentation" : "/**

Token specific to a build ID.

\n@param sessionToken Token specific to a build ID.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Token specific to a build ID.

\n@param sessionToken Token specific to a build ID.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "credentials", "variableType" : "Credentials", "variableDeclarationType" : "Credentials", "documentation" : null, "simpleType" : "Credentials", "variableSetterType" : "Credentials" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "SecretAccessKey" : { "documentation" : "

Secret key for an AWS account.

", "name" : "SecretAccessKey", "c2jName" : "SecretAccessKey", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "secretAccessKey", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Secret key for an AWS account.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "secretAccessKey", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "SecretAccessKey", "marshallLocationName" : "SecretAccessKey", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Secret key for an AWS account.

\n@param secretAccessKey Secret key for an AWS account.*/", "getterDocumentation" : "/**

Secret key for an AWS account.

\n@return Secret key for an AWS account.*/", "fluentSetterDocumentation" : "/**

Secret key for an AWS account.

\n@param secretAccessKey Secret key for an AWS account.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Secret key for an AWS account.

\n@param secretAccessKey Secret key for an AWS account.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "AccessKeyId" : { "documentation" : "

Access key for an AWS account.

", "name" : "AccessKeyId", "c2jName" : "AccessKeyId", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "accessKeyId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Access key for an AWS account.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "accessKeyId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "AccessKeyId", "marshallLocationName" : "AccessKeyId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Access key for an AWS account.

\n@param accessKeyId Access key for an AWS account.*/", "getterDocumentation" : "/**

Access key for an AWS account.

\n@return Access key for an AWS account.*/", "fluentSetterDocumentation" : "/**

Access key for an AWS account.

\n@param accessKeyId Access key for an AWS account.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Access key for an AWS account.

\n@param accessKeyId Access key for an AWS account.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "SessionToken" : { "documentation" : "

Token specific to a build ID.

", "name" : "SessionToken", "c2jName" : "SessionToken", "c2jShape" : "NonEmptyString", "variable" : { "variableName" : "sessionToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Token specific to a build ID.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "sessionToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "SessionToken", "marshallLocationName" : "SessionToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Token specific to a build ID.

\n@param sessionToken Token specific to a build ID.*/", "getterDocumentation" : "/**

Token specific to a build ID.

\n@return Token specific to a build ID.*/", "fluentSetterDocumentation" : "/**

Token specific to a build ID.

\n@param sessionToken Token specific to a build ID.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Token specific to a build ID.

\n@param sessionToken Token specific to a build ID.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "ListFleetsResult" : { "c2jName" : "ListFleetsOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "ListFleetsResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

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

", "name" : "FleetIds", "c2jName" : "FleetIds", "c2jShape" : "FleetIdList", "variable" : { "variableName" : "fleetIds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

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

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "fleetIds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetIds", "marshallLocationName" : "FleetIds", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "FleetId", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

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

\n@param fleetIds Set of fleet IDs matching the list request. You can retrieve additional information about all returned fleets by passing this result set to a call to DescribeFleetAttributes, DescribeFleetCapacity, and DescribeFleetUtilization.*/", "getterDocumentation" : "/**

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

\n@return Set of fleet IDs matching the list request. You can retrieve additional information about all returned fleets by passing this result set to a call to DescribeFleetAttributes, DescribeFleetCapacity, and DescribeFleetUtilization.*/", "fluentSetterDocumentation" : "/**

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

\n@param fleetIds Set of fleet IDs matching the list request. You can retrieve additional information about all returned fleets by passing this result set to a call to DescribeFleetAttributes, DescribeFleetCapacity, and DescribeFleetUtilization.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setFleetIds(java.util.Collection)} or {@link #withFleetIds(java.util.Collection)} if you want to override the existing values.

\n@param fleetIds Set of fleet IDs matching the list request. You can retrieve additional information about all returned fleets by passing this result set to a call to DescribeFleetAttributes, DescribeFleetCapacity, and DescribeFleetUtilization.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "listFleetsResult", "variableType" : "ListFleetsResult", "variableDeclarationType" : "ListFleetsResult", "documentation" : null, "simpleType" : "ListFleetsResult", "variableSetterType" : "ListFleetsResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NextToken" : { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FleetIds" : { "documentation" : "

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

", "name" : "FleetIds", "c2jName" : "FleetIds", "c2jShape" : "FleetIdList", "variable" : { "variableName" : "fleetIds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

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

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "fleetIds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetIds", "marshallLocationName" : "FleetIds", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "FleetId", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

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

\n@param fleetIds Set of fleet IDs matching the list request. You can retrieve additional information about all returned fleets by passing this result set to a call to DescribeFleetAttributes, DescribeFleetCapacity, and DescribeFleetUtilization.*/", "getterDocumentation" : "/**

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

\n@return Set of fleet IDs matching the list request. You can retrieve additional information about all returned fleets by passing this result set to a call to DescribeFleetAttributes, DescribeFleetCapacity, and DescribeFleetUtilization.*/", "fluentSetterDocumentation" : "/**

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

\n@param fleetIds Set of fleet IDs matching the list request. You can retrieve additional information about all returned fleets by passing this result set to a call to DescribeFleetAttributes, DescribeFleetCapacity, and DescribeFleetUtilization.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setFleetIds(java.util.Collection)} or {@link #withFleetIds(java.util.Collection)} if you want to override the existing values.

\n@param fleetIds Set of fleet IDs matching the list request. You can retrieve additional information about all returned fleets by passing this result set to a call to DescribeFleetAttributes, DescribeFleetCapacity, and DescribeFleetUtilization.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "IpProtocol" : { "c2jName" : "IpProtocol", "documentation" : "", "shapeName" : "IpProtocol", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : [ { "name" : "TCP", "value" : "TCP" }, { "name" : "UDP", "value" : "UDP" } ], "variable" : { "variableName" : "ipProtocol", "variableType" : "IpProtocol", "variableDeclarationType" : "IpProtocol", "documentation" : null, "simpleType" : "IpProtocol", "variableSetterType" : "IpProtocol" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "MetricName" : { "c2jName" : "MetricName", "documentation" : "", "shapeName" : "MetricName", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : [ { "name" : "ActivatingGameSessions", "value" : "ActivatingGameSessions" }, { "name" : "ActiveGameSessions", "value" : "ActiveGameSessions" }, { "name" : "ActiveInstances", "value" : "ActiveInstances" }, { "name" : "AvailablePlayerSessions", "value" : "AvailablePlayerSessions" }, { "name" : "CurrentPlayerSessions", "value" : "CurrentPlayerSessions" }, { "name" : "IdleInstances", "value" : "IdleInstances" } ], "variable" : { "variableName" : "metricName", "variableType" : "MetricName", "variableDeclarationType" : "MetricName", "documentation" : null, "simpleType" : "MetricName", "variableSetterType" : "MetricName" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "RoutingStrategyType" : { "c2jName" : "RoutingStrategyType", "documentation" : "", "shapeName" : "RoutingStrategyType", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : [ { "name" : "SIMPLE", "value" : "SIMPLE" }, { "name" : "TERMINAL", "value" : "TERMINAL" } ], "variable" : { "variableName" : "routingStrategyType", "variableType" : "RoutingStrategyType", "variableDeclarationType" : "RoutingStrategyType", "documentation" : null, "simpleType" : "RoutingStrategyType", "variableSetterType" : "RoutingStrategyType" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "DescribeFleetUtilizationRequest" : { "c2jName" : "DescribeFleetUtilizationInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "DescribeFleetUtilizationRequest", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for the fleet(s) you want to retrieve utilization data for. Leave this parameter empty to retrieve utilization data for all fleets.

", "name" : "FleetIds", "c2jName" : "FleetIds", "c2jShape" : "FleetIdList", "variable" : { "variableName" : "fleetIds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Unique identifier for the fleet(s) you want to retrieve utilization data for. Leave this parameter empty to retrieve utilization data for all fleets.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "fleetIds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetIds", "marshallLocationName" : "FleetIds", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "FleetId", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Unique identifier for the fleet(s) you want to retrieve utilization data for. Leave this parameter empty to retrieve utilization data for all fleets.

\n@param fleetIds Unique identifier for the fleet(s) you want to retrieve utilization data for. Leave this parameter empty to retrieve utilization data for all fleets.*/", "getterDocumentation" : "/**

Unique identifier for the fleet(s) you want to retrieve utilization data for. Leave this parameter empty to retrieve utilization data for all fleets.

\n@return Unique identifier for the fleet(s) you want to retrieve utilization data for. Leave this parameter empty to retrieve utilization data for all fleets.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the fleet(s) you want to retrieve utilization data for. Leave this parameter empty to retrieve utilization data for all fleets.

\n@param fleetIds Unique identifier for the fleet(s) you want to retrieve utilization data for. Leave this parameter empty to retrieve utilization data for all fleets.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the fleet(s) you want to retrieve utilization data for. Leave this parameter empty to retrieve utilization data for all fleets.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setFleetIds(java.util.Collection)} or {@link #withFleetIds(java.util.Collection)} if you want to override the existing values.

\n@param fleetIds Unique identifier for the fleet(s) you want to retrieve utilization data for. Leave this parameter empty to retrieve utilization data for all fleets.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeFleetUtilizationRequest", "variableType" : "DescribeFleetUtilizationRequest", "variableDeclarationType" : "DescribeFleetUtilizationRequest", "documentation" : null, "simpleType" : "DescribeFleetUtilizationRequest", "variableSetterType" : "DescribeFleetUtilizationRequest" }, "marshaller" : { "action" : "DescribeFleetUtilization", "verb" : "POST", "target" : "GameLift.DescribeFleetUtilization", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NextToken" : { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FleetIds" : { "documentation" : "

Unique identifier for the fleet(s) you want to retrieve utilization data for. Leave this parameter empty to retrieve utilization data for all fleets.

", "name" : "FleetIds", "c2jName" : "FleetIds", "c2jShape" : "FleetIdList", "variable" : { "variableName" : "fleetIds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Unique identifier for the fleet(s) you want to retrieve utilization data for. Leave this parameter empty to retrieve utilization data for all fleets.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "fleetIds", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetIds", "marshallLocationName" : "FleetIds", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "String", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "FleetId", "variable" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "member", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : true, "map" : false, "simpleType" : "String", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Unique identifier for the fleet(s) you want to retrieve utilization data for. Leave this parameter empty to retrieve utilization data for all fleets.

\n@param fleetIds Unique identifier for the fleet(s) you want to retrieve utilization data for. Leave this parameter empty to retrieve utilization data for all fleets.*/", "getterDocumentation" : "/**

Unique identifier for the fleet(s) you want to retrieve utilization data for. Leave this parameter empty to retrieve utilization data for all fleets.

\n@return Unique identifier for the fleet(s) you want to retrieve utilization data for. Leave this parameter empty to retrieve utilization data for all fleets.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the fleet(s) you want to retrieve utilization data for. Leave this parameter empty to retrieve utilization data for all fleets.

\n@param fleetIds Unique identifier for the fleet(s) you want to retrieve utilization data for. Leave this parameter empty to retrieve utilization data for all fleets.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the fleet(s) you want to retrieve utilization data for. Leave this parameter empty to retrieve utilization data for all fleets.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setFleetIds(java.util.Collection)} or {@link #withFleetIds(java.util.Collection)} if you want to override the existing values.

\n@param fleetIds Unique identifier for the fleet(s) you want to retrieve utilization data for. Leave this parameter empty to retrieve utilization data for all fleets.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Limit" : { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages. This parameter is ignored when the request specifies one or a list of fleet IDs.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DeleteFleetResult" : { "c2jName" : "DeleteFleetResult", "documentation" : null, "shapeName" : "DeleteFleetResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : null, "enums" : null, "variable" : { "variableName" : "deleteFleetResult", "variableType" : "DeleteFleetResult", "variableDeclarationType" : "DeleteFleetResult", "documentation" : null, "simpleType" : "DeleteFleetResult", "variableSetterType" : "DeleteFleetResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } }, "CreatePlayerSessionRequest" : { "c2jName" : "CreatePlayerSessionInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "CreatePlayerSessionRequest", "deprecated" : false, "required" : [ "GameSessionId", "PlayerId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for a game session. Specify the game session you want to add a player to.

", "name" : "GameSessionId", "c2jName" : "GameSessionId", "c2jShape" : "GameSessionId", "variable" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a game session. Specify the game session you want to add a player to.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessionId", "marshallLocationName" : "GameSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to add a player to.

\n@param gameSessionId Unique identifier for a game session. Specify the game session you want to add a player to.*/", "getterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to add a player to.

\n@return Unique identifier for a game session. Specify the game session you want to add a player to.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to add a player to.

\n@param gameSessionId Unique identifier for a game session. Specify the game session you want to add a player to.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to add a player to.

\n@param gameSessionId Unique identifier for a game session. Specify the game session you want to add a player to.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Unique identifier for the player to be added.

", "name" : "PlayerId", "c2jName" : "PlayerId", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "playerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the player to be added.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "playerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerId", "marshallLocationName" : "PlayerId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the player to be added.

\n@param playerId Unique identifier for the player to be added.*/", "getterDocumentation" : "/**

Unique identifier for the player to be added.

\n@return Unique identifier for the player to be added.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the player to be added.

\n@param playerId Unique identifier for the player to be added.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the player to be added.

\n@param playerId Unique identifier for the player to be added.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "createPlayerSessionRequest", "variableType" : "CreatePlayerSessionRequest", "variableDeclarationType" : "CreatePlayerSessionRequest", "documentation" : null, "simpleType" : "CreatePlayerSessionRequest", "variableSetterType" : "CreatePlayerSessionRequest" }, "marshaller" : { "action" : "CreatePlayerSession", "verb" : "POST", "target" : "GameLift.CreatePlayerSession", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "GameSessionId" : { "documentation" : "

Unique identifier for a game session. Specify the game session you want to add a player to.

", "name" : "GameSessionId", "c2jName" : "GameSessionId", "c2jShape" : "GameSessionId", "variable" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a game session. Specify the game session you want to add a player to.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "gameSessionId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameSessionId", "marshallLocationName" : "GameSessionId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to add a player to.

\n@param gameSessionId Unique identifier for a game session. Specify the game session you want to add a player to.*/", "getterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to add a player to.

\n@return Unique identifier for a game session. Specify the game session you want to add a player to.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to add a player to.

\n@param gameSessionId Unique identifier for a game session. Specify the game session you want to add a player to.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a game session. Specify the game session you want to add a player to.

\n@param gameSessionId Unique identifier for a game session. Specify the game session you want to add a player to.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "PlayerId" : { "documentation" : "

Unique identifier for the player to be added.

", "name" : "PlayerId", "c2jName" : "PlayerId", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "playerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the player to be added.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "playerId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "PlayerId", "marshallLocationName" : "PlayerId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the player to be added.

\n@param playerId Unique identifier for the player to be added.*/", "getterDocumentation" : "/**

Unique identifier for the player to be added.

\n@return Unique identifier for the player to be added.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the player to be added.

\n@param playerId Unique identifier for the player to be added.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the player to be added.

\n@param playerId Unique identifier for the player to be added.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "ListFleetsRequest" : { "c2jName" : "ListFleetsInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "ListFleetsRequest", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

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.

", "name" : "BuildId", "c2jName" : "BuildId", "c2jShape" : "BuildId", "variable" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "BuildId", "marshallLocationName" : "BuildId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param buildId 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param buildId 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param buildId 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "listFleetsRequest", "variableType" : "ListFleetsRequest", "variableDeclarationType" : "ListFleetsRequest", "documentation" : null, "simpleType" : "ListFleetsRequest", "variableSetterType" : "ListFleetsRequest" }, "marshaller" : { "action" : "ListFleets", "verb" : "POST", "target" : "GameLift.ListFleets", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NextToken" : { "documentation" : "

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.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param nextToken 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param nextToken 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "BuildId" : { "documentation" : "

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.

", "name" : "BuildId", "c2jName" : "BuildId", "c2jShape" : "BuildId", "variable" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "BuildId", "marshallLocationName" : "BuildId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

\n@param buildId 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.*/", "getterDocumentation" : "/**

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.

\n@return 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.*/", "fluentSetterDocumentation" : "/**

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.

\n@param buildId 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.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

\n@param buildId 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.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Limit" : { "documentation" : "

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

", "name" : "Limit", "c2jName" : "Limit", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "limit", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "Limit", "marshallLocationName" : "Limit", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.*/", "fluentSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param limit Maximum number of results to return. You can use this parameter with NextToken to get results as a set of sequential pages.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "PutScalingPolicyRequest" : { "c2jName" : "PutScalingPolicyInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "PutScalingPolicyRequest", "deprecated" : false, "required" : [ "Name", "FleetId", "ScalingAdjustment", "ScalingAdjustmentType", "Threshold", "ComparisonOperator", "EvaluationPeriods", "MetricName" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Descriptive label associated with this scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.*/", "getterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.

\n@return Descriptive label associated with this scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Unique identity for the fleet to scale with this policy.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identity for the fleet to scale with this policy.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identity for the fleet to scale with this policy.

\n@param fleetId Unique identity for the fleet to scale with this policy.*/", "getterDocumentation" : "/**

Unique identity for the fleet to scale with this policy.

\n@return Unique identity for the fleet to scale with this policy.*/", "fluentSetterDocumentation" : "/**

Unique identity for the fleet to scale with this policy.

\n@param fleetId Unique identity for the fleet to scale with this policy.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identity for the fleet to scale with this policy.

\n@param fleetId Unique identity for the fleet to scale with this policy.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Amount of adjustment to make, based on the scaling adjustment type.

", "name" : "ScalingAdjustment", "c2jName" : "ScalingAdjustment", "c2jShape" : "Integer", "variable" : { "variableName" : "scalingAdjustment", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Amount of adjustment to make, based on the scaling adjustment type.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "scalingAdjustment", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "ScalingAdjustment", "marshallLocationName" : "ScalingAdjustment", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Amount of adjustment to make, based on the scaling adjustment type.

\n@param scalingAdjustment Amount of adjustment to make, based on the scaling adjustment type.*/", "getterDocumentation" : "/**

Amount of adjustment to make, based on the scaling adjustment type.

\n@return Amount of adjustment to make, based on the scaling adjustment type.*/", "fluentSetterDocumentation" : "/**

Amount of adjustment to make, based on the scaling adjustment type.

\n@param scalingAdjustment Amount of adjustment to make, based on the scaling adjustment type.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Amount of adjustment to make, based on the scaling adjustment type.

\n@param scalingAdjustment Amount of adjustment to make, based on the scaling adjustment type.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: 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%.

", "name" : "ScalingAdjustmentType", "c2jName" : "ScalingAdjustmentType", "c2jShape" : "ScalingAdjustmentType", "variable" : { "variableName" : "scalingAdjustmentType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: 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%.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "scalingAdjustmentType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ScalingAdjustmentType", "marshallLocationName" : "ScalingAdjustmentType", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ScalingAdjustmentType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: 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%.

\n@param scalingAdjustmentType Type of adjustment to make to a fleet's instance count (see FleetCapacity):
  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: 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%.
\n@see ScalingAdjustmentType*/", "getterDocumentation" : "/**

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: 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%.

\n@return Type of adjustment to make to a fleet's instance count (see FleetCapacity):
  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: 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%.
\n@see ScalingAdjustmentType*/", "fluentSetterDocumentation" : "/**

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: 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%.

\n@param scalingAdjustmentType Type of adjustment to make to a fleet's instance count (see FleetCapacity):
  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: 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%.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ScalingAdjustmentType*/", "varargSetterDocumentation" : "/**

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: 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%.

\n@param scalingAdjustmentType Type of adjustment to make to a fleet's instance count (see FleetCapacity):
  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: 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%.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ScalingAdjustmentType*/" }, { "documentation" : "

Metric value used to trigger a scaling event.

", "name" : "Threshold", "c2jName" : "Threshold", "c2jShape" : "Double", "variable" : { "variableName" : "threshold", "variableType" : "Double", "variableDeclarationType" : "Double", "documentation" : "

Metric value used to trigger a scaling event.

", "simpleType" : "Double", "variableSetterType" : "Double" }, "setterModel" : { "variableName" : "threshold", "variableType" : "Double", "variableDeclarationType" : "Double", "documentation" : "", "simpleType" : "Double", "variableSetterType" : "Double" }, "getterModel" : { "returnType" : "Double", "documentation" : null }, "http" : { "unmarshallLocationName" : "Threshold", "marshallLocationName" : "Threshold", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Metric value used to trigger a scaling event.

\n@param threshold Metric value used to trigger a scaling event.*/", "getterDocumentation" : "/**

Metric value used to trigger a scaling event.

\n@return Metric value used to trigger a scaling event.*/", "fluentSetterDocumentation" : "/**

Metric value used to trigger a scaling event.

\n@param threshold Metric value used to trigger a scaling event.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Metric value used to trigger a scaling event.

\n@param threshold Metric value used to trigger a scaling event.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Comparison operator to use when measuring the metric against the threshold value.

", "name" : "ComparisonOperator", "c2jName" : "ComparisonOperator", "c2jShape" : "ComparisonOperatorType", "variable" : { "variableName" : "comparisonOperator", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Comparison operator to use when measuring the metric against the threshold value.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "comparisonOperator", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ComparisonOperator", "marshallLocationName" : "ComparisonOperator", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ComparisonOperatorType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Comparison operator to use when measuring the metric against the threshold value.

\n@param comparisonOperator Comparison operator to use when measuring the metric against the threshold value.\n@see ComparisonOperatorType*/", "getterDocumentation" : "/**

Comparison operator to use when measuring the metric against the threshold value.

\n@return Comparison operator to use when measuring the metric against the threshold value.\n@see ComparisonOperatorType*/", "fluentSetterDocumentation" : "/**

Comparison operator to use when measuring the metric against the threshold value.

\n@param comparisonOperator Comparison operator to use when measuring the metric against the threshold value.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ComparisonOperatorType*/", "varargSetterDocumentation" : "/**

Comparison operator to use when measuring the metric against the threshold value.

\n@param comparisonOperator Comparison operator to use when measuring the metric against the threshold value.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ComparisonOperatorType*/" }, { "documentation" : "

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

", "name" : "EvaluationPeriods", "c2jName" : "EvaluationPeriods", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "evaluationPeriods", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "evaluationPeriods", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "EvaluationPeriods", "marshallLocationName" : "EvaluationPeriods", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

\n@param evaluationPeriods Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.*/", "getterDocumentation" : "/**

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

\n@return Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.*/", "fluentSetterDocumentation" : "/**

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

\n@param evaluationPeriods Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

\n@param evaluationPeriods Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Name of the Service-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

", "name" : "MetricName", "c2jName" : "MetricName", "c2jShape" : "MetricName", "variable" : { "variableName" : "metricName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Name of the Service-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "metricName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "MetricName", "marshallLocationName" : "MetricName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "MetricName", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Name of the Service-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

\n@param metricName Name of the Service-defined metric that is used to trigger an adjustment.
  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.
\n@see MetricName*/", "getterDocumentation" : "/**

Name of the Service-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

\n@return Name of the Service-defined metric that is used to trigger an adjustment.
  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.
\n@see MetricName*/", "fluentSetterDocumentation" : "/**

Name of the Service-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

\n@param metricName Name of the Service-defined metric that is used to trigger an adjustment.
  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricName*/", "varargSetterDocumentation" : "/**

Name of the Service-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

\n@param metricName Name of the Service-defined metric that is used to trigger an adjustment.
  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricName*/" } ], "enums" : null, "variable" : { "variableName" : "putScalingPolicyRequest", "variableType" : "PutScalingPolicyRequest", "variableDeclarationType" : "PutScalingPolicyRequest", "documentation" : null, "simpleType" : "PutScalingPolicyRequest", "variableSetterType" : "PutScalingPolicyRequest" }, "marshaller" : { "action" : "PutScalingPolicy", "verb" : "POST", "target" : "GameLift.PutScalingPolicy", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Name" : { "documentation" : "

Descriptive label associated with this scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.*/", "getterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.

\n@return Descriptive label associated with this scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.

\n@param name Descriptive label associated with this scaling policy. Policy names do not need to be unique. A fleet can have only one scaling policy with the same name.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "MetricName" : { "documentation" : "

Name of the Service-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

", "name" : "MetricName", "c2jName" : "MetricName", "c2jShape" : "MetricName", "variable" : { "variableName" : "metricName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Name of the Service-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "metricName", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "MetricName", "marshallLocationName" : "MetricName", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "MetricName", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Name of the Service-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

\n@param metricName Name of the Service-defined metric that is used to trigger an adjustment.
  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.
\n@see MetricName*/", "getterDocumentation" : "/**

Name of the Service-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

\n@return Name of the Service-defined metric that is used to trigger an adjustment.
  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.
\n@see MetricName*/", "fluentSetterDocumentation" : "/**

Name of the Service-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

\n@param metricName Name of the Service-defined metric that is used to trigger an adjustment.
  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricName*/", "varargSetterDocumentation" : "/**

Name of the Service-defined metric that is used to trigger an adjustment.

  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.

\n@param metricName Name of the Service-defined metric that is used to trigger an adjustment.
  • ActivatingGameSessions: number of game sessions in the process of being created (game session status = ACTIVATING).
  • ActiveGameSessions: number of game sessions currently running (game session status = ACTIVE).
  • CurrentPlayerSessions: number of active or reserved player sessions (player session status = ACTIVE or RESERVED).
  • AvailablePlayerSessions: 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 PlayerSessionCreationPolicy = DENY_ALL).
  • ActiveInstances: number of instances currently running a game session.
  • IdleInstances: number of instances not currently running a game session.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see MetricName*/" }, "Threshold" : { "documentation" : "

Metric value used to trigger a scaling event.

", "name" : "Threshold", "c2jName" : "Threshold", "c2jShape" : "Double", "variable" : { "variableName" : "threshold", "variableType" : "Double", "variableDeclarationType" : "Double", "documentation" : "

Metric value used to trigger a scaling event.

", "simpleType" : "Double", "variableSetterType" : "Double" }, "setterModel" : { "variableName" : "threshold", "variableType" : "Double", "variableDeclarationType" : "Double", "documentation" : "", "simpleType" : "Double", "variableSetterType" : "Double" }, "getterModel" : { "returnType" : "Double", "documentation" : null }, "http" : { "unmarshallLocationName" : "Threshold", "marshallLocationName" : "Threshold", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Metric value used to trigger a scaling event.

\n@param threshold Metric value used to trigger a scaling event.*/", "getterDocumentation" : "/**

Metric value used to trigger a scaling event.

\n@return Metric value used to trigger a scaling event.*/", "fluentSetterDocumentation" : "/**

Metric value used to trigger a scaling event.

\n@param threshold Metric value used to trigger a scaling event.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Metric value used to trigger a scaling event.

\n@param threshold Metric value used to trigger a scaling event.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "EvaluationPeriods" : { "documentation" : "

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

", "name" : "EvaluationPeriods", "c2jName" : "EvaluationPeriods", "c2jShape" : "PositiveInteger", "variable" : { "variableName" : "evaluationPeriods", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "evaluationPeriods", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "EvaluationPeriods", "marshallLocationName" : "EvaluationPeriods", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

\n@param evaluationPeriods Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.*/", "getterDocumentation" : "/**

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

\n@return Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.*/", "fluentSetterDocumentation" : "/**

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

\n@param evaluationPeriods Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.

\n@param evaluationPeriods Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "ScalingAdjustment" : { "documentation" : "

Amount of adjustment to make, based on the scaling adjustment type.

", "name" : "ScalingAdjustment", "c2jName" : "ScalingAdjustment", "c2jShape" : "Integer", "variable" : { "variableName" : "scalingAdjustment", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

Amount of adjustment to make, based on the scaling adjustment type.

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "scalingAdjustment", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "ScalingAdjustment", "marshallLocationName" : "ScalingAdjustment", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Amount of adjustment to make, based on the scaling adjustment type.

\n@param scalingAdjustment Amount of adjustment to make, based on the scaling adjustment type.*/", "getterDocumentation" : "/**

Amount of adjustment to make, based on the scaling adjustment type.

\n@return Amount of adjustment to make, based on the scaling adjustment type.*/", "fluentSetterDocumentation" : "/**

Amount of adjustment to make, based on the scaling adjustment type.

\n@param scalingAdjustment Amount of adjustment to make, based on the scaling adjustment type.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Amount of adjustment to make, based on the scaling adjustment type.

\n@param scalingAdjustment Amount of adjustment to make, based on the scaling adjustment type.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FleetId" : { "documentation" : "

Unique identity for the fleet to scale with this policy.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identity for the fleet to scale with this policy.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identity for the fleet to scale with this policy.

\n@param fleetId Unique identity for the fleet to scale with this policy.*/", "getterDocumentation" : "/**

Unique identity for the fleet to scale with this policy.

\n@return Unique identity for the fleet to scale with this policy.*/", "fluentSetterDocumentation" : "/**

Unique identity for the fleet to scale with this policy.

\n@param fleetId Unique identity for the fleet to scale with this policy.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identity for the fleet to scale with this policy.

\n@param fleetId Unique identity for the fleet to scale with this policy.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "ScalingAdjustmentType" : { "documentation" : "

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: 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%.

", "name" : "ScalingAdjustmentType", "c2jName" : "ScalingAdjustmentType", "c2jShape" : "ScalingAdjustmentType", "variable" : { "variableName" : "scalingAdjustmentType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: 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%.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "scalingAdjustmentType", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ScalingAdjustmentType", "marshallLocationName" : "ScalingAdjustmentType", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ScalingAdjustmentType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: 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%.

\n@param scalingAdjustmentType Type of adjustment to make to a fleet's instance count (see FleetCapacity):
  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: 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%.
\n@see ScalingAdjustmentType*/", "getterDocumentation" : "/**

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: 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%.

\n@return Type of adjustment to make to a fleet's instance count (see FleetCapacity):
  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: 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%.
\n@see ScalingAdjustmentType*/", "fluentSetterDocumentation" : "/**

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: 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%.

\n@param scalingAdjustmentType Type of adjustment to make to a fleet's instance count (see FleetCapacity):
  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: 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%.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ScalingAdjustmentType*/", "varargSetterDocumentation" : "/**

Type of adjustment to make to a fleet's instance count (see FleetCapacity):

  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: 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%.

\n@param scalingAdjustmentType Type of adjustment to make to a fleet's instance count (see FleetCapacity):
  • ChangeInCapacity: add (or subtract) the scaling adjustment value from the current instance count. Positive values scale up while negative values scale down.
  • ExactCapacity: set the instance count to the scaling adjustment value.
  • PercentChangeInCapacity: 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%.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see ScalingAdjustmentType*/" }, "ComparisonOperator" : { "documentation" : "

Comparison operator to use when measuring the metric against the threshold value.

", "name" : "ComparisonOperator", "c2jName" : "ComparisonOperator", "c2jShape" : "ComparisonOperatorType", "variable" : { "variableName" : "comparisonOperator", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Comparison operator to use when measuring the metric against the threshold value.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "comparisonOperator", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "ComparisonOperator", "marshallLocationName" : "ComparisonOperator", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "ComparisonOperatorType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Comparison operator to use when measuring the metric against the threshold value.

\n@param comparisonOperator Comparison operator to use when measuring the metric against the threshold value.\n@see ComparisonOperatorType*/", "getterDocumentation" : "/**

Comparison operator to use when measuring the metric against the threshold value.

\n@return Comparison operator to use when measuring the metric against the threshold value.\n@see ComparisonOperatorType*/", "fluentSetterDocumentation" : "/**

Comparison operator to use when measuring the metric against the threshold value.

\n@param comparisonOperator Comparison operator to use when measuring the metric against the threshold value.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ComparisonOperatorType*/", "varargSetterDocumentation" : "/**

Comparison operator to use when measuring the metric against the threshold value.

\n@param comparisonOperator Comparison operator to use when measuring the metric against the threshold value.\n@return Returns a reference to this object so that method calls can be chained together.\n@see ComparisonOperatorType*/" } } }, "UpdateBuildRequest" : { "c2jName" : "UpdateBuildInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "UpdateBuildRequest", "deprecated" : false, "required" : [ "BuildId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for the build you want to update.

", "name" : "BuildId", "c2jName" : "BuildId", "c2jShape" : "BuildId", "variable" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the build you want to update.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "BuildId", "marshallLocationName" : "BuildId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the build you want to update.

\n@param buildId Unique identifier for the build you want to update.*/", "getterDocumentation" : "/**

Unique identifier for the build you want to update.

\n@return Unique identifier for the build you want to update.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the build you want to update.

\n@param buildId Unique identifier for the build you want to update.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the build you want to update.

\n@param buildId Unique identifier for the build you want to update.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Descriptive label associated with this build. Build names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this build. Build names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this build. Build names do not need to be unique.

\n@param name Descriptive label associated with this build. Build names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this build. Build names do not need to be unique.

\n@return Descriptive label associated with this build. Build names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this build. Build names do not need to be unique.

\n@param name Descriptive label associated with this build. Build names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this build. Build names do not need to be unique.

\n@param name Descriptive label associated with this build. Build names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Version associated with this build. Version strings do not need to be unique to a build.

", "name" : "Version", "c2jName" : "Version", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "version", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Version associated with this build. Version strings do not need to be unique to a build.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "version", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Version", "marshallLocationName" : "Version", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Version associated with this build. Version strings do not need to be unique to a build.

\n@param version Version associated with this build. Version strings do not need to be unique to a build.*/", "getterDocumentation" : "/**

Version associated with this build. Version strings do not need to be unique to a build.

\n@return Version associated with this build. Version strings do not need to be unique to a build.*/", "fluentSetterDocumentation" : "/**

Version associated with this build. Version strings do not need to be unique to a build.

\n@param version Version associated with this build. Version strings do not need to be unique to a build.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Version associated with this build. Version strings do not need to be unique to a build.

\n@param version Version associated with this build. Version strings do not need to be unique to a build.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "updateBuildRequest", "variableType" : "UpdateBuildRequest", "variableDeclarationType" : "UpdateBuildRequest", "documentation" : null, "simpleType" : "UpdateBuildRequest", "variableSetterType" : "UpdateBuildRequest" }, "marshaller" : { "action" : "UpdateBuild", "verb" : "POST", "target" : "GameLift.UpdateBuild", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Name" : { "documentation" : "

Descriptive label associated with this build. Build names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this build. Build names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this build. Build names do not need to be unique.

\n@param name Descriptive label associated with this build. Build names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this build. Build names do not need to be unique.

\n@return Descriptive label associated with this build. Build names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this build. Build names do not need to be unique.

\n@param name Descriptive label associated with this build. Build names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this build. Build names do not need to be unique.

\n@param name Descriptive label associated with this build. Build names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "BuildId" : { "documentation" : "

Unique identifier for the build you want to update.

", "name" : "BuildId", "c2jName" : "BuildId", "c2jShape" : "BuildId", "variable" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the build you want to update.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "buildId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "BuildId", "marshallLocationName" : "BuildId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the build you want to update.

\n@param buildId Unique identifier for the build you want to update.*/", "getterDocumentation" : "/**

Unique identifier for the build you want to update.

\n@return Unique identifier for the build you want to update.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the build you want to update.

\n@param buildId Unique identifier for the build you want to update.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the build you want to update.

\n@param buildId Unique identifier for the build you want to update.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Version" : { "documentation" : "

Version associated with this build. Version strings do not need to be unique to a build.

", "name" : "Version", "c2jName" : "Version", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "version", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Version associated with this build. Version strings do not need to be unique to a build.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "version", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Version", "marshallLocationName" : "Version", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Version associated with this build. Version strings do not need to be unique to a build.

\n@param version Version associated with this build. Version strings do not need to be unique to a build.*/", "getterDocumentation" : "/**

Version associated with this build. Version strings do not need to be unique to a build.

\n@return Version associated with this build. Version strings do not need to be unique to a build.*/", "fluentSetterDocumentation" : "/**

Version associated with this build. Version strings do not need to be unique to a build.

\n@param version Version associated with this build. Version strings do not need to be unique to a build.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Version associated with this build. Version strings do not need to be unique to a build.

\n@param version Version associated with this build. Version strings do not need to be unique to a build.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "CreateAliasRequest" : { "c2jName" : "CreateAliasInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "CreateAliasRequest", "deprecated" : false, "required" : [ "Name", "RoutingStrategy" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Descriptive label associated with this alias. Alias names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this alias. Alias names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@return Descriptive label associated with this alias. Alias names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Human-readable description of the alias.

", "name" : "Description", "c2jName" : "Description", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Human-readable description of the alias.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Description", "marshallLocationName" : "Description", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Human-readable description of the alias.

\n@param description Human-readable description of the alias.*/", "getterDocumentation" : "/**

Human-readable description of the alias.

\n@return Human-readable description of the alias.*/", "fluentSetterDocumentation" : "/**

Human-readable description of the alias.

\n@param description Human-readable description of the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Human-readable description of the alias.

\n@param description Human-readable description of the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Object specifying the fleet and routing type to use for the alias.

", "name" : "RoutingStrategy", "c2jName" : "RoutingStrategy", "c2jShape" : "RoutingStrategy", "variable" : { "variableName" : "routingStrategy", "variableType" : "RoutingStrategy", "variableDeclarationType" : "RoutingStrategy", "documentation" : "

Object specifying the fleet and routing type to use for the alias.

", "simpleType" : "RoutingStrategy", "variableSetterType" : "RoutingStrategy" }, "setterModel" : { "variableName" : "routingStrategy", "variableType" : "RoutingStrategy", "variableDeclarationType" : "RoutingStrategy", "documentation" : "", "simpleType" : "RoutingStrategy", "variableSetterType" : "RoutingStrategy" }, "getterModel" : { "returnType" : "RoutingStrategy", "documentation" : null }, "http" : { "unmarshallLocationName" : "RoutingStrategy", "marshallLocationName" : "RoutingStrategy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Object specifying the fleet and routing type to use for the alias.

\n@param routingStrategy Object specifying the fleet and routing type to use for the alias.*/", "getterDocumentation" : "/**

Object specifying the fleet and routing type to use for the alias.

\n@return Object specifying the fleet and routing type to use for the alias.*/", "fluentSetterDocumentation" : "/**

Object specifying the fleet and routing type to use for the alias.

\n@param routingStrategy Object specifying the fleet and routing type to use for the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object specifying the fleet and routing type to use for the alias.

\n@param routingStrategy Object specifying the fleet and routing type to use for the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "createAliasRequest", "variableType" : "CreateAliasRequest", "variableDeclarationType" : "CreateAliasRequest", "documentation" : null, "simpleType" : "CreateAliasRequest", "variableSetterType" : "CreateAliasRequest" }, "marshaller" : { "action" : "CreateAlias", "verb" : "POST", "target" : "GameLift.CreateAlias", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Name" : { "documentation" : "

Descriptive label associated with this alias. Alias names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this alias. Alias names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@return Descriptive label associated with this alias. Alias names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Description" : { "documentation" : "

Human-readable description of the alias.

", "name" : "Description", "c2jName" : "Description", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Human-readable description of the alias.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Description", "marshallLocationName" : "Description", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Human-readable description of the alias.

\n@param description Human-readable description of the alias.*/", "getterDocumentation" : "/**

Human-readable description of the alias.

\n@return Human-readable description of the alias.*/", "fluentSetterDocumentation" : "/**

Human-readable description of the alias.

\n@param description Human-readable description of the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Human-readable description of the alias.

\n@param description Human-readable description of the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "RoutingStrategy" : { "documentation" : "

Object specifying the fleet and routing type to use for the alias.

", "name" : "RoutingStrategy", "c2jName" : "RoutingStrategy", "c2jShape" : "RoutingStrategy", "variable" : { "variableName" : "routingStrategy", "variableType" : "RoutingStrategy", "variableDeclarationType" : "RoutingStrategy", "documentation" : "

Object specifying the fleet and routing type to use for the alias.

", "simpleType" : "RoutingStrategy", "variableSetterType" : "RoutingStrategy" }, "setterModel" : { "variableName" : "routingStrategy", "variableType" : "RoutingStrategy", "variableDeclarationType" : "RoutingStrategy", "documentation" : "", "simpleType" : "RoutingStrategy", "variableSetterType" : "RoutingStrategy" }, "getterModel" : { "returnType" : "RoutingStrategy", "documentation" : null }, "http" : { "unmarshallLocationName" : "RoutingStrategy", "marshallLocationName" : "RoutingStrategy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Object specifying the fleet and routing type to use for the alias.

\n@param routingStrategy Object specifying the fleet and routing type to use for the alias.*/", "getterDocumentation" : "/**

Object specifying the fleet and routing type to use for the alias.

\n@return Object specifying the fleet and routing type to use for the alias.*/", "fluentSetterDocumentation" : "/**

Object specifying the fleet and routing type to use for the alias.

\n@param routingStrategy Object specifying the fleet and routing type to use for the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object specifying the fleet and routing type to use for the alias.

\n@param routingStrategy Object specifying the fleet and routing type to use for the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DescribeFleetUtilizationResult" : { "c2jName" : "DescribeFleetUtilizationOutput", "documentation" : "

Represents the returned data in response to a request action.

", "shapeName" : "DescribeFleetUtilizationResult", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

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

", "name" : "FleetUtilization", "c2jName" : "FleetUtilization", "c2jShape" : "FleetUtilizationList", "variable" : { "variableName" : "fleetUtilization", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

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

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "fleetUtilization", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetUtilization", "marshallLocationName" : "FleetUtilization", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "FleetUtilization", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "FleetUtilization", "variable" : { "variableName" : "member", "variableType" : "FleetUtilization", "variableDeclarationType" : "FleetUtilization", "documentation" : "", "simpleType" : "FleetUtilization", "variableSetterType" : "FleetUtilization" }, "setterModel" : { "variableName" : "member", "variableType" : "FleetUtilization", "variableDeclarationType" : "FleetUtilization", "documentation" : "", "simpleType" : "FleetUtilization", "variableSetterType" : "FleetUtilization" }, "getterModel" : { "returnType" : "FleetUtilization", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "FleetUtilization", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

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

\n@param fleetUtilization Collection of objects containing utilization information for each requested fleet ID.*/", "getterDocumentation" : "/**

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

\n@return Collection of objects containing utilization information for each requested fleet ID.*/", "fluentSetterDocumentation" : "/**

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

\n@param fleetUtilization Collection of objects containing utilization information for each requested fleet ID.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setFleetUtilization(java.util.Collection)} or {@link #withFleetUtilization(java.util.Collection)} if you want to override the existing values.

\n@param fleetUtilization Collection of objects containing utilization information for each requested fleet ID.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "describeFleetUtilizationResult", "variableType" : "DescribeFleetUtilizationResult", "variableDeclarationType" : "DescribeFleetUtilizationResult", "documentation" : null, "simpleType" : "DescribeFleetUtilizationResult", "variableSetterType" : "DescribeFleetUtilizationResult" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "NextToken" : { "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "name" : "NextToken", "c2jName" : "NextToken", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "nextToken", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "NextToken", "marshallLocationName" : "NextToken", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "getterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

*/", "fluentSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@param nextToken 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.

If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.

\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FleetUtilization" : { "documentation" : "

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

", "name" : "FleetUtilization", "c2jName" : "FleetUtilization", "c2jShape" : "FleetUtilizationList", "variable" : { "variableName" : "fleetUtilization", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

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

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "fleetUtilization", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetUtilization", "marshallLocationName" : "FleetUtilization", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "FleetUtilization", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "FleetUtilization", "variable" : { "variableName" : "member", "variableType" : "FleetUtilization", "variableDeclarationType" : "FleetUtilization", "documentation" : "", "simpleType" : "FleetUtilization", "variableSetterType" : "FleetUtilization" }, "setterModel" : { "variableName" : "member", "variableType" : "FleetUtilization", "variableDeclarationType" : "FleetUtilization", "documentation" : "", "simpleType" : "FleetUtilization", "variableSetterType" : "FleetUtilization" }, "getterModel" : { "returnType" : "FleetUtilization", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "FleetUtilization", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

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

\n@param fleetUtilization Collection of objects containing utilization information for each requested fleet ID.*/", "getterDocumentation" : "/**

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

\n@return Collection of objects containing utilization information for each requested fleet ID.*/", "fluentSetterDocumentation" : "/**

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

\n@param fleetUtilization Collection of objects containing utilization information for each requested fleet ID.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setFleetUtilization(java.util.Collection)} or {@link #withFleetUtilization(java.util.Collection)} if you want to override the existing values.

\n@param fleetUtilization Collection of objects containing utilization information for each requested fleet ID.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "CreateGameSessionRequest" : { "c2jName" : "CreateGameSessionInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "CreateGameSessionRequest", "deprecated" : false, "required" : [ "MaximumPlayerSessionCount" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.

\n@param fleetId Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.*/", "getterDocumentation" : "/**

Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.

\n@return Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.

\n@param fleetId Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.

\n@param fleetId Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.

", "name" : "AliasId", "c2jName" : "AliasId", "c2jShape" : "AliasId", "variable" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "AliasId", "marshallLocationName" : "AliasId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.

\n@param aliasId Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.*/", "getterDocumentation" : "/**

Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.

\n@return Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.

\n@param aliasId Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.

\n@param aliasId Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

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

", "name" : "MaximumPlayerSessionCount", "c2jName" : "MaximumPlayerSessionCount", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "maximumPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "maximumPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MaximumPlayerSessionCount", "marshallLocationName" : "MaximumPlayerSessionCount", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param maximumPlayerSessionCount Maximum number of players that can be connected simultaneously to the game session.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of players that can be connected simultaneously to the game session.*/", "fluentSetterDocumentation" : "/**

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

\n@param maximumPlayerSessionCount Maximum number of players that can be connected simultaneously to the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param maximumPlayerSessionCount Maximum number of players that can be connected simultaneously to the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Descriptive label associated with this game session. Session names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this game session. Session names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@param name Descriptive label associated with this game session. Session names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@return Descriptive label associated with this game session. Session names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@param name Descriptive label associated with this game session. Session names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@param name Descriptive label associated with this game session. Session names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Set of properties used to administer a game session. These properties are passed to your game server.

", "name" : "GameProperties", "c2jName" : "GameProperties", "c2jShape" : "GamePropertyList", "variable" : { "variableName" : "gameProperties", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Set of properties used to administer a game session. These properties are passed to your game server.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "gameProperties", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameProperties", "marshallLocationName" : "GameProperties", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "GameProperty", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "GameProperty", "variable" : { "variableName" : "member", "variableType" : "GameProperty", "variableDeclarationType" : "GameProperty", "documentation" : "", "simpleType" : "GameProperty", "variableSetterType" : "GameProperty" }, "setterModel" : { "variableName" : "member", "variableType" : "GameProperty", "variableDeclarationType" : "GameProperty", "documentation" : "", "simpleType" : "GameProperty", "variableSetterType" : "GameProperty" }, "getterModel" : { "returnType" : "GameProperty", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "GameProperty", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Set of properties used to administer a game session. These properties are passed to your game server.

\n@param gameProperties Set of properties used to administer a game session. These properties are passed to your game server.*/", "getterDocumentation" : "/**

Set of properties used to administer a game session. These properties are passed to your game server.

\n@return Set of properties used to administer a game session. These properties are passed to your game server.*/", "fluentSetterDocumentation" : "/**

Set of properties used to administer a game session. These properties are passed to your game server.

\n@param gameProperties Set of properties used to administer a game session. These properties are passed to your game server.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Set of properties used to administer a game session. These properties are passed to your game server.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setGameProperties(java.util.Collection)} or {@link #withGameProperties(java.util.Collection)} if you want to override the existing values.

\n@param gameProperties Set of properties used to administer a game session. These properties are passed to your game server.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "createGameSessionRequest", "variableType" : "CreateGameSessionRequest", "variableDeclarationType" : "CreateGameSessionRequest", "documentation" : null, "simpleType" : "CreateGameSessionRequest", "variableSetterType" : "CreateGameSessionRequest" }, "marshaller" : { "action" : "CreateGameSession", "verb" : "POST", "target" : "GameLift.CreateGameSession", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Name" : { "documentation" : "

Descriptive label associated with this game session. Session names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this game session. Session names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@param name Descriptive label associated with this game session. Session names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@return Descriptive label associated with this game session. Session names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@param name Descriptive label associated with this game session. Session names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this game session. Session names do not need to be unique.

\n@param name Descriptive label associated with this game session. Session names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "AliasId" : { "documentation" : "

Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.

", "name" : "AliasId", "c2jName" : "AliasId", "c2jShape" : "AliasId", "variable" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "AliasId", "marshallLocationName" : "AliasId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.

\n@param aliasId Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.*/", "getterDocumentation" : "/**

Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.

\n@return Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.

\n@param aliasId Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.

\n@param aliasId Unique identifier for a fleet alias. Each request must reference either a fleet ID or alias ID, but not both.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FleetId" : { "documentation" : "

Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.

\n@param fleetId Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.*/", "getterDocumentation" : "/**

Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.

\n@return Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.

\n@param fleetId Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.

\n@param fleetId Unique identifier for a fleet. Each request must reference either a fleet ID or alias ID, but not both.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "MaximumPlayerSessionCount" : { "documentation" : "

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

", "name" : "MaximumPlayerSessionCount", "c2jName" : "MaximumPlayerSessionCount", "c2jShape" : "WholeNumber", "variable" : { "variableName" : "maximumPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "

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

", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "setterModel" : { "variableName" : "maximumPlayerSessionCount", "variableType" : "Integer", "variableDeclarationType" : "Integer", "documentation" : "", "simpleType" : "Integer", "variableSetterType" : "Integer" }, "getterModel" : { "returnType" : "Integer", "documentation" : null }, "http" : { "unmarshallLocationName" : "MaximumPlayerSessionCount", "marshallLocationName" : "MaximumPlayerSessionCount", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param maximumPlayerSessionCount Maximum number of players that can be connected simultaneously to the game session.*/", "getterDocumentation" : "/**

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

\n@return Maximum number of players that can be connected simultaneously to the game session.*/", "fluentSetterDocumentation" : "/**

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

\n@param maximumPlayerSessionCount Maximum number of players that can be connected simultaneously to the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param maximumPlayerSessionCount Maximum number of players that can be connected simultaneously to the game session.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "GameProperties" : { "documentation" : "

Set of properties used to administer a game session. These properties are passed to your game server.

", "name" : "GameProperties", "c2jName" : "GameProperties", "c2jShape" : "GamePropertyList", "variable" : { "variableName" : "gameProperties", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "

Set of properties used to administer a game session. These properties are passed to your game server.

", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "setterModel" : { "variableName" : "gameProperties", "variableType" : "java.util.List", "variableDeclarationType" : "java.util.List", "documentation" : "", "simpleType" : "List", "variableSetterType" : "java.util.Collection" }, "getterModel" : { "returnType" : "java.util.List", "documentation" : null }, "http" : { "unmarshallLocationName" : "GameProperties", "marshallLocationName" : "GameProperties", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : { "memberType" : "GameProperty", "memberLocationName" : null, "implType" : "java.util.ArrayList", "interfaceType" : "java.util.List", "listMemberModel" : { "documentation" : "", "name" : "Member", "c2jName" : "member", "c2jShape" : "GameProperty", "variable" : { "variableName" : "member", "variableType" : "GameProperty", "variableDeclarationType" : "GameProperty", "documentation" : "", "simpleType" : "GameProperty", "variableSetterType" : "GameProperty" }, "setterModel" : { "variableName" : "member", "variableType" : "GameProperty", "variableDeclarationType" : "GameProperty", "documentation" : "", "simpleType" : "GameProperty", "variableSetterType" : "GameProperty" }, "getterModel" : { "returnType" : "GameProperty", "documentation" : null }, "http" : { "unmarshallLocationName" : "member", "marshallLocationName" : "member", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param member */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param member \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "memberAdditionalMarshallingPath" : null, "memberAdditionalUnmarshallingPath" : null, "sendEmptyQueryString" : false, "simple" : false, "map" : false, "simpleType" : "GameProperty", "templateType" : "java.util.List", "templateImplType" : "java.util.ArrayList" }, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : true, "map" : false, "setterDocumentation" : "/**

Set of properties used to administer a game session. These properties are passed to your game server.

\n@param gameProperties Set of properties used to administer a game session. These properties are passed to your game server.*/", "getterDocumentation" : "/**

Set of properties used to administer a game session. These properties are passed to your game server.

\n@return Set of properties used to administer a game session. These properties are passed to your game server.*/", "fluentSetterDocumentation" : "/**

Set of properties used to administer a game session. These properties are passed to your game server.

\n@param gameProperties Set of properties used to administer a game session. These properties are passed to your game server.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Set of properties used to administer a game session. These properties are passed to your game server.

\n

NOTE: This method appends the values to the existing list (if any). Use {@link #setGameProperties(java.util.Collection)} or {@link #withGameProperties(java.util.Collection)} if you want to override the existing values.

\n@param gameProperties Set of properties used to administer a game session. These properties are passed to your game server.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "DeleteFleetRequest" : { "c2jName" : "DeleteFleetInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "DeleteFleetRequest", "deprecated" : false, "required" : [ "FleetId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for the fleet you want to delete.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the fleet you want to delete.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the fleet you want to delete.

\n@param fleetId Unique identifier for the fleet you want to delete.*/", "getterDocumentation" : "/**

Unique identifier for the fleet you want to delete.

\n@return Unique identifier for the fleet you want to delete.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the fleet you want to delete.

\n@param fleetId Unique identifier for the fleet you want to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the fleet you want to delete.

\n@param fleetId Unique identifier for the fleet you want to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "deleteFleetRequest", "variableType" : "DeleteFleetRequest", "variableDeclarationType" : "DeleteFleetRequest", "documentation" : null, "simpleType" : "DeleteFleetRequest", "variableSetterType" : "DeleteFleetRequest" }, "marshaller" : { "action" : "DeleteFleet", "verb" : "POST", "target" : "GameLift.DeleteFleet", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "FleetId" : { "documentation" : "

Unique identifier for the fleet you want to delete.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for the fleet you want to delete.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for the fleet you want to delete.

\n@param fleetId Unique identifier for the fleet you want to delete.*/", "getterDocumentation" : "/**

Unique identifier for the fleet you want to delete.

\n@return Unique identifier for the fleet you want to delete.*/", "fluentSetterDocumentation" : "/**

Unique identifier for the fleet you want to delete.

\n@param fleetId Unique identifier for the fleet you want to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for the fleet you want to delete.

\n@param fleetId Unique identifier for the fleet you want to delete.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "Alias" : { "c2jName" : "Alias", "documentation" : "

Properties describing a fleet alias.

", "shapeName" : "Alias", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Unique identifier for a fleet alias.

", "name" : "AliasId", "c2jName" : "AliasId", "c2jShape" : "AliasId", "variable" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet alias.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "AliasId", "marshallLocationName" : "AliasId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet alias.

\n@param aliasId Unique identifier for a fleet alias.*/", "getterDocumentation" : "/**

Unique identifier for a fleet alias.

\n@return Unique identifier for a fleet alias.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet alias.

\n@param aliasId Unique identifier for a fleet alias.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet alias.

\n@param aliasId Unique identifier for a fleet alias.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Descriptive label associated with this alias. Alias names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "FreeText", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this alias. Alias names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@return Descriptive label associated with this alias. Alias names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Human-readable description of the alias.

", "name" : "Description", "c2jName" : "Description", "c2jShape" : "FreeText", "variable" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Human-readable description of the alias.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Description", "marshallLocationName" : "Description", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Human-readable description of the alias.

\n@param description Human-readable description of the alias.*/", "getterDocumentation" : "/**

Human-readable description of the alias.

\n@return Human-readable description of the alias.*/", "fluentSetterDocumentation" : "/**

Human-readable description of the alias.

\n@param description Human-readable description of the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Human-readable description of the alias.

\n@param description Human-readable description of the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "", "name" : "RoutingStrategy", "c2jName" : "RoutingStrategy", "c2jShape" : "RoutingStrategy", "variable" : { "variableName" : "routingStrategy", "variableType" : "RoutingStrategy", "variableDeclarationType" : "RoutingStrategy", "documentation" : "", "simpleType" : "RoutingStrategy", "variableSetterType" : "RoutingStrategy" }, "setterModel" : { "variableName" : "routingStrategy", "variableType" : "RoutingStrategy", "variableDeclarationType" : "RoutingStrategy", "documentation" : "", "simpleType" : "RoutingStrategy", "variableSetterType" : "RoutingStrategy" }, "getterModel" : { "returnType" : "RoutingStrategy", "documentation" : null }, "http" : { "unmarshallLocationName" : "RoutingStrategy", "marshallLocationName" : "RoutingStrategy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param routingStrategy */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param routingStrategy \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param routingStrategy \n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "CreationTime", "c2jName" : "CreationTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationTime", "marshallLocationName" : "CreationTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Time stamp indicating when this object was last modified. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "LastUpdatedTime", "c2jName" : "LastUpdatedTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "lastUpdatedTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time stamp indicating when this object was last modified. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "lastUpdatedTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "LastUpdatedTime", "marshallLocationName" : "LastUpdatedTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time stamp indicating when this object was last modified. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param lastUpdatedTime Time stamp indicating when this object was last modified. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

Time stamp indicating when this object was last modified. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return Time stamp indicating when this object was last modified. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

Time stamp indicating when this object was last modified. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param lastUpdatedTime Time stamp indicating when this object was last modified. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time stamp indicating when this object was last modified. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param lastUpdatedTime Time stamp indicating when this object was last modified. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "alias", "variableType" : "Alias", "variableDeclarationType" : "Alias", "documentation" : null, "simpleType" : "Alias", "variableSetterType" : "Alias" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "CreationTime" : { "documentation" : "

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "CreationTime", "c2jName" : "CreationTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "creationTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "CreationTime", "marshallLocationName" : "CreationTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param creationTime Time stamp indicating when this object was created. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Name" : { "documentation" : "

Descriptive label associated with this alias. Alias names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "FreeText", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this alias. Alias names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@return Descriptive label associated with this alias. Alias names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Description" : { "documentation" : "

Human-readable description of the alias.

", "name" : "Description", "c2jName" : "Description", "c2jShape" : "FreeText", "variable" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Human-readable description of the alias.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Description", "marshallLocationName" : "Description", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Human-readable description of the alias.

\n@param description Human-readable description of the alias.*/", "getterDocumentation" : "/**

Human-readable description of the alias.

\n@return Human-readable description of the alias.*/", "fluentSetterDocumentation" : "/**

Human-readable description of the alias.

\n@param description Human-readable description of the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Human-readable description of the alias.

\n@param description Human-readable description of the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "AliasId" : { "documentation" : "

Unique identifier for a fleet alias.

", "name" : "AliasId", "c2jName" : "AliasId", "c2jShape" : "AliasId", "variable" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet alias.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "AliasId", "marshallLocationName" : "AliasId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet alias.

\n@param aliasId Unique identifier for a fleet alias.*/", "getterDocumentation" : "/**

Unique identifier for a fleet alias.

\n@return Unique identifier for a fleet alias.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet alias.

\n@param aliasId Unique identifier for a fleet alias.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet alias.

\n@param aliasId Unique identifier for a fleet alias.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "RoutingStrategy" : { "documentation" : "", "name" : "RoutingStrategy", "c2jName" : "RoutingStrategy", "c2jShape" : "RoutingStrategy", "variable" : { "variableName" : "routingStrategy", "variableType" : "RoutingStrategy", "variableDeclarationType" : "RoutingStrategy", "documentation" : "", "simpleType" : "RoutingStrategy", "variableSetterType" : "RoutingStrategy" }, "setterModel" : { "variableName" : "routingStrategy", "variableType" : "RoutingStrategy", "variableDeclarationType" : "RoutingStrategy", "documentation" : "", "simpleType" : "RoutingStrategy", "variableSetterType" : "RoutingStrategy" }, "getterModel" : { "returnType" : "RoutingStrategy", "documentation" : null }, "http" : { "unmarshallLocationName" : "RoutingStrategy", "marshallLocationName" : "RoutingStrategy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**\n@param routingStrategy */", "getterDocumentation" : "/**\n@return */", "fluentSetterDocumentation" : "/**\n@param routingStrategy \n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**\n@param routingStrategy \n@return Returns a reference to this object so that method calls can be chained together.*/" }, "LastUpdatedTime" : { "documentation" : "

Time stamp indicating when this object was last modified. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "name" : "LastUpdatedTime", "c2jName" : "LastUpdatedTime", "c2jShape" : "Timestamp", "variable" : { "variableName" : "lastUpdatedTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "

Time stamp indicating when this object was last modified. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "setterModel" : { "variableName" : "lastUpdatedTime", "variableType" : "java.util.Date", "variableDeclarationType" : "java.util.Date", "documentation" : "", "simpleType" : "Date", "variableSetterType" : "java.util.Date" }, "getterModel" : { "returnType" : "java.util.Date", "documentation" : null }, "http" : { "unmarshallLocationName" : "LastUpdatedTime", "marshallLocationName" : "LastUpdatedTime", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Time stamp indicating when this object was last modified. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param lastUpdatedTime Time stamp indicating when this object was last modified. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "getterDocumentation" : "/**

Time stamp indicating when this object was last modified. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@return Time stamp indicating when this object was last modified. Format is an integer representing the number of seconds since the Unix epoch (Unix time).*/", "fluentSetterDocumentation" : "/**

Time stamp indicating when this object was last modified. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param lastUpdatedTime Time stamp indicating when this object was last modified. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Time stamp indicating when this object was last modified. Format is an integer representing the number of seconds since the Unix epoch (Unix time).

\n@param lastUpdatedTime Time stamp indicating when this object was last modified. Format is an integer representing the number of seconds since the Unix epoch (Unix time).\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "UpdateAliasRequest" : { "c2jName" : "UpdateAliasInput", "documentation" : "

Represents the input for a request action.

", "shapeName" : "UpdateAliasRequest", "deprecated" : false, "required" : [ "AliasId" ], "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

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

", "name" : "AliasId", "c2jName" : "AliasId", "c2jShape" : "AliasId", "variable" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "AliasId", "marshallLocationName" : "AliasId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param aliasId Unique identifier for a fleet alias. Specify the alias you want to update.*/", "getterDocumentation" : "/**

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

\n@return Unique identifier for a fleet alias. Specify the alias you want to update.*/", "fluentSetterDocumentation" : "/**

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

\n@param aliasId Unique identifier for a fleet alias. Specify the alias you want to update.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param aliasId Unique identifier for a fleet alias. Specify the alias you want to update.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Descriptive label associated with this alias. Alias names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this alias. Alias names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@return Descriptive label associated with this alias. Alias names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Human-readable description of the alias.

", "name" : "Description", "c2jName" : "Description", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Human-readable description of the alias.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Description", "marshallLocationName" : "Description", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Human-readable description of the alias.

\n@param description Human-readable description of the alias.*/", "getterDocumentation" : "/**

Human-readable description of the alias.

\n@return Human-readable description of the alias.*/", "fluentSetterDocumentation" : "/**

Human-readable description of the alias.

\n@param description Human-readable description of the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Human-readable description of the alias.

\n@param description Human-readable description of the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Object specifying the fleet and routing type to use for the alias.

", "name" : "RoutingStrategy", "c2jName" : "RoutingStrategy", "c2jShape" : "RoutingStrategy", "variable" : { "variableName" : "routingStrategy", "variableType" : "RoutingStrategy", "variableDeclarationType" : "RoutingStrategy", "documentation" : "

Object specifying the fleet and routing type to use for the alias.

", "simpleType" : "RoutingStrategy", "variableSetterType" : "RoutingStrategy" }, "setterModel" : { "variableName" : "routingStrategy", "variableType" : "RoutingStrategy", "variableDeclarationType" : "RoutingStrategy", "documentation" : "", "simpleType" : "RoutingStrategy", "variableSetterType" : "RoutingStrategy" }, "getterModel" : { "returnType" : "RoutingStrategy", "documentation" : null }, "http" : { "unmarshallLocationName" : "RoutingStrategy", "marshallLocationName" : "RoutingStrategy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Object specifying the fleet and routing type to use for the alias.

\n@param routingStrategy Object specifying the fleet and routing type to use for the alias.*/", "getterDocumentation" : "/**

Object specifying the fleet and routing type to use for the alias.

\n@return Object specifying the fleet and routing type to use for the alias.*/", "fluentSetterDocumentation" : "/**

Object specifying the fleet and routing type to use for the alias.

\n@param routingStrategy Object specifying the fleet and routing type to use for the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object specifying the fleet and routing type to use for the alias.

\n@param routingStrategy Object specifying the fleet and routing type to use for the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "updateAliasRequest", "variableType" : "UpdateAliasRequest", "variableDeclarationType" : "UpdateAliasRequest", "documentation" : null, "simpleType" : "UpdateAliasRequest", "variableSetterType" : "UpdateAliasRequest" }, "marshaller" : { "action" : "UpdateAlias", "verb" : "POST", "target" : "GameLift.UpdateAlias", "requestUri" : "/", "locationName" : null, "xmlNameSpaceUri" : null }, "unmarshaller" : null, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Name" : { "documentation" : "

Descriptive label associated with this alias. Alias names do not need to be unique.

", "name" : "Name", "c2jName" : "Name", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Descriptive label associated with this alias. Alias names do not need to be unique.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "name", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Name", "marshallLocationName" : "Name", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.*/", "getterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@return Descriptive label associated with this alias. Alias names do not need to be unique.*/", "fluentSetterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Descriptive label associated with this alias. Alias names do not need to be unique.

\n@param name Descriptive label associated with this alias. Alias names do not need to be unique.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Description" : { "documentation" : "

Human-readable description of the alias.

", "name" : "Description", "c2jName" : "Description", "c2jShape" : "NonZeroAndMaxString", "variable" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Human-readable description of the alias.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "description", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Description", "marshallLocationName" : "Description", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Human-readable description of the alias.

\n@param description Human-readable description of the alias.*/", "getterDocumentation" : "/**

Human-readable description of the alias.

\n@return Human-readable description of the alias.*/", "fluentSetterDocumentation" : "/**

Human-readable description of the alias.

\n@param description Human-readable description of the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Human-readable description of the alias.

\n@param description Human-readable description of the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "AliasId" : { "documentation" : "

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

", "name" : "AliasId", "c2jName" : "AliasId", "c2jShape" : "AliasId", "variable" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

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

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "aliasId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "AliasId", "marshallLocationName" : "AliasId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

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

\n@param aliasId Unique identifier for a fleet alias. Specify the alias you want to update.*/", "getterDocumentation" : "/**

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

\n@return Unique identifier for a fleet alias. Specify the alias you want to update.*/", "fluentSetterDocumentation" : "/**

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

\n@param aliasId Unique identifier for a fleet alias. Specify the alias you want to update.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

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

\n@param aliasId Unique identifier for a fleet alias. Specify the alias you want to update.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "RoutingStrategy" : { "documentation" : "

Object specifying the fleet and routing type to use for the alias.

", "name" : "RoutingStrategy", "c2jName" : "RoutingStrategy", "c2jShape" : "RoutingStrategy", "variable" : { "variableName" : "routingStrategy", "variableType" : "RoutingStrategy", "variableDeclarationType" : "RoutingStrategy", "documentation" : "

Object specifying the fleet and routing type to use for the alias.

", "simpleType" : "RoutingStrategy", "variableSetterType" : "RoutingStrategy" }, "setterModel" : { "variableName" : "routingStrategy", "variableType" : "RoutingStrategy", "variableDeclarationType" : "RoutingStrategy", "documentation" : "", "simpleType" : "RoutingStrategy", "variableSetterType" : "RoutingStrategy" }, "getterModel" : { "returnType" : "RoutingStrategy", "documentation" : null }, "http" : { "unmarshallLocationName" : "RoutingStrategy", "marshallLocationName" : "RoutingStrategy", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : false, "list" : false, "map" : false, "setterDocumentation" : "/**

Object specifying the fleet and routing type to use for the alias.

\n@param routingStrategy Object specifying the fleet and routing type to use for the alias.*/", "getterDocumentation" : "/**

Object specifying the fleet and routing type to use for the alias.

\n@return Object specifying the fleet and routing type to use for the alias.*/", "fluentSetterDocumentation" : "/**

Object specifying the fleet and routing type to use for the alias.

\n@param routingStrategy Object specifying the fleet and routing type to use for the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Object specifying the fleet and routing type to use for the alias.

\n@param routingStrategy Object specifying the fleet and routing type to use for the alias.\n@return Returns a reference to this object so that method calls can be chained together.*/" } } }, "RoutingStrategy" : { "c2jName" : "RoutingStrategy", "documentation" : "

Routing configuration for a fleet alias.

", "shapeName" : "RoutingStrategy", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ { "documentation" : "

Type of routing strategy. Possible routing types include:

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

", "name" : "Type", "c2jName" : "Type", "c2jShape" : "RoutingStrategyType", "variable" : { "variableName" : "type", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Type of routing strategy. Possible routing types include:

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "type", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Type", "marshallLocationName" : "Type", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "RoutingStrategyType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Type of routing strategy. Possible routing types include:

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

\n@param type Type of routing strategy. Possible routing types include:
  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.
\n@see RoutingStrategyType*/", "getterDocumentation" : "/**

Type of routing strategy. Possible routing types include:

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

\n@return Type of routing strategy. Possible routing types include:
  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.
\n@see RoutingStrategyType*/", "fluentSetterDocumentation" : "/**

Type of routing strategy. Possible routing types include:

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

\n@param type Type of routing strategy. Possible routing types include:
  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see RoutingStrategyType*/", "varargSetterDocumentation" : "/**

Type of routing strategy. Possible routing types include:

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

\n@param type Type of routing strategy. Possible routing types include:
  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see RoutingStrategyType*/" }, { "documentation" : "

Unique identifier for a fleet.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.*/", "getterDocumentation" : "/**

Unique identifier for a fleet.

\n@return Unique identifier for a fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, { "documentation" : "

Message text to be used with a terminal routing strategy.

", "name" : "Message", "c2jName" : "Message", "c2jShape" : "FreeText", "variable" : { "variableName" : "message", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Message text to be used with a terminal routing strategy.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "message", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Message", "marshallLocationName" : "Message", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Message text to be used with a terminal routing strategy.

\n@param message Message text to be used with a terminal routing strategy.*/", "getterDocumentation" : "/**

Message text to be used with a terminal routing strategy.

\n@return Message text to be used with a terminal routing strategy.*/", "fluentSetterDocumentation" : "/**

Message text to be used with a terminal routing strategy.

\n@param message Message text to be used with a terminal routing strategy.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Message text to be used with a terminal routing strategy.

\n@param message Message text to be used with a terminal routing strategy.\n@return Returns a reference to this object so that method calls can be chained together.*/" } ], "enums" : null, "variable" : { "variableName" : "routingStrategy", "variableType" : "RoutingStrategy", "variableDeclarationType" : "RoutingStrategy", "documentation" : null, "simpleType" : "RoutingStrategy", "variableSetterType" : "RoutingStrategy" }, "marshaller" : null, "unmarshaller" : { "resultWrapper" : null, "flattened" : false }, "errorCode" : null, "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { "Message" : { "documentation" : "

Message text to be used with a terminal routing strategy.

", "name" : "Message", "c2jName" : "Message", "c2jShape" : "FreeText", "variable" : { "variableName" : "message", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Message text to be used with a terminal routing strategy.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "message", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Message", "marshallLocationName" : "Message", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Message text to be used with a terminal routing strategy.

\n@param message Message text to be used with a terminal routing strategy.*/", "getterDocumentation" : "/**

Message text to be used with a terminal routing strategy.

\n@return Message text to be used with a terminal routing strategy.*/", "fluentSetterDocumentation" : "/**

Message text to be used with a terminal routing strategy.

\n@param message Message text to be used with a terminal routing strategy.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Message text to be used with a terminal routing strategy.

\n@param message Message text to be used with a terminal routing strategy.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "FleetId" : { "documentation" : "

Unique identifier for a fleet.

", "name" : "FleetId", "c2jName" : "FleetId", "c2jShape" : "FleetId", "variable" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Unique identifier for a fleet.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "fleetId", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "FleetId", "marshallLocationName" : "FleetId", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : null, "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.*/", "getterDocumentation" : "/**

Unique identifier for a fleet.

\n@return Unique identifier for a fleet.*/", "fluentSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/", "varargSetterDocumentation" : "/**

Unique identifier for a fleet.

\n@param fleetId Unique identifier for a fleet.\n@return Returns a reference to this object so that method calls can be chained together.*/" }, "Type" : { "documentation" : "

Type of routing strategy. Possible routing types include:

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

", "name" : "Type", "c2jName" : "Type", "c2jShape" : "RoutingStrategyType", "variable" : { "variableName" : "type", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "

Type of routing strategy. Possible routing types include:

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

", "simpleType" : "String", "variableSetterType" : "String" }, "setterModel" : { "variableName" : "type", "variableType" : "String", "variableDeclarationType" : "String", "documentation" : "", "simpleType" : "String", "variableSetterType" : "String" }, "getterModel" : { "returnType" : "String", "documentation" : null }, "http" : { "unmarshallLocationName" : "Type", "marshallLocationName" : "Type", "additionalUnmarshallingPath" : null, "additionalMarshallingPath" : null, "isPayload" : false, "isStreaming" : false, "location" : null, "flattened" : false, "header" : false, "uri" : false, "statusCode" : false, "queryString" : false }, "deprecated" : false, "listModel" : null, "mapModel" : null, "enumType" : "RoutingStrategyType", "xmlNameSpaceUri" : null, "idempotencyToken" : false, "simple" : true, "list" : false, "map" : false, "setterDocumentation" : "/**

Type of routing strategy. Possible routing types include:

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

\n@param type Type of routing strategy. Possible routing types include:
  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.
\n@see RoutingStrategyType*/", "getterDocumentation" : "/**

Type of routing strategy. Possible routing types include:

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

\n@return Type of routing strategy. Possible routing types include:
  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.
\n@see RoutingStrategyType*/", "fluentSetterDocumentation" : "/**

Type of routing strategy. Possible routing types include:

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

\n@param type Type of routing strategy. Possible routing types include:
  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see RoutingStrategyType*/", "varargSetterDocumentation" : "/**

Type of routing strategy. Possible routing types include:

  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.

\n@param type Type of routing strategy. Possible routing types include:
  • SIMPLE: The alias resolves to one specific fleet. Use this type when routing to active fleets.
  • TERMINAL: 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 RoutingStrategy message embedded.
\n@return Returns a reference to this object so that method calls can be chained together.\n@see RoutingStrategyType*/" } } }, "InvalidRequestException" : { "c2jName" : "InvalidRequestException", "documentation" : "

One or more parameters specified as part of the request are invalid. Please correct the invalid parameters before retrying.

", "shapeName" : "InvalidRequestException", "deprecated" : false, "required" : null, "hasPayloadMember" : false, "hasHeaderMember" : false, "hasStatusCodeMember" : false, "hasStreamingMember" : false, "wrapper" : false, "members" : [ ], "enums" : null, "variable" : { "variableName" : "invalidRequestException", "variableType" : "InvalidRequestException", "variableDeclarationType" : "InvalidRequestException", "documentation" : null, "simpleType" : "InvalidRequestException", "variableSetterType" : "InvalidRequestException" }, "marshaller" : null, "unmarshaller" : null, "errorCode" : "InvalidRequestException", "customization" : { "artificialResultWrapper" : null, "skipGeneratingModelClass" : false, "skipGeneratingMarshaller" : false, "skipGeneratingUnmarshaller" : false }, "membersAsMap" : { } } }, "customizationConfig" : { "requestMetrics" : null, "useAutoConstructList" : false, "useAutoConstructMap" : false, "serviceClientHoldInputStream" : false, "operationsWithResponseStreamContentLengthValidation" : null, "customExceptionUnmarshallerImpl" : null, "customClientConfigFactory" : null, "customResponseMetadataClassName" : null, "skipInterfaceAdditions" : false, "customServiceNameForRequest" : null, "requiredParamValidationEnabled" : false, "additionalShapeConstructors" : null, "simpleMethods" : null, "renameShapes" : { "AwsCredentials" : "Credentials" }, "sendEmptyAutoConstructedListAsEmptyList" : null, "authPolicyActions" : null, "customServiceMetadata" : null, "customCodeTemplates" : null, "operationModifiers" : null, "shapeSubstitutions" : null, "shapeModifiers" : null, "customErrorCodeFieldName" : null, "convenienceTypeOverloads" : [ ] }, "examples" : { "version" : "1.0", "operationExamples" : { } }, "clientConfigFactory" : "ClientConfigurationFactory" }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy