aws-sdk-core 2.8.4 → 3.129.1

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