@aws-sdk/client-gamelift 3.218.0 → 3.223.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (202) hide show
  1. package/README.md +19 -20
  2. package/dist-cjs/GameLift.js +135 -0
  3. package/dist-cjs/commands/CreateLocationCommand.js +46 -0
  4. package/dist-cjs/commands/DeleteLocationCommand.js +46 -0
  5. package/dist-cjs/commands/DeregisterComputeCommand.js +46 -0
  6. package/dist-cjs/commands/DescribeComputeCommand.js +46 -0
  7. package/dist-cjs/commands/GetComputeAccessCommand.js +46 -0
  8. package/dist-cjs/commands/GetComputeAuthTokenCommand.js +46 -0
  9. package/dist-cjs/commands/ListComputeCommand.js +46 -0
  10. package/dist-cjs/commands/ListLocationsCommand.js +46 -0
  11. package/dist-cjs/commands/RegisterComputeCommand.js +46 -0
  12. package/dist-cjs/commands/UpdateFleetPortSettingsCommand.js +2 -1
  13. package/dist-cjs/commands/UpdateGameServerCommand.js +3 -3
  14. package/dist-cjs/commands/UpdateGameServerGroupCommand.js +3 -3
  15. package/dist-cjs/commands/UpdateGameSessionCommand.js +3 -3
  16. package/dist-cjs/commands/UpdateGameSessionQueueCommand.js +3 -3
  17. package/dist-cjs/commands/UpdateMatchmakingConfigurationCommand.js +3 -3
  18. package/dist-cjs/commands/UpdateRuntimeConfigurationCommand.js +3 -3
  19. package/dist-cjs/commands/UpdateScriptCommand.js +3 -3
  20. package/dist-cjs/commands/ValidateMatchmakingRuleSetCommand.js +3 -3
  21. package/dist-cjs/commands/index.js +9 -0
  22. package/dist-cjs/endpoint/ruleset.js +1 -1
  23. package/dist-cjs/models/index.js +1 -0
  24. package/dist-cjs/models/models_0.js +348 -78
  25. package/dist-cjs/models/models_1.js +75 -0
  26. package/dist-cjs/pagination/ListComputePaginator.js +36 -0
  27. package/dist-cjs/pagination/ListLocationsPaginator.js +36 -0
  28. package/dist-cjs/pagination/index.js +2 -0
  29. package/dist-cjs/protocols/Aws_json1_1.js +731 -34
  30. package/dist-es/GameLift.js +135 -0
  31. package/dist-es/commands/CreateLocationCommand.js +42 -0
  32. package/dist-es/commands/DeleteLocationCommand.js +42 -0
  33. package/dist-es/commands/DeregisterComputeCommand.js +42 -0
  34. package/dist-es/commands/DescribeComputeCommand.js +42 -0
  35. package/dist-es/commands/GetComputeAccessCommand.js +42 -0
  36. package/dist-es/commands/GetComputeAuthTokenCommand.js +42 -0
  37. package/dist-es/commands/ListComputeCommand.js +42 -0
  38. package/dist-es/commands/ListLocationsCommand.js +42 -0
  39. package/dist-es/commands/RegisterComputeCommand.js +42 -0
  40. package/dist-es/commands/UpdateFleetPortSettingsCommand.js +2 -1
  41. package/dist-es/commands/UpdateGameServerCommand.js +1 -1
  42. package/dist-es/commands/UpdateGameServerGroupCommand.js +1 -1
  43. package/dist-es/commands/UpdateGameSessionCommand.js +1 -1
  44. package/dist-es/commands/UpdateGameSessionQueueCommand.js +1 -1
  45. package/dist-es/commands/UpdateMatchmakingConfigurationCommand.js +1 -1
  46. package/dist-es/commands/UpdateRuntimeConfigurationCommand.js +1 -1
  47. package/dist-es/commands/UpdateScriptCommand.js +1 -1
  48. package/dist-es/commands/ValidateMatchmakingRuleSetCommand.js +1 -1
  49. package/dist-es/commands/index.js +9 -0
  50. package/dist-es/endpoint/ruleset.js +1 -1
  51. package/dist-es/models/index.js +1 -0
  52. package/dist-es/models/models_0.js +321 -55
  53. package/dist-es/models/models_1.js +55 -0
  54. package/dist-es/pagination/ListComputePaginator.js +32 -0
  55. package/dist-es/pagination/ListLocationsPaginator.js +32 -0
  56. package/dist-es/pagination/index.js +2 -0
  57. package/dist-es/protocols/Aws_json1_1.js +729 -51
  58. package/dist-types/GameLift.d.ts +756 -1757
  59. package/dist-types/GameLiftClient.d.ts +32 -23
  60. package/dist-types/commands/AcceptMatchCommand.d.ts +3 -13
  61. package/dist-types/commands/ClaimGameServerCommand.d.ts +15 -26
  62. package/dist-types/commands/CreateAliasCommand.d.ts +2 -8
  63. package/dist-types/commands/CreateBuildCommand.d.ts +15 -26
  64. package/dist-types/commands/CreateFleetCommand.d.ts +9 -28
  65. package/dist-types/commands/CreateFleetLocationsCommand.d.ts +11 -30
  66. package/dist-types/commands/CreateGameServerGroupCommand.d.ts +13 -25
  67. package/dist-types/commands/CreateGameSessionCommand.d.ts +8 -21
  68. package/dist-types/commands/CreateGameSessionQueueCommand.d.ts +9 -14
  69. package/dist-types/commands/CreateLocationCommand.d.ts +37 -0
  70. package/dist-types/commands/CreateMatchmakingConfigurationCommand.d.ts +7 -23
  71. package/dist-types/commands/CreateMatchmakingRuleSetCommand.d.ts +3 -19
  72. package/dist-types/commands/CreatePlayerSessionCommand.d.ts +12 -20
  73. package/dist-types/commands/CreatePlayerSessionsCommand.d.ts +11 -18
  74. package/dist-types/commands/CreateScriptCommand.d.ts +11 -15
  75. package/dist-types/commands/CreateVpcPeeringAuthorizationCommand.d.ts +14 -21
  76. package/dist-types/commands/CreateVpcPeeringConnectionCommand.d.ts +18 -25
  77. package/dist-types/commands/DeleteAliasCommand.d.ts +1 -7
  78. package/dist-types/commands/DeleteBuildCommand.d.ts +6 -14
  79. package/dist-types/commands/DeleteFleetCommand.d.ts +6 -22
  80. package/dist-types/commands/DeleteFleetLocationsCommand.d.ts +3 -18
  81. package/dist-types/commands/DeleteGameServerGroupCommand.d.ts +10 -23
  82. package/dist-types/commands/DeleteGameSessionQueueCommand.d.ts +2 -24
  83. package/dist-types/commands/DeleteLocationCommand.d.ts +39 -0
  84. package/dist-types/commands/DeleteMatchmakingConfigurationCommand.d.ts +0 -14
  85. package/dist-types/commands/DeleteMatchmakingRuleSetCommand.d.ts +2 -16
  86. package/dist-types/commands/DeleteScalingPolicyCommand.d.ts +4 -18
  87. package/dist-types/commands/DeleteScriptCommand.d.ts +2 -7
  88. package/dist-types/commands/DeleteVpcPeeringAuthorizationCommand.d.ts +3 -9
  89. package/dist-types/commands/DeleteVpcPeeringConnectionCommand.d.ts +5 -13
  90. package/dist-types/commands/DeregisterComputeCommand.d.ts +38 -0
  91. package/dist-types/commands/DeregisterGameServerCommand.d.ts +5 -16
  92. package/dist-types/commands/DescribeAliasCommand.d.ts +1 -7
  93. package/dist-types/commands/DescribeBuildCommand.d.ts +3 -11
  94. package/dist-types/commands/DescribeComputeCommand.d.ts +39 -0
  95. package/dist-types/commands/DescribeEC2InstanceLimitsCommand.d.ts +9 -25
  96. package/dist-types/commands/DescribeFleetAttributesCommand.d.ts +6 -21
  97. package/dist-types/commands/DescribeFleetCapacityCommand.d.ts +8 -22
  98. package/dist-types/commands/DescribeFleetEventsCommand.d.ts +4 -19
  99. package/dist-types/commands/DescribeFleetLocationAttributesCommand.d.ts +4 -19
  100. package/dist-types/commands/DescribeFleetLocationCapacityCommand.d.ts +4 -19
  101. package/dist-types/commands/DescribeFleetLocationUtilizationCommand.d.ts +4 -19
  102. package/dist-types/commands/DescribeFleetPortSettingsCommand.d.ts +8 -23
  103. package/dist-types/commands/DescribeFleetUtilizationCommand.d.ts +9 -24
  104. package/dist-types/commands/DescribeGameServerCommand.d.ts +5 -15
  105. package/dist-types/commands/DescribeGameServerGroupCommand.d.ts +8 -20
  106. package/dist-types/commands/DescribeGameServerInstancesCommand.d.ts +7 -23
  107. package/dist-types/commands/DescribeGameSessionDetailsCommand.d.ts +6 -20
  108. package/dist-types/commands/DescribeGameSessionPlacementCommand.d.ts +8 -26
  109. package/dist-types/commands/DescribeGameSessionQueuesCommand.d.ts +5 -20
  110. package/dist-types/commands/DescribeGameSessionsCommand.d.ts +9 -32
  111. package/dist-types/commands/DescribeInstancesCommand.d.ts +5 -7
  112. package/dist-types/commands/DescribeMatchmakingCommand.d.ts +6 -19
  113. package/dist-types/commands/DescribeMatchmakingConfigurationsCommand.d.ts +1 -16
  114. package/dist-types/commands/DescribeMatchmakingRuleSetsCommand.d.ts +2 -16
  115. package/dist-types/commands/DescribePlayerSessionsCommand.d.ts +3 -11
  116. package/dist-types/commands/DescribeRuntimeConfigurationCommand.d.ts +5 -20
  117. package/dist-types/commands/DescribeScalingPoliciesCommand.d.ts +6 -22
  118. package/dist-types/commands/DescribeScriptCommand.d.ts +3 -8
  119. package/dist-types/commands/DescribeVpcPeeringAuthorizationsCommand.d.ts +2 -8
  120. package/dist-types/commands/DescribeVpcPeeringConnectionsCommand.d.ts +7 -13
  121. package/dist-types/commands/GetComputeAccessCommand.d.ts +59 -0
  122. package/dist-types/commands/GetComputeAuthTokenCommand.d.ts +40 -0
  123. package/dist-types/commands/GetGameSessionLogUrlCommand.d.ts +3 -15
  124. package/dist-types/commands/GetInstanceAccessCommand.d.ts +2 -8
  125. package/dist-types/commands/ListAliasesCommand.d.ts +4 -10
  126. package/dist-types/commands/ListBuildsCommand.d.ts +3 -11
  127. package/dist-types/commands/ListComputeCommand.d.ts +37 -0
  128. package/dist-types/commands/ListFleetsCommand.d.ts +9 -23
  129. package/dist-types/commands/ListGameServerGroupsCommand.d.ts +1 -26
  130. package/dist-types/commands/ListGameServersCommand.d.ts +6 -16
  131. package/dist-types/commands/ListLocationsCommand.d.ts +37 -0
  132. package/dist-types/commands/ListScriptsCommand.d.ts +3 -7
  133. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -13
  134. package/dist-types/commands/PutScalingPolicyCommand.d.ts +21 -40
  135. package/dist-types/commands/RegisterComputeCommand.d.ts +57 -0
  136. package/dist-types/commands/RegisterGameServerCommand.d.ts +9 -21
  137. package/dist-types/commands/RequestUploadCredentialsCommand.d.ts +3 -12
  138. package/dist-types/commands/ResolveAliasCommand.d.ts +1 -7
  139. package/dist-types/commands/ResumeGameServerGroupCommand.d.ts +11 -23
  140. package/dist-types/commands/SearchGameSessionsCommand.d.ts +21 -38
  141. package/dist-types/commands/StartFleetActionsCommand.d.ts +7 -21
  142. package/dist-types/commands/StartGameSessionPlacementCommand.d.ts +31 -46
  143. package/dist-types/commands/StartMatchBackfillCommand.d.ts +19 -29
  144. package/dist-types/commands/StartMatchmakingCommand.d.ts +4 -15
  145. package/dist-types/commands/StopFleetActionsCommand.d.ts +5 -21
  146. package/dist-types/commands/StopGameSessionPlacementCommand.d.ts +2 -17
  147. package/dist-types/commands/StopMatchmakingCommand.d.ts +3 -14
  148. package/dist-types/commands/SuspendGameServerGroupCommand.d.ts +7 -19
  149. package/dist-types/commands/TagResourceCommand.d.ts +7 -10
  150. package/dist-types/commands/UntagResourceCommand.d.ts +12 -16
  151. package/dist-types/commands/UpdateAliasCommand.d.ts +1 -7
  152. package/dist-types/commands/UpdateBuildCommand.d.ts +3 -11
  153. package/dist-types/commands/UpdateFleetAttributesCommand.d.ts +3 -19
  154. package/dist-types/commands/UpdateFleetCapacityCommand.d.ts +10 -26
  155. package/dist-types/commands/UpdateFleetPortSettingsCommand.d.ts +6 -21
  156. package/dist-types/commands/UpdateGameServerCommand.d.ts +20 -29
  157. package/dist-types/commands/UpdateGameServerGroupCommand.d.ts +9 -21
  158. package/dist-types/commands/UpdateGameSessionCommand.d.ts +1 -13
  159. package/dist-types/commands/UpdateGameSessionQueueCommand.d.ts +2 -16
  160. package/dist-types/commands/UpdateMatchmakingConfigurationCommand.d.ts +6 -20
  161. package/dist-types/commands/UpdateRuntimeConfigurationCommand.d.ts +5 -21
  162. package/dist-types/commands/UpdateScriptCommand.d.ts +2 -7
  163. package/dist-types/commands/ValidateMatchmakingRuleSetCommand.d.ts +4 -18
  164. package/dist-types/commands/index.d.ts +9 -0
  165. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  166. package/dist-types/models/index.d.ts +1 -0
  167. package/dist-types/models/models_0.d.ts +1598 -1987
  168. package/dist-types/models/models_1.d.ts +452 -0
  169. package/dist-types/pagination/ListComputePaginator.d.ts +4 -0
  170. package/dist-types/pagination/ListLocationsPaginator.d.ts +4 -0
  171. package/dist-types/pagination/index.d.ts +2 -0
  172. package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
  173. package/dist-types/ts3.4/GameLift.d.ts +153 -0
  174. package/dist-types/ts3.4/GameLiftClient.d.ts +54 -0
  175. package/dist-types/ts3.4/commands/CreateLocationCommand.d.ts +34 -0
  176. package/dist-types/ts3.4/commands/DeleteLocationCommand.d.ts +34 -0
  177. package/dist-types/ts3.4/commands/DeregisterComputeCommand.d.ts +37 -0
  178. package/dist-types/ts3.4/commands/DescribeComputeCommand.d.ts +37 -0
  179. package/dist-types/ts3.4/commands/GetComputeAccessCommand.d.ts +37 -0
  180. package/dist-types/ts3.4/commands/GetComputeAuthTokenCommand.d.ts +38 -0
  181. package/dist-types/ts3.4/commands/ListComputeCommand.d.ts +34 -0
  182. package/dist-types/ts3.4/commands/ListLocationsCommand.d.ts +34 -0
  183. package/dist-types/ts3.4/commands/RegisterComputeCommand.d.ts +37 -0
  184. package/dist-types/ts3.4/commands/UpdateFleetPortSettingsCommand.d.ts +2 -4
  185. package/dist-types/ts3.4/commands/UpdateGameServerCommand.d.ts +1 -1
  186. package/dist-types/ts3.4/commands/UpdateGameServerGroupCommand.d.ts +1 -1
  187. package/dist-types/ts3.4/commands/UpdateGameSessionCommand.d.ts +1 -1
  188. package/dist-types/ts3.4/commands/UpdateGameSessionQueueCommand.d.ts +1 -1
  189. package/dist-types/ts3.4/commands/UpdateMatchmakingConfigurationCommand.d.ts +1 -1
  190. package/dist-types/ts3.4/commands/UpdateRuntimeConfigurationCommand.d.ts +1 -1
  191. package/dist-types/ts3.4/commands/UpdateScriptCommand.d.ts +1 -1
  192. package/dist-types/ts3.4/commands/ValidateMatchmakingRuleSetCommand.d.ts +1 -1
  193. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  194. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  195. package/dist-types/ts3.4/models/index.d.ts +1 -0
  196. package/dist-types/ts3.4/models/models_0.d.ts +417 -370
  197. package/dist-types/ts3.4/models/models_1.d.ts +166 -0
  198. package/dist-types/ts3.4/pagination/ListComputePaginator.d.ts +11 -0
  199. package/dist-types/ts3.4/pagination/ListLocationsPaginator.d.ts +11 -0
  200. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  201. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +108 -0
  202. package/package.json +28 -28
@@ -8,30 +8,8 @@ export interface DeleteGameSessionQueueCommandInput extends DeleteGameSessionQue
8
8
  export interface DeleteGameSessionQueueCommandOutput extends DeleteGameSessionQueueOutput, __MetadataBearer {
9
9
  }
10
10
  /**
11
- * <p>Deletes a game session queue. Once a queue is successfully deleted, unfulfilled
12
- * <a href="https://docs.aws.amazon.com/gamelift/latest/apireference/API_StartGameSessionPlacement.html">StartGameSessionPlacement</a> requests that reference the queue will fail.
13
- * To delete a queue, specify the queue name.</p>
14
- * <p>
15
- * <b>Learn more</b>
16
- * </p>
17
- * <p>
18
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/queues-intro.html">
19
- * Using Multi-Region Queues</a>
20
- * </p>
21
- * <p>
22
- * <b>Related actions</b>
23
- * </p>
24
- * <p>
25
- * <a href="https://docs.aws.amazon.com/gamelift/latest/apireference/API_CreateGameSessionQueue.html">CreateGameSessionQueue</a>
26
- * |
27
- * <a href="https://docs.aws.amazon.com/gamelift/latest/apireference/API_DescribeGameSessionQueues.html">DescribeGameSessionQueues</a>
28
- * |
29
- * <a href="https://docs.aws.amazon.com/gamelift/latest/apireference/API_UpdateGameSessionQueue.html">UpdateGameSessionQueue</a>
30
- * |
31
- * <a href="https://docs.aws.amazon.com/gamelift/latest/apireference/API_DeleteGameSessionQueue.html">DeleteGameSessionQueue</a>
32
- * |
33
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
34
- * </p>
11
+ * <p>Deletes a game session queue. Once a queue is successfully deleted, unfulfilled <a href="https://docs.aws.amazon.com/gamelift/latest/apireference/API_StartGameSessionPlacement.html">StartGameSessionPlacement</a> requests that reference the queue will fail. To
12
+ * delete a queue, specify the queue name.</p>
35
13
  * @example
36
14
  * Use a bare-bones client and the command you need to make an API call.
37
15
  * ```javascript
@@ -0,0 +1,39 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient";
5
+ import { DeleteLocationInput, DeleteLocationOutput } from "../models/models_0";
6
+ export interface DeleteLocationCommandInput extends DeleteLocationInput {
7
+ }
8
+ export interface DeleteLocationCommandOutput extends DeleteLocationOutput, __MetadataBearer {
9
+ }
10
+ /**
11
+ * <p>Deletes a custom location.</p>
12
+ * <p>Before deleting a custom location, review any fleets currently using the custom
13
+ * location and deregister the location if it is in use. For more information see, <a href="https://docs.aws.amazon.com/gamelift/latest/apireference/API_DeregisterCompute.html">DeregisterCompute</a>.</p>
14
+ * @example
15
+ * Use a bare-bones client and the command you need to make an API call.
16
+ * ```javascript
17
+ * import { GameLiftClient, DeleteLocationCommand } from "@aws-sdk/client-gamelift"; // ES Modules import
18
+ * // const { GameLiftClient, DeleteLocationCommand } = require("@aws-sdk/client-gamelift"); // CommonJS import
19
+ * const client = new GameLiftClient(config);
20
+ * const command = new DeleteLocationCommand(input);
21
+ * const response = await client.send(command);
22
+ * ```
23
+ *
24
+ * @see {@link DeleteLocationCommandInput} for command's `input` shape.
25
+ * @see {@link DeleteLocationCommandOutput} for command's `response` shape.
26
+ * @see {@link GameLiftClientResolvedConfig | config} for GameLiftClient's `config` shape.
27
+ *
28
+ */
29
+ export declare class DeleteLocationCommand extends $Command<DeleteLocationCommandInput, DeleteLocationCommandOutput, GameLiftClientResolvedConfig> {
30
+ readonly input: DeleteLocationCommandInput;
31
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
32
+ constructor(input: DeleteLocationCommandInput);
33
+ /**
34
+ * @internal
35
+ */
36
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GameLiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteLocationCommandInput, DeleteLocationCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -11,20 +11,6 @@ export interface DeleteMatchmakingConfigurationCommandOutput extends DeleteMatch
11
11
  * <p>Permanently removes a FlexMatch matchmaking configuration. To delete, specify the
12
12
  * configuration name. A matchmaking configuration cannot be deleted if it is being used in
13
13
  * any active matchmaking tickets.</p>
14
- * <p>
15
- * <b>Related actions</b>
16
- * </p>
17
- * <p>
18
- * <a>CreateMatchmakingConfiguration</a> |
19
- * <a>DescribeMatchmakingConfigurations</a> |
20
- * <a>UpdateMatchmakingConfiguration</a> |
21
- * <a>DeleteMatchmakingConfiguration</a> |
22
- * <a>CreateMatchmakingRuleSet</a> |
23
- * <a>DescribeMatchmakingRuleSets</a> |
24
- * <a>ValidateMatchmakingRuleSet</a> |
25
- * <a>DeleteMatchmakingRuleSet</a> |
26
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
27
- * </p>
28
14
  * @example
29
15
  * Use a bare-bones client and the command you need to make an API call.
30
16
  * ```javascript
@@ -8,8 +8,8 @@ export interface DeleteMatchmakingRuleSetCommandInput extends DeleteMatchmakingR
8
8
  export interface DeleteMatchmakingRuleSetCommandOutput extends DeleteMatchmakingRuleSetOutput, __MetadataBearer {
9
9
  }
10
10
  /**
11
- * <p>Deletes an existing matchmaking rule set. To delete the rule set, provide the rule
12
- * set name. Rule sets cannot be deleted if they are currently being used by a matchmaking
11
+ * <p>Deletes an existing matchmaking rule set. To delete the rule set, provide the rule set
12
+ * name. Rule sets cannot be deleted if they are currently being used by a matchmaking
13
13
  * configuration. </p>
14
14
  * <p>
15
15
  * <b>Learn more</b>
@@ -22,20 +22,6 @@ export interface DeleteMatchmakingRuleSetCommandOutput extends DeleteMatchmaking
22
22
  * </p>
23
23
  * </li>
24
24
  * </ul>
25
- * <p>
26
- * <b>Related actions</b>
27
- * </p>
28
- * <p>
29
- * <a>CreateMatchmakingConfiguration</a> |
30
- * <a>DescribeMatchmakingConfigurations</a> |
31
- * <a>UpdateMatchmakingConfiguration</a> |
32
- * <a>DeleteMatchmakingConfiguration</a> |
33
- * <a>CreateMatchmakingRuleSet</a> |
34
- * <a>DescribeMatchmakingRuleSets</a> |
35
- * <a>ValidateMatchmakingRuleSet</a> |
36
- * <a>DeleteMatchmakingRuleSet</a> |
37
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
38
- * </p>
39
25
  * @example
40
26
  * Use a bare-bones client and the command you need to make an API call.
41
27
  * ```javascript
@@ -8,25 +8,11 @@ export interface DeleteScalingPolicyCommandInput extends DeleteScalingPolicyInpu
8
8
  export interface DeleteScalingPolicyCommandOutput extends __MetadataBearer {
9
9
  }
10
10
  /**
11
- * <p>Deletes a fleet scaling policy. Once deleted, the policy is no longer in
12
- * force and GameLift removes all record of it. To delete a scaling policy, specify both the scaling
11
+ * <p>Deletes a fleet scaling policy. Once deleted, the policy is no longer in force and
12
+ * GameLift removes all record of it. To delete a scaling policy, specify both the scaling
13
13
  * policy name and the fleet ID it is associated with.</p>
14
- * <p>To temporarily suspend scaling policies, call <a>StopFleetActions</a>.
15
- * This operation suspends all policies for the fleet.</p>
16
- * <p>
17
- * <b>Related actions</b>
18
- * </p>
19
- * <p>
20
- * <a>DescribeFleetCapacity</a> |
21
- * <a>UpdateFleetCapacity</a> |
22
- * <a>DescribeEC2InstanceLimits</a> |
23
- * <a>PutScalingPolicy</a> |
24
- * <a>DescribeScalingPolicies</a> |
25
- * <a>DeleteScalingPolicy</a> |
26
- * <a>StopFleetActions</a> |
27
- * <a>StartFleetActions</a> |
28
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
29
- * </p>
14
+ * <p>To temporarily suspend scaling policies, use <a href="https://docs.aws.amazon.com/gamelift/latest/apireference/API_StopFleetActions.html">StopFleetActions</a>. This operation suspends all policies for the
15
+ * fleet.</p>
30
16
  * @example
31
17
  * Use a bare-bones client and the command you need to make an API call.
32
18
  * ```javascript
@@ -11,7 +11,7 @@ export interface DeleteScriptCommandOutput extends __MetadataBearer {
11
11
  * <p>Deletes a Realtime script. This operation permanently deletes the script record. If
12
12
  * script files were uploaded, they are also deleted (files stored in an S3 bucket are not
13
13
  * deleted). </p>
14
- * <p>To delete a script, specify the script ID. Before deleting a script, be sure to
14
+ * <p>To delete a script, specify the script ID. Before deleting a script, be sure to
15
15
  * terminate all fleets that are deployed with the script being deleted. Fleet instances
16
16
  * periodically check for script updates, and if the script record no longer exists, the
17
17
  * instance will go into an error state and be unable to host game sessions.</p>
@@ -21,15 +21,10 @@ export interface DeleteScriptCommandOutput extends __MetadataBearer {
21
21
  * <p>
22
22
  * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/realtime-intro.html">Amazon GameLift Realtime Servers</a>
23
23
  * </p>
24
- * <p>
24
+ * <p>
25
25
  * <b>Related actions</b>
26
26
  * </p>
27
27
  * <p>
28
- * <a>CreateScript</a> |
29
- * <a>ListScripts</a> |
30
- * <a>DescribeScript</a> |
31
- * <a>UpdateScript</a> |
32
- * <a>DeleteScript</a> |
33
28
  * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
34
29
  * </p>
35
30
  * @example
@@ -9,18 +9,12 @@ export interface DeleteVpcPeeringAuthorizationCommandOutput extends DeleteVpcPee
9
9
  }
10
10
  /**
11
11
  * <p>Cancels a pending VPC peering authorization for the specified VPC. If you need to
12
- * delete an existing VPC peering connection, call <a>DeleteVpcPeeringConnection</a>. </p>
13
- * <p>
12
+ * delete an existing VPC peering connection, use <a href="https://docs.aws.amazon.com/gamelift/latest/apireference/API_DeleteVpcPeeringConnection.html">DeleteVpcPeeringConnection</a>.</p>
13
+ * <p>
14
14
  * <b>Related actions</b>
15
15
  * </p>
16
16
  * <p>
17
- * <a>CreateVpcPeeringAuthorization</a> |
18
- * <a>DescribeVpcPeeringAuthorizations</a> |
19
- * <a>DeleteVpcPeeringAuthorization</a> |
20
- * <a>CreateVpcPeeringConnection</a> |
21
- * <a>DescribeVpcPeeringConnections</a> |
22
- * <a>DeleteVpcPeeringConnection</a> |
23
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
17
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
24
18
  * </p>
25
19
  * @example
26
20
  * Use a bare-bones client and the command you need to make an API call.
@@ -9,23 +9,15 @@ export interface DeleteVpcPeeringConnectionCommandOutput extends DeleteVpcPeerin
9
9
  }
10
10
  /**
11
11
  * <p>Removes a VPC peering connection. To delete the connection, you must have a valid
12
- * authorization for the VPC peering connection that you want to delete. You can check for
13
- * an authorization by calling <a>DescribeVpcPeeringAuthorizations</a> or
14
- * request a new one using <a>CreateVpcPeeringAuthorization</a>. </p>
12
+ * authorization for the VPC peering connection that you want to delete.. </p>
15
13
  * <p>Once a valid authorization exists, call this operation from the Amazon Web Services account that is
16
- * used to manage the Amazon GameLift fleets. Identify the connection to delete by the connection
17
- * ID and fleet ID. If successful, the connection is removed. </p>
18
- * <p>
14
+ * used to manage the Amazon GameLift fleets. Identify the connection to delete by the connection ID
15
+ * and fleet ID. If successful, the connection is removed. </p>
16
+ * <p>
19
17
  * <b>Related actions</b>
20
18
  * </p>
21
19
  * <p>
22
- * <a>CreateVpcPeeringAuthorization</a> |
23
- * <a>DescribeVpcPeeringAuthorizations</a> |
24
- * <a>DeleteVpcPeeringAuthorization</a> |
25
- * <a>CreateVpcPeeringConnection</a> |
26
- * <a>DescribeVpcPeeringConnections</a> |
27
- * <a>DeleteVpcPeeringConnection</a> |
28
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
20
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
29
21
  * </p>
30
22
  * @example
31
23
  * Use a bare-bones client and the command you need to make an API call.
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient";
5
+ import { DeregisterComputeInput, DeregisterComputeOutput } from "../models/models_0";
6
+ export interface DeregisterComputeCommandInput extends DeregisterComputeInput {
7
+ }
8
+ export interface DeregisterComputeCommandOutput extends DeregisterComputeOutput, __MetadataBearer {
9
+ }
10
+ /**
11
+ * <p>Removes a compute resource from the specified fleet. Deregister your compute resources
12
+ * before you delete the compute.</p>
13
+ * @example
14
+ * Use a bare-bones client and the command you need to make an API call.
15
+ * ```javascript
16
+ * import { GameLiftClient, DeregisterComputeCommand } from "@aws-sdk/client-gamelift"; // ES Modules import
17
+ * // const { GameLiftClient, DeregisterComputeCommand } = require("@aws-sdk/client-gamelift"); // CommonJS import
18
+ * const client = new GameLiftClient(config);
19
+ * const command = new DeregisterComputeCommand(input);
20
+ * const response = await client.send(command);
21
+ * ```
22
+ *
23
+ * @see {@link DeregisterComputeCommandInput} for command's `input` shape.
24
+ * @see {@link DeregisterComputeCommandOutput} for command's `response` shape.
25
+ * @see {@link GameLiftClientResolvedConfig | config} for GameLiftClient's `config` shape.
26
+ *
27
+ */
28
+ export declare class DeregisterComputeCommand extends $Command<DeregisterComputeCommandInput, DeregisterComputeCommandOutput, GameLiftClientResolvedConfig> {
29
+ readonly input: DeregisterComputeCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: DeregisterComputeCommandInput);
32
+ /**
33
+ * @internal
34
+ */
35
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GameLiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeregisterComputeCommandInput, DeregisterComputeCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -11,9 +11,9 @@ export interface DeregisterGameServerCommandOutput extends __MetadataBearer {
11
11
  * <p>
12
12
  * <b>This operation is used with the GameLift FleetIQ solution and game server groups.</b>
13
13
  * </p>
14
- * <p>Removes the game server from a game server group. As a result of this operation, the
15
- * deregistered game server can no longer be claimed and will not be returned in a list of
16
- * active game servers. </p>
14
+ * <p>Removes the game server from a
15
+ * game server group. As a result of this operation, the deregistered game server can no
16
+ * longer be claimed and will not be returned in a list of active game servers. </p>
17
17
  * <p>To deregister a game server, specify the game server group and game server ID. If
18
18
  * successful, this operation emits a CloudWatch event with termination timestamp and
19
19
  * reason.</p>
@@ -21,20 +21,9 @@ export interface DeregisterGameServerCommandOutput extends __MetadataBearer {
21
21
  * <b>Learn more</b>
22
22
  * </p>
23
23
  * <p>
24
- * <a href="https://docs.aws.amazon.com/gamelift/latest/fleetiqguide/gsg-intro.html">GameLift FleetIQ Guide</a>
24
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/fleetiqguide/gsg-intro.html">GameLift FleetIQ
25
+ * Guide</a>
25
26
  * </p>
26
- * <p>
27
- * <b>Related actions</b>
28
- * </p>
29
- * <p>
30
- * <a>RegisterGameServer</a> |
31
- * <a>ListGameServers</a> |
32
- * <a>ClaimGameServer</a> |
33
- * <a>DescribeGameServer</a> |
34
- * <a>UpdateGameServer</a> |
35
- * <a>DeregisterGameServer</a> |
36
- * <a href="https://docs.aws.amazon.com/gamelift/latest/fleetiqguide/reference-awssdk-fleetiq.html">All APIs by task</a>
37
- * </p>
38
27
  * @example
39
28
  * Use a bare-bones client and the command you need to make an API call.
40
29
  * ```javascript
@@ -12,16 +12,10 @@ export interface DescribeAliasCommandOutput extends DescribeAliasOutput, __Metad
12
12
  * settings. To get an alias's target fleet ID only, use <code>ResolveAlias</code>. </p>
13
13
  * <p>To get alias properties, specify the alias ID. If successful, the requested alias
14
14
  * record is returned.</p>
15
- * <p>
15
+ * <p>
16
16
  * <b>Related actions</b>
17
17
  * </p>
18
18
  * <p>
19
- * <a>CreateAlias</a> |
20
- * <a>ListAliases</a> |
21
- * <a>DescribeAlias</a> |
22
- * <a>UpdateAlias</a> |
23
- * <a>DeleteAlias</a> |
24
- * <a>ResolveAlias</a> |
25
19
  * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
26
20
  * </p>
27
21
  * @example
@@ -14,18 +14,10 @@ export interface DescribeBuildCommandOutput extends DescribeBuildOutput, __Metad
14
14
  * <b>Learn more</b>
15
15
  * </p>
16
16
  * <p>
17
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-build-intro.html">
18
- * Upload a Custom Server Build</a>
17
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-build-intro.html"> Upload a Custom
18
+ * Server Build</a>
19
19
  * </p>
20
- * <p>
21
- * <b>Related actions</b>
22
- * </p>
23
- * <p>
24
- * <a>CreateBuild</a> |
25
- * <a>ListBuilds</a> |
26
- * <a>DescribeBuild</a> |
27
- * <a>UpdateBuild</a> |
28
- * <a>DeleteBuild</a> |
20
+ * <p>
29
21
  * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
30
22
  * </p>
31
23
  * @example
@@ -0,0 +1,39 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient";
5
+ import { DescribeComputeInput, DescribeComputeOutput } from "../models/models_0";
6
+ export interface DescribeComputeCommandInput extends DescribeComputeInput {
7
+ }
8
+ export interface DescribeComputeCommandOutput extends DescribeComputeOutput, __MetadataBearer {
9
+ }
10
+ /**
11
+ * <p>Retrieves properties for a compute resource. To request a compute resource specify the
12
+ * fleet ID and compute name. If successful, GameLift returns an object containing the build
13
+ * properties.</p>
14
+ * @example
15
+ * Use a bare-bones client and the command you need to make an API call.
16
+ * ```javascript
17
+ * import { GameLiftClient, DescribeComputeCommand } from "@aws-sdk/client-gamelift"; // ES Modules import
18
+ * // const { GameLiftClient, DescribeComputeCommand } = require("@aws-sdk/client-gamelift"); // CommonJS import
19
+ * const client = new GameLiftClient(config);
20
+ * const command = new DescribeComputeCommand(input);
21
+ * const response = await client.send(command);
22
+ * ```
23
+ *
24
+ * @see {@link DescribeComputeCommandInput} for command's `input` shape.
25
+ * @see {@link DescribeComputeCommandOutput} for command's `response` shape.
26
+ * @see {@link GameLiftClientResolvedConfig | config} for GameLiftClient's `config` shape.
27
+ *
28
+ */
29
+ export declare class DescribeComputeCommand extends $Command<DescribeComputeCommandInput, DescribeComputeCommandOutput, GameLiftClientResolvedConfig> {
30
+ readonly input: DescribeComputeCommandInput;
31
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
32
+ constructor(input: DescribeComputeCommandInput);
33
+ /**
34
+ * @internal
35
+ */
36
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GameLiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeComputeCommandInput, DescribeComputeCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -16,10 +16,10 @@ export interface DescribeEC2InstanceLimitsCommandOutput extends DescribeEC2Insta
16
16
  * fleets. You can request a limit increase for your account by using the <b>Service limits</b> page in the GameLift console.</p>
17
17
  * <p>Instance limits differ based on whether the instances are deployed in a fleet's home
18
18
  * Region or in a remote location. For remote locations, limits also differ based on the
19
- * combination of home Region and remote location. All requests must specify an Amazon Web Services Region
20
- * (either explicitly or as your default settings). To get the limit for a remote location,
21
- * you must also specify the location. For example, the following requests all return
22
- * different results: </p>
19
+ * combination of home Region and remote location. All requests must specify an Amazon Web Services
20
+ * Region (either explicitly or as your default settings). To get the limit for a remote
21
+ * location, you must also specify the location. For example, the following requests all
22
+ * return different results: </p>
23
23
  * <ul>
24
24
  * <li>
25
25
  * <p>Request specifies the Region <code>ap-northeast-1</code> with no location. The
@@ -44,15 +44,15 @@ export interface DescribeEC2InstanceLimitsCommandOutput extends DescribeEC2Insta
44
44
  * <p>This operation can be used in the following ways:</p>
45
45
  * <ul>
46
46
  * <li>
47
- * <p>To get limit and usage data for all instance types that are deployed in an Amazon Web Services
48
- * Region by fleets that reside in the same Region: Specify the Region only.
47
+ * <p>To get limit and usage data for all instance types that are deployed in an
48
+ * Amazon Web Services Region by fleets that reside in the same Region: Specify the Region only.
49
49
  * Optionally, specify a single instance type to retrieve information for.</p>
50
50
  * </li>
51
51
  * <li>
52
52
  * <p>To get limit and usage data for all instance types that are deployed to a
53
- * remote location by fleets that reside in different Amazon Web Services Region: Provide both the
54
- * Amazon Web Services Region and the remote location. Optionally, specify a single instance type
55
- * to retrieve information for.</p>
53
+ * remote location by fleets that reside in different Amazon Web Services Region: Provide both
54
+ * the Amazon Web Services Region and the remote location. Optionally, specify a single instance
55
+ * type to retrieve information for.</p>
56
56
  * </li>
57
57
  * </ul>
58
58
  * <p>If successful, an <code>EC2InstanceLimits</code> object is returned with limits and
@@ -63,22 +63,6 @@ export interface DescribeEC2InstanceLimitsCommandOutput extends DescribeEC2Insta
63
63
  * <p>
64
64
  * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-intro.html">Setting up GameLift fleets</a>
65
65
  * </p>
66
- *
67
- * <p>
68
- * <b>Related actions</b>
69
- * </p>
70
- * <p>
71
- * <a>CreateFleet</a> |
72
- * <a>UpdateFleetCapacity</a> |
73
- * <a>PutScalingPolicy</a> |
74
- * <a>DescribeEC2InstanceLimits</a> |
75
- * <a>DescribeFleetAttributes</a> |
76
- * <a>DescribeFleetLocationAttributes</a> |
77
- * <a>UpdateFleetAttributes</a> |
78
- * <a>StopFleetActions</a> |
79
- * <a>DeleteFleet</a> |
80
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
81
- * </p>
82
66
  * @example
83
67
  * Use a bare-bones client and the command you need to make an API call.
84
68
  * ```javascript
@@ -25,31 +25,16 @@ export interface DescribeFleetAttributesCommandOutput extends DescribeFleetAttri
25
25
  * <p>If successful, a <code>FleetAttributes</code> object is returned for each fleet
26
26
  * requested, unless the fleet identifier is not found. </p>
27
27
  * <note>
28
- * <p>Some API operations limit the number of fleet IDs that allowed in one request. If a
29
- * request exceeds this limit, the request fails and the error message contains the
28
+ * <p>Some API operations limit the number of fleet IDs that allowed in one request. If
29
+ * a request exceeds this limit, the request fails and the error message contains the
30
30
  * maximum allowed number.</p>
31
31
  * </note>
32
- * <p>
32
+ * <p>
33
33
  * <b>Learn more</b>
34
34
  * </p>
35
- * <p>
36
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-intro.html">Setting up GameLift fleets</a>
37
- * </p>
38
- * <p>
39
- * <b>Related actions</b>
40
- * </p>
41
- * <p>
42
- * <a>ListFleets</a> |
43
- * <a>DescribeEC2InstanceLimits</a> |
44
- * <a>DescribeFleetAttributes</a> |
45
- * <a>DescribeFleetCapacity</a> |
46
- * <a>DescribeFleetEvents</a> |
47
- * <a>DescribeFleetLocationAttributes</a> |
48
- * <a>DescribeFleetPortSettings</a> |
49
- * <a>DescribeFleetUtilization</a> |
50
- * <a>DescribeRuntimeConfiguration</a> |
51
- * <a>DescribeScalingPolicies</a> |
52
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
35
+ * <p>
36
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-intro.html">Setting up GameLift
37
+ * fleets</a>
53
38
  * </p>
54
39
  * @example
55
40
  * Use a bare-bones client and the command you need to make an API call.
@@ -11,7 +11,7 @@ export interface DescribeFleetCapacityCommandOutput extends DescribeFleetCapacit
11
11
  * <p>Retrieves the resource capacity settings for one or more fleets. The data returned
12
12
  * includes the current fleet capacity (number of EC2 instances), and settings that can
13
13
  * control how capacity scaling. For fleets with remote locations, this operation retrieves
14
- * data for the fleet's home Region only. See <a>DescribeFleetLocationCapacity</a> to get capacity settings for a fleet's remote locations.</p>
14
+ * data for the fleet's home Region only.</p>
15
15
  * <p>This operation can be used in the following ways: </p>
16
16
  * <ul>
17
17
  * <li>
@@ -19,12 +19,13 @@ export interface DescribeFleetCapacityCommandOutput extends DescribeFleetCapacit
19
19
  * IDs or fleet ARNs. </p>
20
20
  * </li>
21
21
  * <li>
22
- * <p>To get capacity data for all fleets, do not provide a fleet identifier. </p>
22
+ * <p>To get capacity data for all fleets, do not provide a fleet identifier.
23
+ * </p>
23
24
  * </li>
24
25
  * </ul>
25
26
  * <p>When requesting multiple fleets, use the pagination parameters to retrieve results as
26
27
  * a set of sequential pages. </p>
27
- * <p>If successful, a <a>FleetCapacity</a> object is returned for each requested
28
+ * <p>If successful, a <code>FleetCapacity</code> object is returned for each requested
28
29
  * fleet ID. Each FleetCapacity object includes a <code>Location</code> property, which is
29
30
  * set to the fleet's home Region. When a list of fleet IDs is provided, attribute objects
30
31
  * are returned only for fleets that currently exist.</p>
@@ -33,31 +34,16 @@ export interface DescribeFleetCapacityCommandOutput extends DescribeFleetCapacit
33
34
  * request. If a request exceeds this limit, the request fails and the error message
34
35
  * includes the maximum allowed.</p>
35
36
  * </note>
36
- * <p>
37
+ * <p>
37
38
  * <b>Learn more</b>
38
39
  * </p>
39
- * <p>
40
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-intro.html">Setting up GameLift fleets</a>
40
+ * <p>
41
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-intro.html">Setting up GameLift
42
+ * fleets</a>
41
43
  * </p>
42
44
  * <p>
43
45
  * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/monitoring-cloudwatch.html#gamelift-metrics-fleet">GameLift metrics for fleets</a>
44
46
  * </p>
45
- * <p>
46
- * <b>Related actions</b>
47
- * </p>
48
- * <p>
49
- * <a>ListFleets</a> |
50
- * <a>DescribeEC2InstanceLimits</a> |
51
- * <a>DescribeFleetAttributes</a> |
52
- * <a>DescribeFleetCapacity</a> |
53
- * <a>DescribeFleetEvents</a> |
54
- * <a>DescribeFleetLocationAttributes</a> |
55
- * <a>DescribeFleetPortSettings</a> |
56
- * <a>DescribeFleetUtilization</a> |
57
- * <a>DescribeRuntimeConfiguration</a> |
58
- * <a>DescribeScalingPolicies</a> |
59
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
60
- * </p>
61
47
  * @example
62
48
  * Use a bare-bones client and the command you need to make an API call.
63
49
  * ```javascript
@@ -16,27 +16,12 @@ export interface DescribeFleetEventsCommandOutput extends DescribeFleetEventsOut
16
16
  * retrieve results as a set of sequential pages. </p>
17
17
  * <p>If successful, a collection of event log entries matching the request are
18
18
  * returned.</p>
19
- * <p>
19
+ * <p>
20
20
  * <b>Learn more</b>
21
21
  * </p>
22
- * <p>
23
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-intro.html">Setting up GameLift fleets</a>
24
- * </p>
25
- * <p>
26
- * <b>Related actions</b>
27
- * </p>
28
- * <p>
29
- * <a>ListFleets</a> |
30
- * <a>DescribeEC2InstanceLimits</a> |
31
- * <a>DescribeFleetAttributes</a> |
32
- * <a>DescribeFleetCapacity</a> |
33
- * <a>DescribeFleetEvents</a> |
34
- * <a>DescribeFleetLocationAttributes</a> |
35
- * <a>DescribeFleetPortSettings</a> |
36
- * <a>DescribeFleetUtilization</a> |
37
- * <a>DescribeRuntimeConfiguration</a> |
38
- * <a>DescribeScalingPolicies</a> |
39
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
22
+ * <p>
23
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-intro.html">Setting up GameLift
24
+ * fleets</a>
40
25
  * </p>
41
26
  * @example
42
27
  * Use a bare-bones client and the command you need to make an API call.
@@ -27,27 +27,12 @@ export interface DescribeFleetLocationAttributesCommandOutput extends DescribeFl
27
27
  * location. If the fleet does not have a requested location, no information is returned.
28
28
  * This operation does not return the home Region. To get information on a fleet's home
29
29
  * Region, call <code>DescribeFleetAttributes</code>.</p>
30
- * <p>
30
+ * <p>
31
31
  * <b>Learn more</b>
32
32
  * </p>
33
- * <p>
34
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-intro.html">Setting up GameLift fleets</a>
35
- * </p>
36
- * <p>
37
- * <b>Related actions</b>
38
- * </p>
39
- * <p>
40
- * <a>CreateFleetLocations</a> |
41
- * <a>DescribeFleetLocationAttributes</a> |
42
- * <a>DescribeFleetLocationCapacity</a> |
43
- * <a>DescribeFleetLocationUtilization</a> |
44
- * <a>DescribeFleetAttributes</a> |
45
- * <a>DescribeFleetCapacity</a> |
46
- * <a>DescribeFleetUtilization</a> |
47
- * <a>UpdateFleetCapacity</a> |
48
- * <a>StopFleetActions</a> |
49
- * <a>DeleteFleetLocations</a> |
50
- * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
33
+ * <p>
34
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-intro.html">Setting
35
+ * up GameLift fleets</a>
51
36
  * </p>
52
37
  * @example
53
38
  * Use a bare-bones client and the command you need to make an API call.