aws-sdk-core 2.4.0 → 3.53.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 (487) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +96 -408
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +41 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  16. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +22 -5
  18. data/lib/aws-sdk-core/ecs_credentials.rb +3 -3
  19. data/lib/aws-sdk-core/endpoint_cache.rb +188 -0
  20. data/lib/aws-sdk-core/errors.rb +174 -10
  21. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  22. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  23. data/lib/aws-sdk-core/instance_profile_credentials.rb +21 -12
  24. data/lib/aws-sdk-core/json.rb +4 -5
  25. data/lib/aws-sdk-core/json/builder.rb +4 -2
  26. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  27. data/lib/aws-sdk-core/json/handler.rb +22 -3
  28. data/lib/aws-sdk-core/json/parser.rb +1 -1
  29. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  30. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  31. data/lib/aws-sdk-core/pager.rb +30 -25
  32. data/lib/aws-sdk-core/param_converter.rb +3 -3
  33. data/lib/aws-sdk-core/param_validator.rb +56 -21
  34. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  35. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  36. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  37. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  38. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +256 -0
  39. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  40. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  41. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +160 -0
  42. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  43. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  44. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  45. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +41 -0
  46. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  47. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  48. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  49. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  50. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  51. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  52. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  53. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  54. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  55. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  56. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +28 -16
  57. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  58. data/lib/aws-sdk-core/plugins/retry_errors.rb +97 -23
  59. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  60. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  61. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  62. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  63. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  64. data/lib/aws-sdk-core/process_credentials.rb +76 -0
  65. data/lib/aws-sdk-core/query.rb +5 -0
  66. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  67. data/lib/aws-sdk-core/query/handler.rb +20 -16
  68. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  69. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  70. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  71. data/lib/aws-sdk-core/rest.rb +10 -0
  72. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  73. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  74. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  75. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  76. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  77. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  78. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  79. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  80. data/lib/aws-sdk-core/shared_config.rb +132 -18
  81. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  82. data/lib/aws-sdk-core/structure.rb +21 -11
  83. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  84. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  85. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  88. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  89. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  90. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  91. data/lib/aws-sdk-core/util.rb +66 -0
  92. data/lib/aws-sdk-core/waiters.rb +3 -0
  93. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  94. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  95. data/lib/aws-sdk-core/xml.rb +9 -0
  96. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  97. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  98. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  99. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  100. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  101. data/lib/aws-sdk-sts.rb +45 -0
  102. data/lib/aws-sdk-sts/client.rb +1761 -0
  103. data/lib/aws-sdk-sts/client_api.rb +304 -0
  104. data/lib/aws-sdk-sts/customizations.rb +0 -0
  105. data/lib/aws-sdk-sts/errors.rb +142 -0
  106. data/lib/aws-sdk-sts/resource.rb +23 -0
  107. data/lib/aws-sdk-sts/types.rb +1279 -0
  108. data/lib/seahorse.rb +60 -60
  109. data/lib/seahorse/client/async_base.rb +50 -0
  110. data/lib/seahorse/client/async_response.rb +62 -0
  111. data/lib/seahorse/client/base.rb +2 -8
  112. data/lib/seahorse/client/configuration.rb +9 -1
  113. data/lib/seahorse/client/h2/connection.rb +244 -0
  114. data/lib/seahorse/client/h2/handler.rb +151 -0
  115. data/lib/seahorse/client/http/async_response.rb +42 -0
  116. data/lib/seahorse/client/http/response.rb +10 -5
  117. data/lib/seahorse/client/logging/formatter.rb +5 -1
  118. data/lib/seahorse/client/logging/handler.rb +2 -0
  119. data/lib/seahorse/client/net_http/connection_pool.rb +27 -11
  120. data/lib/seahorse/client/net_http/handler.rb +10 -2
  121. data/lib/seahorse/client/net_http/patches.rb +9 -1
  122. data/lib/seahorse/client/networking_error.rb +28 -0
  123. data/lib/seahorse/client/plugin.rb +66 -6
  124. data/lib/seahorse/client/plugin_list.rb +3 -1
  125. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  126. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  127. data/lib/seahorse/client/plugins/h2.rb +64 -0
  128. data/lib/seahorse/client/plugins/logging.rb +17 -19
  129. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  130. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  131. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  132. data/lib/seahorse/client/request_context.rb +5 -0
  133. data/lib/seahorse/client/response.rb +9 -20
  134. data/lib/seahorse/model/api.rb +37 -0
  135. data/lib/seahorse/model/authorizer.rb +21 -0
  136. data/lib/seahorse/model/operation.rb +20 -0
  137. data/lib/seahorse/model/shapes.rb +44 -2
  138. data/lib/seahorse/util.rb +1 -21
  139. metadata +112 -359
  140. data/apis/acm/2015-12-08/api-2.json +0 -495
  141. data/apis/acm/2015-12-08/examples-1.json +0 -5
  142. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  143. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  144. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  145. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  146. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  147. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  148. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  149. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  150. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  151. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  152. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  153. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  154. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  155. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  156. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  157. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  158. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  159. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  160. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  161. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  162. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  163. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  164. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  165. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  166. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  167. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  168. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  169. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  170. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  171. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  172. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  173. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  174. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  175. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  176. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  177. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  178. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  179. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  180. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  181. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  182. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  183. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  184. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  185. data/apis/config/2014-11-12/api-2.json +0 -1303
  186. data/apis/config/2014-11-12/examples-1.json +0 -5
  187. data/apis/config/2014-11-12/paginators-1.json +0 -10
  188. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  189. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  190. data/apis/devicefarm/2015-06-23/api-2.json +0 -2030
  191. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  192. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  193. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  194. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  195. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  196. data/apis/discovery/2015-11-01/api-2.json +0 -556
  197. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  198. data/apis/dms/2016-01-01/api-2.json +0 -1469
  199. data/apis/dms/2016-01-01/examples-1.json +0 -5
  200. data/apis/ds/2015-04-16/api-2.json +0 -1674
  201. data/apis/ds/2015-04-16/examples-1.json +0 -5
  202. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  203. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  204. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  205. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  206. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  207. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  208. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  209. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  210. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  211. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  212. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  213. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  214. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  215. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  216. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  217. data/apis/ecr/2015-09-21/api-2.json +0 -849
  218. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  219. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  220. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  221. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  222. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  223. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  224. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  225. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  226. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  227. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  228. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  229. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  230. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  231. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  232. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  233. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  234. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  235. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  236. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  237. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  238. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  239. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  240. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  241. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  242. data/apis/email/2010-12-01/api-2.json +0 -1791
  243. data/apis/email/2010-12-01/examples-1.json +0 -5
  244. data/apis/email/2010-12-01/paginators-1.json +0 -13
  245. data/apis/email/2010-12-01/waiters-2.json +0 -18
  246. data/apis/es/2015-01-01/api-2.json +0 -764
  247. data/apis/events/2015-10-07/api-2.json +0 -643
  248. data/apis/events/2015-10-07/examples-1.json +0 -5
  249. data/apis/firehose/2015-08-04/api-2.json +0 -719
  250. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  251. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  252. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  253. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  254. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  255. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  256. data/apis/iam/2010-05-08/api-2.json +0 -4514
  257. data/apis/iam/2010-05-08/examples-1.json +0 -5
  258. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  259. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  260. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  261. data/apis/importexport/2010-06-01/api-2.json +0 -666
  262. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  263. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  264. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  265. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  266. data/apis/iot/2015-05-28/api-2.json +0 -3800
  267. data/apis/iot/2015-05-28/examples-1.json +0 -5
  268. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  269. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  270. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  271. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  272. data/apis/kms/2014-11-01/api-2.json +0 -1209
  273. data/apis/kms/2014-11-01/examples-1.json +0 -5
  274. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  275. data/apis/lambda/2014-11-11/api-2.json +0 -667
  276. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  277. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  278. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  279. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  280. data/apis/logs/2014-03-28/api-2.json +0 -1138
  281. data/apis/logs/2014-03-28/examples-1.json +0 -5
  282. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  283. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  284. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  285. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  286. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  287. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  288. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  289. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  290. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  291. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  292. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  293. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  294. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  295. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  296. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  297. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  298. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  299. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  300. data/apis/rds/2014-10-31/api-2.json +0 -4757
  301. data/apis/rds/2014-10-31/examples-1.json +0 -5
  302. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  303. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  304. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  305. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  306. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  307. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  308. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  309. data/apis/route53/2013-04-01/api-2.json +0 -3245
  310. data/apis/route53/2013-04-01/examples-1.json +0 -5
  311. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  312. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  313. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  314. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  315. data/apis/s3/2006-03-01/api-2.json +0 -4517
  316. data/apis/s3/2006-03-01/examples-1.json +0 -5
  317. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  318. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  319. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  320. data/apis/sdb/2009-04-15/api-2.json +0 -954
  321. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  322. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  323. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  324. data/apis/sns/2010-03-31/api-2.json +0 -1139
  325. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  326. data/apis/sns/2010-03-31/resources-1.json +0 -327
  327. data/apis/sqs/2012-11-05/api-2.json +0 -950
  328. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  329. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  330. data/apis/ssm/2014-11-06/api-2.json +0 -1796
  331. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  332. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  333. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  334. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  335. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  336. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  337. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  338. data/apis/sts/2011-06-15/api-2.json +0 -521
  339. data/apis/sts/2011-06-15/examples-1.json +0 -5
  340. data/apis/support/2013-04-15/api-2.json +0 -869
  341. data/apis/support/2013-04-15/paginators-1.json +0 -25
  342. data/apis/swf/2012-01-25/api-2.json +0 -2838
  343. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  344. data/apis/waf/2015-08-24/api-2.json +0 -1959
  345. data/apis/waf/2015-08-24/examples-1.json +0 -5
  346. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  347. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  348. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  349. data/bin/aws.rb +0 -180
  350. data/endpoints.json +0 -1460
  351. data/lib/aws-sdk-core/acm.rb +0 -6
  352. data/lib/aws-sdk-core/api/builder.rb +0 -106
  353. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  354. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  355. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  356. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  357. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  358. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  359. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  360. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  361. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  362. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  363. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  364. data/lib/aws-sdk-core/apigateway.rb +0 -6
  365. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  366. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  367. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  368. data/lib/aws-sdk-core/checksums.rb +0 -51
  369. data/lib/aws-sdk-core/client.rb +0 -57
  370. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  371. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  372. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  373. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  374. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  375. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  376. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  377. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  378. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  379. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  380. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  381. data/lib/aws-sdk-core/codecommit.rb +0 -6
  382. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  383. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  384. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  385. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  386. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  387. data/lib/aws-sdk-core/configservice.rb +0 -6
  388. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  389. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  390. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  391. data/lib/aws-sdk-core/directconnect.rb +0 -6
  392. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  393. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  394. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  395. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  396. data/lib/aws-sdk-core/ec2.rb +0 -8
  397. data/lib/aws-sdk-core/ecr.rb +0 -5
  398. data/lib/aws-sdk-core/ecs.rb +0 -7
  399. data/lib/aws-sdk-core/efs.rb +0 -5
  400. data/lib/aws-sdk-core/elasticache.rb +0 -7
  401. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  402. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  403. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  404. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  405. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  406. data/lib/aws-sdk-core/emr.rb +0 -7
  407. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  408. data/lib/aws-sdk-core/firehose.rb +0 -4
  409. data/lib/aws-sdk-core/gamelift.rb +0 -5
  410. data/lib/aws-sdk-core/glacier.rb +0 -7
  411. data/lib/aws-sdk-core/iam.rb +0 -8
  412. data/lib/aws-sdk-core/importexport.rb +0 -5
  413. data/lib/aws-sdk-core/inspector.rb +0 -5
  414. data/lib/aws-sdk-core/iot.rb +0 -5
  415. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  416. data/lib/aws-sdk-core/kinesis.rb +0 -7
  417. data/lib/aws-sdk-core/kms.rb +0 -6
  418. data/lib/aws-sdk-core/lambda.rb +0 -6
  419. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  420. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  421. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  422. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  423. data/lib/aws-sdk-core/opsworks.rb +0 -8
  424. data/lib/aws-sdk-core/partitions.rb +0 -174
  425. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  426. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  427. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  428. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  429. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  430. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  431. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  432. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  433. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  434. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  435. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  436. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  437. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  438. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  439. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  440. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  441. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  442. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  443. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  444. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  445. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  446. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  447. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  448. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  449. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  450. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  451. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  452. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  453. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  454. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  455. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  456. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  457. data/lib/aws-sdk-core/rds.rb +0 -8
  458. data/lib/aws-sdk-core/redshift.rb +0 -7
  459. data/lib/aws-sdk-core/route53.rb +0 -7
  460. data/lib/aws-sdk-core/route53domains.rb +0 -5
  461. data/lib/aws-sdk-core/s3.rb +0 -26
  462. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  463. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  464. data/lib/aws-sdk-core/service.rb +0 -4
  465. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  466. data/lib/aws-sdk-core/ses.rb +0 -7
  467. data/lib/aws-sdk-core/signers/base.rb +0 -31
  468. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  469. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  470. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  471. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  472. data/lib/aws-sdk-core/simpledb.rb +0 -5
  473. data/lib/aws-sdk-core/sns.rb +0 -6
  474. data/lib/aws-sdk-core/sqs.rb +0 -6
  475. data/lib/aws-sdk-core/ssm.rb +0 -6
  476. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  477. data/lib/aws-sdk-core/sts.rb +0 -5
  478. data/lib/aws-sdk-core/support.rb +0 -5
  479. data/lib/aws-sdk-core/swf.rb +0 -5
  480. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  481. data/lib/aws-sdk-core/version.rb +0 -3
  482. data/lib/aws-sdk-core/waf.rb +0 -5
  483. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  484. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  485. data/lib/aws-sdk-core/workspaces.rb +0 -6
  486. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  487. data/service-models.json +0 -285
@@ -1,2307 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2015-10-01",
5
- "endpointPrefix":"gamelift",
6
- "jsonVersion":"1.1",
7
- "serviceFullName":"Amazon GameLift",
8
- "signatureVersion":"v4",
9
- "targetPrefix":"GameLift",
10
- "protocol":"json"
11
- },
12
- "operations":{
13
- "CreateAlias":{
14
- "name":"CreateAlias",
15
- "http":{
16
- "method":"POST",
17
- "requestUri":"/"
18
- },
19
- "input":{"shape":"CreateAliasInput"},
20
- "output":{"shape":"CreateAliasOutput"},
21
- "errors":[
22
- {
23
- "shape":"UnauthorizedException",
24
- "exception":true
25
- },
26
- {
27
- "shape":"InvalidRequestException",
28
- "exception":true
29
- },
30
- {
31
- "shape":"ConflictException",
32
- "exception":true
33
- },
34
- {
35
- "shape":"InternalServiceException",
36
- "exception":true,
37
- "fault":true
38
- },
39
- {
40
- "shape":"LimitExceededException",
41
- "exception":true
42
- }
43
- ]
44
- },
45
- "CreateBuild":{
46
- "name":"CreateBuild",
47
- "http":{
48
- "method":"POST",
49
- "requestUri":"/"
50
- },
51
- "input":{"shape":"CreateBuildInput"},
52
- "output":{"shape":"CreateBuildOutput"},
53
- "errors":[
54
- {
55
- "shape":"UnauthorizedException",
56
- "exception":true
57
- },
58
- {
59
- "shape":"InvalidRequestException",
60
- "exception":true
61
- },
62
- {
63
- "shape":"ConflictException",
64
- "exception":true
65
- },
66
- {
67
- "shape":"InternalServiceException",
68
- "exception":true,
69
- "fault":true
70
- }
71
- ]
72
- },
73
- "CreateFleet":{
74
- "name":"CreateFleet",
75
- "http":{
76
- "method":"POST",
77
- "requestUri":"/"
78
- },
79
- "input":{"shape":"CreateFleetInput"},
80
- "output":{"shape":"CreateFleetOutput"},
81
- "errors":[
82
- {
83
- "shape":"InternalServiceException",
84
- "exception":true,
85
- "fault":true
86
- },
87
- {
88
- "shape":"NotFoundException",
89
- "exception":true
90
- },
91
- {
92
- "shape":"ConflictException",
93
- "exception":true
94
- },
95
- {
96
- "shape":"LimitExceededException",
97
- "exception":true
98
- },
99
- {
100
- "shape":"InvalidRequestException",
101
- "exception":true
102
- },
103
- {
104
- "shape":"UnauthorizedException",
105
- "exception":true
106
- }
107
- ]
108
- },
109
- "CreateGameSession":{
110
- "name":"CreateGameSession",
111
- "http":{
112
- "method":"POST",
113
- "requestUri":"/"
114
- },
115
- "input":{"shape":"CreateGameSessionInput"},
116
- "output":{"shape":"CreateGameSessionOutput"},
117
- "errors":[
118
- {
119
- "shape":"ConflictException",
120
- "exception":true
121
- },
122
- {
123
- "shape":"InternalServiceException",
124
- "exception":true,
125
- "fault":true
126
- },
127
- {
128
- "shape":"UnauthorizedException",
129
- "exception":true
130
- },
131
- {
132
- "shape":"InvalidFleetStatusException",
133
- "exception":true
134
- },
135
- {
136
- "shape":"TerminalRoutingStrategyException",
137
- "exception":true
138
- },
139
- {
140
- "shape":"InvalidRequestException",
141
- "exception":true
142
- },
143
- {
144
- "shape":"NotFoundException",
145
- "exception":true
146
- },
147
- {
148
- "shape":"FleetCapacityExceededException",
149
- "exception":true
150
- }
151
- ]
152
- },
153
- "CreatePlayerSession":{
154
- "name":"CreatePlayerSession",
155
- "http":{
156
- "method":"POST",
157
- "requestUri":"/"
158
- },
159
- "input":{"shape":"CreatePlayerSessionInput"},
160
- "output":{"shape":"CreatePlayerSessionOutput"},
161
- "errors":[
162
- {
163
- "shape":"InternalServiceException",
164
- "exception":true,
165
- "fault":true
166
- },
167
- {
168
- "shape":"UnauthorizedException",
169
- "exception":true
170
- },
171
- {
172
- "shape":"InvalidGameSessionStatusException",
173
- "exception":true
174
- },
175
- {
176
- "shape":"GameSessionFullException",
177
- "exception":true
178
- },
179
- {
180
- "shape":"TerminalRoutingStrategyException",
181
- "exception":true
182
- },
183
- {
184
- "shape":"InvalidRequestException",
185
- "exception":true
186
- },
187
- {
188
- "shape":"NotFoundException",
189
- "exception":true
190
- }
191
- ]
192
- },
193
- "CreatePlayerSessions":{
194
- "name":"CreatePlayerSessions",
195
- "http":{
196
- "method":"POST",
197
- "requestUri":"/"
198
- },
199
- "input":{"shape":"CreatePlayerSessionsInput"},
200
- "output":{"shape":"CreatePlayerSessionsOutput"},
201
- "errors":[
202
- {
203
- "shape":"InternalServiceException",
204
- "exception":true,
205
- "fault":true
206
- },
207
- {
208
- "shape":"UnauthorizedException",
209
- "exception":true
210
- },
211
- {
212
- "shape":"InvalidGameSessionStatusException",
213
- "exception":true
214
- },
215
- {
216
- "shape":"GameSessionFullException",
217
- "exception":true
218
- },
219
- {
220
- "shape":"TerminalRoutingStrategyException",
221
- "exception":true
222
- },
223
- {
224
- "shape":"InvalidRequestException",
225
- "exception":true
226
- },
227
- {
228
- "shape":"NotFoundException",
229
- "exception":true
230
- }
231
- ]
232
- },
233
- "DeleteAlias":{
234
- "name":"DeleteAlias",
235
- "http":{
236
- "method":"POST",
237
- "requestUri":"/"
238
- },
239
- "input":{"shape":"DeleteAliasInput"},
240
- "errors":[
241
- {
242
- "shape":"UnauthorizedException",
243
- "exception":true
244
- },
245
- {
246
- "shape":"NotFoundException",
247
- "exception":true
248
- },
249
- {
250
- "shape":"InvalidRequestException",
251
- "exception":true
252
- },
253
- {
254
- "shape":"InternalServiceException",
255
- "exception":true,
256
- "fault":true
257
- }
258
- ]
259
- },
260
- "DeleteBuild":{
261
- "name":"DeleteBuild",
262
- "http":{
263
- "method":"POST",
264
- "requestUri":"/"
265
- },
266
- "input":{"shape":"DeleteBuildInput"},
267
- "errors":[
268
- {
269
- "shape":"UnauthorizedException",
270
- "exception":true
271
- },
272
- {
273
- "shape":"NotFoundException",
274
- "exception":true
275
- },
276
- {
277
- "shape":"InternalServiceException",
278
- "exception":true,
279
- "fault":true
280
- },
281
- {
282
- "shape":"InvalidRequestException",
283
- "exception":true
284
- }
285
- ]
286
- },
287
- "DeleteFleet":{
288
- "name":"DeleteFleet",
289
- "http":{
290
- "method":"POST",
291
- "requestUri":"/"
292
- },
293
- "input":{"shape":"DeleteFleetInput"},
294
- "errors":[
295
- {
296
- "shape":"NotFoundException",
297
- "exception":true
298
- },
299
- {
300
- "shape":"InternalServiceException",
301
- "exception":true,
302
- "fault":true
303
- },
304
- {
305
- "shape":"InvalidFleetStatusException",
306
- "exception":true
307
- },
308
- {
309
- "shape":"UnauthorizedException",
310
- "exception":true
311
- },
312
- {
313
- "shape":"InvalidRequestException",
314
- "exception":true
315
- }
316
- ]
317
- },
318
- "DeleteScalingPolicy":{
319
- "name":"DeleteScalingPolicy",
320
- "http":{
321
- "method":"POST",
322
- "requestUri":"/"
323
- },
324
- "input":{"shape":"DeleteScalingPolicyInput"},
325
- "errors":[
326
- {
327
- "shape":"InternalServiceException",
328
- "exception":true,
329
- "fault":true
330
- },
331
- {
332
- "shape":"InvalidRequestException",
333
- "exception":true
334
- },
335
- {
336
- "shape":"UnauthorizedException",
337
- "exception":true
338
- },
339
- {
340
- "shape":"NotFoundException",
341
- "exception":true
342
- }
343
- ]
344
- },
345
- "DescribeAlias":{
346
- "name":"DescribeAlias",
347
- "http":{
348
- "method":"POST",
349
- "requestUri":"/"
350
- },
351
- "input":{"shape":"DescribeAliasInput"},
352
- "output":{"shape":"DescribeAliasOutput"},
353
- "errors":[
354
- {
355
- "shape":"UnauthorizedException",
356
- "exception":true
357
- },
358
- {
359
- "shape":"InvalidRequestException",
360
- "exception":true
361
- },
362
- {
363
- "shape":"NotFoundException",
364
- "exception":true
365
- },
366
- {
367
- "shape":"InternalServiceException",
368
- "exception":true,
369
- "fault":true
370
- }
371
- ]
372
- },
373
- "DescribeBuild":{
374
- "name":"DescribeBuild",
375
- "http":{
376
- "method":"POST",
377
- "requestUri":"/"
378
- },
379
- "input":{"shape":"DescribeBuildInput"},
380
- "output":{"shape":"DescribeBuildOutput"},
381
- "errors":[
382
- {
383
- "shape":"UnauthorizedException",
384
- "exception":true
385
- },
386
- {
387
- "shape":"InvalidRequestException",
388
- "exception":true
389
- },
390
- {
391
- "shape":"NotFoundException",
392
- "exception":true
393
- },
394
- {
395
- "shape":"InternalServiceException",
396
- "exception":true,
397
- "fault":true
398
- }
399
- ]
400
- },
401
- "DescribeEC2InstanceLimits":{
402
- "name":"DescribeEC2InstanceLimits",
403
- "http":{
404
- "method":"POST",
405
- "requestUri":"/"
406
- },
407
- "input":{"shape":"DescribeEC2InstanceLimitsInput"},
408
- "output":{"shape":"DescribeEC2InstanceLimitsOutput"},
409
- "errors":[
410
- {
411
- "shape":"InvalidRequestException",
412
- "exception":true
413
- },
414
- {
415
- "shape":"InternalServiceException",
416
- "exception":true,
417
- "fault":true
418
- },
419
- {
420
- "shape":"UnauthorizedException",
421
- "exception":true
422
- }
423
- ]
424
- },
425
- "DescribeFleetAttributes":{
426
- "name":"DescribeFleetAttributes",
427
- "http":{
428
- "method":"POST",
429
- "requestUri":"/"
430
- },
431
- "input":{"shape":"DescribeFleetAttributesInput"},
432
- "output":{"shape":"DescribeFleetAttributesOutput"},
433
- "errors":[
434
- {
435
- "shape":"InternalServiceException",
436
- "exception":true,
437
- "fault":true
438
- },
439
- {
440
- "shape":"NotFoundException",
441
- "exception":true
442
- },
443
- {
444
- "shape":"InvalidRequestException",
445
- "exception":true
446
- },
447
- {
448
- "shape":"UnauthorizedException",
449
- "exception":true
450
- }
451
- ]
452
- },
453
- "DescribeFleetCapacity":{
454
- "name":"DescribeFleetCapacity",
455
- "http":{
456
- "method":"POST",
457
- "requestUri":"/"
458
- },
459
- "input":{"shape":"DescribeFleetCapacityInput"},
460
- "output":{"shape":"DescribeFleetCapacityOutput"},
461
- "errors":[
462
- {
463
- "shape":"InternalServiceException",
464
- "exception":true,
465
- "fault":true
466
- },
467
- {
468
- "shape":"NotFoundException",
469
- "exception":true
470
- },
471
- {
472
- "shape":"InvalidRequestException",
473
- "exception":true
474
- },
475
- {
476
- "shape":"UnauthorizedException",
477
- "exception":true
478
- }
479
- ]
480
- },
481
- "DescribeFleetEvents":{
482
- "name":"DescribeFleetEvents",
483
- "http":{
484
- "method":"POST",
485
- "requestUri":"/"
486
- },
487
- "input":{"shape":"DescribeFleetEventsInput"},
488
- "output":{"shape":"DescribeFleetEventsOutput"},
489
- "errors":[
490
- {
491
- "shape":"NotFoundException",
492
- "exception":true
493
- },
494
- {
495
- "shape":"InternalServiceException",
496
- "exception":true,
497
- "fault":true
498
- },
499
- {
500
- "shape":"UnauthorizedException",
501
- "exception":true
502
- },
503
- {
504
- "shape":"InvalidRequestException",
505
- "exception":true
506
- }
507
- ]
508
- },
509
- "DescribeFleetPortSettings":{
510
- "name":"DescribeFleetPortSettings",
511
- "http":{
512
- "method":"POST",
513
- "requestUri":"/"
514
- },
515
- "input":{"shape":"DescribeFleetPortSettingsInput"},
516
- "output":{"shape":"DescribeFleetPortSettingsOutput"},
517
- "errors":[
518
- {
519
- "shape":"InternalServiceException",
520
- "exception":true,
521
- "fault":true
522
- },
523
- {
524
- "shape":"NotFoundException",
525
- "exception":true
526
- },
527
- {
528
- "shape":"InvalidRequestException",
529
- "exception":true
530
- },
531
- {
532
- "shape":"UnauthorizedException",
533
- "exception":true
534
- }
535
- ]
536
- },
537
- "DescribeFleetUtilization":{
538
- "name":"DescribeFleetUtilization",
539
- "http":{
540
- "method":"POST",
541
- "requestUri":"/"
542
- },
543
- "input":{"shape":"DescribeFleetUtilizationInput"},
544
- "output":{"shape":"DescribeFleetUtilizationOutput"},
545
- "errors":[
546
- {
547
- "shape":"InternalServiceException",
548
- "exception":true,
549
- "fault":true
550
- },
551
- {
552
- "shape":"NotFoundException",
553
- "exception":true
554
- },
555
- {
556
- "shape":"InvalidRequestException",
557
- "exception":true
558
- },
559
- {
560
- "shape":"UnauthorizedException",
561
- "exception":true
562
- }
563
- ]
564
- },
565
- "DescribeGameSessionDetails":{
566
- "name":"DescribeGameSessionDetails",
567
- "http":{
568
- "method":"POST",
569
- "requestUri":"/"
570
- },
571
- "input":{"shape":"DescribeGameSessionDetailsInput"},
572
- "output":{"shape":"DescribeGameSessionDetailsOutput"},
573
- "errors":[
574
- {
575
- "shape":"InternalServiceException",
576
- "exception":true,
577
- "fault":true
578
- },
579
- {
580
- "shape":"NotFoundException",
581
- "exception":true
582
- },
583
- {
584
- "shape":"InvalidRequestException",
585
- "exception":true
586
- },
587
- {
588
- "shape":"UnauthorizedException",
589
- "exception":true
590
- },
591
- {
592
- "shape":"TerminalRoutingStrategyException",
593
- "exception":true
594
- }
595
- ]
596
- },
597
- "DescribeGameSessions":{
598
- "name":"DescribeGameSessions",
599
- "http":{
600
- "method":"POST",
601
- "requestUri":"/"
602
- },
603
- "input":{"shape":"DescribeGameSessionsInput"},
604
- "output":{"shape":"DescribeGameSessionsOutput"},
605
- "errors":[
606
- {
607
- "shape":"InternalServiceException",
608
- "exception":true,
609
- "fault":true
610
- },
611
- {
612
- "shape":"NotFoundException",
613
- "exception":true
614
- },
615
- {
616
- "shape":"InvalidRequestException",
617
- "exception":true
618
- },
619
- {
620
- "shape":"UnauthorizedException",
621
- "exception":true
622
- },
623
- {
624
- "shape":"TerminalRoutingStrategyException",
625
- "exception":true
626
- }
627
- ]
628
- },
629
- "DescribePlayerSessions":{
630
- "name":"DescribePlayerSessions",
631
- "http":{
632
- "method":"POST",
633
- "requestUri":"/"
634
- },
635
- "input":{"shape":"DescribePlayerSessionsInput"},
636
- "output":{"shape":"DescribePlayerSessionsOutput"},
637
- "errors":[
638
- {
639
- "shape":"InternalServiceException",
640
- "exception":true,
641
- "fault":true
642
- },
643
- {
644
- "shape":"NotFoundException",
645
- "exception":true
646
- },
647
- {
648
- "shape":"InvalidRequestException",
649
- "exception":true
650
- },
651
- {
652
- "shape":"UnauthorizedException",
653
- "exception":true
654
- }
655
- ]
656
- },
657
- "DescribeRuntimeConfiguration":{
658
- "name":"DescribeRuntimeConfiguration",
659
- "http":{
660
- "method":"POST",
661
- "requestUri":"/"
662
- },
663
- "input":{"shape":"DescribeRuntimeConfigurationInput"},
664
- "output":{"shape":"DescribeRuntimeConfigurationOutput"},
665
- "errors":[
666
- {
667
- "shape":"UnauthorizedException",
668
- "exception":true
669
- },
670
- {
671
- "shape":"NotFoundException",
672
- "exception":true
673
- },
674
- {
675
- "shape":"InternalServiceException",
676
- "exception":true,
677
- "fault":true
678
- },
679
- {
680
- "shape":"InvalidRequestException",
681
- "exception":true
682
- }
683
- ]
684
- },
685
- "DescribeScalingPolicies":{
686
- "name":"DescribeScalingPolicies",
687
- "http":{
688
- "method":"POST",
689
- "requestUri":"/"
690
- },
691
- "input":{"shape":"DescribeScalingPoliciesInput"},
692
- "output":{"shape":"DescribeScalingPoliciesOutput"},
693
- "errors":[
694
- {
695
- "shape":"InternalServiceException",
696
- "exception":true,
697
- "fault":true
698
- },
699
- {
700
- "shape":"InvalidRequestException",
701
- "exception":true
702
- },
703
- {
704
- "shape":"UnauthorizedException",
705
- "exception":true
706
- },
707
- {
708
- "shape":"NotFoundException",
709
- "exception":true
710
- }
711
- ]
712
- },
713
- "GetGameSessionLogUrl":{
714
- "name":"GetGameSessionLogUrl",
715
- "http":{
716
- "method":"POST",
717
- "requestUri":"/"
718
- },
719
- "input":{"shape":"GetGameSessionLogUrlInput"},
720
- "output":{"shape":"GetGameSessionLogUrlOutput"},
721
- "errors":[
722
- {
723
- "shape":"InternalServiceException",
724
- "exception":true,
725
- "fault":true
726
- },
727
- {
728
- "shape":"NotFoundException",
729
- "exception":true
730
- },
731
- {
732
- "shape":"UnauthorizedException",
733
- "exception":true
734
- },
735
- {
736
- "shape":"InvalidRequestException",
737
- "exception":true
738
- }
739
- ]
740
- },
741
- "ListAliases":{
742
- "name":"ListAliases",
743
- "http":{
744
- "method":"POST",
745
- "requestUri":"/"
746
- },
747
- "input":{"shape":"ListAliasesInput"},
748
- "output":{"shape":"ListAliasesOutput"},
749
- "errors":[
750
- {
751
- "shape":"UnauthorizedException",
752
- "exception":true
753
- },
754
- {
755
- "shape":"InvalidRequestException",
756
- "exception":true
757
- },
758
- {
759
- "shape":"InternalServiceException",
760
- "exception":true,
761
- "fault":true
762
- }
763
- ]
764
- },
765
- "ListBuilds":{
766
- "name":"ListBuilds",
767
- "http":{
768
- "method":"POST",
769
- "requestUri":"/"
770
- },
771
- "input":{"shape":"ListBuildsInput"},
772
- "output":{"shape":"ListBuildsOutput"},
773
- "errors":[
774
- {
775
- "shape":"UnauthorizedException",
776
- "exception":true
777
- },
778
- {
779
- "shape":"InvalidRequestException",
780
- "exception":true
781
- },
782
- {
783
- "shape":"InternalServiceException",
784
- "exception":true,
785
- "fault":true
786
- }
787
- ]
788
- },
789
- "ListFleets":{
790
- "name":"ListFleets",
791
- "http":{
792
- "method":"POST",
793
- "requestUri":"/"
794
- },
795
- "input":{"shape":"ListFleetsInput"},
796
- "output":{"shape":"ListFleetsOutput"},
797
- "errors":[
798
- {
799
- "shape":"InternalServiceException",
800
- "exception":true,
801
- "fault":true
802
- },
803
- {
804
- "shape":"NotFoundException",
805
- "exception":true
806
- },
807
- {
808
- "shape":"InvalidRequestException",
809
- "exception":true
810
- },
811
- {
812
- "shape":"UnauthorizedException",
813
- "exception":true
814
- }
815
- ]
816
- },
817
- "PutScalingPolicy":{
818
- "name":"PutScalingPolicy",
819
- "http":{
820
- "method":"POST",
821
- "requestUri":"/"
822
- },
823
- "input":{"shape":"PutScalingPolicyInput"},
824
- "output":{"shape":"PutScalingPolicyOutput"},
825
- "errors":[
826
- {
827
- "shape":"InternalServiceException",
828
- "exception":true,
829
- "fault":true
830
- },
831
- {
832
- "shape":"InvalidRequestException",
833
- "exception":true
834
- },
835
- {
836
- "shape":"UnauthorizedException",
837
- "exception":true
838
- },
839
- {
840
- "shape":"NotFoundException",
841
- "exception":true
842
- }
843
- ]
844
- },
845
- "RequestUploadCredentials":{
846
- "name":"RequestUploadCredentials",
847
- "http":{
848
- "method":"POST",
849
- "requestUri":"/"
850
- },
851
- "input":{"shape":"RequestUploadCredentialsInput"},
852
- "output":{"shape":"RequestUploadCredentialsOutput"},
853
- "errors":[
854
- {
855
- "shape":"UnauthorizedException",
856
- "exception":true
857
- },
858
- {
859
- "shape":"InvalidRequestException",
860
- "exception":true
861
- },
862
- {
863
- "shape":"NotFoundException",
864
- "exception":true
865
- },
866
- {
867
- "shape":"InternalServiceException",
868
- "exception":true,
869
- "fault":true
870
- }
871
- ]
872
- },
873
- "ResolveAlias":{
874
- "name":"ResolveAlias",
875
- "http":{
876
- "method":"POST",
877
- "requestUri":"/"
878
- },
879
- "input":{"shape":"ResolveAliasInput"},
880
- "output":{"shape":"ResolveAliasOutput"},
881
- "errors":[
882
- {
883
- "shape":"UnauthorizedException",
884
- "exception":true
885
- },
886
- {
887
- "shape":"InvalidRequestException",
888
- "exception":true
889
- },
890
- {
891
- "shape":"NotFoundException",
892
- "exception":true
893
- },
894
- {
895
- "shape":"TerminalRoutingStrategyException",
896
- "exception":true
897
- },
898
- {
899
- "shape":"InternalServiceException",
900
- "exception":true,
901
- "fault":true
902
- }
903
- ]
904
- },
905
- "UpdateAlias":{
906
- "name":"UpdateAlias",
907
- "http":{
908
- "method":"POST",
909
- "requestUri":"/"
910
- },
911
- "input":{"shape":"UpdateAliasInput"},
912
- "output":{"shape":"UpdateAliasOutput"},
913
- "errors":[
914
- {
915
- "shape":"UnauthorizedException",
916
- "exception":true
917
- },
918
- {
919
- "shape":"InvalidRequestException",
920
- "exception":true
921
- },
922
- {
923
- "shape":"NotFoundException",
924
- "exception":true
925
- },
926
- {
927
- "shape":"InternalServiceException",
928
- "exception":true,
929
- "fault":true
930
- }
931
- ]
932
- },
933
- "UpdateBuild":{
934
- "name":"UpdateBuild",
935
- "http":{
936
- "method":"POST",
937
- "requestUri":"/"
938
- },
939
- "input":{"shape":"UpdateBuildInput"},
940
- "output":{"shape":"UpdateBuildOutput"},
941
- "errors":[
942
- {
943
- "shape":"UnauthorizedException",
944
- "exception":true
945
- },
946
- {
947
- "shape":"InvalidRequestException",
948
- "exception":true
949
- },
950
- {
951
- "shape":"NotFoundException",
952
- "exception":true
953
- },
954
- {
955
- "shape":"InternalServiceException",
956
- "exception":true,
957
- "fault":true
958
- }
959
- ]
960
- },
961
- "UpdateFleetAttributes":{
962
- "name":"UpdateFleetAttributes",
963
- "http":{
964
- "method":"POST",
965
- "requestUri":"/"
966
- },
967
- "input":{"shape":"UpdateFleetAttributesInput"},
968
- "output":{"shape":"UpdateFleetAttributesOutput"},
969
- "errors":[
970
- {
971
- "shape":"NotFoundException",
972
- "exception":true
973
- },
974
- {
975
- "shape":"ConflictException",
976
- "exception":true
977
- },
978
- {
979
- "shape":"InvalidFleetStatusException",
980
- "exception":true
981
- },
982
- {
983
- "shape":"LimitExceededException",
984
- "exception":true
985
- },
986
- {
987
- "shape":"InternalServiceException",
988
- "exception":true,
989
- "fault":true
990
- },
991
- {
992
- "shape":"InvalidRequestException",
993
- "exception":true
994
- },
995
- {
996
- "shape":"UnauthorizedException",
997
- "exception":true
998
- }
999
- ]
1000
- },
1001
- "UpdateFleetCapacity":{
1002
- "name":"UpdateFleetCapacity",
1003
- "http":{
1004
- "method":"POST",
1005
- "requestUri":"/"
1006
- },
1007
- "input":{"shape":"UpdateFleetCapacityInput"},
1008
- "output":{"shape":"UpdateFleetCapacityOutput"},
1009
- "errors":[
1010
- {
1011
- "shape":"NotFoundException",
1012
- "exception":true
1013
- },
1014
- {
1015
- "shape":"ConflictException",
1016
- "exception":true
1017
- },
1018
- {
1019
- "shape":"LimitExceededException",
1020
- "exception":true
1021
- },
1022
- {
1023
- "shape":"InvalidFleetStatusException",
1024
- "exception":true
1025
- },
1026
- {
1027
- "shape":"InternalServiceException",
1028
- "exception":true,
1029
- "fault":true
1030
- },
1031
- {
1032
- "shape":"InvalidRequestException",
1033
- "exception":true
1034
- },
1035
- {
1036
- "shape":"UnauthorizedException",
1037
- "exception":true
1038
- }
1039
- ]
1040
- },
1041
- "UpdateFleetPortSettings":{
1042
- "name":"UpdateFleetPortSettings",
1043
- "http":{
1044
- "method":"POST",
1045
- "requestUri":"/"
1046
- },
1047
- "input":{"shape":"UpdateFleetPortSettingsInput"},
1048
- "output":{"shape":"UpdateFleetPortSettingsOutput"},
1049
- "errors":[
1050
- {
1051
- "shape":"NotFoundException",
1052
- "exception":true
1053
- },
1054
- {
1055
- "shape":"ConflictException",
1056
- "exception":true
1057
- },
1058
- {
1059
- "shape":"InvalidFleetStatusException",
1060
- "exception":true
1061
- },
1062
- {
1063
- "shape":"LimitExceededException",
1064
- "exception":true
1065
- },
1066
- {
1067
- "shape":"InternalServiceException",
1068
- "exception":true,
1069
- "fault":true
1070
- },
1071
- {
1072
- "shape":"InvalidRequestException",
1073
- "exception":true
1074
- },
1075
- {
1076
- "shape":"UnauthorizedException",
1077
- "exception":true
1078
- }
1079
- ]
1080
- },
1081
- "UpdateGameSession":{
1082
- "name":"UpdateGameSession",
1083
- "http":{
1084
- "method":"POST",
1085
- "requestUri":"/"
1086
- },
1087
- "input":{"shape":"UpdateGameSessionInput"},
1088
- "output":{"shape":"UpdateGameSessionOutput"},
1089
- "errors":[
1090
- {
1091
- "shape":"NotFoundException",
1092
- "exception":true
1093
- },
1094
- {
1095
- "shape":"ConflictException",
1096
- "exception":true
1097
- },
1098
- {
1099
- "shape":"InternalServiceException",
1100
- "exception":true,
1101
- "fault":true
1102
- },
1103
- {
1104
- "shape":"UnauthorizedException",
1105
- "exception":true
1106
- },
1107
- {
1108
- "shape":"InvalidGameSessionStatusException",
1109
- "exception":true
1110
- },
1111
- {
1112
- "shape":"InvalidRequestException",
1113
- "exception":true
1114
- }
1115
- ]
1116
- },
1117
- "UpdateRuntimeConfiguration":{
1118
- "name":"UpdateRuntimeConfiguration",
1119
- "http":{
1120
- "method":"POST",
1121
- "requestUri":"/"
1122
- },
1123
- "input":{"shape":"UpdateRuntimeConfigurationInput"},
1124
- "output":{"shape":"UpdateRuntimeConfigurationOutput"},
1125
- "errors":[
1126
- {
1127
- "shape":"UnauthorizedException",
1128
- "exception":true
1129
- },
1130
- {
1131
- "shape":"NotFoundException",
1132
- "exception":true
1133
- },
1134
- {
1135
- "shape":"InternalServiceException",
1136
- "exception":true,
1137
- "fault":true
1138
- },
1139
- {
1140
- "shape":"InvalidRequestException",
1141
- "exception":true
1142
- },
1143
- {
1144
- "shape":"InvalidFleetStatusException",
1145
- "exception":true
1146
- }
1147
- ]
1148
- }
1149
- },
1150
- "shapes":{
1151
- "Alias":{
1152
- "type":"structure",
1153
- "members":{
1154
- "AliasId":{"shape":"AliasId"},
1155
- "Name":{"shape":"FreeText"},
1156
- "Description":{"shape":"FreeText"},
1157
- "RoutingStrategy":{"shape":"RoutingStrategy"},
1158
- "CreationTime":{"shape":"Timestamp"},
1159
- "LastUpdatedTime":{"shape":"Timestamp"}
1160
- }
1161
- },
1162
- "AliasId":{
1163
- "type":"string",
1164
- "pattern":"^alias-\\S+"
1165
- },
1166
- "AliasList":{
1167
- "type":"list",
1168
- "member":{"shape":"Alias"}
1169
- },
1170
- "AwsCredentials":{
1171
- "type":"structure",
1172
- "members":{
1173
- "AccessKeyId":{"shape":"NonEmptyString"},
1174
- "SecretAccessKey":{"shape":"NonEmptyString"},
1175
- "SessionToken":{"shape":"NonEmptyString"}
1176
- },
1177
- "sensitive":true
1178
- },
1179
- "Build":{
1180
- "type":"structure",
1181
- "members":{
1182
- "BuildId":{"shape":"BuildId"},
1183
- "Name":{"shape":"FreeText"},
1184
- "Version":{"shape":"FreeText"},
1185
- "Status":{"shape":"BuildStatus"},
1186
- "SizeOnDisk":{"shape":"PositiveLong"},
1187
- "CreationTime":{"shape":"Timestamp"}
1188
- }
1189
- },
1190
- "BuildId":{
1191
- "type":"string",
1192
- "pattern":"^build-\\S+"
1193
- },
1194
- "BuildList":{
1195
- "type":"list",
1196
- "member":{"shape":"Build"}
1197
- },
1198
- "BuildStatus":{
1199
- "type":"string",
1200
- "enum":[
1201
- "INITIALIZED",
1202
- "READY",
1203
- "FAILED"
1204
- ]
1205
- },
1206
- "ComparisonOperatorType":{
1207
- "type":"string",
1208
- "enum":[
1209
- "GreaterThanOrEqualToThreshold",
1210
- "GreaterThanThreshold",
1211
- "LessThanThreshold",
1212
- "LessThanOrEqualToThreshold"
1213
- ]
1214
- },
1215
- "ConflictException":{
1216
- "type":"structure",
1217
- "members":{
1218
- "Message":{"shape":"NonEmptyString"}
1219
- },
1220
- "exception":true
1221
- },
1222
- "CreateAliasInput":{
1223
- "type":"structure",
1224
- "required":[
1225
- "Name",
1226
- "RoutingStrategy"
1227
- ],
1228
- "members":{
1229
- "Name":{"shape":"NonZeroAndMaxString"},
1230
- "Description":{"shape":"NonZeroAndMaxString"},
1231
- "RoutingStrategy":{"shape":"RoutingStrategy"}
1232
- }
1233
- },
1234
- "CreateAliasOutput":{
1235
- "type":"structure",
1236
- "members":{
1237
- "Alias":{"shape":"Alias"}
1238
- }
1239
- },
1240
- "CreateBuildInput":{
1241
- "type":"structure",
1242
- "members":{
1243
- "Name":{"shape":"NonZeroAndMaxString"},
1244
- "Version":{"shape":"NonZeroAndMaxString"},
1245
- "StorageLocation":{"shape":"S3Location"}
1246
- }
1247
- },
1248
- "CreateBuildOutput":{
1249
- "type":"structure",
1250
- "members":{
1251
- "Build":{"shape":"Build"},
1252
- "UploadCredentials":{"shape":"AwsCredentials"},
1253
- "StorageLocation":{"shape":"S3Location"}
1254
- }
1255
- },
1256
- "CreateFleetInput":{
1257
- "type":"structure",
1258
- "required":[
1259
- "Name",
1260
- "BuildId",
1261
- "EC2InstanceType"
1262
- ],
1263
- "members":{
1264
- "Name":{"shape":"NonZeroAndMaxString"},
1265
- "Description":{"shape":"NonZeroAndMaxString"},
1266
- "BuildId":{"shape":"BuildId"},
1267
- "ServerLaunchPath":{"shape":"NonZeroAndMaxString"},
1268
- "ServerLaunchParameters":{"shape":"NonZeroAndMaxString"},
1269
- "LogPaths":{"shape":"StringList"},
1270
- "EC2InstanceType":{"shape":"EC2InstanceType"},
1271
- "EC2InboundPermissions":{"shape":"IpPermissionsList"},
1272
- "NewGameSessionProtectionPolicy":{"shape":"ProtectionPolicy"},
1273
- "RuntimeConfiguration":{"shape":"RuntimeConfiguration"}
1274
- }
1275
- },
1276
- "CreateFleetOutput":{
1277
- "type":"structure",
1278
- "members":{
1279
- "FleetAttributes":{"shape":"FleetAttributes"}
1280
- }
1281
- },
1282
- "CreateGameSessionInput":{
1283
- "type":"structure",
1284
- "required":["MaximumPlayerSessionCount"],
1285
- "members":{
1286
- "FleetId":{"shape":"FleetId"},
1287
- "AliasId":{"shape":"AliasId"},
1288
- "MaximumPlayerSessionCount":{"shape":"WholeNumber"},
1289
- "Name":{"shape":"NonZeroAndMaxString"},
1290
- "GameProperties":{"shape":"GamePropertyList"}
1291
- }
1292
- },
1293
- "CreateGameSessionOutput":{
1294
- "type":"structure",
1295
- "members":{
1296
- "GameSession":{"shape":"GameSession"}
1297
- }
1298
- },
1299
- "CreatePlayerSessionInput":{
1300
- "type":"structure",
1301
- "required":[
1302
- "GameSessionId",
1303
- "PlayerId"
1304
- ],
1305
- "members":{
1306
- "GameSessionId":{"shape":"GameSessionId"},
1307
- "PlayerId":{"shape":"NonZeroAndMaxString"}
1308
- }
1309
- },
1310
- "CreatePlayerSessionOutput":{
1311
- "type":"structure",
1312
- "members":{
1313
- "PlayerSession":{"shape":"PlayerSession"}
1314
- }
1315
- },
1316
- "CreatePlayerSessionsInput":{
1317
- "type":"structure",
1318
- "required":[
1319
- "GameSessionId",
1320
- "PlayerIds"
1321
- ],
1322
- "members":{
1323
- "GameSessionId":{"shape":"GameSessionId"},
1324
- "PlayerIds":{"shape":"PlayerIdList"}
1325
- }
1326
- },
1327
- "CreatePlayerSessionsOutput":{
1328
- "type":"structure",
1329
- "members":{
1330
- "PlayerSessions":{"shape":"PlayerSessionList"}
1331
- }
1332
- },
1333
- "DeleteAliasInput":{
1334
- "type":"structure",
1335
- "required":["AliasId"],
1336
- "members":{
1337
- "AliasId":{"shape":"AliasId"}
1338
- }
1339
- },
1340
- "DeleteBuildInput":{
1341
- "type":"structure",
1342
- "required":["BuildId"],
1343
- "members":{
1344
- "BuildId":{"shape":"BuildId"}
1345
- }
1346
- },
1347
- "DeleteFleetInput":{
1348
- "type":"structure",
1349
- "required":["FleetId"],
1350
- "members":{
1351
- "FleetId":{"shape":"FleetId"}
1352
- }
1353
- },
1354
- "DeleteScalingPolicyInput":{
1355
- "type":"structure",
1356
- "required":[
1357
- "Name",
1358
- "FleetId"
1359
- ],
1360
- "members":{
1361
- "Name":{"shape":"NonZeroAndMaxString"},
1362
- "FleetId":{"shape":"FleetId"}
1363
- }
1364
- },
1365
- "DescribeAliasInput":{
1366
- "type":"structure",
1367
- "required":["AliasId"],
1368
- "members":{
1369
- "AliasId":{"shape":"AliasId"}
1370
- }
1371
- },
1372
- "DescribeAliasOutput":{
1373
- "type":"structure",
1374
- "members":{
1375
- "Alias":{"shape":"Alias"}
1376
- }
1377
- },
1378
- "DescribeBuildInput":{
1379
- "type":"structure",
1380
- "required":["BuildId"],
1381
- "members":{
1382
- "BuildId":{"shape":"BuildId"}
1383
- }
1384
- },
1385
- "DescribeBuildOutput":{
1386
- "type":"structure",
1387
- "members":{
1388
- "Build":{"shape":"Build"}
1389
- }
1390
- },
1391
- "DescribeEC2InstanceLimitsInput":{
1392
- "type":"structure",
1393
- "members":{
1394
- "EC2InstanceType":{"shape":"EC2InstanceType"}
1395
- }
1396
- },
1397
- "DescribeEC2InstanceLimitsOutput":{
1398
- "type":"structure",
1399
- "members":{
1400
- "EC2InstanceLimits":{"shape":"EC2InstanceLimitList"}
1401
- }
1402
- },
1403
- "DescribeFleetAttributesInput":{
1404
- "type":"structure",
1405
- "members":{
1406
- "FleetIds":{"shape":"FleetIdList"},
1407
- "Limit":{"shape":"PositiveInteger"},
1408
- "NextToken":{"shape":"NonZeroAndMaxString"}
1409
- }
1410
- },
1411
- "DescribeFleetAttributesOutput":{
1412
- "type":"structure",
1413
- "members":{
1414
- "FleetAttributes":{"shape":"FleetAttributesList"},
1415
- "NextToken":{"shape":"NonZeroAndMaxString"}
1416
- }
1417
- },
1418
- "DescribeFleetCapacityInput":{
1419
- "type":"structure",
1420
- "members":{
1421
- "FleetIds":{"shape":"FleetIdList"},
1422
- "Limit":{"shape":"PositiveInteger"},
1423
- "NextToken":{"shape":"NonZeroAndMaxString"}
1424
- }
1425
- },
1426
- "DescribeFleetCapacityOutput":{
1427
- "type":"structure",
1428
- "members":{
1429
- "FleetCapacity":{"shape":"FleetCapacityList"},
1430
- "NextToken":{"shape":"NonZeroAndMaxString"}
1431
- }
1432
- },
1433
- "DescribeFleetEventsInput":{
1434
- "type":"structure",
1435
- "required":["FleetId"],
1436
- "members":{
1437
- "FleetId":{"shape":"FleetId"},
1438
- "StartTime":{"shape":"Timestamp"},
1439
- "EndTime":{"shape":"Timestamp"},
1440
- "Limit":{"shape":"PositiveInteger"},
1441
- "NextToken":{"shape":"NonZeroAndMaxString"}
1442
- }
1443
- },
1444
- "DescribeFleetEventsOutput":{
1445
- "type":"structure",
1446
- "members":{
1447
- "Events":{"shape":"EventList"},
1448
- "NextToken":{"shape":"NonZeroAndMaxString"}
1449
- }
1450
- },
1451
- "DescribeFleetPortSettingsInput":{
1452
- "type":"structure",
1453
- "required":["FleetId"],
1454
- "members":{
1455
- "FleetId":{"shape":"FleetId"}
1456
- }
1457
- },
1458
- "DescribeFleetPortSettingsOutput":{
1459
- "type":"structure",
1460
- "members":{
1461
- "InboundPermissions":{"shape":"IpPermissionsList"}
1462
- }
1463
- },
1464
- "DescribeFleetUtilizationInput":{
1465
- "type":"structure",
1466
- "members":{
1467
- "FleetIds":{"shape":"FleetIdList"},
1468
- "Limit":{"shape":"PositiveInteger"},
1469
- "NextToken":{"shape":"NonZeroAndMaxString"}
1470
- }
1471
- },
1472
- "DescribeFleetUtilizationOutput":{
1473
- "type":"structure",
1474
- "members":{
1475
- "FleetUtilization":{"shape":"FleetUtilizationList"},
1476
- "NextToken":{"shape":"NonZeroAndMaxString"}
1477
- }
1478
- },
1479
- "DescribeGameSessionDetailsInput":{
1480
- "type":"structure",
1481
- "members":{
1482
- "FleetId":{"shape":"FleetId"},
1483
- "GameSessionId":{"shape":"GameSessionId"},
1484
- "AliasId":{"shape":"AliasId"},
1485
- "StatusFilter":{"shape":"NonZeroAndMaxString"},
1486
- "Limit":{"shape":"PositiveInteger"},
1487
- "NextToken":{"shape":"NonZeroAndMaxString"}
1488
- }
1489
- },
1490
- "DescribeGameSessionDetailsOutput":{
1491
- "type":"structure",
1492
- "members":{
1493
- "GameSessionDetails":{"shape":"GameSessionDetailList"},
1494
- "NextToken":{"shape":"NonZeroAndMaxString"}
1495
- }
1496
- },
1497
- "DescribeGameSessionsInput":{
1498
- "type":"structure",
1499
- "members":{
1500
- "FleetId":{"shape":"FleetId"},
1501
- "GameSessionId":{"shape":"GameSessionId"},
1502
- "AliasId":{"shape":"AliasId"},
1503
- "StatusFilter":{"shape":"NonZeroAndMaxString"},
1504
- "Limit":{"shape":"PositiveInteger"},
1505
- "NextToken":{"shape":"NonZeroAndMaxString"}
1506
- }
1507
- },
1508
- "DescribeGameSessionsOutput":{
1509
- "type":"structure",
1510
- "members":{
1511
- "GameSessions":{"shape":"GameSessionList"},
1512
- "NextToken":{"shape":"NonZeroAndMaxString"}
1513
- }
1514
- },
1515
- "DescribePlayerSessionsInput":{
1516
- "type":"structure",
1517
- "members":{
1518
- "GameSessionId":{"shape":"GameSessionId"},
1519
- "PlayerId":{"shape":"NonZeroAndMaxString"},
1520
- "PlayerSessionId":{"shape":"PlayerSessionId"},
1521
- "PlayerSessionStatusFilter":{"shape":"NonZeroAndMaxString"},
1522
- "Limit":{"shape":"PositiveInteger"},
1523
- "NextToken":{"shape":"NonZeroAndMaxString"}
1524
- }
1525
- },
1526
- "DescribePlayerSessionsOutput":{
1527
- "type":"structure",
1528
- "members":{
1529
- "PlayerSessions":{"shape":"PlayerSessionList"},
1530
- "NextToken":{"shape":"NonZeroAndMaxString"}
1531
- }
1532
- },
1533
- "DescribeRuntimeConfigurationInput":{
1534
- "type":"structure",
1535
- "required":["FleetId"],
1536
- "members":{
1537
- "FleetId":{"shape":"FleetId"}
1538
- }
1539
- },
1540
- "DescribeRuntimeConfigurationOutput":{
1541
- "type":"structure",
1542
- "members":{
1543
- "RuntimeConfiguration":{"shape":"RuntimeConfiguration"}
1544
- }
1545
- },
1546
- "DescribeScalingPoliciesInput":{
1547
- "type":"structure",
1548
- "required":["FleetId"],
1549
- "members":{
1550
- "FleetId":{"shape":"FleetId"},
1551
- "StatusFilter":{"shape":"ScalingStatusType"},
1552
- "Limit":{"shape":"PositiveInteger"},
1553
- "NextToken":{"shape":"NonZeroAndMaxString"}
1554
- }
1555
- },
1556
- "DescribeScalingPoliciesOutput":{
1557
- "type":"structure",
1558
- "members":{
1559
- "ScalingPolicies":{"shape":"ScalingPolicyList"},
1560
- "NextToken":{"shape":"NonZeroAndMaxString"}
1561
- }
1562
- },
1563
- "Double":{"type":"double"},
1564
- "EC2InstanceCounts":{
1565
- "type":"structure",
1566
- "members":{
1567
- "DESIRED":{"shape":"WholeNumber"},
1568
- "MINIMUM":{"shape":"WholeNumber"},
1569
- "MAXIMUM":{"shape":"WholeNumber"},
1570
- "PENDING":{"shape":"WholeNumber"},
1571
- "ACTIVE":{"shape":"WholeNumber"},
1572
- "IDLE":{"shape":"WholeNumber"},
1573
- "TERMINATING":{"shape":"WholeNumber"}
1574
- }
1575
- },
1576
- "EC2InstanceLimit":{
1577
- "type":"structure",
1578
- "members":{
1579
- "EC2InstanceType":{"shape":"EC2InstanceType"},
1580
- "CurrentInstances":{"shape":"WholeNumber"},
1581
- "InstanceLimit":{"shape":"WholeNumber"}
1582
- }
1583
- },
1584
- "EC2InstanceLimitList":{
1585
- "type":"list",
1586
- "member":{"shape":"EC2InstanceLimit"}
1587
- },
1588
- "EC2InstanceType":{
1589
- "type":"string",
1590
- "enum":[
1591
- "t2.micro",
1592
- "t2.small",
1593
- "t2.medium",
1594
- "t2.large",
1595
- "c3.large",
1596
- "c3.xlarge",
1597
- "c3.2xlarge",
1598
- "c3.4xlarge",
1599
- "c3.8xlarge",
1600
- "c4.large",
1601
- "c4.xlarge",
1602
- "c4.2xlarge",
1603
- "c4.4xlarge",
1604
- "c4.8xlarge",
1605
- "r3.large",
1606
- "r3.xlarge",
1607
- "r3.2xlarge",
1608
- "r3.4xlarge",
1609
- "r3.8xlarge",
1610
- "m3.medium",
1611
- "m3.large",
1612
- "m3.xlarge",
1613
- "m3.2xlarge",
1614
- "m4.large",
1615
- "m4.xlarge",
1616
- "m4.2xlarge",
1617
- "m4.4xlarge",
1618
- "m4.10xlarge"
1619
- ]
1620
- },
1621
- "Event":{
1622
- "type":"structure",
1623
- "members":{
1624
- "EventId":{"shape":"NonZeroAndMaxString"},
1625
- "ResourceId":{"shape":"NonZeroAndMaxString"},
1626
- "EventCode":{"shape":"EventCode"},
1627
- "Message":{"shape":"NonEmptyString"},
1628
- "EventTime":{"shape":"Timestamp"}
1629
- }
1630
- },
1631
- "EventCode":{
1632
- "type":"string",
1633
- "enum":[
1634
- "GENERIC_EVENT",
1635
- "FLEET_CREATED",
1636
- "FLEET_DELETED",
1637
- "FLEET_SCALING_EVENT",
1638
- "FLEET_STATE_DOWNLOADING",
1639
- "FLEET_STATE_VALIDATING",
1640
- "FLEET_STATE_BUILDING",
1641
- "FLEET_STATE_ACTIVATING",
1642
- "FLEET_STATE_ACTIVE",
1643
- "FLEET_STATE_ERROR",
1644
- "FLEET_INITIALIZATION_FAILED",
1645
- "FLEET_BINARY_DOWNLOAD_FAILED",
1646
- "FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND",
1647
- "FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE",
1648
- "FLEET_VALIDATION_TIMED_OUT",
1649
- "FLEET_ACTIVATION_FAILED",
1650
- "FLEET_ACTIVATION_FAILED_NO_INSTANCES",
1651
- "FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED"
1652
- ]
1653
- },
1654
- "EventList":{
1655
- "type":"list",
1656
- "member":{"shape":"Event"}
1657
- },
1658
- "FleetAttributes":{
1659
- "type":"structure",
1660
- "members":{
1661
- "FleetId":{"shape":"FleetId"},
1662
- "Description":{"shape":"NonZeroAndMaxString"},
1663
- "Name":{"shape":"NonZeroAndMaxString"},
1664
- "CreationTime":{"shape":"Timestamp"},
1665
- "TerminationTime":{"shape":"Timestamp"},
1666
- "Status":{"shape":"FleetStatus"},
1667
- "BuildId":{"shape":"BuildId"},
1668
- "ServerLaunchPath":{"shape":"NonZeroAndMaxString"},
1669
- "ServerLaunchParameters":{"shape":"NonZeroAndMaxString"},
1670
- "LogPaths":{"shape":"StringList"},
1671
- "NewGameSessionProtectionPolicy":{"shape":"ProtectionPolicy"}
1672
- }
1673
- },
1674
- "FleetAttributesList":{
1675
- "type":"list",
1676
- "member":{"shape":"FleetAttributes"}
1677
- },
1678
- "FleetCapacity":{
1679
- "type":"structure",
1680
- "members":{
1681
- "FleetId":{"shape":"FleetId"},
1682
- "InstanceType":{"shape":"EC2InstanceType"},
1683
- "InstanceCounts":{"shape":"EC2InstanceCounts"}
1684
- }
1685
- },
1686
- "FleetCapacityExceededException":{
1687
- "type":"structure",
1688
- "members":{
1689
- "Message":{"shape":"NonEmptyString"}
1690
- },
1691
- "exception":true
1692
- },
1693
- "FleetCapacityList":{
1694
- "type":"list",
1695
- "member":{"shape":"FleetCapacity"}
1696
- },
1697
- "FleetId":{
1698
- "type":"string",
1699
- "pattern":"^fleet-\\S+"
1700
- },
1701
- "FleetIdList":{
1702
- "type":"list",
1703
- "member":{"shape":"FleetId"},
1704
- "min":1
1705
- },
1706
- "FleetStatus":{
1707
- "type":"string",
1708
- "enum":[
1709
- "NEW",
1710
- "DOWNLOADING",
1711
- "VALIDATING",
1712
- "BUILDING",
1713
- "ACTIVATING",
1714
- "ACTIVE",
1715
- "DELETING",
1716
- "ERROR",
1717
- "TERMINATED"
1718
- ]
1719
- },
1720
- "FleetUtilization":{
1721
- "type":"structure",
1722
- "members":{
1723
- "FleetId":{"shape":"FleetId"},
1724
- "ActiveServerProcessCount":{"shape":"WholeNumber"},
1725
- "ActiveGameSessionCount":{"shape":"WholeNumber"},
1726
- "CurrentPlayerSessionCount":{"shape":"WholeNumber"},
1727
- "MaximumPlayerSessionCount":{"shape":"WholeNumber"}
1728
- }
1729
- },
1730
- "FleetUtilizationList":{
1731
- "type":"list",
1732
- "member":{"shape":"FleetUtilization"}
1733
- },
1734
- "FreeText":{"type":"string"},
1735
- "GameProperty":{
1736
- "type":"structure",
1737
- "required":[
1738
- "Key",
1739
- "Value"
1740
- ],
1741
- "members":{
1742
- "Key":{"shape":"GamePropertyKey"},
1743
- "Value":{"shape":"GamePropertyValue"}
1744
- }
1745
- },
1746
- "GamePropertyKey":{
1747
- "type":"string",
1748
- "max":32
1749
- },
1750
- "GamePropertyList":{
1751
- "type":"list",
1752
- "member":{"shape":"GameProperty"},
1753
- "max":16
1754
- },
1755
- "GamePropertyValue":{
1756
- "type":"string",
1757
- "max":96
1758
- },
1759
- "GameSession":{
1760
- "type":"structure",
1761
- "members":{
1762
- "GameSessionId":{"shape":"GameSessionId"},
1763
- "Name":{"shape":"NonZeroAndMaxString"},
1764
- "FleetId":{"shape":"FleetId"},
1765
- "CreationTime":{"shape":"Timestamp"},
1766
- "TerminationTime":{"shape":"Timestamp"},
1767
- "CurrentPlayerSessionCount":{"shape":"WholeNumber"},
1768
- "MaximumPlayerSessionCount":{"shape":"WholeNumber"},
1769
- "Status":{"shape":"GameSessionStatus"},
1770
- "GameProperties":{"shape":"GamePropertyList"},
1771
- "IpAddress":{"shape":"IpAddress"},
1772
- "Port":{"shape":"PortNumber"},
1773
- "PlayerSessionCreationPolicy":{"shape":"PlayerSessionCreationPolicy"}
1774
- }
1775
- },
1776
- "GameSessionDetail":{
1777
- "type":"structure",
1778
- "members":{
1779
- "GameSession":{"shape":"GameSession"},
1780
- "ProtectionPolicy":{"shape":"ProtectionPolicy"}
1781
- }
1782
- },
1783
- "GameSessionDetailList":{
1784
- "type":"list",
1785
- "member":{"shape":"GameSessionDetail"}
1786
- },
1787
- "GameSessionFullException":{
1788
- "type":"structure",
1789
- "members":{
1790
- "Message":{"shape":"NonEmptyString"}
1791
- },
1792
- "exception":true
1793
- },
1794
- "GameSessionId":{
1795
- "type":"string",
1796
- "pattern":"^(gamei-|gsess-)\\S+"
1797
- },
1798
- "GameSessionList":{
1799
- "type":"list",
1800
- "member":{"shape":"GameSession"}
1801
- },
1802
- "GameSessionStatus":{
1803
- "type":"string",
1804
- "enum":[
1805
- "ACTIVE",
1806
- "ACTIVATING",
1807
- "TERMINATED",
1808
- "TERMINATING"
1809
- ]
1810
- },
1811
- "GetGameSessionLogUrlInput":{
1812
- "type":"structure",
1813
- "required":["GameSessionId"],
1814
- "members":{
1815
- "GameSessionId":{"shape":"GameSessionId"}
1816
- }
1817
- },
1818
- "GetGameSessionLogUrlOutput":{
1819
- "type":"structure",
1820
- "members":{
1821
- "PreSignedUrl":{"shape":"NonZeroAndMaxString"}
1822
- }
1823
- },
1824
- "Integer":{"type":"integer"},
1825
- "InternalServiceException":{
1826
- "type":"structure",
1827
- "members":{
1828
- "Message":{"shape":"NonEmptyString"}
1829
- },
1830
- "exception":true,
1831
- "fault":true
1832
- },
1833
- "InvalidFleetStatusException":{
1834
- "type":"structure",
1835
- "members":{
1836
- "Message":{"shape":"NonEmptyString"}
1837
- },
1838
- "exception":true
1839
- },
1840
- "InvalidGameSessionStatusException":{
1841
- "type":"structure",
1842
- "members":{
1843
- "Message":{"shape":"NonEmptyString"}
1844
- },
1845
- "exception":true
1846
- },
1847
- "InvalidRequestException":{
1848
- "type":"structure",
1849
- "members":{
1850
- "Message":{"shape":"NonEmptyString"}
1851
- },
1852
- "exception":true
1853
- },
1854
- "IpAddress":{"type":"string"},
1855
- "IpPermission":{
1856
- "type":"structure",
1857
- "required":[
1858
- "FromPort",
1859
- "ToPort",
1860
- "IpRange",
1861
- "Protocol"
1862
- ],
1863
- "members":{
1864
- "FromPort":{"shape":"PortNumber"},
1865
- "ToPort":{"shape":"PortNumber"},
1866
- "IpRange":{"shape":"NonBlankString"},
1867
- "Protocol":{"shape":"IpProtocol"}
1868
- }
1869
- },
1870
- "IpPermissionsList":{
1871
- "type":"list",
1872
- "member":{"shape":"IpPermission"},
1873
- "max":50
1874
- },
1875
- "IpProtocol":{
1876
- "type":"string",
1877
- "enum":[
1878
- "TCP",
1879
- "UDP"
1880
- ]
1881
- },
1882
- "LimitExceededException":{
1883
- "type":"structure",
1884
- "members":{
1885
- "Message":{"shape":"NonEmptyString"}
1886
- },
1887
- "exception":true
1888
- },
1889
- "ListAliasesInput":{
1890
- "type":"structure",
1891
- "members":{
1892
- "RoutingStrategyType":{"shape":"RoutingStrategyType"},
1893
- "Name":{"shape":"NonEmptyString"},
1894
- "Limit":{"shape":"PositiveInteger"},
1895
- "NextToken":{"shape":"NonEmptyString"}
1896
- }
1897
- },
1898
- "ListAliasesOutput":{
1899
- "type":"structure",
1900
- "members":{
1901
- "Aliases":{"shape":"AliasList"},
1902
- "NextToken":{"shape":"NonEmptyString"}
1903
- }
1904
- },
1905
- "ListBuildsInput":{
1906
- "type":"structure",
1907
- "members":{
1908
- "Status":{"shape":"BuildStatus"},
1909
- "Limit":{"shape":"PositiveInteger"},
1910
- "NextToken":{"shape":"NonEmptyString"}
1911
- }
1912
- },
1913
- "ListBuildsOutput":{
1914
- "type":"structure",
1915
- "members":{
1916
- "Builds":{"shape":"BuildList"},
1917
- "NextToken":{"shape":"NonEmptyString"}
1918
- }
1919
- },
1920
- "ListFleetsInput":{
1921
- "type":"structure",
1922
- "members":{
1923
- "BuildId":{"shape":"BuildId"},
1924
- "Limit":{"shape":"PositiveInteger"},
1925
- "NextToken":{"shape":"NonZeroAndMaxString"}
1926
- }
1927
- },
1928
- "ListFleetsOutput":{
1929
- "type":"structure",
1930
- "members":{
1931
- "FleetIds":{"shape":"FleetIdList"},
1932
- "NextToken":{"shape":"NonZeroAndMaxString"}
1933
- }
1934
- },
1935
- "MetricName":{
1936
- "type":"string",
1937
- "enum":[
1938
- "ActivatingGameSessions",
1939
- "ActiveGameSessions",
1940
- "ActiveInstances",
1941
- "AvailablePlayerSessions",
1942
- "CurrentPlayerSessions",
1943
- "IdleInstances"
1944
- ]
1945
- },
1946
- "NonBlankString":{
1947
- "type":"string",
1948
- "pattern":"[^\\s]+"
1949
- },
1950
- "NonEmptyString":{
1951
- "type":"string",
1952
- "min":1
1953
- },
1954
- "NonZeroAndMaxString":{
1955
- "type":"string",
1956
- "min":1,
1957
- "max":1024
1958
- },
1959
- "NotFoundException":{
1960
- "type":"structure",
1961
- "members":{
1962
- "Message":{"shape":"NonEmptyString"}
1963
- },
1964
- "exception":true
1965
- },
1966
- "PlayerIdList":{
1967
- "type":"list",
1968
- "member":{"shape":"NonZeroAndMaxString"},
1969
- "min":1,
1970
- "max":25
1971
- },
1972
- "PlayerSession":{
1973
- "type":"structure",
1974
- "members":{
1975
- "PlayerSessionId":{"shape":"PlayerSessionId"},
1976
- "PlayerId":{"shape":"NonZeroAndMaxString"},
1977
- "GameSessionId":{"shape":"GameSessionId"},
1978
- "FleetId":{"shape":"FleetId"},
1979
- "CreationTime":{"shape":"Timestamp"},
1980
- "TerminationTime":{"shape":"Timestamp"},
1981
- "Status":{"shape":"PlayerSessionStatus"},
1982
- "IpAddress":{"shape":"IpAddress"},
1983
- "Port":{"shape":"PortNumber"}
1984
- }
1985
- },
1986
- "PlayerSessionCreationPolicy":{
1987
- "type":"string",
1988
- "enum":[
1989
- "ACCEPT_ALL",
1990
- "DENY_ALL"
1991
- ]
1992
- },
1993
- "PlayerSessionId":{
1994
- "type":"string",
1995
- "pattern":"^psess-\\S+"
1996
- },
1997
- "PlayerSessionList":{
1998
- "type":"list",
1999
- "member":{"shape":"PlayerSession"}
2000
- },
2001
- "PlayerSessionStatus":{
2002
- "type":"string",
2003
- "enum":[
2004
- "RESERVED",
2005
- "ACTIVE",
2006
- "COMPLETED",
2007
- "TIMEDOUT"
2008
- ]
2009
- },
2010
- "PortNumber":{
2011
- "type":"integer",
2012
- "min":1025,
2013
- "max":60000
2014
- },
2015
- "PositiveInteger":{
2016
- "type":"integer",
2017
- "min":1
2018
- },
2019
- "PositiveLong":{
2020
- "type":"long",
2021
- "min":1
2022
- },
2023
- "ProtectionPolicy":{
2024
- "type":"string",
2025
- "enum":[
2026
- "NoProtection",
2027
- "FullProtection"
2028
- ]
2029
- },
2030
- "PutScalingPolicyInput":{
2031
- "type":"structure",
2032
- "required":[
2033
- "Name",
2034
- "FleetId",
2035
- "ScalingAdjustment",
2036
- "ScalingAdjustmentType",
2037
- "Threshold",
2038
- "ComparisonOperator",
2039
- "EvaluationPeriods",
2040
- "MetricName"
2041
- ],
2042
- "members":{
2043
- "Name":{"shape":"NonZeroAndMaxString"},
2044
- "FleetId":{"shape":"FleetId"},
2045
- "ScalingAdjustment":{"shape":"Integer"},
2046
- "ScalingAdjustmentType":{"shape":"ScalingAdjustmentType"},
2047
- "Threshold":{"shape":"Double"},
2048
- "ComparisonOperator":{"shape":"ComparisonOperatorType"},
2049
- "EvaluationPeriods":{"shape":"PositiveInteger"},
2050
- "MetricName":{"shape":"MetricName"}
2051
- }
2052
- },
2053
- "PutScalingPolicyOutput":{
2054
- "type":"structure",
2055
- "members":{
2056
- "Name":{"shape":"NonZeroAndMaxString"}
2057
- }
2058
- },
2059
- "RequestUploadCredentialsInput":{
2060
- "type":"structure",
2061
- "required":["BuildId"],
2062
- "members":{
2063
- "BuildId":{"shape":"BuildId"}
2064
- }
2065
- },
2066
- "RequestUploadCredentialsOutput":{
2067
- "type":"structure",
2068
- "members":{
2069
- "UploadCredentials":{"shape":"AwsCredentials"},
2070
- "StorageLocation":{"shape":"S3Location"}
2071
- }
2072
- },
2073
- "ResolveAliasInput":{
2074
- "type":"structure",
2075
- "required":["AliasId"],
2076
- "members":{
2077
- "AliasId":{"shape":"AliasId"}
2078
- }
2079
- },
2080
- "ResolveAliasOutput":{
2081
- "type":"structure",
2082
- "members":{
2083
- "FleetId":{"shape":"FleetId"}
2084
- }
2085
- },
2086
- "RoutingStrategy":{
2087
- "type":"structure",
2088
- "members":{
2089
- "Type":{"shape":"RoutingStrategyType"},
2090
- "FleetId":{"shape":"FleetId"},
2091
- "Message":{"shape":"FreeText"}
2092
- }
2093
- },
2094
- "RoutingStrategyType":{
2095
- "type":"string",
2096
- "enum":[
2097
- "SIMPLE",
2098
- "TERMINAL"
2099
- ]
2100
- },
2101
- "RuntimeConfiguration":{
2102
- "type":"structure",
2103
- "members":{
2104
- "ServerProcesses":{"shape":"ServerProcessList"}
2105
- }
2106
- },
2107
- "S3Location":{
2108
- "type":"structure",
2109
- "members":{
2110
- "Bucket":{"shape":"NonEmptyString"},
2111
- "Key":{"shape":"NonEmptyString"},
2112
- "RoleArn":{"shape":"NonEmptyString"}
2113
- }
2114
- },
2115
- "ScalingAdjustmentType":{
2116
- "type":"string",
2117
- "enum":[
2118
- "ChangeInCapacity",
2119
- "ExactCapacity",
2120
- "PercentChangeInCapacity"
2121
- ]
2122
- },
2123
- "ScalingPolicy":{
2124
- "type":"structure",
2125
- "members":{
2126
- "FleetId":{"shape":"FleetId"},
2127
- "Name":{"shape":"NonZeroAndMaxString"},
2128
- "Status":{"shape":"ScalingStatusType"},
2129
- "ScalingAdjustment":{"shape":"Integer"},
2130
- "ScalingAdjustmentType":{"shape":"ScalingAdjustmentType"},
2131
- "ComparisonOperator":{"shape":"ComparisonOperatorType"},
2132
- "Threshold":{"shape":"Double"},
2133
- "EvaluationPeriods":{"shape":"PositiveInteger"},
2134
- "MetricName":{"shape":"MetricName"}
2135
- }
2136
- },
2137
- "ScalingPolicyList":{
2138
- "type":"list",
2139
- "member":{"shape":"ScalingPolicy"}
2140
- },
2141
- "ScalingStatusType":{
2142
- "type":"string",
2143
- "enum":[
2144
- "ACTIVE",
2145
- "UPDATE_REQUESTED",
2146
- "UPDATING",
2147
- "DELETE_REQUESTED",
2148
- "DELETING",
2149
- "DELETED",
2150
- "ERROR"
2151
- ]
2152
- },
2153
- "ServerProcess":{
2154
- "type":"structure",
2155
- "required":[
2156
- "LaunchPath",
2157
- "ConcurrentExecutions"
2158
- ],
2159
- "members":{
2160
- "LaunchPath":{"shape":"NonZeroAndMaxString"},
2161
- "Parameters":{"shape":"NonZeroAndMaxString"},
2162
- "ConcurrentExecutions":{"shape":"PositiveInteger"}
2163
- }
2164
- },
2165
- "ServerProcessList":{
2166
- "type":"list",
2167
- "member":{"shape":"ServerProcess"},
2168
- "min":1,
2169
- "max":50
2170
- },
2171
- "StringList":{
2172
- "type":"list",
2173
- "member":{"shape":"NonZeroAndMaxString"}
2174
- },
2175
- "TerminalRoutingStrategyException":{
2176
- "type":"structure",
2177
- "members":{
2178
- "Message":{"shape":"NonEmptyString"}
2179
- },
2180
- "exception":true
2181
- },
2182
- "Timestamp":{"type":"timestamp"},
2183
- "UnauthorizedException":{
2184
- "type":"structure",
2185
- "members":{
2186
- "Message":{"shape":"NonEmptyString"}
2187
- },
2188
- "exception":true
2189
- },
2190
- "UpdateAliasInput":{
2191
- "type":"structure",
2192
- "required":["AliasId"],
2193
- "members":{
2194
- "AliasId":{"shape":"AliasId"},
2195
- "Name":{"shape":"NonZeroAndMaxString"},
2196
- "Description":{"shape":"NonZeroAndMaxString"},
2197
- "RoutingStrategy":{"shape":"RoutingStrategy"}
2198
- }
2199
- },
2200
- "UpdateAliasOutput":{
2201
- "type":"structure",
2202
- "members":{
2203
- "Alias":{"shape":"Alias"}
2204
- }
2205
- },
2206
- "UpdateBuildInput":{
2207
- "type":"structure",
2208
- "required":["BuildId"],
2209
- "members":{
2210
- "BuildId":{"shape":"BuildId"},
2211
- "Name":{"shape":"NonZeroAndMaxString"},
2212
- "Version":{"shape":"NonZeroAndMaxString"}
2213
- }
2214
- },
2215
- "UpdateBuildOutput":{
2216
- "type":"structure",
2217
- "members":{
2218
- "Build":{"shape":"Build"}
2219
- }
2220
- },
2221
- "UpdateFleetAttributesInput":{
2222
- "type":"structure",
2223
- "required":["FleetId"],
2224
- "members":{
2225
- "FleetId":{"shape":"FleetId"},
2226
- "Name":{"shape":"NonZeroAndMaxString"},
2227
- "Description":{"shape":"NonZeroAndMaxString"},
2228
- "NewGameSessionProtectionPolicy":{"shape":"ProtectionPolicy"}
2229
- }
2230
- },
2231
- "UpdateFleetAttributesOutput":{
2232
- "type":"structure",
2233
- "members":{
2234
- "FleetId":{"shape":"FleetId"}
2235
- }
2236
- },
2237
- "UpdateFleetCapacityInput":{
2238
- "type":"structure",
2239
- "required":["FleetId"],
2240
- "members":{
2241
- "FleetId":{"shape":"FleetId"},
2242
- "DesiredInstances":{"shape":"WholeNumber"},
2243
- "MinSize":{"shape":"WholeNumber"},
2244
- "MaxSize":{"shape":"WholeNumber"}
2245
- }
2246
- },
2247
- "UpdateFleetCapacityOutput":{
2248
- "type":"structure",
2249
- "members":{
2250
- "FleetId":{"shape":"FleetId"}
2251
- }
2252
- },
2253
- "UpdateFleetPortSettingsInput":{
2254
- "type":"structure",
2255
- "required":["FleetId"],
2256
- "members":{
2257
- "FleetId":{"shape":"FleetId"},
2258
- "InboundPermissionAuthorizations":{"shape":"IpPermissionsList"},
2259
- "InboundPermissionRevocations":{"shape":"IpPermissionsList"}
2260
- }
2261
- },
2262
- "UpdateFleetPortSettingsOutput":{
2263
- "type":"structure",
2264
- "members":{
2265
- "FleetId":{"shape":"FleetId"}
2266
- }
2267
- },
2268
- "UpdateGameSessionInput":{
2269
- "type":"structure",
2270
- "required":["GameSessionId"],
2271
- "members":{
2272
- "GameSessionId":{"shape":"GameSessionId"},
2273
- "MaximumPlayerSessionCount":{"shape":"WholeNumber"},
2274
- "Name":{"shape":"NonZeroAndMaxString"},
2275
- "PlayerSessionCreationPolicy":{"shape":"PlayerSessionCreationPolicy"},
2276
- "ProtectionPolicy":{"shape":"ProtectionPolicy"}
2277
- }
2278
- },
2279
- "UpdateGameSessionOutput":{
2280
- "type":"structure",
2281
- "members":{
2282
- "GameSession":{"shape":"GameSession"}
2283
- }
2284
- },
2285
- "UpdateRuntimeConfigurationInput":{
2286
- "type":"structure",
2287
- "required":[
2288
- "FleetId",
2289
- "RuntimeConfiguration"
2290
- ],
2291
- "members":{
2292
- "FleetId":{"shape":"FleetId"},
2293
- "RuntimeConfiguration":{"shape":"RuntimeConfiguration"}
2294
- }
2295
- },
2296
- "UpdateRuntimeConfigurationOutput":{
2297
- "type":"structure",
2298
- "members":{
2299
- "RuntimeConfiguration":{"shape":"RuntimeConfiguration"}
2300
- }
2301
- },
2302
- "WholeNumber":{
2303
- "type":"integer",
2304
- "min":0
2305
- }
2306
- }
2307
- }