@aws-sdk/client-gamelift 3.32.0 → 3.36.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 (1403) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/dist-cjs/GameLift.js +1492 -0
  3. package/dist-cjs/GameLiftClient.js +100 -0
  4. package/dist-cjs/commands/AcceptMatchCommand.js +98 -0
  5. package/dist-cjs/commands/ClaimGameServerCommand.js +112 -0
  6. package/dist-cjs/commands/CreateAliasCommand.js +85 -0
  7. package/dist-cjs/commands/CreateBuildCommand.js +113 -0
  8. package/dist-cjs/commands/CreateFleetCommand.js +111 -0
  9. package/dist-cjs/commands/CreateFleetLocationsCommand.js +102 -0
  10. package/dist-cjs/commands/CreateGameServerGroupCommand.js +113 -0
  11. package/dist-cjs/commands/CreateGameSessionCommand.js +113 -0
  12. package/dist-cjs/commands/CreateGameSessionQueueCommand.js +103 -0
  13. package/dist-cjs/commands/CreateMatchmakingConfigurationCommand.js +101 -0
  14. package/dist-cjs/commands/CreateMatchmakingRuleSetCommand.js +106 -0
  15. package/dist-cjs/commands/CreatePlayerSessionCommand.js +83 -0
  16. package/dist-cjs/commands/CreatePlayerSessionsCommand.js +83 -0
  17. package/dist-cjs/commands/CreateScriptCommand.js +103 -0
  18. package/dist-cjs/commands/CreateVpcPeeringAuthorizationCommand.js +93 -0
  19. package/dist-cjs/commands/CreateVpcPeeringConnectionCommand.js +90 -0
  20. package/dist-cjs/commands/DeleteAliasCommand.js +74 -0
  21. package/dist-cjs/commands/DeleteBuildCommand.js +81 -0
  22. package/dist-cjs/commands/DeleteFleetCommand.js +94 -0
  23. package/dist-cjs/commands/DeleteFleetLocationsCommand.js +88 -0
  24. package/dist-cjs/commands/DeleteGameServerGroupCommand.js +107 -0
  25. package/dist-cjs/commands/DeleteGameSessionQueueCommand.js +78 -0
  26. package/dist-cjs/commands/DeleteMatchmakingConfigurationCommand.js +76 -0
  27. package/dist-cjs/commands/DeleteMatchmakingRuleSetCommand.js +87 -0
  28. package/dist-cjs/commands/DeleteScalingPolicyCommand.js +78 -0
  29. package/dist-cjs/commands/DeleteScriptCommand.js +83 -0
  30. package/dist-cjs/commands/DeleteVpcPeeringAuthorizationCommand.js +73 -0
  31. package/dist-cjs/commands/DeleteVpcPeeringConnectionCommand.js +78 -0
  32. package/dist-cjs/commands/DeregisterGameServerCommand.js +86 -0
  33. package/dist-cjs/commands/DescribeAliasCommand.js +75 -0
  34. package/dist-cjs/commands/DescribeBuildCommand.js +79 -0
  35. package/dist-cjs/commands/DescribeEC2InstanceLimitsCommand.js +130 -0
  36. package/dist-cjs/commands/DescribeFleetAttributesCommand.js +102 -0
  37. package/dist-cjs/commands/DescribeFleetCapacityCommand.js +109 -0
  38. package/dist-cjs/commands/DescribeFleetEventsCommand.js +89 -0
  39. package/dist-cjs/commands/DescribeFleetLocationAttributesCommand.js +100 -0
  40. package/dist-cjs/commands/DescribeFleetLocationCapacityCommand.js +92 -0
  41. package/dist-cjs/commands/DescribeFleetLocationUtilizationCommand.js +92 -0
  42. package/dist-cjs/commands/DescribeFleetPortSettingsCommand.js +100 -0
  43. package/dist-cjs/commands/DescribeFleetUtilizationCommand.js +110 -0
  44. package/dist-cjs/commands/DescribeGameServerCommand.js +84 -0
  45. package/dist-cjs/commands/DescribeGameServerGroupCommand.js +88 -0
  46. package/dist-cjs/commands/DescribeGameServerInstancesCommand.js +98 -0
  47. package/dist-cjs/commands/DescribeGameSessionDetailsCommand.js +108 -0
  48. package/dist-cjs/commands/DescribeGameSessionPlacementCommand.js +77 -0
  49. package/dist-cjs/commands/DescribeGameSessionQueuesCommand.js +81 -0
  50. package/dist-cjs/commands/DescribeGameSessionsCommand.js +110 -0
  51. package/dist-cjs/commands/DescribeInstancesCommand.js +98 -0
  52. package/dist-cjs/commands/DescribeMatchmakingCommand.js +94 -0
  53. package/dist-cjs/commands/DescribeMatchmakingConfigurationsCommand.js +87 -0
  54. package/dist-cjs/commands/DescribeMatchmakingRuleSetsCommand.js +88 -0
  55. package/dist-cjs/commands/DescribePlayerSessionsCommand.js +94 -0
  56. package/dist-cjs/commands/DescribeRuntimeConfigurationCommand.js +92 -0
  57. package/dist-cjs/commands/DescribeScalingPoliciesCommand.js +82 -0
  58. package/dist-cjs/commands/DescribeScriptCommand.js +79 -0
  59. package/dist-cjs/commands/DescribeVpcPeeringAuthorizationsCommand.js +74 -0
  60. package/dist-cjs/commands/DescribeVpcPeeringConnectionsCommand.js +78 -0
  61. package/dist-cjs/commands/GetGameSessionLogUrlCommand.js +82 -0
  62. package/dist-cjs/commands/GetInstanceAccessCommand.js +94 -0
  63. package/dist-cjs/commands/ListAliasesCommand.js +77 -0
  64. package/dist-cjs/commands/ListBuildsCommand.js +84 -0
  65. package/dist-cjs/commands/ListFleetsCommand.js +106 -0
  66. package/dist-cjs/commands/ListGameServerGroupsCommand.js +85 -0
  67. package/dist-cjs/commands/ListGameServersCommand.js +83 -0
  68. package/dist-cjs/commands/ListScriptsCommand.js +77 -0
  69. package/dist-cjs/commands/ListTagsForResourceCommand.js +108 -0
  70. package/dist-cjs/commands/PutScalingPolicyCommand.js +136 -0
  71. package/dist-cjs/commands/RegisterGameServerCommand.js +94 -0
  72. package/dist-cjs/commands/RequestUploadCredentialsCommand.js +83 -0
  73. package/dist-cjs/commands/ResolveAliasCommand.js +72 -0
  74. package/dist-cjs/commands/ResumeGameServerGroupCommand.js +91 -0
  75. package/dist-cjs/commands/SearchGameSessionsCommand.js +156 -0
  76. package/dist-cjs/commands/StartFleetActionsCommand.js +97 -0
  77. package/dist-cjs/commands/StartGameSessionPlacementCommand.js +114 -0
  78. package/dist-cjs/commands/StartMatchBackfillCommand.js +106 -0
  79. package/dist-cjs/commands/StartMatchmakingCommand.js +100 -0
  80. package/dist-cjs/commands/StopFleetActionsCommand.js +102 -0
  81. package/dist-cjs/commands/StopGameSessionPlacementCommand.js +77 -0
  82. package/dist-cjs/commands/StopMatchmakingCommand.js +89 -0
  83. package/dist-cjs/commands/SuspendGameServerGroupCommand.js +101 -0
  84. package/dist-cjs/commands/TagResourceCommand.js +110 -0
  85. package/dist-cjs/commands/UntagResourceCommand.js +110 -0
  86. package/dist-cjs/commands/UpdateAliasCommand.js +75 -0
  87. package/dist-cjs/commands/UpdateBuildCommand.js +80 -0
  88. package/dist-cjs/commands/UpdateFleetAttributesCommand.js +87 -0
  89. package/dist-cjs/commands/UpdateFleetCapacityCommand.js +120 -0
  90. package/dist-cjs/commands/UpdateFleetPortSettingsCommand.js +93 -0
  91. package/dist-cjs/commands/UpdateGameServerCommand.js +105 -0
  92. package/dist-cjs/commands/UpdateGameServerGroupCommand.js +89 -0
  93. package/dist-cjs/commands/UpdateGameSessionCommand.js +78 -0
  94. package/dist-cjs/commands/UpdateGameSessionQueueCommand.js +80 -0
  95. package/dist-cjs/commands/UpdateMatchmakingConfigurationCommand.js +83 -0
  96. package/dist-cjs/commands/UpdateRuntimeConfigurationCommand.js +94 -0
  97. package/dist-cjs/commands/UpdateScriptCommand.js +86 -0
  98. package/dist-cjs/commands/ValidateMatchmakingRuleSetCommand.js +87 -0
  99. package/dist-cjs/endpoints.js +56 -0
  100. package/dist-cjs/index.js +123 -0
  101. package/dist-cjs/models/index.js +4 -0
  102. package/dist-cjs/models/models_0.js +2539 -0
  103. package/dist-cjs/pagination/DescribeFleetAttributesPaginator.js +45 -0
  104. package/dist-cjs/pagination/DescribeFleetCapacityPaginator.js +45 -0
  105. package/dist-cjs/pagination/DescribeFleetEventsPaginator.js +45 -0
  106. package/dist-cjs/pagination/DescribeFleetLocationAttributesPaginator.js +45 -0
  107. package/dist-cjs/pagination/DescribeFleetUtilizationPaginator.js +45 -0
  108. package/dist-cjs/pagination/DescribeGameServerInstancesPaginator.js +45 -0
  109. package/dist-cjs/pagination/DescribeGameSessionDetailsPaginator.js +45 -0
  110. package/dist-cjs/pagination/DescribeGameSessionQueuesPaginator.js +45 -0
  111. package/dist-cjs/pagination/DescribeGameSessionsPaginator.js +45 -0
  112. package/dist-cjs/pagination/DescribeInstancesPaginator.js +45 -0
  113. package/dist-cjs/pagination/DescribeMatchmakingConfigurationsPaginator.js +45 -0
  114. package/dist-cjs/pagination/DescribeMatchmakingRuleSetsPaginator.js +45 -0
  115. package/dist-cjs/pagination/DescribePlayerSessionsPaginator.js +45 -0
  116. package/dist-cjs/pagination/DescribeScalingPoliciesPaginator.js +45 -0
  117. package/dist-cjs/pagination/Interfaces.js +2 -0
  118. package/dist-cjs/pagination/ListAliasesPaginator.js +45 -0
  119. package/dist-cjs/pagination/ListBuildsPaginator.js +45 -0
  120. package/dist-cjs/pagination/ListFleetsPaginator.js +45 -0
  121. package/dist-cjs/pagination/ListGameServerGroupsPaginator.js +45 -0
  122. package/dist-cjs/pagination/ListGameServersPaginator.js +45 -0
  123. package/dist-cjs/pagination/ListScriptsPaginator.js +45 -0
  124. package/dist-cjs/pagination/SearchGameSessionsPaginator.js +45 -0
  125. package/dist-cjs/protocols/Aws_json1_1.js +11485 -0
  126. package/dist-cjs/runtimeConfig.browser.js +41 -0
  127. package/dist-cjs/runtimeConfig.js +46 -0
  128. package/dist-cjs/runtimeConfig.native.js +19 -0
  129. package/dist-cjs/runtimeConfig.shared.js +20 -0
  130. package/dist-es/GameLift.js +1435 -0
  131. package/dist-es/GameLiftClient.js +37 -0
  132. package/dist-es/commands/AcceptMatchCommand.js +39 -0
  133. package/dist-es/commands/ClaimGameServerCommand.js +39 -0
  134. package/dist-es/commands/CreateAliasCommand.js +39 -0
  135. package/dist-es/commands/CreateBuildCommand.js +39 -0
  136. package/dist-es/commands/CreateFleetCommand.js +39 -0
  137. package/dist-es/commands/CreateFleetLocationsCommand.js +39 -0
  138. package/dist-es/commands/CreateGameServerGroupCommand.js +39 -0
  139. package/dist-es/commands/CreateGameSessionCommand.js +39 -0
  140. package/dist-es/commands/CreateGameSessionQueueCommand.js +39 -0
  141. package/dist-es/commands/CreateMatchmakingConfigurationCommand.js +39 -0
  142. package/dist-es/commands/CreateMatchmakingRuleSetCommand.js +39 -0
  143. package/dist-es/commands/CreatePlayerSessionCommand.js +39 -0
  144. package/dist-es/commands/CreatePlayerSessionsCommand.js +39 -0
  145. package/dist-es/commands/CreateScriptCommand.js +39 -0
  146. package/dist-es/commands/CreateVpcPeeringAuthorizationCommand.js +39 -0
  147. package/dist-es/commands/CreateVpcPeeringConnectionCommand.js +39 -0
  148. package/dist-es/commands/DeleteAliasCommand.js +39 -0
  149. package/dist-es/commands/DeleteBuildCommand.js +39 -0
  150. package/dist-es/commands/DeleteFleetCommand.js +39 -0
  151. package/dist-es/commands/DeleteFleetLocationsCommand.js +39 -0
  152. package/dist-es/commands/DeleteGameServerGroupCommand.js +39 -0
  153. package/dist-es/commands/DeleteGameSessionQueueCommand.js +39 -0
  154. package/dist-es/commands/DeleteMatchmakingConfigurationCommand.js +39 -0
  155. package/dist-es/commands/DeleteMatchmakingRuleSetCommand.js +39 -0
  156. package/dist-es/commands/DeleteScalingPolicyCommand.js +39 -0
  157. package/dist-es/commands/DeleteScriptCommand.js +39 -0
  158. package/dist-es/commands/DeleteVpcPeeringAuthorizationCommand.js +39 -0
  159. package/dist-es/commands/DeleteVpcPeeringConnectionCommand.js +39 -0
  160. package/dist-es/commands/DeregisterGameServerCommand.js +39 -0
  161. package/dist-es/commands/DescribeAliasCommand.js +39 -0
  162. package/dist-es/commands/DescribeBuildCommand.js +39 -0
  163. package/dist-es/commands/DescribeEC2InstanceLimitsCommand.js +39 -0
  164. package/dist-es/commands/DescribeFleetAttributesCommand.js +39 -0
  165. package/dist-es/commands/DescribeFleetCapacityCommand.js +39 -0
  166. package/dist-es/commands/DescribeFleetEventsCommand.js +39 -0
  167. package/dist-es/commands/DescribeFleetLocationAttributesCommand.js +39 -0
  168. package/dist-es/commands/DescribeFleetLocationCapacityCommand.js +39 -0
  169. package/dist-es/commands/DescribeFleetLocationUtilizationCommand.js +39 -0
  170. package/dist-es/commands/DescribeFleetPortSettingsCommand.js +39 -0
  171. package/dist-es/commands/DescribeFleetUtilizationCommand.js +39 -0
  172. package/dist-es/commands/DescribeGameServerCommand.js +39 -0
  173. package/dist-es/commands/DescribeGameServerGroupCommand.js +39 -0
  174. package/dist-es/commands/DescribeGameServerInstancesCommand.js +39 -0
  175. package/dist-es/commands/DescribeGameSessionDetailsCommand.js +39 -0
  176. package/dist-es/commands/DescribeGameSessionPlacementCommand.js +39 -0
  177. package/dist-es/commands/DescribeGameSessionQueuesCommand.js +39 -0
  178. package/dist-es/commands/DescribeGameSessionsCommand.js +39 -0
  179. package/dist-es/commands/DescribeInstancesCommand.js +39 -0
  180. package/dist-es/commands/DescribeMatchmakingCommand.js +39 -0
  181. package/dist-es/commands/DescribeMatchmakingConfigurationsCommand.js +39 -0
  182. package/dist-es/commands/DescribeMatchmakingRuleSetsCommand.js +39 -0
  183. package/dist-es/commands/DescribePlayerSessionsCommand.js +39 -0
  184. package/dist-es/commands/DescribeRuntimeConfigurationCommand.js +39 -0
  185. package/dist-es/commands/DescribeScalingPoliciesCommand.js +39 -0
  186. package/dist-es/commands/DescribeScriptCommand.js +39 -0
  187. package/dist-es/commands/DescribeVpcPeeringAuthorizationsCommand.js +39 -0
  188. package/dist-es/commands/DescribeVpcPeeringConnectionsCommand.js +39 -0
  189. package/dist-es/commands/GetGameSessionLogUrlCommand.js +39 -0
  190. package/dist-es/commands/GetInstanceAccessCommand.js +39 -0
  191. package/dist-es/commands/ListAliasesCommand.js +39 -0
  192. package/dist-es/commands/ListBuildsCommand.js +39 -0
  193. package/dist-es/commands/ListFleetsCommand.js +39 -0
  194. package/dist-es/commands/ListGameServerGroupsCommand.js +39 -0
  195. package/dist-es/commands/ListGameServersCommand.js +39 -0
  196. package/dist-es/commands/ListScriptsCommand.js +39 -0
  197. package/dist-es/commands/ListTagsForResourceCommand.js +39 -0
  198. package/dist-es/commands/PutScalingPolicyCommand.js +39 -0
  199. package/dist-es/commands/RegisterGameServerCommand.js +39 -0
  200. package/dist-es/commands/RequestUploadCredentialsCommand.js +39 -0
  201. package/dist-es/commands/ResolveAliasCommand.js +39 -0
  202. package/dist-es/commands/ResumeGameServerGroupCommand.js +39 -0
  203. package/dist-es/commands/SearchGameSessionsCommand.js +39 -0
  204. package/dist-es/commands/StartFleetActionsCommand.js +39 -0
  205. package/dist-es/commands/StartGameSessionPlacementCommand.js +39 -0
  206. package/dist-es/commands/StartMatchBackfillCommand.js +39 -0
  207. package/dist-es/commands/StartMatchmakingCommand.js +39 -0
  208. package/dist-es/commands/StopFleetActionsCommand.js +39 -0
  209. package/dist-es/commands/StopGameSessionPlacementCommand.js +39 -0
  210. package/dist-es/commands/StopMatchmakingCommand.js +39 -0
  211. package/dist-es/commands/SuspendGameServerGroupCommand.js +39 -0
  212. package/dist-es/commands/TagResourceCommand.js +39 -0
  213. package/dist-es/commands/UntagResourceCommand.js +39 -0
  214. package/dist-es/commands/UpdateAliasCommand.js +39 -0
  215. package/dist-es/commands/UpdateBuildCommand.js +39 -0
  216. package/dist-es/commands/UpdateFleetAttributesCommand.js +39 -0
  217. package/dist-es/commands/UpdateFleetCapacityCommand.js +39 -0
  218. package/dist-es/commands/UpdateFleetPortSettingsCommand.js +39 -0
  219. package/dist-es/commands/UpdateGameServerCommand.js +39 -0
  220. package/dist-es/commands/UpdateGameServerGroupCommand.js +39 -0
  221. package/dist-es/commands/UpdateGameSessionCommand.js +39 -0
  222. package/dist-es/commands/UpdateGameSessionQueueCommand.js +39 -0
  223. package/dist-es/commands/UpdateMatchmakingConfigurationCommand.js +39 -0
  224. package/dist-es/commands/UpdateRuntimeConfigurationCommand.js +39 -0
  225. package/dist-es/commands/UpdateScriptCommand.js +39 -0
  226. package/dist-es/commands/ValidateMatchmakingRuleSetCommand.js +39 -0
  227. package/dist-es/endpoints.js +52 -0
  228. package/{dist/types/index.d.ts → dist-es/index.js} +0 -0
  229. package/{dist/types/models/index.d.ts → dist-es/models/index.js} +0 -0
  230. package/dist-es/models/models_0.js +1253 -0
  231. package/dist-es/pagination/DescribeFleetAttributesPaginator.js +74 -0
  232. package/dist-es/pagination/DescribeFleetCapacityPaginator.js +74 -0
  233. package/dist-es/pagination/DescribeFleetEventsPaginator.js +74 -0
  234. package/dist-es/pagination/DescribeFleetLocationAttributesPaginator.js +74 -0
  235. package/dist-es/pagination/DescribeFleetUtilizationPaginator.js +74 -0
  236. package/dist-es/pagination/DescribeGameServerInstancesPaginator.js +74 -0
  237. package/dist-es/pagination/DescribeGameSessionDetailsPaginator.js +74 -0
  238. package/dist-es/pagination/DescribeGameSessionQueuesPaginator.js +74 -0
  239. package/dist-es/pagination/DescribeGameSessionsPaginator.js +74 -0
  240. package/dist-es/pagination/DescribeInstancesPaginator.js +74 -0
  241. package/dist-es/pagination/DescribeMatchmakingConfigurationsPaginator.js +74 -0
  242. package/dist-es/pagination/DescribeMatchmakingRuleSetsPaginator.js +74 -0
  243. package/dist-es/pagination/DescribePlayerSessionsPaginator.js +74 -0
  244. package/dist-es/pagination/DescribeScalingPoliciesPaginator.js +74 -0
  245. package/dist-es/pagination/Interfaces.js +1 -0
  246. package/dist-es/pagination/ListAliasesPaginator.js +74 -0
  247. package/dist-es/pagination/ListBuildsPaginator.js +74 -0
  248. package/dist-es/pagination/ListFleetsPaginator.js +74 -0
  249. package/dist-es/pagination/ListGameServerGroupsPaginator.js +74 -0
  250. package/dist-es/pagination/ListGameServersPaginator.js +74 -0
  251. package/dist-es/pagination/ListScriptsPaginator.js +74 -0
  252. package/dist-es/pagination/SearchGameSessionsPaginator.js +74 -0
  253. package/dist-es/protocols/Aws_json1_1.js +11904 -0
  254. package/dist-es/runtimeConfig.browser.js +16 -0
  255. package/dist-es/runtimeConfig.js +21 -0
  256. package/dist-es/runtimeConfig.native.js +8 -0
  257. package/dist-es/runtimeConfig.shared.js +13 -0
  258. package/dist-types/GameLift.d.ts +3902 -0
  259. package/dist-types/GameLiftClient.d.ts +284 -0
  260. package/dist-types/commands/AcceptMatchCommand.d.ts +73 -0
  261. package/dist-types/commands/ClaimGameServerCommand.d.ts +87 -0
  262. package/dist-types/commands/CreateAliasCommand.d.ts +60 -0
  263. package/dist-types/commands/CreateBuildCommand.d.ts +88 -0
  264. package/dist-types/commands/CreateFleetCommand.d.ts +86 -0
  265. package/dist-types/commands/CreateFleetLocationsCommand.d.ts +77 -0
  266. package/dist-types/commands/CreateGameServerGroupCommand.d.ts +88 -0
  267. package/dist-types/commands/CreateGameSessionCommand.d.ts +88 -0
  268. package/dist-types/commands/CreateGameSessionQueueCommand.d.ts +78 -0
  269. package/dist-types/commands/CreateMatchmakingConfigurationCommand.d.ts +76 -0
  270. package/dist-types/commands/CreateMatchmakingRuleSetCommand.d.ts +81 -0
  271. package/dist-types/commands/CreatePlayerSessionCommand.d.ts +58 -0
  272. package/dist-types/commands/CreatePlayerSessionsCommand.d.ts +58 -0
  273. package/dist-types/commands/CreateScriptCommand.d.ts +78 -0
  274. package/dist-types/commands/CreateVpcPeeringAuthorizationCommand.d.ts +68 -0
  275. package/dist-types/commands/CreateVpcPeeringConnectionCommand.d.ts +65 -0
  276. package/dist-types/commands/DeleteAliasCommand.d.ts +49 -0
  277. package/dist-types/commands/DeleteBuildCommand.d.ts +56 -0
  278. package/dist-types/commands/DeleteFleetCommand.d.ts +69 -0
  279. package/dist-types/commands/DeleteFleetLocationsCommand.d.ts +63 -0
  280. package/dist-types/commands/DeleteGameServerGroupCommand.d.ts +82 -0
  281. package/dist-types/commands/DeleteGameSessionQueueCommand.d.ts +53 -0
  282. package/dist-types/commands/DeleteMatchmakingConfigurationCommand.d.ts +51 -0
  283. package/dist-types/commands/DeleteMatchmakingRuleSetCommand.d.ts +62 -0
  284. package/dist-types/commands/DeleteScalingPolicyCommand.d.ts +53 -0
  285. package/dist-types/commands/DeleteScriptCommand.d.ts +58 -0
  286. package/dist-types/commands/DeleteVpcPeeringAuthorizationCommand.d.ts +48 -0
  287. package/dist-types/commands/DeleteVpcPeeringConnectionCommand.d.ts +53 -0
  288. package/dist-types/commands/DeregisterGameServerCommand.d.ts +61 -0
  289. package/dist-types/commands/DescribeAliasCommand.d.ts +50 -0
  290. package/dist-types/commands/DescribeBuildCommand.d.ts +54 -0
  291. package/dist-types/commands/DescribeEC2InstanceLimitsCommand.d.ts +105 -0
  292. package/dist-types/commands/DescribeFleetAttributesCommand.d.ts +77 -0
  293. package/dist-types/commands/DescribeFleetCapacityCommand.d.ts +84 -0
  294. package/dist-types/commands/DescribeFleetEventsCommand.d.ts +64 -0
  295. package/dist-types/commands/DescribeFleetLocationAttributesCommand.d.ts +75 -0
  296. package/dist-types/commands/DescribeFleetLocationCapacityCommand.d.ts +67 -0
  297. package/dist-types/commands/DescribeFleetLocationUtilizationCommand.d.ts +67 -0
  298. package/dist-types/commands/DescribeFleetPortSettingsCommand.d.ts +75 -0
  299. package/dist-types/commands/DescribeFleetUtilizationCommand.d.ts +85 -0
  300. package/dist-types/commands/DescribeGameServerCommand.d.ts +59 -0
  301. package/dist-types/commands/DescribeGameServerGroupCommand.d.ts +63 -0
  302. package/dist-types/commands/DescribeGameServerInstancesCommand.d.ts +73 -0
  303. package/dist-types/commands/DescribeGameSessionDetailsCommand.d.ts +83 -0
  304. package/dist-types/commands/DescribeGameSessionPlacementCommand.d.ts +52 -0
  305. package/dist-types/commands/DescribeGameSessionQueuesCommand.d.ts +56 -0
  306. package/dist-types/commands/DescribeGameSessionsCommand.d.ts +85 -0
  307. package/dist-types/commands/DescribeInstancesCommand.d.ts +73 -0
  308. package/dist-types/commands/DescribeMatchmakingCommand.d.ts +69 -0
  309. package/dist-types/commands/DescribeMatchmakingConfigurationsCommand.d.ts +62 -0
  310. package/dist-types/commands/DescribeMatchmakingRuleSetsCommand.d.ts +63 -0
  311. package/dist-types/commands/DescribePlayerSessionsCommand.d.ts +69 -0
  312. package/dist-types/commands/DescribeRuntimeConfigurationCommand.d.ts +67 -0
  313. package/dist-types/commands/DescribeScalingPoliciesCommand.d.ts +57 -0
  314. package/dist-types/commands/DescribeScriptCommand.d.ts +54 -0
  315. package/dist-types/commands/DescribeVpcPeeringAuthorizationsCommand.d.ts +49 -0
  316. package/dist-types/commands/DescribeVpcPeeringConnectionsCommand.d.ts +53 -0
  317. package/dist-types/commands/GetGameSessionLogUrlCommand.d.ts +57 -0
  318. package/dist-types/commands/GetInstanceAccessCommand.d.ts +69 -0
  319. package/dist-types/commands/ListAliasesCommand.d.ts +52 -0
  320. package/dist-types/commands/ListBuildsCommand.d.ts +59 -0
  321. package/dist-types/commands/ListFleetsCommand.d.ts +81 -0
  322. package/dist-types/commands/ListGameServerGroupsCommand.d.ts +60 -0
  323. package/dist-types/commands/ListGameServersCommand.d.ts +58 -0
  324. package/dist-types/commands/ListScriptsCommand.d.ts +52 -0
  325. package/dist-types/commands/ListTagsForResourceCommand.d.ts +83 -0
  326. package/dist-types/commands/PutScalingPolicyCommand.d.ts +111 -0
  327. package/dist-types/commands/RegisterGameServerCommand.d.ts +69 -0
  328. package/dist-types/commands/RequestUploadCredentialsCommand.d.ts +58 -0
  329. package/dist-types/commands/ResolveAliasCommand.d.ts +47 -0
  330. package/dist-types/commands/ResumeGameServerGroupCommand.d.ts +66 -0
  331. package/dist-types/commands/SearchGameSessionsCommand.d.ts +131 -0
  332. package/dist-types/commands/StartFleetActionsCommand.d.ts +72 -0
  333. package/dist-types/commands/StartGameSessionPlacementCommand.d.ts +89 -0
  334. package/dist-types/commands/StartMatchBackfillCommand.d.ts +81 -0
  335. package/dist-types/commands/StartMatchmakingCommand.d.ts +75 -0
  336. package/dist-types/commands/StopFleetActionsCommand.d.ts +77 -0
  337. package/dist-types/commands/StopGameSessionPlacementCommand.d.ts +52 -0
  338. package/dist-types/commands/StopMatchmakingCommand.d.ts +64 -0
  339. package/dist-types/commands/SuspendGameServerGroupCommand.d.ts +76 -0
  340. package/dist-types/commands/TagResourceCommand.d.ts +85 -0
  341. package/dist-types/commands/UntagResourceCommand.d.ts +85 -0
  342. package/dist-types/commands/UpdateAliasCommand.d.ts +50 -0
  343. package/dist-types/commands/UpdateBuildCommand.d.ts +55 -0
  344. package/dist-types/commands/UpdateFleetAttributesCommand.d.ts +62 -0
  345. package/dist-types/commands/UpdateFleetCapacityCommand.d.ts +95 -0
  346. package/dist-types/commands/UpdateFleetPortSettingsCommand.d.ts +68 -0
  347. package/dist-types/commands/UpdateGameServerCommand.d.ts +80 -0
  348. package/dist-types/commands/UpdateGameServerGroupCommand.d.ts +64 -0
  349. package/dist-types/commands/UpdateGameSessionCommand.d.ts +53 -0
  350. package/dist-types/commands/UpdateGameSessionQueueCommand.d.ts +55 -0
  351. package/dist-types/commands/UpdateMatchmakingConfigurationCommand.d.ts +58 -0
  352. package/dist-types/commands/UpdateRuntimeConfigurationCommand.d.ts +69 -0
  353. package/dist-types/commands/UpdateScriptCommand.d.ts +61 -0
  354. package/dist-types/commands/ValidateMatchmakingRuleSetCommand.d.ts +62 -0
  355. package/{dist/types → dist-types}/endpoints.d.ts +0 -0
  356. package/{index.ts → dist-types/index.d.ts} +0 -0
  357. package/{models/index.ts → dist-types/models/index.d.ts} +0 -0
  358. package/{dist/types → dist-types}/models/models_0.d.ts +0 -0
  359. package/dist-types/pagination/DescribeFleetAttributesPaginator.d.ts +4 -0
  360. package/dist-types/pagination/DescribeFleetCapacityPaginator.d.ts +4 -0
  361. package/dist-types/pagination/DescribeFleetEventsPaginator.d.ts +4 -0
  362. package/dist-types/pagination/DescribeFleetLocationAttributesPaginator.d.ts +4 -0
  363. package/dist-types/pagination/DescribeFleetUtilizationPaginator.d.ts +4 -0
  364. package/dist-types/pagination/DescribeGameServerInstancesPaginator.d.ts +4 -0
  365. package/dist-types/pagination/DescribeGameSessionDetailsPaginator.d.ts +4 -0
  366. package/dist-types/pagination/DescribeGameSessionQueuesPaginator.d.ts +4 -0
  367. package/dist-types/pagination/DescribeGameSessionsPaginator.d.ts +4 -0
  368. package/dist-types/pagination/DescribeInstancesPaginator.d.ts +4 -0
  369. package/dist-types/pagination/DescribeMatchmakingConfigurationsPaginator.d.ts +4 -0
  370. package/dist-types/pagination/DescribeMatchmakingRuleSetsPaginator.d.ts +4 -0
  371. package/dist-types/pagination/DescribePlayerSessionsPaginator.d.ts +4 -0
  372. package/dist-types/pagination/DescribeScalingPoliciesPaginator.d.ts +4 -0
  373. package/dist-types/pagination/Interfaces.d.ts +6 -0
  374. package/dist-types/pagination/ListAliasesPaginator.d.ts +4 -0
  375. package/dist-types/pagination/ListBuildsPaginator.d.ts +4 -0
  376. package/dist-types/pagination/ListFleetsPaginator.d.ts +4 -0
  377. package/dist-types/pagination/ListGameServerGroupsPaginator.d.ts +4 -0
  378. package/dist-types/pagination/ListGameServersPaginator.d.ts +4 -0
  379. package/dist-types/pagination/ListScriptsPaginator.d.ts +4 -0
  380. package/dist-types/pagination/SearchGameSessionsPaginator.d.ts +4 -0
  381. package/dist-types/protocols/Aws_json1_1.d.ts +287 -0
  382. package/dist-types/runtimeConfig.browser.d.ts +37 -0
  383. package/dist-types/runtimeConfig.d.ts +37 -0
  384. package/dist-types/runtimeConfig.native.d.ts +36 -0
  385. package/{dist/types → dist-types}/runtimeConfig.shared.d.ts +0 -0
  386. package/dist-types/ts3.4/GameLift.d.ts +3902 -0
  387. package/dist-types/ts3.4/GameLiftClient.d.ts +284 -0
  388. package/dist-types/ts3.4/commands/AcceptMatchCommand.d.ts +73 -0
  389. package/dist-types/ts3.4/commands/ClaimGameServerCommand.d.ts +87 -0
  390. package/dist-types/ts3.4/commands/CreateAliasCommand.d.ts +60 -0
  391. package/dist-types/ts3.4/commands/CreateBuildCommand.d.ts +88 -0
  392. package/dist-types/ts3.4/commands/CreateFleetCommand.d.ts +86 -0
  393. package/dist-types/ts3.4/commands/CreateFleetLocationsCommand.d.ts +77 -0
  394. package/dist-types/ts3.4/commands/CreateGameServerGroupCommand.d.ts +88 -0
  395. package/dist-types/ts3.4/commands/CreateGameSessionCommand.d.ts +88 -0
  396. package/dist-types/ts3.4/commands/CreateGameSessionQueueCommand.d.ts +78 -0
  397. package/dist-types/ts3.4/commands/CreateMatchmakingConfigurationCommand.d.ts +76 -0
  398. package/dist-types/ts3.4/commands/CreateMatchmakingRuleSetCommand.d.ts +81 -0
  399. package/dist-types/ts3.4/commands/CreatePlayerSessionCommand.d.ts +58 -0
  400. package/dist-types/ts3.4/commands/CreatePlayerSessionsCommand.d.ts +58 -0
  401. package/dist-types/ts3.4/commands/CreateScriptCommand.d.ts +78 -0
  402. package/dist-types/ts3.4/commands/CreateVpcPeeringAuthorizationCommand.d.ts +68 -0
  403. package/dist-types/ts3.4/commands/CreateVpcPeeringConnectionCommand.d.ts +65 -0
  404. package/dist-types/ts3.4/commands/DeleteAliasCommand.d.ts +49 -0
  405. package/dist-types/ts3.4/commands/DeleteBuildCommand.d.ts +56 -0
  406. package/dist-types/ts3.4/commands/DeleteFleetCommand.d.ts +69 -0
  407. package/dist-types/ts3.4/commands/DeleteFleetLocationsCommand.d.ts +63 -0
  408. package/dist-types/ts3.4/commands/DeleteGameServerGroupCommand.d.ts +82 -0
  409. package/dist-types/ts3.4/commands/DeleteGameSessionQueueCommand.d.ts +53 -0
  410. package/dist-types/ts3.4/commands/DeleteMatchmakingConfigurationCommand.d.ts +51 -0
  411. package/dist-types/ts3.4/commands/DeleteMatchmakingRuleSetCommand.d.ts +62 -0
  412. package/dist-types/ts3.4/commands/DeleteScalingPolicyCommand.d.ts +53 -0
  413. package/dist-types/ts3.4/commands/DeleteScriptCommand.d.ts +58 -0
  414. package/dist-types/ts3.4/commands/DeleteVpcPeeringAuthorizationCommand.d.ts +48 -0
  415. package/dist-types/ts3.4/commands/DeleteVpcPeeringConnectionCommand.d.ts +53 -0
  416. package/dist-types/ts3.4/commands/DeregisterGameServerCommand.d.ts +61 -0
  417. package/dist-types/ts3.4/commands/DescribeAliasCommand.d.ts +50 -0
  418. package/dist-types/ts3.4/commands/DescribeBuildCommand.d.ts +54 -0
  419. package/dist-types/ts3.4/commands/DescribeEC2InstanceLimitsCommand.d.ts +105 -0
  420. package/dist-types/ts3.4/commands/DescribeFleetAttributesCommand.d.ts +77 -0
  421. package/dist-types/ts3.4/commands/DescribeFleetCapacityCommand.d.ts +84 -0
  422. package/dist-types/ts3.4/commands/DescribeFleetEventsCommand.d.ts +64 -0
  423. package/dist-types/ts3.4/commands/DescribeFleetLocationAttributesCommand.d.ts +75 -0
  424. package/dist-types/ts3.4/commands/DescribeFleetLocationCapacityCommand.d.ts +67 -0
  425. package/dist-types/ts3.4/commands/DescribeFleetLocationUtilizationCommand.d.ts +67 -0
  426. package/dist-types/ts3.4/commands/DescribeFleetPortSettingsCommand.d.ts +75 -0
  427. package/dist-types/ts3.4/commands/DescribeFleetUtilizationCommand.d.ts +85 -0
  428. package/dist-types/ts3.4/commands/DescribeGameServerCommand.d.ts +59 -0
  429. package/dist-types/ts3.4/commands/DescribeGameServerGroupCommand.d.ts +63 -0
  430. package/dist-types/ts3.4/commands/DescribeGameServerInstancesCommand.d.ts +73 -0
  431. package/dist-types/ts3.4/commands/DescribeGameSessionDetailsCommand.d.ts +83 -0
  432. package/dist-types/ts3.4/commands/DescribeGameSessionPlacementCommand.d.ts +52 -0
  433. package/dist-types/ts3.4/commands/DescribeGameSessionQueuesCommand.d.ts +56 -0
  434. package/dist-types/ts3.4/commands/DescribeGameSessionsCommand.d.ts +85 -0
  435. package/dist-types/ts3.4/commands/DescribeInstancesCommand.d.ts +73 -0
  436. package/dist-types/ts3.4/commands/DescribeMatchmakingCommand.d.ts +69 -0
  437. package/dist-types/ts3.4/commands/DescribeMatchmakingConfigurationsCommand.d.ts +62 -0
  438. package/dist-types/ts3.4/commands/DescribeMatchmakingRuleSetsCommand.d.ts +63 -0
  439. package/dist-types/ts3.4/commands/DescribePlayerSessionsCommand.d.ts +69 -0
  440. package/dist-types/ts3.4/commands/DescribeRuntimeConfigurationCommand.d.ts +67 -0
  441. package/dist-types/ts3.4/commands/DescribeScalingPoliciesCommand.d.ts +57 -0
  442. package/dist-types/ts3.4/commands/DescribeScriptCommand.d.ts +54 -0
  443. package/dist-types/ts3.4/commands/DescribeVpcPeeringAuthorizationsCommand.d.ts +49 -0
  444. package/dist-types/ts3.4/commands/DescribeVpcPeeringConnectionsCommand.d.ts +53 -0
  445. package/dist-types/ts3.4/commands/GetGameSessionLogUrlCommand.d.ts +57 -0
  446. package/dist-types/ts3.4/commands/GetInstanceAccessCommand.d.ts +69 -0
  447. package/dist-types/ts3.4/commands/ListAliasesCommand.d.ts +52 -0
  448. package/dist-types/ts3.4/commands/ListBuildsCommand.d.ts +59 -0
  449. package/dist-types/ts3.4/commands/ListFleetsCommand.d.ts +81 -0
  450. package/dist-types/ts3.4/commands/ListGameServerGroupsCommand.d.ts +60 -0
  451. package/dist-types/ts3.4/commands/ListGameServersCommand.d.ts +58 -0
  452. package/dist-types/ts3.4/commands/ListScriptsCommand.d.ts +52 -0
  453. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +83 -0
  454. package/dist-types/ts3.4/commands/PutScalingPolicyCommand.d.ts +111 -0
  455. package/dist-types/ts3.4/commands/RegisterGameServerCommand.d.ts +69 -0
  456. package/dist-types/ts3.4/commands/RequestUploadCredentialsCommand.d.ts +58 -0
  457. package/dist-types/ts3.4/commands/ResolveAliasCommand.d.ts +47 -0
  458. package/dist-types/ts3.4/commands/ResumeGameServerGroupCommand.d.ts +66 -0
  459. package/dist-types/ts3.4/commands/SearchGameSessionsCommand.d.ts +131 -0
  460. package/dist-types/ts3.4/commands/StartFleetActionsCommand.d.ts +72 -0
  461. package/dist-types/ts3.4/commands/StartGameSessionPlacementCommand.d.ts +89 -0
  462. package/dist-types/ts3.4/commands/StartMatchBackfillCommand.d.ts +81 -0
  463. package/dist-types/ts3.4/commands/StartMatchmakingCommand.d.ts +75 -0
  464. package/dist-types/ts3.4/commands/StopFleetActionsCommand.d.ts +77 -0
  465. package/dist-types/ts3.4/commands/StopGameSessionPlacementCommand.d.ts +52 -0
  466. package/dist-types/ts3.4/commands/StopMatchmakingCommand.d.ts +64 -0
  467. package/dist-types/ts3.4/commands/SuspendGameServerGroupCommand.d.ts +76 -0
  468. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +85 -0
  469. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +85 -0
  470. package/dist-types/ts3.4/commands/UpdateAliasCommand.d.ts +50 -0
  471. package/dist-types/ts3.4/commands/UpdateBuildCommand.d.ts +55 -0
  472. package/dist-types/ts3.4/commands/UpdateFleetAttributesCommand.d.ts +62 -0
  473. package/dist-types/ts3.4/commands/UpdateFleetCapacityCommand.d.ts +95 -0
  474. package/dist-types/ts3.4/commands/UpdateFleetPortSettingsCommand.d.ts +68 -0
  475. package/dist-types/ts3.4/commands/UpdateGameServerCommand.d.ts +80 -0
  476. package/dist-types/ts3.4/commands/UpdateGameServerGroupCommand.d.ts +64 -0
  477. package/dist-types/ts3.4/commands/UpdateGameSessionCommand.d.ts +53 -0
  478. package/dist-types/ts3.4/commands/UpdateGameSessionQueueCommand.d.ts +55 -0
  479. package/dist-types/ts3.4/commands/UpdateMatchmakingConfigurationCommand.d.ts +58 -0
  480. package/dist-types/ts3.4/commands/UpdateRuntimeConfigurationCommand.d.ts +69 -0
  481. package/dist-types/ts3.4/commands/UpdateScriptCommand.d.ts +61 -0
  482. package/dist-types/ts3.4/commands/ValidateMatchmakingRuleSetCommand.d.ts +62 -0
  483. package/{dist/types → dist-types}/ts3.4/endpoints.d.ts +0 -0
  484. package/{dist/types → dist-types}/ts3.4/index.d.ts +0 -0
  485. package/{dist/types → dist-types}/ts3.4/models/index.d.ts +0 -0
  486. package/{dist/types → dist-types}/ts3.4/models/models_0.d.ts +0 -0
  487. package/dist-types/ts3.4/pagination/DescribeFleetAttributesPaginator.d.ts +4 -0
  488. package/dist-types/ts3.4/pagination/DescribeFleetCapacityPaginator.d.ts +4 -0
  489. package/dist-types/ts3.4/pagination/DescribeFleetEventsPaginator.d.ts +4 -0
  490. package/dist-types/ts3.4/pagination/DescribeFleetLocationAttributesPaginator.d.ts +4 -0
  491. package/dist-types/ts3.4/pagination/DescribeFleetUtilizationPaginator.d.ts +4 -0
  492. package/dist-types/ts3.4/pagination/DescribeGameServerInstancesPaginator.d.ts +4 -0
  493. package/dist-types/ts3.4/pagination/DescribeGameSessionDetailsPaginator.d.ts +4 -0
  494. package/dist-types/ts3.4/pagination/DescribeGameSessionQueuesPaginator.d.ts +4 -0
  495. package/dist-types/ts3.4/pagination/DescribeGameSessionsPaginator.d.ts +4 -0
  496. package/dist-types/ts3.4/pagination/DescribeInstancesPaginator.d.ts +4 -0
  497. package/dist-types/ts3.4/pagination/DescribeMatchmakingConfigurationsPaginator.d.ts +4 -0
  498. package/dist-types/ts3.4/pagination/DescribeMatchmakingRuleSetsPaginator.d.ts +4 -0
  499. package/dist-types/ts3.4/pagination/DescribePlayerSessionsPaginator.d.ts +4 -0
  500. package/dist-types/ts3.4/pagination/DescribeScalingPoliciesPaginator.d.ts +4 -0
  501. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  502. package/dist-types/ts3.4/pagination/ListAliasesPaginator.d.ts +4 -0
  503. package/dist-types/ts3.4/pagination/ListBuildsPaginator.d.ts +4 -0
  504. package/dist-types/ts3.4/pagination/ListFleetsPaginator.d.ts +4 -0
  505. package/dist-types/ts3.4/pagination/ListGameServerGroupsPaginator.d.ts +4 -0
  506. package/dist-types/ts3.4/pagination/ListGameServersPaginator.d.ts +4 -0
  507. package/dist-types/ts3.4/pagination/ListScriptsPaginator.d.ts +4 -0
  508. package/dist-types/ts3.4/pagination/SearchGameSessionsPaginator.d.ts +4 -0
  509. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +287 -0
  510. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +37 -0
  511. package/dist-types/ts3.4/runtimeConfig.d.ts +37 -0
  512. package/dist-types/ts3.4/runtimeConfig.native.d.ts +36 -0
  513. package/{dist/types → dist-types}/ts3.4/runtimeConfig.shared.d.ts +0 -0
  514. package/package.json +52 -49
  515. package/GameLift.ts +0 -6600
  516. package/GameLiftClient.ts +0 -748
  517. package/commands/AcceptMatchCommand.ts +0 -132
  518. package/commands/ClaimGameServerCommand.ts +0 -146
  519. package/commands/CreateAliasCommand.ts +0 -119
  520. package/commands/CreateBuildCommand.ts +0 -147
  521. package/commands/CreateFleetCommand.ts +0 -145
  522. package/commands/CreateFleetLocationsCommand.ts +0 -136
  523. package/commands/CreateGameServerGroupCommand.ts +0 -147
  524. package/commands/CreateGameSessionCommand.ts +0 -147
  525. package/commands/CreateGameSessionQueueCommand.ts +0 -137
  526. package/commands/CreateMatchmakingConfigurationCommand.ts +0 -143
  527. package/commands/CreateMatchmakingRuleSetCommand.ts +0 -140
  528. package/commands/CreatePlayerSessionCommand.ts +0 -117
  529. package/commands/CreatePlayerSessionsCommand.ts +0 -117
  530. package/commands/CreateScriptCommand.ts +0 -137
  531. package/commands/CreateVpcPeeringAuthorizationCommand.ts +0 -132
  532. package/commands/CreateVpcPeeringConnectionCommand.ts +0 -127
  533. package/commands/DeleteAliasCommand.ts +0 -108
  534. package/commands/DeleteBuildCommand.ts +0 -115
  535. package/commands/DeleteFleetCommand.ts +0 -128
  536. package/commands/DeleteFleetLocationsCommand.ts +0 -122
  537. package/commands/DeleteGameServerGroupCommand.ts +0 -141
  538. package/commands/DeleteGameSessionQueueCommand.ts +0 -112
  539. package/commands/DeleteMatchmakingConfigurationCommand.ts +0 -118
  540. package/commands/DeleteMatchmakingRuleSetCommand.ts +0 -121
  541. package/commands/DeleteScalingPolicyCommand.ts +0 -112
  542. package/commands/DeleteScriptCommand.ts +0 -117
  543. package/commands/DeleteVpcPeeringAuthorizationCommand.ts +0 -112
  544. package/commands/DeleteVpcPeeringConnectionCommand.ts +0 -115
  545. package/commands/DeregisterGameServerCommand.ts +0 -120
  546. package/commands/DescribeAliasCommand.ts +0 -109
  547. package/commands/DescribeBuildCommand.ts +0 -113
  548. package/commands/DescribeEC2InstanceLimitsCommand.ts +0 -167
  549. package/commands/DescribeFleetAttributesCommand.ts +0 -136
  550. package/commands/DescribeFleetCapacityCommand.ts +0 -143
  551. package/commands/DescribeFleetEventsCommand.ts +0 -123
  552. package/commands/DescribeFleetLocationAttributesCommand.ts +0 -142
  553. package/commands/DescribeFleetLocationCapacityCommand.ts +0 -131
  554. package/commands/DescribeFleetLocationUtilizationCommand.ts +0 -134
  555. package/commands/DescribeFleetPortSettingsCommand.ts +0 -137
  556. package/commands/DescribeFleetUtilizationCommand.ts +0 -144
  557. package/commands/DescribeGameServerCommand.ts +0 -118
  558. package/commands/DescribeGameServerGroupCommand.ts +0 -122
  559. package/commands/DescribeGameServerInstancesCommand.ts +0 -135
  560. package/commands/DescribeGameSessionDetailsCommand.ts +0 -145
  561. package/commands/DescribeGameSessionPlacementCommand.ts +0 -116
  562. package/commands/DescribeGameSessionQueuesCommand.ts +0 -118
  563. package/commands/DescribeGameSessionsCommand.ts +0 -144
  564. package/commands/DescribeInstancesCommand.ts +0 -132
  565. package/commands/DescribeMatchmakingCommand.ts +0 -128
  566. package/commands/DescribeMatchmakingConfigurationsCommand.ts +0 -129
  567. package/commands/DescribeMatchmakingRuleSetsCommand.ts +0 -125
  568. package/commands/DescribePlayerSessionsCommand.ts +0 -128
  569. package/commands/DescribeRuntimeConfigurationCommand.ts +0 -131
  570. package/commands/DescribeScalingPoliciesCommand.ts +0 -116
  571. package/commands/DescribeScriptCommand.ts +0 -113
  572. package/commands/DescribeVpcPeeringAuthorizationsCommand.ts +0 -116
  573. package/commands/DescribeVpcPeeringConnectionsCommand.ts +0 -117
  574. package/commands/GetGameSessionLogUrlCommand.ts +0 -116
  575. package/commands/GetInstanceAccessCommand.ts +0 -128
  576. package/commands/ListAliasesCommand.ts +0 -111
  577. package/commands/ListBuildsCommand.ts +0 -118
  578. package/commands/ListFleetsCommand.ts +0 -140
  579. package/commands/ListGameServerGroupsCommand.ts +0 -119
  580. package/commands/ListGameServersCommand.ts +0 -117
  581. package/commands/ListScriptsCommand.ts +0 -111
  582. package/commands/ListTagsForResourceCommand.ts +0 -142
  583. package/commands/PutScalingPolicyCommand.ts +0 -170
  584. package/commands/RegisterGameServerCommand.ts +0 -128
  585. package/commands/RequestUploadCredentialsCommand.ts +0 -117
  586. package/commands/ResolveAliasCommand.ts +0 -106
  587. package/commands/ResumeGameServerGroupCommand.ts +0 -125
  588. package/commands/SearchGameSessionsCommand.ts +0 -190
  589. package/commands/StartFleetActionsCommand.ts +0 -131
  590. package/commands/StartGameSessionPlacementCommand.ts +0 -151
  591. package/commands/StartMatchBackfillCommand.ts +0 -140
  592. package/commands/StartMatchmakingCommand.ts +0 -134
  593. package/commands/StopFleetActionsCommand.ts +0 -136
  594. package/commands/StopGameSessionPlacementCommand.ts +0 -111
  595. package/commands/StopMatchmakingCommand.ts +0 -123
  596. package/commands/SuspendGameServerGroupCommand.ts +0 -135
  597. package/commands/TagResourceCommand.ts +0 -144
  598. package/commands/UntagResourceCommand.ts +0 -144
  599. package/commands/UpdateAliasCommand.ts +0 -109
  600. package/commands/UpdateBuildCommand.ts +0 -114
  601. package/commands/UpdateFleetAttributesCommand.ts +0 -121
  602. package/commands/UpdateFleetCapacityCommand.ts +0 -154
  603. package/commands/UpdateFleetPortSettingsCommand.ts +0 -127
  604. package/commands/UpdateGameServerCommand.ts +0 -139
  605. package/commands/UpdateGameServerGroupCommand.ts +0 -123
  606. package/commands/UpdateGameSessionCommand.ts +0 -112
  607. package/commands/UpdateGameSessionQueueCommand.ts +0 -114
  608. package/commands/UpdateMatchmakingConfigurationCommand.ts +0 -125
  609. package/commands/UpdateRuntimeConfigurationCommand.ts +0 -131
  610. package/commands/UpdateScriptCommand.ts +0 -120
  611. package/commands/ValidateMatchmakingRuleSetCommand.ts +0 -124
  612. package/dist/cjs/GameLift.js +0 -1493
  613. package/dist/cjs/GameLift.js.map +0 -1
  614. package/dist/cjs/GameLiftClient.js +0 -101
  615. package/dist/cjs/GameLiftClient.js.map +0 -1
  616. package/dist/cjs/commands/AcceptMatchCommand.js +0 -99
  617. package/dist/cjs/commands/AcceptMatchCommand.js.map +0 -1
  618. package/dist/cjs/commands/ClaimGameServerCommand.js +0 -113
  619. package/dist/cjs/commands/ClaimGameServerCommand.js.map +0 -1
  620. package/dist/cjs/commands/CreateAliasCommand.js +0 -86
  621. package/dist/cjs/commands/CreateAliasCommand.js.map +0 -1
  622. package/dist/cjs/commands/CreateBuildCommand.js +0 -114
  623. package/dist/cjs/commands/CreateBuildCommand.js.map +0 -1
  624. package/dist/cjs/commands/CreateFleetCommand.js +0 -112
  625. package/dist/cjs/commands/CreateFleetCommand.js.map +0 -1
  626. package/dist/cjs/commands/CreateFleetLocationsCommand.js +0 -103
  627. package/dist/cjs/commands/CreateFleetLocationsCommand.js.map +0 -1
  628. package/dist/cjs/commands/CreateGameServerGroupCommand.js +0 -114
  629. package/dist/cjs/commands/CreateGameServerGroupCommand.js.map +0 -1
  630. package/dist/cjs/commands/CreateGameSessionCommand.js +0 -114
  631. package/dist/cjs/commands/CreateGameSessionCommand.js.map +0 -1
  632. package/dist/cjs/commands/CreateGameSessionQueueCommand.js +0 -104
  633. package/dist/cjs/commands/CreateGameSessionQueueCommand.js.map +0 -1
  634. package/dist/cjs/commands/CreateMatchmakingConfigurationCommand.js +0 -102
  635. package/dist/cjs/commands/CreateMatchmakingConfigurationCommand.js.map +0 -1
  636. package/dist/cjs/commands/CreateMatchmakingRuleSetCommand.js +0 -107
  637. package/dist/cjs/commands/CreateMatchmakingRuleSetCommand.js.map +0 -1
  638. package/dist/cjs/commands/CreatePlayerSessionCommand.js +0 -84
  639. package/dist/cjs/commands/CreatePlayerSessionCommand.js.map +0 -1
  640. package/dist/cjs/commands/CreatePlayerSessionsCommand.js +0 -84
  641. package/dist/cjs/commands/CreatePlayerSessionsCommand.js.map +0 -1
  642. package/dist/cjs/commands/CreateScriptCommand.js +0 -104
  643. package/dist/cjs/commands/CreateScriptCommand.js.map +0 -1
  644. package/dist/cjs/commands/CreateVpcPeeringAuthorizationCommand.js +0 -94
  645. package/dist/cjs/commands/CreateVpcPeeringAuthorizationCommand.js.map +0 -1
  646. package/dist/cjs/commands/CreateVpcPeeringConnectionCommand.js +0 -91
  647. package/dist/cjs/commands/CreateVpcPeeringConnectionCommand.js.map +0 -1
  648. package/dist/cjs/commands/DeleteAliasCommand.js +0 -75
  649. package/dist/cjs/commands/DeleteAliasCommand.js.map +0 -1
  650. package/dist/cjs/commands/DeleteBuildCommand.js +0 -82
  651. package/dist/cjs/commands/DeleteBuildCommand.js.map +0 -1
  652. package/dist/cjs/commands/DeleteFleetCommand.js +0 -95
  653. package/dist/cjs/commands/DeleteFleetCommand.js.map +0 -1
  654. package/dist/cjs/commands/DeleteFleetLocationsCommand.js +0 -89
  655. package/dist/cjs/commands/DeleteFleetLocationsCommand.js.map +0 -1
  656. package/dist/cjs/commands/DeleteGameServerGroupCommand.js +0 -108
  657. package/dist/cjs/commands/DeleteGameServerGroupCommand.js.map +0 -1
  658. package/dist/cjs/commands/DeleteGameSessionQueueCommand.js +0 -79
  659. package/dist/cjs/commands/DeleteGameSessionQueueCommand.js.map +0 -1
  660. package/dist/cjs/commands/DeleteMatchmakingConfigurationCommand.js +0 -77
  661. package/dist/cjs/commands/DeleteMatchmakingConfigurationCommand.js.map +0 -1
  662. package/dist/cjs/commands/DeleteMatchmakingRuleSetCommand.js +0 -88
  663. package/dist/cjs/commands/DeleteMatchmakingRuleSetCommand.js.map +0 -1
  664. package/dist/cjs/commands/DeleteScalingPolicyCommand.js +0 -79
  665. package/dist/cjs/commands/DeleteScalingPolicyCommand.js.map +0 -1
  666. package/dist/cjs/commands/DeleteScriptCommand.js +0 -84
  667. package/dist/cjs/commands/DeleteScriptCommand.js.map +0 -1
  668. package/dist/cjs/commands/DeleteVpcPeeringAuthorizationCommand.js +0 -74
  669. package/dist/cjs/commands/DeleteVpcPeeringAuthorizationCommand.js.map +0 -1
  670. package/dist/cjs/commands/DeleteVpcPeeringConnectionCommand.js +0 -79
  671. package/dist/cjs/commands/DeleteVpcPeeringConnectionCommand.js.map +0 -1
  672. package/dist/cjs/commands/DeregisterGameServerCommand.js +0 -87
  673. package/dist/cjs/commands/DeregisterGameServerCommand.js.map +0 -1
  674. package/dist/cjs/commands/DescribeAliasCommand.js +0 -76
  675. package/dist/cjs/commands/DescribeAliasCommand.js.map +0 -1
  676. package/dist/cjs/commands/DescribeBuildCommand.js +0 -80
  677. package/dist/cjs/commands/DescribeBuildCommand.js.map +0 -1
  678. package/dist/cjs/commands/DescribeEC2InstanceLimitsCommand.js +0 -131
  679. package/dist/cjs/commands/DescribeEC2InstanceLimitsCommand.js.map +0 -1
  680. package/dist/cjs/commands/DescribeFleetAttributesCommand.js +0 -103
  681. package/dist/cjs/commands/DescribeFleetAttributesCommand.js.map +0 -1
  682. package/dist/cjs/commands/DescribeFleetCapacityCommand.js +0 -110
  683. package/dist/cjs/commands/DescribeFleetCapacityCommand.js.map +0 -1
  684. package/dist/cjs/commands/DescribeFleetEventsCommand.js +0 -90
  685. package/dist/cjs/commands/DescribeFleetEventsCommand.js.map +0 -1
  686. package/dist/cjs/commands/DescribeFleetLocationAttributesCommand.js +0 -101
  687. package/dist/cjs/commands/DescribeFleetLocationAttributesCommand.js.map +0 -1
  688. package/dist/cjs/commands/DescribeFleetLocationCapacityCommand.js +0 -93
  689. package/dist/cjs/commands/DescribeFleetLocationCapacityCommand.js.map +0 -1
  690. package/dist/cjs/commands/DescribeFleetLocationUtilizationCommand.js +0 -93
  691. package/dist/cjs/commands/DescribeFleetLocationUtilizationCommand.js.map +0 -1
  692. package/dist/cjs/commands/DescribeFleetPortSettingsCommand.js +0 -101
  693. package/dist/cjs/commands/DescribeFleetPortSettingsCommand.js.map +0 -1
  694. package/dist/cjs/commands/DescribeFleetUtilizationCommand.js +0 -111
  695. package/dist/cjs/commands/DescribeFleetUtilizationCommand.js.map +0 -1
  696. package/dist/cjs/commands/DescribeGameServerCommand.js +0 -85
  697. package/dist/cjs/commands/DescribeGameServerCommand.js.map +0 -1
  698. package/dist/cjs/commands/DescribeGameServerGroupCommand.js +0 -89
  699. package/dist/cjs/commands/DescribeGameServerGroupCommand.js.map +0 -1
  700. package/dist/cjs/commands/DescribeGameServerInstancesCommand.js +0 -99
  701. package/dist/cjs/commands/DescribeGameServerInstancesCommand.js.map +0 -1
  702. package/dist/cjs/commands/DescribeGameSessionDetailsCommand.js +0 -109
  703. package/dist/cjs/commands/DescribeGameSessionDetailsCommand.js.map +0 -1
  704. package/dist/cjs/commands/DescribeGameSessionPlacementCommand.js +0 -78
  705. package/dist/cjs/commands/DescribeGameSessionPlacementCommand.js.map +0 -1
  706. package/dist/cjs/commands/DescribeGameSessionQueuesCommand.js +0 -82
  707. package/dist/cjs/commands/DescribeGameSessionQueuesCommand.js.map +0 -1
  708. package/dist/cjs/commands/DescribeGameSessionsCommand.js +0 -111
  709. package/dist/cjs/commands/DescribeGameSessionsCommand.js.map +0 -1
  710. package/dist/cjs/commands/DescribeInstancesCommand.js +0 -99
  711. package/dist/cjs/commands/DescribeInstancesCommand.js.map +0 -1
  712. package/dist/cjs/commands/DescribeMatchmakingCommand.js +0 -95
  713. package/dist/cjs/commands/DescribeMatchmakingCommand.js.map +0 -1
  714. package/dist/cjs/commands/DescribeMatchmakingConfigurationsCommand.js +0 -88
  715. package/dist/cjs/commands/DescribeMatchmakingConfigurationsCommand.js.map +0 -1
  716. package/dist/cjs/commands/DescribeMatchmakingRuleSetsCommand.js +0 -89
  717. package/dist/cjs/commands/DescribeMatchmakingRuleSetsCommand.js.map +0 -1
  718. package/dist/cjs/commands/DescribePlayerSessionsCommand.js +0 -95
  719. package/dist/cjs/commands/DescribePlayerSessionsCommand.js.map +0 -1
  720. package/dist/cjs/commands/DescribeRuntimeConfigurationCommand.js +0 -93
  721. package/dist/cjs/commands/DescribeRuntimeConfigurationCommand.js.map +0 -1
  722. package/dist/cjs/commands/DescribeScalingPoliciesCommand.js +0 -83
  723. package/dist/cjs/commands/DescribeScalingPoliciesCommand.js.map +0 -1
  724. package/dist/cjs/commands/DescribeScriptCommand.js +0 -80
  725. package/dist/cjs/commands/DescribeScriptCommand.js.map +0 -1
  726. package/dist/cjs/commands/DescribeVpcPeeringAuthorizationsCommand.js +0 -75
  727. package/dist/cjs/commands/DescribeVpcPeeringAuthorizationsCommand.js.map +0 -1
  728. package/dist/cjs/commands/DescribeVpcPeeringConnectionsCommand.js +0 -79
  729. package/dist/cjs/commands/DescribeVpcPeeringConnectionsCommand.js.map +0 -1
  730. package/dist/cjs/commands/GetGameSessionLogUrlCommand.js +0 -83
  731. package/dist/cjs/commands/GetGameSessionLogUrlCommand.js.map +0 -1
  732. package/dist/cjs/commands/GetInstanceAccessCommand.js +0 -95
  733. package/dist/cjs/commands/GetInstanceAccessCommand.js.map +0 -1
  734. package/dist/cjs/commands/ListAliasesCommand.js +0 -78
  735. package/dist/cjs/commands/ListAliasesCommand.js.map +0 -1
  736. package/dist/cjs/commands/ListBuildsCommand.js +0 -85
  737. package/dist/cjs/commands/ListBuildsCommand.js.map +0 -1
  738. package/dist/cjs/commands/ListFleetsCommand.js +0 -107
  739. package/dist/cjs/commands/ListFleetsCommand.js.map +0 -1
  740. package/dist/cjs/commands/ListGameServerGroupsCommand.js +0 -86
  741. package/dist/cjs/commands/ListGameServerGroupsCommand.js.map +0 -1
  742. package/dist/cjs/commands/ListGameServersCommand.js +0 -84
  743. package/dist/cjs/commands/ListGameServersCommand.js.map +0 -1
  744. package/dist/cjs/commands/ListScriptsCommand.js +0 -78
  745. package/dist/cjs/commands/ListScriptsCommand.js.map +0 -1
  746. package/dist/cjs/commands/ListTagsForResourceCommand.js +0 -109
  747. package/dist/cjs/commands/ListTagsForResourceCommand.js.map +0 -1
  748. package/dist/cjs/commands/PutScalingPolicyCommand.js +0 -137
  749. package/dist/cjs/commands/PutScalingPolicyCommand.js.map +0 -1
  750. package/dist/cjs/commands/RegisterGameServerCommand.js +0 -95
  751. package/dist/cjs/commands/RegisterGameServerCommand.js.map +0 -1
  752. package/dist/cjs/commands/RequestUploadCredentialsCommand.js +0 -84
  753. package/dist/cjs/commands/RequestUploadCredentialsCommand.js.map +0 -1
  754. package/dist/cjs/commands/ResolveAliasCommand.js +0 -73
  755. package/dist/cjs/commands/ResolveAliasCommand.js.map +0 -1
  756. package/dist/cjs/commands/ResumeGameServerGroupCommand.js +0 -92
  757. package/dist/cjs/commands/ResumeGameServerGroupCommand.js.map +0 -1
  758. package/dist/cjs/commands/SearchGameSessionsCommand.js +0 -157
  759. package/dist/cjs/commands/SearchGameSessionsCommand.js.map +0 -1
  760. package/dist/cjs/commands/StartFleetActionsCommand.js +0 -98
  761. package/dist/cjs/commands/StartFleetActionsCommand.js.map +0 -1
  762. package/dist/cjs/commands/StartGameSessionPlacementCommand.js +0 -115
  763. package/dist/cjs/commands/StartGameSessionPlacementCommand.js.map +0 -1
  764. package/dist/cjs/commands/StartMatchBackfillCommand.js +0 -107
  765. package/dist/cjs/commands/StartMatchBackfillCommand.js.map +0 -1
  766. package/dist/cjs/commands/StartMatchmakingCommand.js +0 -101
  767. package/dist/cjs/commands/StartMatchmakingCommand.js.map +0 -1
  768. package/dist/cjs/commands/StopFleetActionsCommand.js +0 -103
  769. package/dist/cjs/commands/StopFleetActionsCommand.js.map +0 -1
  770. package/dist/cjs/commands/StopGameSessionPlacementCommand.js +0 -78
  771. package/dist/cjs/commands/StopGameSessionPlacementCommand.js.map +0 -1
  772. package/dist/cjs/commands/StopMatchmakingCommand.js +0 -90
  773. package/dist/cjs/commands/StopMatchmakingCommand.js.map +0 -1
  774. package/dist/cjs/commands/SuspendGameServerGroupCommand.js +0 -102
  775. package/dist/cjs/commands/SuspendGameServerGroupCommand.js.map +0 -1
  776. package/dist/cjs/commands/TagResourceCommand.js +0 -111
  777. package/dist/cjs/commands/TagResourceCommand.js.map +0 -1
  778. package/dist/cjs/commands/UntagResourceCommand.js +0 -111
  779. package/dist/cjs/commands/UntagResourceCommand.js.map +0 -1
  780. package/dist/cjs/commands/UpdateAliasCommand.js +0 -76
  781. package/dist/cjs/commands/UpdateAliasCommand.js.map +0 -1
  782. package/dist/cjs/commands/UpdateBuildCommand.js +0 -81
  783. package/dist/cjs/commands/UpdateBuildCommand.js.map +0 -1
  784. package/dist/cjs/commands/UpdateFleetAttributesCommand.js +0 -88
  785. package/dist/cjs/commands/UpdateFleetAttributesCommand.js.map +0 -1
  786. package/dist/cjs/commands/UpdateFleetCapacityCommand.js +0 -121
  787. package/dist/cjs/commands/UpdateFleetCapacityCommand.js.map +0 -1
  788. package/dist/cjs/commands/UpdateFleetPortSettingsCommand.js +0 -94
  789. package/dist/cjs/commands/UpdateFleetPortSettingsCommand.js.map +0 -1
  790. package/dist/cjs/commands/UpdateGameServerCommand.js +0 -106
  791. package/dist/cjs/commands/UpdateGameServerCommand.js.map +0 -1
  792. package/dist/cjs/commands/UpdateGameServerGroupCommand.js +0 -90
  793. package/dist/cjs/commands/UpdateGameServerGroupCommand.js.map +0 -1
  794. package/dist/cjs/commands/UpdateGameSessionCommand.js +0 -79
  795. package/dist/cjs/commands/UpdateGameSessionCommand.js.map +0 -1
  796. package/dist/cjs/commands/UpdateGameSessionQueueCommand.js +0 -81
  797. package/dist/cjs/commands/UpdateGameSessionQueueCommand.js.map +0 -1
  798. package/dist/cjs/commands/UpdateMatchmakingConfigurationCommand.js +0 -84
  799. package/dist/cjs/commands/UpdateMatchmakingConfigurationCommand.js.map +0 -1
  800. package/dist/cjs/commands/UpdateRuntimeConfigurationCommand.js +0 -95
  801. package/dist/cjs/commands/UpdateRuntimeConfigurationCommand.js.map +0 -1
  802. package/dist/cjs/commands/UpdateScriptCommand.js +0 -87
  803. package/dist/cjs/commands/UpdateScriptCommand.js.map +0 -1
  804. package/dist/cjs/commands/ValidateMatchmakingRuleSetCommand.js +0 -88
  805. package/dist/cjs/commands/ValidateMatchmakingRuleSetCommand.js.map +0 -1
  806. package/dist/cjs/endpoints.js +0 -57
  807. package/dist/cjs/endpoints.js.map +0 -1
  808. package/dist/cjs/index.js +0 -124
  809. package/dist/cjs/index.js.map +0 -1
  810. package/dist/cjs/models/index.js +0 -5
  811. package/dist/cjs/models/index.js.map +0 -1
  812. package/dist/cjs/models/models_0.js +0 -2540
  813. package/dist/cjs/models/models_0.js.map +0 -1
  814. package/dist/cjs/package.json +0 -91
  815. package/dist/cjs/pagination/DescribeFleetAttributesPaginator.js +0 -46
  816. package/dist/cjs/pagination/DescribeFleetAttributesPaginator.js.map +0 -1
  817. package/dist/cjs/pagination/DescribeFleetCapacityPaginator.js +0 -46
  818. package/dist/cjs/pagination/DescribeFleetCapacityPaginator.js.map +0 -1
  819. package/dist/cjs/pagination/DescribeFleetEventsPaginator.js +0 -46
  820. package/dist/cjs/pagination/DescribeFleetEventsPaginator.js.map +0 -1
  821. package/dist/cjs/pagination/DescribeFleetLocationAttributesPaginator.js +0 -46
  822. package/dist/cjs/pagination/DescribeFleetLocationAttributesPaginator.js.map +0 -1
  823. package/dist/cjs/pagination/DescribeFleetUtilizationPaginator.js +0 -46
  824. package/dist/cjs/pagination/DescribeFleetUtilizationPaginator.js.map +0 -1
  825. package/dist/cjs/pagination/DescribeGameServerInstancesPaginator.js +0 -46
  826. package/dist/cjs/pagination/DescribeGameServerInstancesPaginator.js.map +0 -1
  827. package/dist/cjs/pagination/DescribeGameSessionDetailsPaginator.js +0 -46
  828. package/dist/cjs/pagination/DescribeGameSessionDetailsPaginator.js.map +0 -1
  829. package/dist/cjs/pagination/DescribeGameSessionQueuesPaginator.js +0 -46
  830. package/dist/cjs/pagination/DescribeGameSessionQueuesPaginator.js.map +0 -1
  831. package/dist/cjs/pagination/DescribeGameSessionsPaginator.js +0 -46
  832. package/dist/cjs/pagination/DescribeGameSessionsPaginator.js.map +0 -1
  833. package/dist/cjs/pagination/DescribeInstancesPaginator.js +0 -46
  834. package/dist/cjs/pagination/DescribeInstancesPaginator.js.map +0 -1
  835. package/dist/cjs/pagination/DescribeMatchmakingConfigurationsPaginator.js +0 -46
  836. package/dist/cjs/pagination/DescribeMatchmakingConfigurationsPaginator.js.map +0 -1
  837. package/dist/cjs/pagination/DescribeMatchmakingRuleSetsPaginator.js +0 -46
  838. package/dist/cjs/pagination/DescribeMatchmakingRuleSetsPaginator.js.map +0 -1
  839. package/dist/cjs/pagination/DescribePlayerSessionsPaginator.js +0 -46
  840. package/dist/cjs/pagination/DescribePlayerSessionsPaginator.js.map +0 -1
  841. package/dist/cjs/pagination/DescribeScalingPoliciesPaginator.js +0 -46
  842. package/dist/cjs/pagination/DescribeScalingPoliciesPaginator.js.map +0 -1
  843. package/dist/cjs/pagination/Interfaces.js +0 -3
  844. package/dist/cjs/pagination/Interfaces.js.map +0 -1
  845. package/dist/cjs/pagination/ListAliasesPaginator.js +0 -46
  846. package/dist/cjs/pagination/ListAliasesPaginator.js.map +0 -1
  847. package/dist/cjs/pagination/ListBuildsPaginator.js +0 -46
  848. package/dist/cjs/pagination/ListBuildsPaginator.js.map +0 -1
  849. package/dist/cjs/pagination/ListFleetsPaginator.js +0 -46
  850. package/dist/cjs/pagination/ListFleetsPaginator.js.map +0 -1
  851. package/dist/cjs/pagination/ListGameServerGroupsPaginator.js +0 -46
  852. package/dist/cjs/pagination/ListGameServerGroupsPaginator.js.map +0 -1
  853. package/dist/cjs/pagination/ListGameServersPaginator.js +0 -46
  854. package/dist/cjs/pagination/ListGameServersPaginator.js.map +0 -1
  855. package/dist/cjs/pagination/ListScriptsPaginator.js +0 -46
  856. package/dist/cjs/pagination/ListScriptsPaginator.js.map +0 -1
  857. package/dist/cjs/pagination/SearchGameSessionsPaginator.js +0 -46
  858. package/dist/cjs/pagination/SearchGameSessionsPaginator.js.map +0 -1
  859. package/dist/cjs/protocols/Aws_json1_1.js +0 -11486
  860. package/dist/cjs/protocols/Aws_json1_1.js.map +0 -1
  861. package/dist/cjs/runtimeConfig.browser.js +0 -41
  862. package/dist/cjs/runtimeConfig.browser.js.map +0 -1
  863. package/dist/cjs/runtimeConfig.js +0 -46
  864. package/dist/cjs/runtimeConfig.js.map +0 -1
  865. package/dist/cjs/runtimeConfig.native.js +0 -20
  866. package/dist/cjs/runtimeConfig.native.js.map +0 -1
  867. package/dist/cjs/runtimeConfig.shared.js +0 -21
  868. package/dist/cjs/runtimeConfig.shared.js.map +0 -1
  869. package/dist/es/GameLift.js +0 -1496
  870. package/dist/es/GameLift.js.map +0 -1
  871. package/dist/es/GameLiftClient.js +0 -103
  872. package/dist/es/GameLiftClient.js.map +0 -1
  873. package/dist/es/commands/AcceptMatchCommand.js +0 -103
  874. package/dist/es/commands/AcceptMatchCommand.js.map +0 -1
  875. package/dist/es/commands/ClaimGameServerCommand.js +0 -117
  876. package/dist/es/commands/ClaimGameServerCommand.js.map +0 -1
  877. package/dist/es/commands/CreateAliasCommand.js +0 -90
  878. package/dist/es/commands/CreateAliasCommand.js.map +0 -1
  879. package/dist/es/commands/CreateBuildCommand.js +0 -118
  880. package/dist/es/commands/CreateBuildCommand.js.map +0 -1
  881. package/dist/es/commands/CreateFleetCommand.js +0 -116
  882. package/dist/es/commands/CreateFleetCommand.js.map +0 -1
  883. package/dist/es/commands/CreateFleetLocationsCommand.js +0 -107
  884. package/dist/es/commands/CreateFleetLocationsCommand.js.map +0 -1
  885. package/dist/es/commands/CreateGameServerGroupCommand.js +0 -118
  886. package/dist/es/commands/CreateGameServerGroupCommand.js.map +0 -1
  887. package/dist/es/commands/CreateGameSessionCommand.js +0 -118
  888. package/dist/es/commands/CreateGameSessionCommand.js.map +0 -1
  889. package/dist/es/commands/CreateGameSessionQueueCommand.js +0 -108
  890. package/dist/es/commands/CreateGameSessionQueueCommand.js.map +0 -1
  891. package/dist/es/commands/CreateMatchmakingConfigurationCommand.js +0 -106
  892. package/dist/es/commands/CreateMatchmakingConfigurationCommand.js.map +0 -1
  893. package/dist/es/commands/CreateMatchmakingRuleSetCommand.js +0 -111
  894. package/dist/es/commands/CreateMatchmakingRuleSetCommand.js.map +0 -1
  895. package/dist/es/commands/CreatePlayerSessionCommand.js +0 -88
  896. package/dist/es/commands/CreatePlayerSessionCommand.js.map +0 -1
  897. package/dist/es/commands/CreatePlayerSessionsCommand.js +0 -88
  898. package/dist/es/commands/CreatePlayerSessionsCommand.js.map +0 -1
  899. package/dist/es/commands/CreateScriptCommand.js +0 -108
  900. package/dist/es/commands/CreateScriptCommand.js.map +0 -1
  901. package/dist/es/commands/CreateVpcPeeringAuthorizationCommand.js +0 -98
  902. package/dist/es/commands/CreateVpcPeeringAuthorizationCommand.js.map +0 -1
  903. package/dist/es/commands/CreateVpcPeeringConnectionCommand.js +0 -95
  904. package/dist/es/commands/CreateVpcPeeringConnectionCommand.js.map +0 -1
  905. package/dist/es/commands/DeleteAliasCommand.js +0 -79
  906. package/dist/es/commands/DeleteAliasCommand.js.map +0 -1
  907. package/dist/es/commands/DeleteBuildCommand.js +0 -86
  908. package/dist/es/commands/DeleteBuildCommand.js.map +0 -1
  909. package/dist/es/commands/DeleteFleetCommand.js +0 -99
  910. package/dist/es/commands/DeleteFleetCommand.js.map +0 -1
  911. package/dist/es/commands/DeleteFleetLocationsCommand.js +0 -93
  912. package/dist/es/commands/DeleteFleetLocationsCommand.js.map +0 -1
  913. package/dist/es/commands/DeleteGameServerGroupCommand.js +0 -112
  914. package/dist/es/commands/DeleteGameServerGroupCommand.js.map +0 -1
  915. package/dist/es/commands/DeleteGameSessionQueueCommand.js +0 -83
  916. package/dist/es/commands/DeleteGameSessionQueueCommand.js.map +0 -1
  917. package/dist/es/commands/DeleteMatchmakingConfigurationCommand.js +0 -81
  918. package/dist/es/commands/DeleteMatchmakingConfigurationCommand.js.map +0 -1
  919. package/dist/es/commands/DeleteMatchmakingRuleSetCommand.js +0 -92
  920. package/dist/es/commands/DeleteMatchmakingRuleSetCommand.js.map +0 -1
  921. package/dist/es/commands/DeleteScalingPolicyCommand.js +0 -83
  922. package/dist/es/commands/DeleteScalingPolicyCommand.js.map +0 -1
  923. package/dist/es/commands/DeleteScriptCommand.js +0 -88
  924. package/dist/es/commands/DeleteScriptCommand.js.map +0 -1
  925. package/dist/es/commands/DeleteVpcPeeringAuthorizationCommand.js +0 -78
  926. package/dist/es/commands/DeleteVpcPeeringAuthorizationCommand.js.map +0 -1
  927. package/dist/es/commands/DeleteVpcPeeringConnectionCommand.js +0 -83
  928. package/dist/es/commands/DeleteVpcPeeringConnectionCommand.js.map +0 -1
  929. package/dist/es/commands/DeregisterGameServerCommand.js +0 -91
  930. package/dist/es/commands/DeregisterGameServerCommand.js.map +0 -1
  931. package/dist/es/commands/DescribeAliasCommand.js +0 -80
  932. package/dist/es/commands/DescribeAliasCommand.js.map +0 -1
  933. package/dist/es/commands/DescribeBuildCommand.js +0 -84
  934. package/dist/es/commands/DescribeBuildCommand.js.map +0 -1
  935. package/dist/es/commands/DescribeEC2InstanceLimitsCommand.js +0 -135
  936. package/dist/es/commands/DescribeEC2InstanceLimitsCommand.js.map +0 -1
  937. package/dist/es/commands/DescribeFleetAttributesCommand.js +0 -107
  938. package/dist/es/commands/DescribeFleetAttributesCommand.js.map +0 -1
  939. package/dist/es/commands/DescribeFleetCapacityCommand.js +0 -114
  940. package/dist/es/commands/DescribeFleetCapacityCommand.js.map +0 -1
  941. package/dist/es/commands/DescribeFleetEventsCommand.js +0 -94
  942. package/dist/es/commands/DescribeFleetEventsCommand.js.map +0 -1
  943. package/dist/es/commands/DescribeFleetLocationAttributesCommand.js +0 -105
  944. package/dist/es/commands/DescribeFleetLocationAttributesCommand.js.map +0 -1
  945. package/dist/es/commands/DescribeFleetLocationCapacityCommand.js +0 -97
  946. package/dist/es/commands/DescribeFleetLocationCapacityCommand.js.map +0 -1
  947. package/dist/es/commands/DescribeFleetLocationUtilizationCommand.js +0 -97
  948. package/dist/es/commands/DescribeFleetLocationUtilizationCommand.js.map +0 -1
  949. package/dist/es/commands/DescribeFleetPortSettingsCommand.js +0 -105
  950. package/dist/es/commands/DescribeFleetPortSettingsCommand.js.map +0 -1
  951. package/dist/es/commands/DescribeFleetUtilizationCommand.js +0 -115
  952. package/dist/es/commands/DescribeFleetUtilizationCommand.js.map +0 -1
  953. package/dist/es/commands/DescribeGameServerCommand.js +0 -89
  954. package/dist/es/commands/DescribeGameServerCommand.js.map +0 -1
  955. package/dist/es/commands/DescribeGameServerGroupCommand.js +0 -93
  956. package/dist/es/commands/DescribeGameServerGroupCommand.js.map +0 -1
  957. package/dist/es/commands/DescribeGameServerInstancesCommand.js +0 -103
  958. package/dist/es/commands/DescribeGameServerInstancesCommand.js.map +0 -1
  959. package/dist/es/commands/DescribeGameSessionDetailsCommand.js +0 -113
  960. package/dist/es/commands/DescribeGameSessionDetailsCommand.js.map +0 -1
  961. package/dist/es/commands/DescribeGameSessionPlacementCommand.js +0 -82
  962. package/dist/es/commands/DescribeGameSessionPlacementCommand.js.map +0 -1
  963. package/dist/es/commands/DescribeGameSessionQueuesCommand.js +0 -86
  964. package/dist/es/commands/DescribeGameSessionQueuesCommand.js.map +0 -1
  965. package/dist/es/commands/DescribeGameSessionsCommand.js +0 -115
  966. package/dist/es/commands/DescribeGameSessionsCommand.js.map +0 -1
  967. package/dist/es/commands/DescribeInstancesCommand.js +0 -103
  968. package/dist/es/commands/DescribeInstancesCommand.js.map +0 -1
  969. package/dist/es/commands/DescribeMatchmakingCommand.js +0 -99
  970. package/dist/es/commands/DescribeMatchmakingCommand.js.map +0 -1
  971. package/dist/es/commands/DescribeMatchmakingConfigurationsCommand.js +0 -92
  972. package/dist/es/commands/DescribeMatchmakingConfigurationsCommand.js.map +0 -1
  973. package/dist/es/commands/DescribeMatchmakingRuleSetsCommand.js +0 -93
  974. package/dist/es/commands/DescribeMatchmakingRuleSetsCommand.js.map +0 -1
  975. package/dist/es/commands/DescribePlayerSessionsCommand.js +0 -99
  976. package/dist/es/commands/DescribePlayerSessionsCommand.js.map +0 -1
  977. package/dist/es/commands/DescribeRuntimeConfigurationCommand.js +0 -97
  978. package/dist/es/commands/DescribeRuntimeConfigurationCommand.js.map +0 -1
  979. package/dist/es/commands/DescribeScalingPoliciesCommand.js +0 -87
  980. package/dist/es/commands/DescribeScalingPoliciesCommand.js.map +0 -1
  981. package/dist/es/commands/DescribeScriptCommand.js +0 -84
  982. package/dist/es/commands/DescribeScriptCommand.js.map +0 -1
  983. package/dist/es/commands/DescribeVpcPeeringAuthorizationsCommand.js +0 -79
  984. package/dist/es/commands/DescribeVpcPeeringAuthorizationsCommand.js.map +0 -1
  985. package/dist/es/commands/DescribeVpcPeeringConnectionsCommand.js +0 -83
  986. package/dist/es/commands/DescribeVpcPeeringConnectionsCommand.js.map +0 -1
  987. package/dist/es/commands/GetGameSessionLogUrlCommand.js +0 -87
  988. package/dist/es/commands/GetGameSessionLogUrlCommand.js.map +0 -1
  989. package/dist/es/commands/GetInstanceAccessCommand.js +0 -99
  990. package/dist/es/commands/GetInstanceAccessCommand.js.map +0 -1
  991. package/dist/es/commands/ListAliasesCommand.js +0 -82
  992. package/dist/es/commands/ListAliasesCommand.js.map +0 -1
  993. package/dist/es/commands/ListBuildsCommand.js +0 -89
  994. package/dist/es/commands/ListBuildsCommand.js.map +0 -1
  995. package/dist/es/commands/ListFleetsCommand.js +0 -111
  996. package/dist/es/commands/ListFleetsCommand.js.map +0 -1
  997. package/dist/es/commands/ListGameServerGroupsCommand.js +0 -90
  998. package/dist/es/commands/ListGameServerGroupsCommand.js.map +0 -1
  999. package/dist/es/commands/ListGameServersCommand.js +0 -88
  1000. package/dist/es/commands/ListGameServersCommand.js.map +0 -1
  1001. package/dist/es/commands/ListScriptsCommand.js +0 -82
  1002. package/dist/es/commands/ListScriptsCommand.js.map +0 -1
  1003. package/dist/es/commands/ListTagsForResourceCommand.js +0 -113
  1004. package/dist/es/commands/ListTagsForResourceCommand.js.map +0 -1
  1005. package/dist/es/commands/PutScalingPolicyCommand.js +0 -141
  1006. package/dist/es/commands/PutScalingPolicyCommand.js.map +0 -1
  1007. package/dist/es/commands/RegisterGameServerCommand.js +0 -99
  1008. package/dist/es/commands/RegisterGameServerCommand.js.map +0 -1
  1009. package/dist/es/commands/RequestUploadCredentialsCommand.js +0 -88
  1010. package/dist/es/commands/RequestUploadCredentialsCommand.js.map +0 -1
  1011. package/dist/es/commands/ResolveAliasCommand.js +0 -77
  1012. package/dist/es/commands/ResolveAliasCommand.js.map +0 -1
  1013. package/dist/es/commands/ResumeGameServerGroupCommand.js +0 -96
  1014. package/dist/es/commands/ResumeGameServerGroupCommand.js.map +0 -1
  1015. package/dist/es/commands/SearchGameSessionsCommand.js +0 -161
  1016. package/dist/es/commands/SearchGameSessionsCommand.js.map +0 -1
  1017. package/dist/es/commands/StartFleetActionsCommand.js +0 -102
  1018. package/dist/es/commands/StartFleetActionsCommand.js.map +0 -1
  1019. package/dist/es/commands/StartGameSessionPlacementCommand.js +0 -119
  1020. package/dist/es/commands/StartGameSessionPlacementCommand.js.map +0 -1
  1021. package/dist/es/commands/StartMatchBackfillCommand.js +0 -111
  1022. package/dist/es/commands/StartMatchBackfillCommand.js.map +0 -1
  1023. package/dist/es/commands/StartMatchmakingCommand.js +0 -105
  1024. package/dist/es/commands/StartMatchmakingCommand.js.map +0 -1
  1025. package/dist/es/commands/StopFleetActionsCommand.js +0 -107
  1026. package/dist/es/commands/StopFleetActionsCommand.js.map +0 -1
  1027. package/dist/es/commands/StopGameSessionPlacementCommand.js +0 -82
  1028. package/dist/es/commands/StopGameSessionPlacementCommand.js.map +0 -1
  1029. package/dist/es/commands/StopMatchmakingCommand.js +0 -94
  1030. package/dist/es/commands/StopMatchmakingCommand.js.map +0 -1
  1031. package/dist/es/commands/SuspendGameServerGroupCommand.js +0 -106
  1032. package/dist/es/commands/SuspendGameServerGroupCommand.js.map +0 -1
  1033. package/dist/es/commands/TagResourceCommand.js +0 -115
  1034. package/dist/es/commands/TagResourceCommand.js.map +0 -1
  1035. package/dist/es/commands/UntagResourceCommand.js +0 -115
  1036. package/dist/es/commands/UntagResourceCommand.js.map +0 -1
  1037. package/dist/es/commands/UpdateAliasCommand.js +0 -80
  1038. package/dist/es/commands/UpdateAliasCommand.js.map +0 -1
  1039. package/dist/es/commands/UpdateBuildCommand.js +0 -85
  1040. package/dist/es/commands/UpdateBuildCommand.js.map +0 -1
  1041. package/dist/es/commands/UpdateFleetAttributesCommand.js +0 -92
  1042. package/dist/es/commands/UpdateFleetAttributesCommand.js.map +0 -1
  1043. package/dist/es/commands/UpdateFleetCapacityCommand.js +0 -125
  1044. package/dist/es/commands/UpdateFleetCapacityCommand.js.map +0 -1
  1045. package/dist/es/commands/UpdateFleetPortSettingsCommand.js +0 -98
  1046. package/dist/es/commands/UpdateFleetPortSettingsCommand.js.map +0 -1
  1047. package/dist/es/commands/UpdateGameServerCommand.js +0 -110
  1048. package/dist/es/commands/UpdateGameServerCommand.js.map +0 -1
  1049. package/dist/es/commands/UpdateGameServerGroupCommand.js +0 -94
  1050. package/dist/es/commands/UpdateGameServerGroupCommand.js.map +0 -1
  1051. package/dist/es/commands/UpdateGameSessionCommand.js +0 -83
  1052. package/dist/es/commands/UpdateGameSessionCommand.js.map +0 -1
  1053. package/dist/es/commands/UpdateGameSessionQueueCommand.js +0 -85
  1054. package/dist/es/commands/UpdateGameSessionQueueCommand.js.map +0 -1
  1055. package/dist/es/commands/UpdateMatchmakingConfigurationCommand.js +0 -88
  1056. package/dist/es/commands/UpdateMatchmakingConfigurationCommand.js.map +0 -1
  1057. package/dist/es/commands/UpdateRuntimeConfigurationCommand.js +0 -99
  1058. package/dist/es/commands/UpdateRuntimeConfigurationCommand.js.map +0 -1
  1059. package/dist/es/commands/UpdateScriptCommand.js +0 -91
  1060. package/dist/es/commands/UpdateScriptCommand.js.map +0 -1
  1061. package/dist/es/commands/ValidateMatchmakingRuleSetCommand.js +0 -92
  1062. package/dist/es/commands/ValidateMatchmakingRuleSetCommand.js.map +0 -1
  1063. package/dist/es/endpoints.js +0 -53
  1064. package/dist/es/endpoints.js.map +0 -1
  1065. package/dist/es/index.js +0 -121
  1066. package/dist/es/index.js.map +0 -1
  1067. package/dist/es/models/index.js +0 -2
  1068. package/dist/es/models/index.js.map +0 -1
  1069. package/dist/es/models/models_0.js +0 -2019
  1070. package/dist/es/models/models_0.js.map +0 -1
  1071. package/dist/es/package.json +0 -91
  1072. package/dist/es/pagination/DescribeFleetAttributesPaginator.js +0 -87
  1073. package/dist/es/pagination/DescribeFleetAttributesPaginator.js.map +0 -1
  1074. package/dist/es/pagination/DescribeFleetCapacityPaginator.js +0 -87
  1075. package/dist/es/pagination/DescribeFleetCapacityPaginator.js.map +0 -1
  1076. package/dist/es/pagination/DescribeFleetEventsPaginator.js +0 -87
  1077. package/dist/es/pagination/DescribeFleetEventsPaginator.js.map +0 -1
  1078. package/dist/es/pagination/DescribeFleetLocationAttributesPaginator.js +0 -87
  1079. package/dist/es/pagination/DescribeFleetLocationAttributesPaginator.js.map +0 -1
  1080. package/dist/es/pagination/DescribeFleetUtilizationPaginator.js +0 -87
  1081. package/dist/es/pagination/DescribeFleetUtilizationPaginator.js.map +0 -1
  1082. package/dist/es/pagination/DescribeGameServerInstancesPaginator.js +0 -87
  1083. package/dist/es/pagination/DescribeGameServerInstancesPaginator.js.map +0 -1
  1084. package/dist/es/pagination/DescribeGameSessionDetailsPaginator.js +0 -87
  1085. package/dist/es/pagination/DescribeGameSessionDetailsPaginator.js.map +0 -1
  1086. package/dist/es/pagination/DescribeGameSessionQueuesPaginator.js +0 -87
  1087. package/dist/es/pagination/DescribeGameSessionQueuesPaginator.js.map +0 -1
  1088. package/dist/es/pagination/DescribeGameSessionsPaginator.js +0 -87
  1089. package/dist/es/pagination/DescribeGameSessionsPaginator.js.map +0 -1
  1090. package/dist/es/pagination/DescribeInstancesPaginator.js +0 -87
  1091. package/dist/es/pagination/DescribeInstancesPaginator.js.map +0 -1
  1092. package/dist/es/pagination/DescribeMatchmakingConfigurationsPaginator.js +0 -87
  1093. package/dist/es/pagination/DescribeMatchmakingConfigurationsPaginator.js.map +0 -1
  1094. package/dist/es/pagination/DescribeMatchmakingRuleSetsPaginator.js +0 -87
  1095. package/dist/es/pagination/DescribeMatchmakingRuleSetsPaginator.js.map +0 -1
  1096. package/dist/es/pagination/DescribePlayerSessionsPaginator.js +0 -87
  1097. package/dist/es/pagination/DescribePlayerSessionsPaginator.js.map +0 -1
  1098. package/dist/es/pagination/DescribeScalingPoliciesPaginator.js +0 -87
  1099. package/dist/es/pagination/DescribeScalingPoliciesPaginator.js.map +0 -1
  1100. package/dist/es/pagination/Interfaces.js +0 -2
  1101. package/dist/es/pagination/Interfaces.js.map +0 -1
  1102. package/dist/es/pagination/ListAliasesPaginator.js +0 -87
  1103. package/dist/es/pagination/ListAliasesPaginator.js.map +0 -1
  1104. package/dist/es/pagination/ListBuildsPaginator.js +0 -87
  1105. package/dist/es/pagination/ListBuildsPaginator.js.map +0 -1
  1106. package/dist/es/pagination/ListFleetsPaginator.js +0 -87
  1107. package/dist/es/pagination/ListFleetsPaginator.js.map +0 -1
  1108. package/dist/es/pagination/ListGameServerGroupsPaginator.js +0 -87
  1109. package/dist/es/pagination/ListGameServerGroupsPaginator.js.map +0 -1
  1110. package/dist/es/pagination/ListGameServersPaginator.js +0 -87
  1111. package/dist/es/pagination/ListGameServersPaginator.js.map +0 -1
  1112. package/dist/es/pagination/ListScriptsPaginator.js +0 -87
  1113. package/dist/es/pagination/ListScriptsPaginator.js.map +0 -1
  1114. package/dist/es/pagination/SearchGameSessionsPaginator.js +0 -87
  1115. package/dist/es/pagination/SearchGameSessionsPaginator.js.map +0 -1
  1116. package/dist/es/protocols/Aws_json1_1.js +0 -11910
  1117. package/dist/es/protocols/Aws_json1_1.js.map +0 -1
  1118. package/dist/es/runtimeConfig.browser.js +0 -20
  1119. package/dist/es/runtimeConfig.browser.js.map +0 -1
  1120. package/dist/es/runtimeConfig.js +0 -25
  1121. package/dist/es/runtimeConfig.js.map +0 -1
  1122. package/dist/es/runtimeConfig.native.js +0 -12
  1123. package/dist/es/runtimeConfig.native.js.map +0 -1
  1124. package/dist/es/runtimeConfig.shared.js +0 -17
  1125. package/dist/es/runtimeConfig.shared.js.map +0 -1
  1126. package/dist/types/GameLift.d.ts +0 -3902
  1127. package/dist/types/GameLiftClient.d.ts +0 -284
  1128. package/dist/types/commands/AcceptMatchCommand.d.ts +0 -73
  1129. package/dist/types/commands/ClaimGameServerCommand.d.ts +0 -87
  1130. package/dist/types/commands/CreateAliasCommand.d.ts +0 -60
  1131. package/dist/types/commands/CreateBuildCommand.d.ts +0 -88
  1132. package/dist/types/commands/CreateFleetCommand.d.ts +0 -86
  1133. package/dist/types/commands/CreateFleetLocationsCommand.d.ts +0 -77
  1134. package/dist/types/commands/CreateGameServerGroupCommand.d.ts +0 -88
  1135. package/dist/types/commands/CreateGameSessionCommand.d.ts +0 -88
  1136. package/dist/types/commands/CreateGameSessionQueueCommand.d.ts +0 -78
  1137. package/dist/types/commands/CreateMatchmakingConfigurationCommand.d.ts +0 -76
  1138. package/dist/types/commands/CreateMatchmakingRuleSetCommand.d.ts +0 -81
  1139. package/dist/types/commands/CreatePlayerSessionCommand.d.ts +0 -58
  1140. package/dist/types/commands/CreatePlayerSessionsCommand.d.ts +0 -58
  1141. package/dist/types/commands/CreateScriptCommand.d.ts +0 -78
  1142. package/dist/types/commands/CreateVpcPeeringAuthorizationCommand.d.ts +0 -68
  1143. package/dist/types/commands/CreateVpcPeeringConnectionCommand.d.ts +0 -65
  1144. package/dist/types/commands/DeleteAliasCommand.d.ts +0 -49
  1145. package/dist/types/commands/DeleteBuildCommand.d.ts +0 -56
  1146. package/dist/types/commands/DeleteFleetCommand.d.ts +0 -69
  1147. package/dist/types/commands/DeleteFleetLocationsCommand.d.ts +0 -63
  1148. package/dist/types/commands/DeleteGameServerGroupCommand.d.ts +0 -82
  1149. package/dist/types/commands/DeleteGameSessionQueueCommand.d.ts +0 -53
  1150. package/dist/types/commands/DeleteMatchmakingConfigurationCommand.d.ts +0 -51
  1151. package/dist/types/commands/DeleteMatchmakingRuleSetCommand.d.ts +0 -62
  1152. package/dist/types/commands/DeleteScalingPolicyCommand.d.ts +0 -53
  1153. package/dist/types/commands/DeleteScriptCommand.d.ts +0 -58
  1154. package/dist/types/commands/DeleteVpcPeeringAuthorizationCommand.d.ts +0 -48
  1155. package/dist/types/commands/DeleteVpcPeeringConnectionCommand.d.ts +0 -53
  1156. package/dist/types/commands/DeregisterGameServerCommand.d.ts +0 -61
  1157. package/dist/types/commands/DescribeAliasCommand.d.ts +0 -50
  1158. package/dist/types/commands/DescribeBuildCommand.d.ts +0 -54
  1159. package/dist/types/commands/DescribeEC2InstanceLimitsCommand.d.ts +0 -105
  1160. package/dist/types/commands/DescribeFleetAttributesCommand.d.ts +0 -77
  1161. package/dist/types/commands/DescribeFleetCapacityCommand.d.ts +0 -84
  1162. package/dist/types/commands/DescribeFleetEventsCommand.d.ts +0 -64
  1163. package/dist/types/commands/DescribeFleetLocationAttributesCommand.d.ts +0 -75
  1164. package/dist/types/commands/DescribeFleetLocationCapacityCommand.d.ts +0 -67
  1165. package/dist/types/commands/DescribeFleetLocationUtilizationCommand.d.ts +0 -67
  1166. package/dist/types/commands/DescribeFleetPortSettingsCommand.d.ts +0 -75
  1167. package/dist/types/commands/DescribeFleetUtilizationCommand.d.ts +0 -85
  1168. package/dist/types/commands/DescribeGameServerCommand.d.ts +0 -59
  1169. package/dist/types/commands/DescribeGameServerGroupCommand.d.ts +0 -63
  1170. package/dist/types/commands/DescribeGameServerInstancesCommand.d.ts +0 -73
  1171. package/dist/types/commands/DescribeGameSessionDetailsCommand.d.ts +0 -83
  1172. package/dist/types/commands/DescribeGameSessionPlacementCommand.d.ts +0 -52
  1173. package/dist/types/commands/DescribeGameSessionQueuesCommand.d.ts +0 -56
  1174. package/dist/types/commands/DescribeGameSessionsCommand.d.ts +0 -85
  1175. package/dist/types/commands/DescribeInstancesCommand.d.ts +0 -73
  1176. package/dist/types/commands/DescribeMatchmakingCommand.d.ts +0 -69
  1177. package/dist/types/commands/DescribeMatchmakingConfigurationsCommand.d.ts +0 -62
  1178. package/dist/types/commands/DescribeMatchmakingRuleSetsCommand.d.ts +0 -63
  1179. package/dist/types/commands/DescribePlayerSessionsCommand.d.ts +0 -69
  1180. package/dist/types/commands/DescribeRuntimeConfigurationCommand.d.ts +0 -67
  1181. package/dist/types/commands/DescribeScalingPoliciesCommand.d.ts +0 -57
  1182. package/dist/types/commands/DescribeScriptCommand.d.ts +0 -54
  1183. package/dist/types/commands/DescribeVpcPeeringAuthorizationsCommand.d.ts +0 -49
  1184. package/dist/types/commands/DescribeVpcPeeringConnectionsCommand.d.ts +0 -53
  1185. package/dist/types/commands/GetGameSessionLogUrlCommand.d.ts +0 -57
  1186. package/dist/types/commands/GetInstanceAccessCommand.d.ts +0 -69
  1187. package/dist/types/commands/ListAliasesCommand.d.ts +0 -52
  1188. package/dist/types/commands/ListBuildsCommand.d.ts +0 -59
  1189. package/dist/types/commands/ListFleetsCommand.d.ts +0 -81
  1190. package/dist/types/commands/ListGameServerGroupsCommand.d.ts +0 -60
  1191. package/dist/types/commands/ListGameServersCommand.d.ts +0 -58
  1192. package/dist/types/commands/ListScriptsCommand.d.ts +0 -52
  1193. package/dist/types/commands/ListTagsForResourceCommand.d.ts +0 -83
  1194. package/dist/types/commands/PutScalingPolicyCommand.d.ts +0 -111
  1195. package/dist/types/commands/RegisterGameServerCommand.d.ts +0 -69
  1196. package/dist/types/commands/RequestUploadCredentialsCommand.d.ts +0 -58
  1197. package/dist/types/commands/ResolveAliasCommand.d.ts +0 -47
  1198. package/dist/types/commands/ResumeGameServerGroupCommand.d.ts +0 -66
  1199. package/dist/types/commands/SearchGameSessionsCommand.d.ts +0 -131
  1200. package/dist/types/commands/StartFleetActionsCommand.d.ts +0 -72
  1201. package/dist/types/commands/StartGameSessionPlacementCommand.d.ts +0 -89
  1202. package/dist/types/commands/StartMatchBackfillCommand.d.ts +0 -81
  1203. package/dist/types/commands/StartMatchmakingCommand.d.ts +0 -75
  1204. package/dist/types/commands/StopFleetActionsCommand.d.ts +0 -77
  1205. package/dist/types/commands/StopGameSessionPlacementCommand.d.ts +0 -52
  1206. package/dist/types/commands/StopMatchmakingCommand.d.ts +0 -64
  1207. package/dist/types/commands/SuspendGameServerGroupCommand.d.ts +0 -76
  1208. package/dist/types/commands/TagResourceCommand.d.ts +0 -85
  1209. package/dist/types/commands/UntagResourceCommand.d.ts +0 -85
  1210. package/dist/types/commands/UpdateAliasCommand.d.ts +0 -50
  1211. package/dist/types/commands/UpdateBuildCommand.d.ts +0 -55
  1212. package/dist/types/commands/UpdateFleetAttributesCommand.d.ts +0 -62
  1213. package/dist/types/commands/UpdateFleetCapacityCommand.d.ts +0 -95
  1214. package/dist/types/commands/UpdateFleetPortSettingsCommand.d.ts +0 -68
  1215. package/dist/types/commands/UpdateGameServerCommand.d.ts +0 -80
  1216. package/dist/types/commands/UpdateGameServerGroupCommand.d.ts +0 -64
  1217. package/dist/types/commands/UpdateGameSessionCommand.d.ts +0 -53
  1218. package/dist/types/commands/UpdateGameSessionQueueCommand.d.ts +0 -55
  1219. package/dist/types/commands/UpdateMatchmakingConfigurationCommand.d.ts +0 -58
  1220. package/dist/types/commands/UpdateRuntimeConfigurationCommand.d.ts +0 -69
  1221. package/dist/types/commands/UpdateScriptCommand.d.ts +0 -61
  1222. package/dist/types/commands/ValidateMatchmakingRuleSetCommand.d.ts +0 -62
  1223. package/dist/types/pagination/DescribeFleetAttributesPaginator.d.ts +0 -4
  1224. package/dist/types/pagination/DescribeFleetCapacityPaginator.d.ts +0 -4
  1225. package/dist/types/pagination/DescribeFleetEventsPaginator.d.ts +0 -4
  1226. package/dist/types/pagination/DescribeFleetLocationAttributesPaginator.d.ts +0 -4
  1227. package/dist/types/pagination/DescribeFleetUtilizationPaginator.d.ts +0 -4
  1228. package/dist/types/pagination/DescribeGameServerInstancesPaginator.d.ts +0 -4
  1229. package/dist/types/pagination/DescribeGameSessionDetailsPaginator.d.ts +0 -4
  1230. package/dist/types/pagination/DescribeGameSessionQueuesPaginator.d.ts +0 -4
  1231. package/dist/types/pagination/DescribeGameSessionsPaginator.d.ts +0 -4
  1232. package/dist/types/pagination/DescribeInstancesPaginator.d.ts +0 -4
  1233. package/dist/types/pagination/DescribeMatchmakingConfigurationsPaginator.d.ts +0 -4
  1234. package/dist/types/pagination/DescribeMatchmakingRuleSetsPaginator.d.ts +0 -4
  1235. package/dist/types/pagination/DescribePlayerSessionsPaginator.d.ts +0 -4
  1236. package/dist/types/pagination/DescribeScalingPoliciesPaginator.d.ts +0 -4
  1237. package/dist/types/pagination/Interfaces.d.ts +0 -6
  1238. package/dist/types/pagination/ListAliasesPaginator.d.ts +0 -4
  1239. package/dist/types/pagination/ListBuildsPaginator.d.ts +0 -4
  1240. package/dist/types/pagination/ListFleetsPaginator.d.ts +0 -4
  1241. package/dist/types/pagination/ListGameServerGroupsPaginator.d.ts +0 -4
  1242. package/dist/types/pagination/ListGameServersPaginator.d.ts +0 -4
  1243. package/dist/types/pagination/ListScriptsPaginator.d.ts +0 -4
  1244. package/dist/types/pagination/SearchGameSessionsPaginator.d.ts +0 -4
  1245. package/dist/types/protocols/Aws_json1_1.d.ts +0 -287
  1246. package/dist/types/runtimeConfig.browser.d.ts +0 -36
  1247. package/dist/types/runtimeConfig.d.ts +0 -36
  1248. package/dist/types/runtimeConfig.native.d.ts +0 -35
  1249. package/dist/types/ts3.4/GameLift.d.ts +0 -3902
  1250. package/dist/types/ts3.4/GameLiftClient.d.ts +0 -284
  1251. package/dist/types/ts3.4/commands/AcceptMatchCommand.d.ts +0 -73
  1252. package/dist/types/ts3.4/commands/ClaimGameServerCommand.d.ts +0 -87
  1253. package/dist/types/ts3.4/commands/CreateAliasCommand.d.ts +0 -60
  1254. package/dist/types/ts3.4/commands/CreateBuildCommand.d.ts +0 -88
  1255. package/dist/types/ts3.4/commands/CreateFleetCommand.d.ts +0 -86
  1256. package/dist/types/ts3.4/commands/CreateFleetLocationsCommand.d.ts +0 -77
  1257. package/dist/types/ts3.4/commands/CreateGameServerGroupCommand.d.ts +0 -88
  1258. package/dist/types/ts3.4/commands/CreateGameSessionCommand.d.ts +0 -88
  1259. package/dist/types/ts3.4/commands/CreateGameSessionQueueCommand.d.ts +0 -78
  1260. package/dist/types/ts3.4/commands/CreateMatchmakingConfigurationCommand.d.ts +0 -76
  1261. package/dist/types/ts3.4/commands/CreateMatchmakingRuleSetCommand.d.ts +0 -81
  1262. package/dist/types/ts3.4/commands/CreatePlayerSessionCommand.d.ts +0 -58
  1263. package/dist/types/ts3.4/commands/CreatePlayerSessionsCommand.d.ts +0 -58
  1264. package/dist/types/ts3.4/commands/CreateScriptCommand.d.ts +0 -78
  1265. package/dist/types/ts3.4/commands/CreateVpcPeeringAuthorizationCommand.d.ts +0 -68
  1266. package/dist/types/ts3.4/commands/CreateVpcPeeringConnectionCommand.d.ts +0 -65
  1267. package/dist/types/ts3.4/commands/DeleteAliasCommand.d.ts +0 -49
  1268. package/dist/types/ts3.4/commands/DeleteBuildCommand.d.ts +0 -56
  1269. package/dist/types/ts3.4/commands/DeleteFleetCommand.d.ts +0 -69
  1270. package/dist/types/ts3.4/commands/DeleteFleetLocationsCommand.d.ts +0 -63
  1271. package/dist/types/ts3.4/commands/DeleteGameServerGroupCommand.d.ts +0 -82
  1272. package/dist/types/ts3.4/commands/DeleteGameSessionQueueCommand.d.ts +0 -53
  1273. package/dist/types/ts3.4/commands/DeleteMatchmakingConfigurationCommand.d.ts +0 -51
  1274. package/dist/types/ts3.4/commands/DeleteMatchmakingRuleSetCommand.d.ts +0 -62
  1275. package/dist/types/ts3.4/commands/DeleteScalingPolicyCommand.d.ts +0 -53
  1276. package/dist/types/ts3.4/commands/DeleteScriptCommand.d.ts +0 -58
  1277. package/dist/types/ts3.4/commands/DeleteVpcPeeringAuthorizationCommand.d.ts +0 -48
  1278. package/dist/types/ts3.4/commands/DeleteVpcPeeringConnectionCommand.d.ts +0 -53
  1279. package/dist/types/ts3.4/commands/DeregisterGameServerCommand.d.ts +0 -61
  1280. package/dist/types/ts3.4/commands/DescribeAliasCommand.d.ts +0 -50
  1281. package/dist/types/ts3.4/commands/DescribeBuildCommand.d.ts +0 -54
  1282. package/dist/types/ts3.4/commands/DescribeEC2InstanceLimitsCommand.d.ts +0 -105
  1283. package/dist/types/ts3.4/commands/DescribeFleetAttributesCommand.d.ts +0 -77
  1284. package/dist/types/ts3.4/commands/DescribeFleetCapacityCommand.d.ts +0 -84
  1285. package/dist/types/ts3.4/commands/DescribeFleetEventsCommand.d.ts +0 -64
  1286. package/dist/types/ts3.4/commands/DescribeFleetLocationAttributesCommand.d.ts +0 -75
  1287. package/dist/types/ts3.4/commands/DescribeFleetLocationCapacityCommand.d.ts +0 -67
  1288. package/dist/types/ts3.4/commands/DescribeFleetLocationUtilizationCommand.d.ts +0 -67
  1289. package/dist/types/ts3.4/commands/DescribeFleetPortSettingsCommand.d.ts +0 -75
  1290. package/dist/types/ts3.4/commands/DescribeFleetUtilizationCommand.d.ts +0 -85
  1291. package/dist/types/ts3.4/commands/DescribeGameServerCommand.d.ts +0 -59
  1292. package/dist/types/ts3.4/commands/DescribeGameServerGroupCommand.d.ts +0 -63
  1293. package/dist/types/ts3.4/commands/DescribeGameServerInstancesCommand.d.ts +0 -73
  1294. package/dist/types/ts3.4/commands/DescribeGameSessionDetailsCommand.d.ts +0 -83
  1295. package/dist/types/ts3.4/commands/DescribeGameSessionPlacementCommand.d.ts +0 -52
  1296. package/dist/types/ts3.4/commands/DescribeGameSessionQueuesCommand.d.ts +0 -56
  1297. package/dist/types/ts3.4/commands/DescribeGameSessionsCommand.d.ts +0 -85
  1298. package/dist/types/ts3.4/commands/DescribeInstancesCommand.d.ts +0 -73
  1299. package/dist/types/ts3.4/commands/DescribeMatchmakingCommand.d.ts +0 -69
  1300. package/dist/types/ts3.4/commands/DescribeMatchmakingConfigurationsCommand.d.ts +0 -62
  1301. package/dist/types/ts3.4/commands/DescribeMatchmakingRuleSetsCommand.d.ts +0 -63
  1302. package/dist/types/ts3.4/commands/DescribePlayerSessionsCommand.d.ts +0 -69
  1303. package/dist/types/ts3.4/commands/DescribeRuntimeConfigurationCommand.d.ts +0 -67
  1304. package/dist/types/ts3.4/commands/DescribeScalingPoliciesCommand.d.ts +0 -57
  1305. package/dist/types/ts3.4/commands/DescribeScriptCommand.d.ts +0 -54
  1306. package/dist/types/ts3.4/commands/DescribeVpcPeeringAuthorizationsCommand.d.ts +0 -49
  1307. package/dist/types/ts3.4/commands/DescribeVpcPeeringConnectionsCommand.d.ts +0 -53
  1308. package/dist/types/ts3.4/commands/GetGameSessionLogUrlCommand.d.ts +0 -57
  1309. package/dist/types/ts3.4/commands/GetInstanceAccessCommand.d.ts +0 -69
  1310. package/dist/types/ts3.4/commands/ListAliasesCommand.d.ts +0 -52
  1311. package/dist/types/ts3.4/commands/ListBuildsCommand.d.ts +0 -59
  1312. package/dist/types/ts3.4/commands/ListFleetsCommand.d.ts +0 -81
  1313. package/dist/types/ts3.4/commands/ListGameServerGroupsCommand.d.ts +0 -60
  1314. package/dist/types/ts3.4/commands/ListGameServersCommand.d.ts +0 -58
  1315. package/dist/types/ts3.4/commands/ListScriptsCommand.d.ts +0 -52
  1316. package/dist/types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -83
  1317. package/dist/types/ts3.4/commands/PutScalingPolicyCommand.d.ts +0 -111
  1318. package/dist/types/ts3.4/commands/RegisterGameServerCommand.d.ts +0 -69
  1319. package/dist/types/ts3.4/commands/RequestUploadCredentialsCommand.d.ts +0 -58
  1320. package/dist/types/ts3.4/commands/ResolveAliasCommand.d.ts +0 -47
  1321. package/dist/types/ts3.4/commands/ResumeGameServerGroupCommand.d.ts +0 -66
  1322. package/dist/types/ts3.4/commands/SearchGameSessionsCommand.d.ts +0 -131
  1323. package/dist/types/ts3.4/commands/StartFleetActionsCommand.d.ts +0 -72
  1324. package/dist/types/ts3.4/commands/StartGameSessionPlacementCommand.d.ts +0 -89
  1325. package/dist/types/ts3.4/commands/StartMatchBackfillCommand.d.ts +0 -81
  1326. package/dist/types/ts3.4/commands/StartMatchmakingCommand.d.ts +0 -75
  1327. package/dist/types/ts3.4/commands/StopFleetActionsCommand.d.ts +0 -77
  1328. package/dist/types/ts3.4/commands/StopGameSessionPlacementCommand.d.ts +0 -52
  1329. package/dist/types/ts3.4/commands/StopMatchmakingCommand.d.ts +0 -64
  1330. package/dist/types/ts3.4/commands/SuspendGameServerGroupCommand.d.ts +0 -76
  1331. package/dist/types/ts3.4/commands/TagResourceCommand.d.ts +0 -85
  1332. package/dist/types/ts3.4/commands/UntagResourceCommand.d.ts +0 -85
  1333. package/dist/types/ts3.4/commands/UpdateAliasCommand.d.ts +0 -50
  1334. package/dist/types/ts3.4/commands/UpdateBuildCommand.d.ts +0 -55
  1335. package/dist/types/ts3.4/commands/UpdateFleetAttributesCommand.d.ts +0 -62
  1336. package/dist/types/ts3.4/commands/UpdateFleetCapacityCommand.d.ts +0 -95
  1337. package/dist/types/ts3.4/commands/UpdateFleetPortSettingsCommand.d.ts +0 -68
  1338. package/dist/types/ts3.4/commands/UpdateGameServerCommand.d.ts +0 -80
  1339. package/dist/types/ts3.4/commands/UpdateGameServerGroupCommand.d.ts +0 -64
  1340. package/dist/types/ts3.4/commands/UpdateGameSessionCommand.d.ts +0 -53
  1341. package/dist/types/ts3.4/commands/UpdateGameSessionQueueCommand.d.ts +0 -55
  1342. package/dist/types/ts3.4/commands/UpdateMatchmakingConfigurationCommand.d.ts +0 -58
  1343. package/dist/types/ts3.4/commands/UpdateRuntimeConfigurationCommand.d.ts +0 -69
  1344. package/dist/types/ts3.4/commands/UpdateScriptCommand.d.ts +0 -61
  1345. package/dist/types/ts3.4/commands/ValidateMatchmakingRuleSetCommand.d.ts +0 -62
  1346. package/dist/types/ts3.4/pagination/DescribeFleetAttributesPaginator.d.ts +0 -4
  1347. package/dist/types/ts3.4/pagination/DescribeFleetCapacityPaginator.d.ts +0 -4
  1348. package/dist/types/ts3.4/pagination/DescribeFleetEventsPaginator.d.ts +0 -4
  1349. package/dist/types/ts3.4/pagination/DescribeFleetLocationAttributesPaginator.d.ts +0 -4
  1350. package/dist/types/ts3.4/pagination/DescribeFleetUtilizationPaginator.d.ts +0 -4
  1351. package/dist/types/ts3.4/pagination/DescribeGameServerInstancesPaginator.d.ts +0 -4
  1352. package/dist/types/ts3.4/pagination/DescribeGameSessionDetailsPaginator.d.ts +0 -4
  1353. package/dist/types/ts3.4/pagination/DescribeGameSessionQueuesPaginator.d.ts +0 -4
  1354. package/dist/types/ts3.4/pagination/DescribeGameSessionsPaginator.d.ts +0 -4
  1355. package/dist/types/ts3.4/pagination/DescribeInstancesPaginator.d.ts +0 -4
  1356. package/dist/types/ts3.4/pagination/DescribeMatchmakingConfigurationsPaginator.d.ts +0 -4
  1357. package/dist/types/ts3.4/pagination/DescribeMatchmakingRuleSetsPaginator.d.ts +0 -4
  1358. package/dist/types/ts3.4/pagination/DescribePlayerSessionsPaginator.d.ts +0 -4
  1359. package/dist/types/ts3.4/pagination/DescribeScalingPoliciesPaginator.d.ts +0 -4
  1360. package/dist/types/ts3.4/pagination/Interfaces.d.ts +0 -6
  1361. package/dist/types/ts3.4/pagination/ListAliasesPaginator.d.ts +0 -4
  1362. package/dist/types/ts3.4/pagination/ListBuildsPaginator.d.ts +0 -4
  1363. package/dist/types/ts3.4/pagination/ListFleetsPaginator.d.ts +0 -4
  1364. package/dist/types/ts3.4/pagination/ListGameServerGroupsPaginator.d.ts +0 -4
  1365. package/dist/types/ts3.4/pagination/ListGameServersPaginator.d.ts +0 -4
  1366. package/dist/types/ts3.4/pagination/ListScriptsPaginator.d.ts +0 -4
  1367. package/dist/types/ts3.4/pagination/SearchGameSessionsPaginator.d.ts +0 -4
  1368. package/dist/types/ts3.4/protocols/Aws_json1_1.d.ts +0 -287
  1369. package/dist/types/ts3.4/runtimeConfig.browser.d.ts +0 -36
  1370. package/dist/types/ts3.4/runtimeConfig.d.ts +0 -36
  1371. package/dist/types/ts3.4/runtimeConfig.native.d.ts +0 -35
  1372. package/endpoints.ts +0 -57
  1373. package/jest.config.js +0 -4
  1374. package/models/models_0.ts +0 -10260
  1375. package/pagination/DescribeFleetAttributesPaginator.ts +0 -58
  1376. package/pagination/DescribeFleetCapacityPaginator.ts +0 -58
  1377. package/pagination/DescribeFleetEventsPaginator.ts +0 -58
  1378. package/pagination/DescribeFleetLocationAttributesPaginator.ts +0 -58
  1379. package/pagination/DescribeFleetUtilizationPaginator.ts +0 -58
  1380. package/pagination/DescribeGameServerInstancesPaginator.ts +0 -58
  1381. package/pagination/DescribeGameSessionDetailsPaginator.ts +0 -58
  1382. package/pagination/DescribeGameSessionQueuesPaginator.ts +0 -58
  1383. package/pagination/DescribeGameSessionsPaginator.ts +0 -58
  1384. package/pagination/DescribeInstancesPaginator.ts +0 -58
  1385. package/pagination/DescribeMatchmakingConfigurationsPaginator.ts +0 -58
  1386. package/pagination/DescribeMatchmakingRuleSetsPaginator.ts +0 -58
  1387. package/pagination/DescribePlayerSessionsPaginator.ts +0 -58
  1388. package/pagination/DescribeScalingPoliciesPaginator.ts +0 -58
  1389. package/pagination/Interfaces.ts +0 -7
  1390. package/pagination/ListAliasesPaginator.ts +0 -54
  1391. package/pagination/ListBuildsPaginator.ts +0 -54
  1392. package/pagination/ListFleetsPaginator.ts +0 -54
  1393. package/pagination/ListGameServerGroupsPaginator.ts +0 -58
  1394. package/pagination/ListGameServersPaginator.ts +0 -58
  1395. package/pagination/ListScriptsPaginator.ts +0 -54
  1396. package/pagination/SearchGameSessionsPaginator.ts +0 -58
  1397. package/protocols/Aws_json1_1.ts +0 -14013
  1398. package/runtimeConfig.browser.ts +0 -40
  1399. package/runtimeConfig.native.ts +0 -16
  1400. package/runtimeConfig.shared.ts +0 -16
  1401. package/runtimeConfig.ts +0 -45
  1402. package/tsconfig.es.json +0 -12
  1403. package/tsconfig.json +0 -32
@@ -0,0 +1,86 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient";
4
+ import { CreateFleetInput, CreateFleetOutput } from "../models/models_0";
5
+ export interface CreateFleetCommandInput extends CreateFleetInput {
6
+ }
7
+ export interface CreateFleetCommandOutput extends CreateFleetOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Creates a fleet of Amazon Elastic Compute Cloud (Amazon EC2) instances to host your
11
+ * custom game server or Realtime Servers. Use this operation to configure the computing resources for
12
+ * your fleet and provide instructions for running game servers on each instance.</p>
13
+ * <p>Most GameLift fleets can deploy instances to multiple locations, including the home
14
+ * Region (where the fleet is created) and an optional set of remote locations. Fleets that
15
+ * are created in the following AWS Regions support multiple locations: us-east-1 (N.
16
+ * Virginia), us-west-2 (Oregon), eu-central-1 (Frankfurt), eu-west-1 (Ireland),
17
+ * ap-southeast-2 (Sydney), ap-northeast-1 (Tokyo), and ap-northeast-2 (Seoul). Fleets that
18
+ * are created in other GameLift Regions can deploy instances in the fleet's home Region
19
+ * only. All fleet instances use the same configuration regardless of location; however,
20
+ * you can adjust capacity settings and turn auto-scaling on/off for each location.</p>
21
+ * <p>To create a fleet, choose the hardware for your instances, specify a game server build
22
+ * or Realtime script to deploy, and provide a runtime configuration to direct GameLift how
23
+ * to start and run game servers on each instance in the fleet. Set permissions for inbound
24
+ * traffic to your game servers, and enable optional features as needed. When creating a
25
+ * multi-location fleet, provide a list of additional remote locations.</p>
26
+ *
27
+ * <p>If successful, this operation creates a new Fleet resource and places it in
28
+ * <code>NEW</code> status, which prompts GameLift to initiate the <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-creation-workflow.html">fleet creation
29
+ * workflow</a>. You can track fleet creation by checking fleet status using <a>DescribeFleetAttributes</a> and <a>DescribeFleetLocationAttributes</a>/, or by monitoring fleet creation events
30
+ * using <a>DescribeFleetEvents</a>. As soon as the fleet status changes to
31
+ * <code>ACTIVE</code>, you can enable automatic scaling for the fleet with <a>PutScalingPolicy</a> and set capacity for the home Region with <a>UpdateFleetCapacity</a>. When the status of each remote location reaches
32
+ * <code>ACTIVE</code>, you can set capacity by location using <a>UpdateFleetCapacity</a>.</p>
33
+ *
34
+ *
35
+ * <p>
36
+ * <b>Learn more</b>
37
+ * </p>
38
+ * <p>
39
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-intro.html">Setting up fleets</a>
40
+ * </p>
41
+ * <p>
42
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-creating-debug.html#fleets-creating-debug-creation">Debug fleet creation issues</a>
43
+ * </p>
44
+ * <p>
45
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-intro.html">Multi-location fleets</a>
46
+ * </p>
47
+ * <p>
48
+ * <b>Related actions</b>
49
+ * </p>
50
+ * <p>
51
+ * <a>CreateFleet</a> |
52
+ * <a>UpdateFleetCapacity</a> |
53
+ * <a>PutScalingPolicy</a> |
54
+ * <a>DescribeEC2InstanceLimits</a> |
55
+ * <a>DescribeFleetAttributes</a> |
56
+ * <a>DescribeFleetLocationAttributes</a> |
57
+ * <a>UpdateFleetAttributes</a> |
58
+ * <a>StopFleetActions</a> |
59
+ * <a>DeleteFleet</a> |
60
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
61
+ * </p>
62
+ * @example
63
+ * Use a bare-bones client and the command you need to make an API call.
64
+ * ```javascript
65
+ * import { GameLiftClient, CreateFleetCommand } from "@aws-sdk/client-gamelift"; // ES Modules import
66
+ * // const { GameLiftClient, CreateFleetCommand } = require("@aws-sdk/client-gamelift"); // CommonJS import
67
+ * const client = new GameLiftClient(config);
68
+ * const command = new CreateFleetCommand(input);
69
+ * const response = await client.send(command);
70
+ * ```
71
+ *
72
+ * @see {@link CreateFleetCommandInput} for command's `input` shape.
73
+ * @see {@link CreateFleetCommandOutput} for command's `response` shape.
74
+ * @see {@link GameLiftClientResolvedConfig | config} for command's `input` shape.
75
+ *
76
+ */
77
+ export declare class CreateFleetCommand extends $Command<CreateFleetCommandInput, CreateFleetCommandOutput, GameLiftClientResolvedConfig> {
78
+ readonly input: CreateFleetCommandInput;
79
+ constructor(input: CreateFleetCommandInput);
80
+ /**
81
+ * @internal
82
+ */
83
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GameLiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateFleetCommandInput, CreateFleetCommandOutput>;
84
+ private serialize;
85
+ private deserialize;
86
+ }
@@ -0,0 +1,77 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient";
4
+ import { CreateFleetLocationsInput, CreateFleetLocationsOutput } from "../models/models_0";
5
+ export interface CreateFleetLocationsCommandInput extends CreateFleetLocationsInput {
6
+ }
7
+ export interface CreateFleetLocationsCommandOutput extends CreateFleetLocationsOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Adds remote locations to a fleet and begins populating the new locations with EC2
11
+ * instances. The new instances conform to the fleet's instance type, auto-scaling, and
12
+ * other configuration settings. </p>
13
+ * <note>
14
+ * <p>This operation cannot be used with fleets that don't support remote locations. Fleets
15
+ * can have multiple locations only if they reside in AWS Regions that support this
16
+ * feature (see <a>CreateFleet</a> for the complete list) and were created
17
+ * after the feature was released in March 2021.</p>
18
+ * </note>
19
+ * <p>To add fleet locations, specify the fleet to be updated and provide a list of one or
20
+ * more locations. </p>
21
+ * <p>If successful, this operation returns the list of added locations with their status set
22
+ * to <code>NEW</code>. GameLift initiates the process of starting an instance in each added
23
+ * location. You can track the status of each new location by monitoring location creation
24
+ * events using <a>DescribeFleetEvents</a>. Alternatively, you can poll location
25
+ * status by calling <a>DescribeFleetLocationAttributes</a>. After a location
26
+ * status becomes <code>ACTIVE</code>, you can adjust the location's capacity as needed
27
+ * with <a>UpdateFleetCapacity</a>.</p>
28
+ * <p>
29
+ * <b>Learn more</b>
30
+ * </p>
31
+ * <p>
32
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-intro.html">Setting up fleets</a>
33
+ * </p>
34
+ * <p>
35
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/fleets-intro.html">Multi-location fleets</a>
36
+ * </p>
37
+ * <p>
38
+ * <b>Related actions</b>
39
+ * </p>
40
+ * <p>
41
+ * <a>CreateFleetLocations</a> |
42
+ * <a>DescribeFleetLocationAttributes</a> |
43
+ * <a>DescribeFleetLocationCapacity</a> |
44
+ * <a>DescribeFleetLocationUtilization</a> |
45
+ * <a>DescribeFleetAttributes</a> |
46
+ * <a>DescribeFleetCapacity</a> |
47
+ * <a>DescribeFleetUtilization</a> |
48
+ * <a>UpdateFleetCapacity</a> |
49
+ * <a>StopFleetActions</a> |
50
+ * <a>DeleteFleetLocations</a> |
51
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
52
+ * </p>
53
+ * @example
54
+ * Use a bare-bones client and the command you need to make an API call.
55
+ * ```javascript
56
+ * import { GameLiftClient, CreateFleetLocationsCommand } from "@aws-sdk/client-gamelift"; // ES Modules import
57
+ * // const { GameLiftClient, CreateFleetLocationsCommand } = require("@aws-sdk/client-gamelift"); // CommonJS import
58
+ * const client = new GameLiftClient(config);
59
+ * const command = new CreateFleetLocationsCommand(input);
60
+ * const response = await client.send(command);
61
+ * ```
62
+ *
63
+ * @see {@link CreateFleetLocationsCommandInput} for command's `input` shape.
64
+ * @see {@link CreateFleetLocationsCommandOutput} for command's `response` shape.
65
+ * @see {@link GameLiftClientResolvedConfig | config} for command's `input` shape.
66
+ *
67
+ */
68
+ export declare class CreateFleetLocationsCommand extends $Command<CreateFleetLocationsCommandInput, CreateFleetLocationsCommandOutput, GameLiftClientResolvedConfig> {
69
+ readonly input: CreateFleetLocationsCommandInput;
70
+ constructor(input: CreateFleetLocationsCommandInput);
71
+ /**
72
+ * @internal
73
+ */
74
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GameLiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateFleetLocationsCommandInput, CreateFleetLocationsCommandOutput>;
75
+ private serialize;
76
+ private deserialize;
77
+ }
@@ -0,0 +1,88 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient";
4
+ import { CreateGameServerGroupInput, CreateGameServerGroupOutput } from "../models/models_0";
5
+ export interface CreateGameServerGroupCommandInput extends CreateGameServerGroupInput {
6
+ }
7
+ export interface CreateGameServerGroupCommandOutput extends CreateGameServerGroupOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>
11
+ * <b>This operation is used with the GameLift FleetIQ solution and game server groups.</b>
12
+ * </p>
13
+ * <p>Creates a GameLift FleetIQ game server group for managing game hosting on a collection of
14
+ * Amazon EC2 instances for game hosting. This operation creates the game server group,
15
+ * creates an Auto Scaling group in your AWS account, and establishes a link between the
16
+ * two groups. You can view the status of your game server groups in the GameLift console.
17
+ * Game server group metrics and events are emitted to Amazon CloudWatch.</p>
18
+ * <p>Before creating a new game server group, you must have the following: </p>
19
+ * <ul>
20
+ * <li>
21
+ * <p>An Amazon EC2 launch template that specifies how to launch Amazon EC2 instances
22
+ * with your game server build. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-templates.html"> Launching an Instance from a Launch Template</a> in the
23
+ * <i>Amazon EC2 User Guide</i>. </p>
24
+ * </li>
25
+ * <li>
26
+ * <p>An IAM role that extends limited access to your AWS account to allow GameLift FleetIQ to create and
27
+ * interact with the Auto Scaling group. For more information, see <a href="https://docs.aws.amazon.com/gamelift/latest/fleetiqguide/gsg-iam-permissions-roles.html">Create IAM roles for cross-service interaction</a> in the <i>GameLift FleetIQ Developer
28
+ * Guide</i>.</p>
29
+ * </li>
30
+ * </ul>
31
+ * <p>To create a new game server group, specify a unique group name, IAM role and Amazon EC2
32
+ * launch template, and provide a list of instance types that can be used in the group. You
33
+ * must also set initial maximum and minimum limits on the group's instance count. You can
34
+ * optionally set an Auto Scaling policy with target tracking based on a GameLift FleetIQ
35
+ * metric.</p>
36
+ * <p>Once the game server group and corresponding Auto Scaling group are created, you have
37
+ * full access to change the Auto Scaling group's configuration as needed. Several
38
+ * properties that are set when creating a game server group, including maximum/minimum
39
+ * size and auto-scaling policy settings, must be updated directly in the Auto Scaling
40
+ * group. Keep in mind that some Auto Scaling group properties are periodically updated by
41
+ * GameLift FleetIQ as part of its balancing activities to optimize for availability and
42
+ * cost.</p>
43
+ * <p>
44
+ * <b>Learn more</b>
45
+ * </p>
46
+ * <p>
47
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/fleetiqguide/gsg-intro.html">GameLift FleetIQ Guide</a>
48
+ * </p>
49
+ *
50
+ * <p>
51
+ * <b>Related actions</b>
52
+ * </p>
53
+ * <p>
54
+ * <a>CreateGameServerGroup</a> |
55
+ * <a>ListGameServerGroups</a> |
56
+ * <a>DescribeGameServerGroup</a> |
57
+ * <a>UpdateGameServerGroup</a> |
58
+ * <a>DeleteGameServerGroup</a> |
59
+ * <a>ResumeGameServerGroup</a> |
60
+ * <a>SuspendGameServerGroup</a> |
61
+ * <a>DescribeGameServerInstances</a> |
62
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/fleetiqguide/reference-awssdk-fleetiq.html">All APIs by task</a>
63
+ * </p>
64
+ * @example
65
+ * Use a bare-bones client and the command you need to make an API call.
66
+ * ```javascript
67
+ * import { GameLiftClient, CreateGameServerGroupCommand } from "@aws-sdk/client-gamelift"; // ES Modules import
68
+ * // const { GameLiftClient, CreateGameServerGroupCommand } = require("@aws-sdk/client-gamelift"); // CommonJS import
69
+ * const client = new GameLiftClient(config);
70
+ * const command = new CreateGameServerGroupCommand(input);
71
+ * const response = await client.send(command);
72
+ * ```
73
+ *
74
+ * @see {@link CreateGameServerGroupCommandInput} for command's `input` shape.
75
+ * @see {@link CreateGameServerGroupCommandOutput} for command's `response` shape.
76
+ * @see {@link GameLiftClientResolvedConfig | config} for command's `input` shape.
77
+ *
78
+ */
79
+ export declare class CreateGameServerGroupCommand extends $Command<CreateGameServerGroupCommandInput, CreateGameServerGroupCommandOutput, GameLiftClientResolvedConfig> {
80
+ readonly input: CreateGameServerGroupCommandInput;
81
+ constructor(input: CreateGameServerGroupCommandInput);
82
+ /**
83
+ * @internal
84
+ */
85
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GameLiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateGameServerGroupCommandInput, CreateGameServerGroupCommandOutput>;
86
+ private serialize;
87
+ private deserialize;
88
+ }
@@ -0,0 +1,88 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient";
4
+ import { CreateGameSessionInput, CreateGameSessionOutput } from "../models/models_0";
5
+ export interface CreateGameSessionCommandInput extends CreateGameSessionInput {
6
+ }
7
+ export interface CreateGameSessionCommandOutput extends CreateGameSessionOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Creates a multiplayer game session for players in a specific fleet location. This
11
+ * operation prompts an available server process to start a game session and retrieves
12
+ * connection information for the new game session. As an alternative, consider using the
13
+ * GameLift game session placement feature with </p>
14
+ * <p>with <a>StartGameSessionPlacement</a>, which uses FleetIQ algorithms and
15
+ * queues to optimize the placement process.</p>
16
+ * <p>When creating a game session, you specify exactly where you want to place it and
17
+ * provide a set of game session configuration settings. The fleet must be in
18
+ * <code>ACTIVE</code> status before a game session can be created in it. </p>
19
+ * <p>This operation can be used in the following ways: </p>
20
+ * <ul>
21
+ * <li>
22
+ * <p>To create a game session on an instance in a fleet's home Region, provide a
23
+ * fleet or alias ID along with your game session configuration. </p>
24
+ * </li>
25
+ * <li>
26
+ * <p>To create a game session on an instance in a fleet's remote location, provide
27
+ * a fleet or alias ID and a location name, along with your game session
28
+ * configuration. </p>
29
+ * </li>
30
+ * </ul>
31
+ * <p>If successful, a workflow is initiated to start a new game session. A
32
+ * <code>GameSession</code> object is returned containing the game session
33
+ * configuration and status. When the status is <code>ACTIVE</code>, game session
34
+ * connection information is provided and player sessions can be created for the game
35
+ * session. By default, newly created game sessions are open to new players. You can
36
+ * restrict new player access by using <a>UpdateGameSession</a> to change the
37
+ * game session's player session creation policy.</p>
38
+ * <p>Game session logs are retained for all active game sessions for 14 days. To access the
39
+ * logs, call <a>GetGameSessionLogUrl</a> to download the log files.</p>
40
+ * <p>
41
+ * <i>Available in GameLift Local.</i>
42
+ * </p>
43
+ * <p>
44
+ * <b>Learn more</b>
45
+ * </p>
46
+ * <p>
47
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/gamelift-sdk-server-api.html#gamelift-sdk-server-startsession">Start a game session</a>
48
+ * </p>
49
+ * <p>
50
+ * <b>Related actions</b>
51
+ * </p>
52
+ * <p>
53
+ * <a>CreateGameSession</a> |
54
+ * <a>DescribeGameSessions</a> |
55
+ * <a>DescribeGameSessionDetails</a> |
56
+ * <a>SearchGameSessions</a> |
57
+ * <a>UpdateGameSession</a> |
58
+ * <a>GetGameSessionLogUrl</a> |
59
+ * <a>StartGameSessionPlacement</a> |
60
+ * <a>DescribeGameSessionPlacement</a> |
61
+ * <a>StopGameSessionPlacement</a> |
62
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
63
+ * </p>
64
+ * @example
65
+ * Use a bare-bones client and the command you need to make an API call.
66
+ * ```javascript
67
+ * import { GameLiftClient, CreateGameSessionCommand } from "@aws-sdk/client-gamelift"; // ES Modules import
68
+ * // const { GameLiftClient, CreateGameSessionCommand } = require("@aws-sdk/client-gamelift"); // CommonJS import
69
+ * const client = new GameLiftClient(config);
70
+ * const command = new CreateGameSessionCommand(input);
71
+ * const response = await client.send(command);
72
+ * ```
73
+ *
74
+ * @see {@link CreateGameSessionCommandInput} for command's `input` shape.
75
+ * @see {@link CreateGameSessionCommandOutput} for command's `response` shape.
76
+ * @see {@link GameLiftClientResolvedConfig | config} for command's `input` shape.
77
+ *
78
+ */
79
+ export declare class CreateGameSessionCommand extends $Command<CreateGameSessionCommandInput, CreateGameSessionCommandOutput, GameLiftClientResolvedConfig> {
80
+ readonly input: CreateGameSessionCommandInput;
81
+ constructor(input: CreateGameSessionCommandInput);
82
+ /**
83
+ * @internal
84
+ */
85
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GameLiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateGameSessionCommandInput, CreateGameSessionCommandOutput>;
86
+ private serialize;
87
+ private deserialize;
88
+ }
@@ -0,0 +1,78 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient";
4
+ import { CreateGameSessionQueueInput, CreateGameSessionQueueOutput } from "../models/models_0";
5
+ export interface CreateGameSessionQueueCommandInput extends CreateGameSessionQueueInput {
6
+ }
7
+ export interface CreateGameSessionQueueCommandOutput extends CreateGameSessionQueueOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Creates a placement queue that processes requests for new game sessions. A queue uses
11
+ * FleetIQ algorithms to determine the best placement locations and find an
12
+ * available game server there, then prompts the game server process to start a new game
13
+ * session. </p>
14
+ * <p>A game session queue is configured with a set of destinations (GameLift fleets or
15
+ * aliases), which determine the locations where the queue can place new game sessions.
16
+ * These destinations can span multiple fleet types (Spot and On-Demand), instance types,
17
+ * and AWS Regions. If the queue includes multi-location fleets, the queue is able to place
18
+ * game sessions in all of a fleet's remote locations. You can opt to filter out individual
19
+ * locations if needed.</p>
20
+ * <p>The queue configuration also determines how FleetIQ selects the best available placement
21
+ * for a new game session. Before searching for an available game server, FleetIQ first
22
+ * prioritizes the queue's destinations and locations, with the best placement locations on
23
+ * top. You can set up the queue to use the FleetIQ default prioritization or provide an
24
+ * alternate set of priorities.</p>
25
+ * <p>To create a new queue, provide a name, timeout value, and a list of destinations.
26
+ * Optionally, specify a sort configuration and/or a filter, and define a set of latency
27
+ * cap policies. You can also include the ARN for an Amazon Simple Notification Service
28
+ * (SNS) topic to receive notifications of game session placement activity. Notifications
29
+ * using SNS or CloudWatch events is the preferred way to track placement activity.</p>
30
+ * <p>If successful, a new <code>GameSessionQueue</code> object is returned with an assigned
31
+ * queue ARN. New game session requests, which are submitted to the queue with <a>StartGameSessionPlacement</a> or <a>StartMatchmaking</a>,
32
+ * reference a queue's name or ARN. </p>
33
+ * <p>
34
+ * <b>Learn more</b>
35
+ * </p>
36
+ * <p>
37
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/queues-design.html">
38
+ * Design a game session queue</a>
39
+ * </p>
40
+ * <p>
41
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/queues-creating.html">
42
+ * Create a game session queue</a>
43
+ * </p>
44
+ * <p>
45
+ * <b>Related actions</b>
46
+ * </p>
47
+ * <p>
48
+ * <a>CreateGameSessionQueue</a> |
49
+ * <a>DescribeGameSessionQueues</a> |
50
+ * <a>UpdateGameSessionQueue</a> |
51
+ * <a>DeleteGameSessionQueue</a> |
52
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
53
+ * </p>
54
+ * @example
55
+ * Use a bare-bones client and the command you need to make an API call.
56
+ * ```javascript
57
+ * import { GameLiftClient, CreateGameSessionQueueCommand } from "@aws-sdk/client-gamelift"; // ES Modules import
58
+ * // const { GameLiftClient, CreateGameSessionQueueCommand } = require("@aws-sdk/client-gamelift"); // CommonJS import
59
+ * const client = new GameLiftClient(config);
60
+ * const command = new CreateGameSessionQueueCommand(input);
61
+ * const response = await client.send(command);
62
+ * ```
63
+ *
64
+ * @see {@link CreateGameSessionQueueCommandInput} for command's `input` shape.
65
+ * @see {@link CreateGameSessionQueueCommandOutput} for command's `response` shape.
66
+ * @see {@link GameLiftClientResolvedConfig | config} for command's `input` shape.
67
+ *
68
+ */
69
+ export declare class CreateGameSessionQueueCommand extends $Command<CreateGameSessionQueueCommandInput, CreateGameSessionQueueCommandOutput, GameLiftClientResolvedConfig> {
70
+ readonly input: CreateGameSessionQueueCommandInput;
71
+ constructor(input: CreateGameSessionQueueCommandInput);
72
+ /**
73
+ * @internal
74
+ */
75
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GameLiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateGameSessionQueueCommandInput, CreateGameSessionQueueCommandOutput>;
76
+ private serialize;
77
+ private deserialize;
78
+ }
@@ -0,0 +1,76 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient";
4
+ import { CreateMatchmakingConfigurationInput, CreateMatchmakingConfigurationOutput } from "../models/models_0";
5
+ export interface CreateMatchmakingConfigurationCommandInput extends CreateMatchmakingConfigurationInput {
6
+ }
7
+ export interface CreateMatchmakingConfigurationCommandOutput extends CreateMatchmakingConfigurationOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Defines a new matchmaking configuration for use with FlexMatch. Whether your are using
11
+ * FlexMatch with GameLift hosting or as a standalone matchmaking service, the matchmaking
12
+ * configuration sets out rules for matching players and forming teams. If you're also
13
+ * using GameLift hosting, it defines how to start game sessions for each match. Your
14
+ * matchmaking system can use multiple configurations to handle different game scenarios.
15
+ * All matchmaking requests (<a>StartMatchmaking</a> or <a>StartMatchBackfill</a>) identify the matchmaking configuration to use and
16
+ * provide player attributes consistent with that configuration. </p>
17
+ * <p>To create a matchmaking configuration, you must provide the following: configuration
18
+ * name and FlexMatch mode (with or without GameLift hosting); a rule set that specifies how
19
+ * to evaluate players and find acceptable matches; whether player acceptance is required;
20
+ * and the maximum time allowed for a matchmaking attempt. When using FlexMatch with GameLift
21
+ * hosting, you also need to identify the game session queue to use when starting a game
22
+ * session for the match.</p>
23
+ * <p>In addition, you must set up an Amazon Simple Notification Service (SNS) topic to receive matchmaking notifications.
24
+ * Provide the topic ARN in the matchmaking configuration. An alternative method,
25
+ * continuously polling ticket status with <a>DescribeMatchmaking</a>, is only
26
+ * suitable for games in development with low matchmaking usage.</p>
27
+ * <p>
28
+ * <b>Learn more</b>
29
+ * </p>
30
+ * <p>
31
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/flexmatchguide/match-configuration.html">
32
+ * Design a FlexMatch matchmaker</a>
33
+ * </p>
34
+ * <p>
35
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/flexmatchguide/match-notification.html">
36
+ * Set up FlexMatch event notification</a>
37
+ * </p>
38
+ * <p>
39
+ * <b>Related actions</b>
40
+ * </p>
41
+ * <p>
42
+ * <a>CreateMatchmakingConfiguration</a> |
43
+ * <a>DescribeMatchmakingConfigurations</a> |
44
+ * <a>UpdateMatchmakingConfiguration</a> |
45
+ * <a>DeleteMatchmakingConfiguration</a> |
46
+ * <a>CreateMatchmakingRuleSet</a> |
47
+ * <a>DescribeMatchmakingRuleSets</a> |
48
+ * <a>ValidateMatchmakingRuleSet</a> |
49
+ * <a>DeleteMatchmakingRuleSet</a> |
50
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
51
+ * </p>
52
+ * @example
53
+ * Use a bare-bones client and the command you need to make an API call.
54
+ * ```javascript
55
+ * import { GameLiftClient, CreateMatchmakingConfigurationCommand } from "@aws-sdk/client-gamelift"; // ES Modules import
56
+ * // const { GameLiftClient, CreateMatchmakingConfigurationCommand } = require("@aws-sdk/client-gamelift"); // CommonJS import
57
+ * const client = new GameLiftClient(config);
58
+ * const command = new CreateMatchmakingConfigurationCommand(input);
59
+ * const response = await client.send(command);
60
+ * ```
61
+ *
62
+ * @see {@link CreateMatchmakingConfigurationCommandInput} for command's `input` shape.
63
+ * @see {@link CreateMatchmakingConfigurationCommandOutput} for command's `response` shape.
64
+ * @see {@link GameLiftClientResolvedConfig | config} for command's `input` shape.
65
+ *
66
+ */
67
+ export declare class CreateMatchmakingConfigurationCommand extends $Command<CreateMatchmakingConfigurationCommandInput, CreateMatchmakingConfigurationCommandOutput, GameLiftClientResolvedConfig> {
68
+ readonly input: CreateMatchmakingConfigurationCommandInput;
69
+ constructor(input: CreateMatchmakingConfigurationCommandInput);
70
+ /**
71
+ * @internal
72
+ */
73
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GameLiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateMatchmakingConfigurationCommandInput, CreateMatchmakingConfigurationCommandOutput>;
74
+ private serialize;
75
+ private deserialize;
76
+ }
@@ -0,0 +1,81 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient";
4
+ import { CreateMatchmakingRuleSetInput, CreateMatchmakingRuleSetOutput } from "../models/models_0";
5
+ export interface CreateMatchmakingRuleSetCommandInput extends CreateMatchmakingRuleSetInput {
6
+ }
7
+ export interface CreateMatchmakingRuleSetCommandOutput extends CreateMatchmakingRuleSetOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Creates a new rule set for FlexMatch matchmaking. A rule set describes the type of match
11
+ * to create, such as the number and size of teams. It also sets the parameters for
12
+ * acceptable player matches, such as minimum skill level or character type. A rule set is
13
+ * used by a <a>MatchmakingConfiguration</a>. </p>
14
+ * <p>To create a matchmaking rule set, provide unique rule set name and the rule set body
15
+ * in JSON format. Rule sets must be defined in the same Region as the matchmaking
16
+ * configuration they are used with.</p>
17
+ * <p>Since matchmaking rule sets cannot be edited, it is a good idea to check the rule
18
+ * set syntax using <a>ValidateMatchmakingRuleSet</a> before creating a new rule
19
+ * set.</p>
20
+ * <p>
21
+ * <b>Learn more</b>
22
+ * </p>
23
+ * <ul>
24
+ * <li>
25
+ * <p>
26
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/flexmatchguide/match-rulesets.html">Build a rule
27
+ * set</a>
28
+ * </p>
29
+ * </li>
30
+ * <li>
31
+ * <p>
32
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/flexmatchguide/match-configuration.html">Design a
33
+ * matchmaker</a>
34
+ * </p>
35
+ * </li>
36
+ * <li>
37
+ * <p>
38
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/flexmatchguide/match-intro.html">Matchmaking with
39
+ * FlexMatch</a>
40
+ * </p>
41
+ * </li>
42
+ * </ul>
43
+ * <p>
44
+ * <b>Related actions</b>
45
+ * </p>
46
+ * <p>
47
+ * <a>CreateMatchmakingConfiguration</a> |
48
+ * <a>DescribeMatchmakingConfigurations</a> |
49
+ * <a>UpdateMatchmakingConfiguration</a> |
50
+ * <a>DeleteMatchmakingConfiguration</a> |
51
+ * <a>CreateMatchmakingRuleSet</a> |
52
+ * <a>DescribeMatchmakingRuleSets</a> |
53
+ * <a>ValidateMatchmakingRuleSet</a> |
54
+ * <a>DeleteMatchmakingRuleSet</a> |
55
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
56
+ * </p>
57
+ * @example
58
+ * Use a bare-bones client and the command you need to make an API call.
59
+ * ```javascript
60
+ * import { GameLiftClient, CreateMatchmakingRuleSetCommand } from "@aws-sdk/client-gamelift"; // ES Modules import
61
+ * // const { GameLiftClient, CreateMatchmakingRuleSetCommand } = require("@aws-sdk/client-gamelift"); // CommonJS import
62
+ * const client = new GameLiftClient(config);
63
+ * const command = new CreateMatchmakingRuleSetCommand(input);
64
+ * const response = await client.send(command);
65
+ * ```
66
+ *
67
+ * @see {@link CreateMatchmakingRuleSetCommandInput} for command's `input` shape.
68
+ * @see {@link CreateMatchmakingRuleSetCommandOutput} for command's `response` shape.
69
+ * @see {@link GameLiftClientResolvedConfig | config} for command's `input` shape.
70
+ *
71
+ */
72
+ export declare class CreateMatchmakingRuleSetCommand extends $Command<CreateMatchmakingRuleSetCommandInput, CreateMatchmakingRuleSetCommandOutput, GameLiftClientResolvedConfig> {
73
+ readonly input: CreateMatchmakingRuleSetCommandInput;
74
+ constructor(input: CreateMatchmakingRuleSetCommandInput);
75
+ /**
76
+ * @internal
77
+ */
78
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GameLiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateMatchmakingRuleSetCommandInput, CreateMatchmakingRuleSetCommandOutput>;
79
+ private serialize;
80
+ private deserialize;
81
+ }
@@ -0,0 +1,58 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient";
4
+ import { CreatePlayerSessionInput, CreatePlayerSessionOutput } from "../models/models_0";
5
+ export interface CreatePlayerSessionCommandInput extends CreatePlayerSessionInput {
6
+ }
7
+ export interface CreatePlayerSessionCommandOutput extends CreatePlayerSessionOutput, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Reserves an open player slot in a game session for a player. New player sessions can be
11
+ * created in any game session with an open slot that is in <code>ACTIVE</code> status and
12
+ * has a player creation policy of <code>ACCEPT_ALL</code>. You can add a group of players
13
+ * to a game session with <a>CreatePlayerSessions</a>. </p>
14
+ * <p>To create a player session, specify a game session ID, player ID, and optionally a set of
15
+ * player data. </p>
16
+ * <p>If successful, a slot is reserved in the game session for the player and a new <a>PlayerSession</a> object is returned with a player session ID. The player
17
+ * references the player session ID when sending a connection request to the game session,
18
+ * and the game server can use it to validate the player reservation with the GameLift service. Player
19
+ * sessions cannot be updated. </p>
20
+ * <p>
21
+ * <i>Available in Amazon GameLift Local.</i>
22
+ * </p>
23
+ * <p>
24
+ * <b>Related actions</b>
25
+ * </p>
26
+ * <p>
27
+ * <a>CreatePlayerSession</a> |
28
+ * <a>CreatePlayerSessions</a> |
29
+ * <a>DescribePlayerSessions</a> |
30
+ * <a>StartGameSessionPlacement</a> |
31
+ * <a>DescribeGameSessionPlacement</a> |
32
+ * <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
+ * @example
35
+ * Use a bare-bones client and the command you need to make an API call.
36
+ * ```javascript
37
+ * import { GameLiftClient, CreatePlayerSessionCommand } from "@aws-sdk/client-gamelift"; // ES Modules import
38
+ * // const { GameLiftClient, CreatePlayerSessionCommand } = require("@aws-sdk/client-gamelift"); // CommonJS import
39
+ * const client = new GameLiftClient(config);
40
+ * const command = new CreatePlayerSessionCommand(input);
41
+ * const response = await client.send(command);
42
+ * ```
43
+ *
44
+ * @see {@link CreatePlayerSessionCommandInput} for command's `input` shape.
45
+ * @see {@link CreatePlayerSessionCommandOutput} for command's `response` shape.
46
+ * @see {@link GameLiftClientResolvedConfig | config} for command's `input` shape.
47
+ *
48
+ */
49
+ export declare class CreatePlayerSessionCommand extends $Command<CreatePlayerSessionCommandInput, CreatePlayerSessionCommandOutput, GameLiftClientResolvedConfig> {
50
+ readonly input: CreatePlayerSessionCommandInput;
51
+ constructor(input: CreatePlayerSessionCommandInput);
52
+ /**
53
+ * @internal
54
+ */
55
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GameLiftClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreatePlayerSessionCommandInput, CreatePlayerSessionCommandOutput>;
56
+ private serialize;
57
+ private deserialize;
58
+ }