aws-sdk-core 2.11.436 → 3.89.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1296) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +89 -582
  4. data/lib/aws-sdk-core/arn.rb +77 -0
  5. data/lib/aws-sdk-core/arn_parser.rb +38 -0
  6. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  7. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  8. data/lib/aws-sdk-core/binary.rb +6 -0
  9. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  10. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  11. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  12. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  13. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  14. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  15. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  16. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  17. data/lib/aws-sdk-core/client_stubs.rb +11 -8
  18. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  19. data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
  20. data/lib/aws-sdk-core/deprecations.rb +16 -10
  21. data/lib/aws-sdk-core/endpoint_cache.rb +14 -11
  22. data/lib/aws-sdk-core/errors.rb +146 -24
  23. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  24. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  25. data/lib/aws-sdk-core/instance_profile_credentials.rb +58 -74
  26. data/lib/aws-sdk-core/json.rb +9 -10
  27. data/lib/aws-sdk-core/json/builder.rb +4 -2
  28. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  29. data/lib/aws-sdk-core/json/handler.rb +22 -3
  30. data/lib/aws-sdk-core/json/parser.rb +1 -1
  31. data/lib/aws-sdk-core/log/formatter.rb +7 -1
  32. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  33. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  34. data/lib/aws-sdk-core/pager.rb +30 -25
  35. data/lib/aws-sdk-core/param_converter.rb +3 -3
  36. data/lib/aws-sdk-core/param_validator.rb +60 -26
  37. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  38. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  39. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  40. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  41. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  42. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  43. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  44. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
  45. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  46. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  47. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  48. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  49. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  50. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  51. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  52. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  53. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  54. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  55. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  56. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  57. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +27 -15
  58. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  59. data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
  60. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  61. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  62. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  63. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  64. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -10
  65. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  66. data/lib/aws-sdk-core/query.rb +5 -0
  67. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  68. data/lib/aws-sdk-core/query/handler.rb +20 -16
  69. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  70. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  71. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  72. data/lib/aws-sdk-core/rest.rb +10 -0
  73. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  74. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  75. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  76. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  77. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  78. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  79. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  80. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  81. data/lib/aws-sdk-core/shared_config.rb +187 -15
  82. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  83. data/lib/aws-sdk-core/structure.rb +22 -13
  84. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  85. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  86. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  87. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  88. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  89. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  90. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  91. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  92. data/lib/aws-sdk-core/util.rb +66 -0
  93. data/lib/aws-sdk-core/waiters.rb +3 -0
  94. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  95. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  96. data/lib/aws-sdk-core/xml.rb +9 -0
  97. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  98. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  99. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  100. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  101. data/lib/aws-sdk-sts.rb +45 -0
  102. data/lib/aws-sdk-sts/client.rb +2156 -0
  103. data/lib/aws-sdk-sts/client_api.rb +336 -0
  104. data/lib/aws-sdk-sts/customizations.rb +2 -0
  105. data/lib/aws-sdk-sts/errors.rb +142 -0
  106. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  107. data/lib/aws-sdk-sts/presigner.rb +67 -0
  108. data/lib/aws-sdk-sts/resource.rb +23 -0
  109. data/lib/aws-sdk-sts/types.rb +1504 -0
  110. data/lib/seahorse.rb +60 -60
  111. data/lib/seahorse/client/async_base.rb +50 -0
  112. data/lib/seahorse/client/async_response.rb +62 -0
  113. data/lib/seahorse/client/base.rb +5 -9
  114. data/lib/seahorse/client/configuration.rb +4 -2
  115. data/lib/seahorse/client/h2/connection.rb +246 -0
  116. data/lib/seahorse/client/h2/handler.rb +151 -0
  117. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  118. data/lib/seahorse/client/http/async_response.rb +42 -0
  119. data/lib/seahorse/client/http/response.rb +10 -5
  120. data/lib/seahorse/client/logging/formatter.rb +6 -2
  121. data/lib/seahorse/client/logging/handler.rb +2 -0
  122. data/lib/seahorse/client/net_http/connection_pool.rb +18 -5
  123. data/lib/seahorse/client/net_http/handler.rb +12 -1
  124. data/lib/seahorse/client/net_http/patches.rb +9 -1
  125. data/lib/seahorse/client/networking_error.rb +28 -0
  126. data/lib/seahorse/client/plugin.rb +67 -6
  127. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  128. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  129. data/lib/seahorse/client/plugins/h2.rb +64 -0
  130. data/lib/seahorse/client/plugins/logging.rb +17 -19
  131. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  132. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  133. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  134. data/lib/seahorse/client/request_context.rb +5 -0
  135. data/lib/seahorse/model/api.rb +33 -0
  136. data/lib/seahorse/model/authorizer.rb +21 -0
  137. data/lib/seahorse/model/operation.rb +11 -0
  138. data/lib/seahorse/model/shapes.rb +44 -2
  139. data/lib/seahorse/util.rb +1 -22
  140. metadata +101 -1165
  141. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -914
  142. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  143. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -34
  144. data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1128
  145. data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
  146. data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -24
  147. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  148. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  149. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  150. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  151. data/apis/acm/2015-12-08/api-2.json +0 -872
  152. data/apis/acm/2015-12-08/examples-1.json +0 -5
  153. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  154. data/apis/acm/2015-12-08/smoke.json +0 -18
  155. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  156. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4133
  157. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  158. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  159. data/apis/amplify/2017-07-25/api-2.json +0 -2374
  160. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  161. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  162. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  163. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  164. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  165. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  166. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  167. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  168. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -6379
  169. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  170. data/apis/appconfig/2019-10-09/api-2.json +0 -1391
  171. data/apis/appconfig/2019-10-09/examples-1.json +0 -5
  172. data/apis/appconfig/2019-10-09/paginators-1.json +0 -29
  173. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -786
  174. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
  175. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  176. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  177. data/apis/application-insights/2018-11-25/api-2.json +0 -1208
  178. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  179. data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
  180. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  181. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  182. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  183. data/apis/appmesh/2019-01-25/api-2.json +0 -3424
  184. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  185. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  186. data/apis/appstream/2016-12-01/api-2.json +0 -2356
  187. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  188. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  189. data/apis/appstream/2016-12-01/smoke.json +0 -11
  190. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  191. data/apis/appsync/2017-07-25/api-2.json +0 -2285
  192. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  193. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  194. data/apis/athena/2017-05-18/api-2.json +0 -989
  195. data/apis/athena/2017-05-18/examples-1.json +0 -5
  196. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  197. data/apis/athena/2017-05-18/smoke.json +0 -11
  198. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  199. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  200. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  201. data/apis/autoscaling/2011-01-01/api-2.json +0 -2464
  202. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  203. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  204. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  205. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  206. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  207. data/apis/backup/2018-11-15/api-2.json +0 -2345
  208. data/apis/backup/2018-11-15/examples-1.json +0 -5
  209. data/apis/backup/2018-11-15/paginators-1.json +0 -64
  210. data/apis/batch/2016-08-10/api-2.json +0 -1137
  211. data/apis/batch/2016-08-10/examples-1.json +0 -589
  212. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  213. data/apis/batch/2016-08-10/smoke.json +0 -11
  214. data/apis/budgets/2016-10-20/api-2.json +0 -830
  215. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  216. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  217. data/apis/ce/2017-10-25/api-2.json +0 -1633
  218. data/apis/ce/2017-10-25/examples-1.json +0 -5
  219. data/apis/ce/2017-10-25/paginators-1.json +0 -14
  220. data/apis/chime/2018-05-01/api-2.json +0 -4653
  221. data/apis/chime/2018-05-01/examples-1.json +0 -5
  222. data/apis/chime/2018-05-01/paginators-1.json +0 -59
  223. data/apis/cloud9/2017-09-23/api-2.json +0 -549
  224. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  225. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  226. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  227. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  228. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  229. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  230. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  231. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  232. data/apis/cloudformation/2010-05-15/api-2.json +0 -3389
  233. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  234. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
  235. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  236. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  237. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -257
  238. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  239. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  240. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  241. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  242. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  243. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  244. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  245. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  246. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  247. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  248. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  249. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  250. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  251. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  252. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  253. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  254. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  255. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  256. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  257. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  258. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  259. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  260. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  261. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  262. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  263. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  264. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  265. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  266. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  267. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  268. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  269. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  270. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  271. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  272. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  273. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  274. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  275. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  276. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  277. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  278. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  279. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  280. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  281. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  282. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  283. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  284. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  285. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  286. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  287. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  288. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -741
  289. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  290. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  291. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  292. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  293. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  294. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  295. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  296. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  297. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  298. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  299. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  300. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  301. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  302. data/apis/codebuild/2016-10-06/api-2.json +0 -1888
  303. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  304. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  305. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  306. data/apis/codecommit/2015-04-13/api-2.json +0 -5383
  307. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  308. data/apis/codecommit/2015-04-13/paginators-1.json +0 -64
  309. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  310. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  311. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  312. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  313. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  314. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  315. data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -351
  316. data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
  317. data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -10
  318. data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -645
  319. data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
  320. data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -14
  321. data/apis/codepipeline/2015-07-09/api-2.json +0 -2505
  322. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  323. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  324. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  325. data/apis/codestar-connections/2019-12-01/api-2.json +0 -194
  326. data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
  327. data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -9
  328. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  329. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  330. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  331. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  332. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  333. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  334. data/apis/codestar/2017-04-19/smoke.json +0 -11
  335. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
  336. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  337. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  338. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5435
  339. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  340. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  341. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  342. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  343. data/apis/comprehend/2017-11-27/api-2.json +0 -2664
  344. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  345. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  346. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -924
  347. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  348. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  349. data/apis/compute-optimizer/2019-11-01/api-2.json +0 -571
  350. data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
  351. data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
  352. data/apis/config/2014-11-12/api-2.json +0 -4340
  353. data/apis/config/2014-11-12/examples-1.json +0 -5
  354. data/apis/config/2014-11-12/paginators-1.json +0 -21
  355. data/apis/config/2014-11-12/smoke.json +0 -19
  356. data/apis/connect/2017-08-08/api-2.json +0 -2139
  357. data/apis/connect/2017-08-08/examples-1.json +0 -5
  358. data/apis/connect/2017-08-08/paginators-1.json +0 -62
  359. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  360. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  361. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  362. data/apis/cur/2017-01-06/api-2.json +0 -277
  363. data/apis/cur/2017-01-06/examples-1.json +0 -102
  364. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  365. data/apis/cur/2017-01-06/smoke.json +0 -11
  366. data/apis/dataexchange/2017-07-25/api-2.json +0 -2263
  367. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  368. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  369. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  370. data/apis/datasync/2018-11-09/api-2.json +0 -1451
  371. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  372. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  373. data/apis/dax/2017-04-19/api-2.json +0 -1140
  374. data/apis/dax/2017-04-19/examples-1.json +0 -5
  375. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  376. data/apis/detective/2018-10-26/api-2.json +0 -447
  377. data/apis/detective/2018-10-26/examples-1.json +0 -5
  378. data/apis/detective/2018-10-26/paginators-1.json +0 -19
  379. data/apis/devicefarm/2015-06-23/api-2.json +0 -3619
  380. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  381. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -97
  382. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  383. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  384. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  385. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  386. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  387. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  388. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  389. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  390. data/apis/discovery/2015-11-01/smoke.json +0 -11
  391. data/apis/dlm/2018-01-12/api-2.json +0 -687
  392. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  393. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  394. data/apis/dms/2016-01-01/api-2.json +0 -2296
  395. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  396. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  397. data/apis/dms/2016-01-01/smoke.json +0 -18
  398. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  399. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  400. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  401. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  402. data/apis/docdb/2014-10-31/smoke.json +0 -18
  403. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  404. data/apis/ds/2015-04-16/api-2.json +0 -3018
  405. data/apis/ds/2015-04-16/examples-1.json +0 -5
  406. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  407. data/apis/ds/2015-04-16/smoke.json +0 -20
  408. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  409. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  410. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  411. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  412. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  413. data/apis/dynamodb/2012-08-10/api-2.json +0 -3182
  414. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  415. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -31
  416. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  417. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  418. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  419. data/apis/ebs/2019-11-02/api-2.json +0 -277
  420. data/apis/ebs/2019-11-02/examples-1.json +0 -5
  421. data/apis/ebs/2019-11-02/paginators-1.json +0 -14
  422. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  423. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  424. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  425. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  426. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  427. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  428. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  429. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  430. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  431. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  432. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  433. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  434. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  435. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  436. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  437. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  438. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  439. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  440. data/apis/ec2/2016-11-15/api-2.json +0 -29112
  441. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  442. data/apis/ec2/2016-11-15/paginators-1.json +0 -474
  443. data/apis/ec2/2016-11-15/resources-1.json +0 -2688
  444. data/apis/ec2/2016-11-15/smoke.json +0 -20
  445. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  446. data/apis/ecr/2015-09-21/api-2.json +0 -1615
  447. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  448. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  449. data/apis/ecr/2015-09-21/smoke.json +0 -18
  450. data/apis/ecr/2015-09-21/waiters-2.json +0 -45
  451. data/apis/ecs/2014-11-13/api-2.json +0 -3150
  452. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  453. data/apis/ecs/2014-11-13/paginators-1.json +0 -52
  454. data/apis/ecs/2014-11-13/smoke.json +0 -18
  455. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  456. data/apis/eks/2017-11-01/api-2.json +0 -1434
  457. data/apis/eks/2017-11-01/examples-1.json +0 -135
  458. data/apis/eks/2017-11-01/paginators-1.json +0 -28
  459. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  460. data/apis/elastic-inference/2017-07-25/api-2.json +0 -174
  461. data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
  462. data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -4
  463. data/apis/elasticache/2015-02-02/api-2.json +0 -3301
  464. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  465. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  466. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  467. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  468. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  469. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  470. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  471. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  472. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1370
  473. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  474. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -24
  475. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  476. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  477. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  478. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  479. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  480. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  481. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2346
  482. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  483. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  484. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  485. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  486. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2241
  487. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  488. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  489. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  490. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  491. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  492. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  493. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  494. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  495. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  496. data/apis/email/2010-12-01/api-2.json +0 -3182
  497. data/apis/email/2010-12-01/examples-1.json +0 -1021
  498. data/apis/email/2010-12-01/paginators-1.json +0 -18
  499. data/apis/email/2010-12-01/smoke.json +0 -18
  500. data/apis/email/2010-12-01/waiters-2.json +0 -18
  501. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  502. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  503. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  504. data/apis/es/2015-01-01/api-2.json +0 -1584
  505. data/apis/es/2015-01-01/examples-1.json +0 -5
  506. data/apis/es/2015-01-01/paginators-1.json +0 -29
  507. data/apis/es/2015-01-01/smoke.json +0 -18
  508. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  509. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  510. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  511. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  512. data/apis/events/2015-10-07/api-2.json +0 -1462
  513. data/apis/events/2015-10-07/examples-1.json +0 -5
  514. data/apis/events/2015-10-07/paginators-1.json +0 -4
  515. data/apis/events/2015-10-07/smoke.json +0 -18
  516. data/apis/firehose/2015-08-04/api-2.json +0 -1445
  517. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  518. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  519. data/apis/firehose/2015-08-04/smoke.json +0 -18
  520. data/apis/fms/2018-01-01/api-2.json +0 -829
  521. data/apis/fms/2018-01-01/examples-1.json +0 -5
  522. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  523. data/apis/forecast/2018-06-26/api-2.json +0 -1418
  524. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  525. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  526. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  527. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  528. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  529. data/apis/frauddetector/2019-11-15/api-2.json +0 -1541
  530. data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
  531. data/apis/frauddetector/2019-11-15/paginators-1.json +0 -39
  532. data/apis/fsx/2018-03-01/api-2.json +0 -1340
  533. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  534. data/apis/fsx/2018-03-01/paginators-1.json +0 -19
  535. data/apis/gamelift/2015-10-01/api-2.json +0 -3695
  536. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  537. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  538. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  539. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  540. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  541. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  542. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  543. data/apis/glacier/2012-06-01/smoke.json +0 -18
  544. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  545. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
  546. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  547. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  548. data/apis/glue/2017-03-31/api-2.json +0 -6302
  549. data/apis/glue/2017-03-31/examples-1.json +0 -5
  550. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  551. data/apis/glue/2017-03-31/smoke.json +0 -11
  552. data/apis/greengrass/2017-06-07/api-2.json +0 -5124
  553. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  554. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  555. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  556. data/apis/guardduty/2017-11-28/api-2.json +0 -3508
  557. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  558. data/apis/guardduty/2017-11-28/paginators-1.json +0 -51
  559. data/apis/health/2016-08-04/api-2.json +0 -836
  560. data/apis/health/2016-08-04/examples-1.json +0 -5
  561. data/apis/health/2016-08-04/paginators-1.json +0 -52
  562. data/apis/health/2016-08-04/smoke.json +0 -11
  563. data/apis/iam/2010-05-08/api-2.json +0 -5797
  564. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  565. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  566. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  567. data/apis/iam/2010-05-08/smoke.json +0 -18
  568. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  569. data/apis/imagebuilder/2019-12-02/api-2.json +0 -2387
  570. data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
  571. data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
  572. data/apis/importexport/2010-06-01/api-2.json +0 -667
  573. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  574. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  575. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  576. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  577. data/apis/inspector/2016-02-16/smoke.json +0 -18
  578. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  579. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  580. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  581. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  582. data/apis/iot/2015-05-28/api-2.json +0 -11061
  583. data/apis/iot/2015-05-28/examples-1.json +0 -5
  584. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  585. data/apis/iot/2015-05-28/smoke.json +0 -18
  586. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  587. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  588. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  589. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  590. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
  591. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  592. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  593. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  594. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  595. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  596. data/apis/iotevents/2018-07-27/api-2.json +0 -1144
  597. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  598. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  599. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -388
  600. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  601. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  602. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  603. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  604. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  605. data/apis/kafka/2018-11-14/api-2.json +0 -2113
  606. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  607. data/apis/kendra/2019-02-03/api-2.json +0 -1738
  608. data/apis/kendra/2019-02-03/examples-1.json +0 -5
  609. data/apis/kendra/2019-02-03/paginators-1.json +0 -19
  610. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -418
  611. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  612. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  613. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  614. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  615. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  616. data/apis/kinesis-video-signaling/2019-12-04/api-2.json +0 -200
  617. data/apis/kinesis-video-signaling/2019-12-04/examples-1.json +0 -5
  618. data/apis/kinesis-video-signaling/2019-12-04/paginators-1.json +0 -4
  619. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  620. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  621. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  622. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  623. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  624. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  625. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  626. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  627. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2266
  628. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  629. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  630. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -954
  631. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  632. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -16
  633. data/apis/kms/2014-11-01/api-2.json +0 -2154
  634. data/apis/kms/2014-11-01/examples-1.json +0 -906
  635. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  636. data/apis/kms/2014-11-01/smoke.json +0 -19
  637. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  638. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  639. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  640. data/apis/lambda/2014-11-11/api-2.json +0 -668
  641. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  642. data/apis/lambda/2015-03-31/api-2.json +0 -2944
  643. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  644. data/apis/lambda/2015-03-31/paginators-1.json +0 -52
  645. data/apis/lambda/2015-03-31/smoke.json +0 -18
  646. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  647. data/apis/lex-models/2017-04-19/api-2.json +0 -2363
  648. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  649. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  650. data/apis/license-manager/2018-08-01/api-2.json +0 -886
  651. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  652. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  653. data/apis/lightsail/2016-11-28/api-2.json +0 -5017
  654. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  655. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  656. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  657. data/apis/logs/2014-03-28/api-2.json +0 -1701
  658. data/apis/logs/2014-03-28/examples-1.json +0 -5
  659. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  660. data/apis/logs/2014-03-28/smoke.json +0 -19
  661. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  662. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  663. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  664. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  665. data/apis/macie/2017-12-19/api-2.json +0 -365
  666. data/apis/macie/2017-12-19/examples-1.json +0 -5
  667. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  668. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  669. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  670. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  671. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
  672. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  673. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  674. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  675. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  676. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  677. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  678. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
  679. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  680. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8684
  681. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  682. data/apis/medialive/2017-10-14/api-2.json +0 -10694
  683. data/apis/medialive/2017-10-14/paginators-1.json +0 -52
  684. data/apis/medialive/2017-10-14/waiters-2.json +0 -217
  685. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1526
  686. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  687. data/apis/mediapackage/2017-10-12/api-2.json +0 -2516
  688. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  689. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  690. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  691. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  692. data/apis/mediastore/2017-09-01/api-2.json +0 -737
  693. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  694. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  695. data/apis/mediatailor/2018-04-23/api-2.json +0 -544
  696. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  697. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
  698. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  699. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  700. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -207
  701. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  702. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  703. data/apis/mobile/2017-07-01/api-2.json +0 -551
  704. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  705. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  706. data/apis/monitoring/2010-08-01/api-2.json +0 -1876
  707. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  708. data/apis/monitoring/2010-08-01/paginators-1.json +0 -43
  709. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  710. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  711. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  712. data/apis/mq/2017-11-27/api-2.json +0 -2577
  713. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  714. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  715. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  716. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  717. data/apis/neptune/2014-10-31/api-2.json +0 -3523
  718. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  719. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  720. data/apis/neptune/2014-10-31/smoke.json +0 -18
  721. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  722. data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
  723. data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
  724. data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
  725. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  726. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  727. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  728. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  729. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  730. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  731. data/apis/opsworkscm/2016-11-01/api-2.json +0 -947
  732. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  733. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  734. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  735. data/apis/organizations/2016-11-28/api-2.json +0 -2401
  736. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  737. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  738. data/apis/outposts/2019-12-03/api-2.json +0 -367
  739. data/apis/outposts/2019-12-03/examples-1.json +0 -5
  740. data/apis/outposts/2019-12-03/paginators-1.json +0 -14
  741. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  742. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  743. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  744. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -147
  745. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  746. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  747. data/apis/personalize/2018-05-22/api-2.json +0 -1863
  748. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  749. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  750. data/apis/pi/2018-02-27/api-2.json +0 -253
  751. data/apis/pi/2018-02-27/examples-1.json +0 -5
  752. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  753. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  754. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  755. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  756. data/apis/pinpoint/2016-12-01/api-2.json +0 -11495
  757. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  758. data/apis/polly/2016-06-10/api-2.json +0 -832
  759. data/apis/polly/2016-06-10/examples-1.json +0 -171
  760. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  761. data/apis/polly/2016-06-10/smoke.json +0 -11
  762. data/apis/pricing/2017-10-15/api-2.json +0 -227
  763. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  764. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  765. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  766. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  767. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  768. data/apis/qldb/2019-01-02/api-2.json +0 -776
  769. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  770. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  771. data/apis/quicksight/2018-04-01/api-2.json +0 -5482
  772. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  773. data/apis/quicksight/2018-04-01/paginators-1.json +0 -44
  774. data/apis/ram/2018-01-04/api-2.json +0 -1272
  775. data/apis/ram/2018-01-04/examples-1.json +0 -5
  776. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  777. data/apis/rds-data/2018-08-01/api-2.json +0 -552
  778. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  779. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  780. data/apis/rds/2013-01-10/api-2.json +0 -2903
  781. data/apis/rds/2013-01-10/examples-1.json +0 -5
  782. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  783. data/apis/rds/2013-01-10/smoke.json +0 -18
  784. data/apis/rds/2013-02-12/api-2.json +0 -3059
  785. data/apis/rds/2013-02-12/examples-1.json +0 -5
  786. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  787. data/apis/rds/2013-02-12/smoke.json +0 -18
  788. data/apis/rds/2013-09-09/api-2.json +0 -3160
  789. data/apis/rds/2013-09-09/examples-1.json +0 -5
  790. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  791. data/apis/rds/2013-09-09/smoke.json +0 -18
  792. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  793. data/apis/rds/2014-09-01/api-2.json +0 -3273
  794. data/apis/rds/2014-09-01/examples-1.json +0 -5
  795. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  796. data/apis/rds/2014-09-01/smoke.json +0 -18
  797. data/apis/rds/2014-10-31/api-2.json +0 -7646
  798. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  799. data/apis/rds/2014-10-31/paginators-1.json +0 -164
  800. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  801. data/apis/rds/2014-10-31/smoke.json +0 -18
  802. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  803. data/apis/rds/2015-11-12/api-2.json +0 -5509
  804. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  805. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  806. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  807. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  808. data/apis/redshift/2012-12-01/api-2.json +0 -5263
  809. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  810. data/apis/redshift/2012-12-01/paginators-1.json +0 -106
  811. data/apis/redshift/2012-12-01/smoke.json +0 -18
  812. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  813. data/apis/rekognition/2016-06-27/api-2.json +0 -2659
  814. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  815. data/apis/rekognition/2016-06-27/paginators-1.json +0 -63
  816. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  817. data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
  818. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  819. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  820. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  821. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
  822. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  823. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
  824. data/apis/robomaker/2018-06-29/api-2.json +0 -2160
  825. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  826. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  827. data/apis/route53/2013-04-01/api-2.json +0 -3780
  828. data/apis/route53/2013-04-01/examples-1.json +0 -762
  829. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  830. data/apis/route53/2013-04-01/smoke.json +0 -18
  831. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  832. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  833. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  834. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  835. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  836. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  837. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  838. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  839. data/apis/runtime.lex/2016-11-28/api-2.json +0 -714
  840. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  841. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  842. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -165
  843. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  844. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  845. data/apis/s3/2006-03-01/api-2.json +0 -6653
  846. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  847. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  848. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  849. data/apis/s3/2006-03-01/smoke.json +0 -11
  850. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  851. data/apis/s3control/2018-08-20/api-2.json +0 -1377
  852. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  853. data/apis/s3control/2018-08-20/paginators-1.json +0 -14
  854. data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -367
  855. data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
  856. data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
  857. data/apis/sagemaker/2017-07-24/api-2.json +0 -9199
  858. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  859. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -196
  860. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
  861. data/apis/savingsplans/2019-06-28/api-2.json +0 -749
  862. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  863. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  864. data/apis/schemas/2019-12-02/api-2.json +0 -2700
  865. data/apis/schemas/2019-12-02/paginators-1.json +0 -34
  866. data/apis/schemas/2019-12-02/waiters-2.json +0 -36
  867. data/apis/sdb/2009-04-15/api-2.json +0 -955
  868. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  869. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  870. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  871. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  872. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  873. data/apis/securityhub/2018-10-26/api-2.json +0 -2443
  874. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  875. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  876. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1806
  877. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  878. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  879. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  880. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  881. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  882. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  883. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  884. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  885. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  886. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  887. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  888. data/apis/sesv2/2019-09-27/api-2.json +0 -2433
  889. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  890. data/apis/sesv2/2019-09-27/paginators-1.json +0 -39
  891. data/apis/shield/2016-06-02/api-2.json +0 -893
  892. data/apis/shield/2016-06-02/examples-1.json +0 -5
  893. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  894. data/apis/shield/2016-06-02/smoke.json +0 -11
  895. data/apis/signer/2017-08-25/api-2.json +0 -817
  896. data/apis/signer/2017-08-25/examples-1.json +0 -5
  897. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  898. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  899. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  900. data/apis/sms/2016-10-24/api-2.json +0 -1366
  901. data/apis/sms/2016-10-24/examples-1.json +0 -5
  902. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  903. data/apis/sms/2016-10-24/smoke.json +0 -18
  904. data/apis/snowball/2016-06-30/api-2.json +0 -955
  905. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  906. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  907. data/apis/snowball/2016-06-30/smoke.json +0 -11
  908. data/apis/sns/2010-03-31/api-2.json +0 -1468
  909. data/apis/sns/2010-03-31/examples-1.json +0 -5
  910. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  911. data/apis/sns/2010-03-31/resources-1.json +0 -327
  912. data/apis/sns/2010-03-31/smoke.json +0 -19
  913. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  914. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  915. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  916. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  917. data/apis/sqs/2012-11-05/smoke.json +0 -18
  918. data/apis/ssm/2014-11-06/api-2.json +0 -9210
  919. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  920. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  921. data/apis/ssm/2014-11-06/smoke.json +0 -18
  922. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  923. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  924. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  925. data/apis/sso/2019-06-10/api-2.json +0 -281
  926. data/apis/sso/2019-06-10/examples-1.json +0 -5
  927. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  928. data/apis/states/2016-11-23/api-2.json +0 -1476
  929. data/apis/states/2016-11-23/examples-1.json +0 -5
  930. data/apis/states/2016-11-23/paginators-1.json +0 -28
  931. data/apis/states/2016-11-23/smoke.json +0 -11
  932. data/apis/storagegateway/2013-06-30/api-2.json +0 -3259
  933. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  934. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  935. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  936. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  937. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  938. data/apis/sts/2011-06-15/api-2.json +0 -598
  939. data/apis/sts/2011-06-15/examples-1.json +0 -271
  940. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  941. data/apis/sts/2011-06-15/smoke.json +0 -19
  942. data/apis/support/2013-04-15/api-2.json +0 -773
  943. data/apis/support/2013-04-15/examples-1.json +0 -5
  944. data/apis/support/2013-04-15/paginators-1.json +0 -25
  945. data/apis/support/2013-04-15/smoke.json +0 -22
  946. data/apis/swf/2012-01-25/api-2.json +0 -2792
  947. data/apis/swf/2012-01-25/examples-1.json +0 -5
  948. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  949. data/apis/textract/2018-06-27/api-2.json +0 -653
  950. data/apis/textract/2018-06-27/examples-1.json +0 -5
  951. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  952. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
  953. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  954. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  955. data/apis/transcribe/2017-10-26/api-2.json +0 -740
  956. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  957. data/apis/transcribe/2017-10-26/paginators-1.json +0 -19
  958. data/apis/transfer/2018-11-05/api-2.json +0 -964
  959. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  960. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  961. data/apis/translate/2017-07-01/api-2.json +0 -658
  962. data/apis/translate/2017-07-01/examples-1.json +0 -5
  963. data/apis/translate/2017-07-01/paginators-1.json +0 -14
  964. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  965. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  966. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  967. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  968. data/apis/waf/2015-08-24/api-2.json +0 -3857
  969. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  970. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  971. data/apis/waf/2015-08-24/smoke.json +0 -21
  972. data/apis/wafv2/2019-07-29/api-2.json +0 -2418
  973. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  974. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  975. data/apis/wafv2/2019-07-29/smoke.json +0 -21
  976. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  977. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  978. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  979. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  980. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  981. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  982. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  983. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  984. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  985. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  986. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  987. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  988. data/apis/workspaces/2015-04-08/api-2.json +0 -2029
  989. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  990. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  991. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  992. data/apis/xray/2016-04-12/api-2.json +0 -1352
  993. data/apis/xray/2016-04-12/examples-1.json +0 -5
  994. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  995. data/bin/aws.rb +0 -180
  996. data/endpoints.json +0 -5901
  997. data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
  998. data/lib/aws-sdk-core/acm.rb +0 -7
  999. data/lib/aws-sdk-core/acmpca.rb +0 -7
  1000. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  1001. data/lib/aws-sdk-core/amplify.rb +0 -6
  1002. data/lib/aws-sdk-core/api/builder.rb +0 -129
  1003. data/lib/aws-sdk-core/api/customizations.rb +0 -304
  1004. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  1005. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  1006. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  1007. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  1008. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  1009. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  1010. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  1011. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  1012. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  1013. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  1014. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  1015. data/lib/aws-sdk-core/apigateway.rb +0 -6
  1016. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  1017. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  1018. data/lib/aws-sdk-core/appconfig.rb +0 -6
  1019. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  1020. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  1021. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  1022. data/lib/aws-sdk-core/appmesh.rb +0 -6
  1023. data/lib/aws-sdk-core/appstream.rb +0 -7
  1024. data/lib/aws-sdk-core/appsync.rb +0 -6
  1025. data/lib/aws-sdk-core/athena.rb +0 -6
  1026. data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
  1027. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  1028. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  1029. data/lib/aws-sdk-core/backup.rb +0 -6
  1030. data/lib/aws-sdk-core/batch.rb +0 -6
  1031. data/lib/aws-sdk-core/budgets.rb +0 -6
  1032. data/lib/aws-sdk-core/checksums.rb +0 -51
  1033. data/lib/aws-sdk-core/chime.rb +0 -6
  1034. data/lib/aws-sdk-core/client.rb +0 -62
  1035. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  1036. data/lib/aws-sdk-core/cloud9.rb +0 -6
  1037. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  1038. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  1039. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  1040. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  1041. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  1042. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  1043. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  1044. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  1045. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  1046. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  1047. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  1048. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  1049. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  1050. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  1051. data/lib/aws-sdk-core/codebuild.rb +0 -6
  1052. data/lib/aws-sdk-core/codecommit.rb +0 -6
  1053. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  1054. data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
  1055. data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
  1056. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  1057. data/lib/aws-sdk-core/codestar.rb +0 -6
  1058. data/lib/aws-sdk-core/codestarconnections.rb +0 -6
  1059. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1060. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1061. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1062. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1063. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1064. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1065. data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
  1066. data/lib/aws-sdk-core/configservice.rb +0 -6
  1067. data/lib/aws-sdk-core/connect.rb +0 -6
  1068. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1069. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1070. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1071. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1072. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1073. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1074. data/lib/aws-sdk-core/datasync.rb +0 -6
  1075. data/lib/aws-sdk-core/dax.rb +0 -6
  1076. data/lib/aws-sdk-core/detective.rb +0 -6
  1077. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1078. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1079. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1080. data/lib/aws-sdk-core/dlm.rb +0 -6
  1081. data/lib/aws-sdk-core/docdb.rb +0 -7
  1082. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1083. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1084. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1085. data/lib/aws-sdk-core/ebs.rb +0 -6
  1086. data/lib/aws-sdk-core/ec2.rb +0 -8
  1087. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1088. data/lib/aws-sdk-core/ecr.rb +0 -7
  1089. data/lib/aws-sdk-core/ecs.rb +0 -7
  1090. data/lib/aws-sdk-core/efs.rb +0 -6
  1091. data/lib/aws-sdk-core/eks.rb +0 -7
  1092. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1093. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1094. data/lib/aws-sdk-core/elasticinference.rb +0 -6
  1095. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1096. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1097. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1098. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1099. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1100. data/lib/aws-sdk-core/emr.rb +0 -7
  1101. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1102. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1103. data/lib/aws-sdk-core/firehose.rb +0 -6
  1104. data/lib/aws-sdk-core/fms.rb +0 -6
  1105. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1106. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1107. data/lib/aws-sdk-core/frauddetector.rb +0 -6
  1108. data/lib/aws-sdk-core/fsx.rb +0 -6
  1109. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1110. data/lib/aws-sdk-core/glacier.rb +0 -8
  1111. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1112. data/lib/aws-sdk-core/glue.rb +0 -6
  1113. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1114. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1115. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1116. data/lib/aws-sdk-core/health.rb +0 -6
  1117. data/lib/aws-sdk-core/iam.rb +0 -8
  1118. data/lib/aws-sdk-core/imagebuilder.rb +0 -6
  1119. data/lib/aws-sdk-core/importexport.rb +0 -5
  1120. data/lib/aws-sdk-core/inspector.rb +0 -6
  1121. data/lib/aws-sdk-core/iot.rb +0 -6
  1122. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1123. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1124. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1125. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1126. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1127. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1128. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1129. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1130. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1131. data/lib/aws-sdk-core/kafka.rb +0 -5
  1132. data/lib/aws-sdk-core/kendra.rb +0 -6
  1133. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1134. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1135. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1136. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1137. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1138. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1139. data/lib/aws-sdk-core/kinesisvideosignalingchannels.rb +0 -6
  1140. data/lib/aws-sdk-core/kms.rb +0 -6
  1141. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1142. data/lib/aws-sdk-core/lambda.rb +0 -7
  1143. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1144. data/lib/aws-sdk-core/lex.rb +0 -6
  1145. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1146. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1147. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1148. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1149. data/lib/aws-sdk-core/macie.rb +0 -6
  1150. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1151. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1152. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1153. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1154. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1155. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1156. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1157. data/lib/aws-sdk-core/medialive.rb +0 -6
  1158. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1159. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1160. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1161. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1162. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1163. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1164. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1165. data/lib/aws-sdk-core/mobile.rb +0 -6
  1166. data/lib/aws-sdk-core/mq.rb +0 -5
  1167. data/lib/aws-sdk-core/mturk.rb +0 -6
  1168. data/lib/aws-sdk-core/neptune.rb +0 -7
  1169. data/lib/aws-sdk-core/networkmanager.rb +0 -6
  1170. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1171. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1172. data/lib/aws-sdk-core/organizations.rb +0 -6
  1173. data/lib/aws-sdk-core/outposts.rb +0 -6
  1174. data/lib/aws-sdk-core/partitions.rb +0 -174
  1175. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1176. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1177. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1178. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1179. data/lib/aws-sdk-core/personalize.rb +0 -6
  1180. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1181. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1182. data/lib/aws-sdk-core/pi.rb +0 -6
  1183. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1184. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1185. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1186. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1187. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1188. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1189. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1190. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1191. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1192. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1193. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1194. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1195. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1196. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1197. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1198. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1199. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1200. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1201. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1202. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1203. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1204. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1205. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1206. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1207. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1208. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1209. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1210. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1211. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1212. data/lib/aws-sdk-core/plugins/s3_iad_regional_endpoint.rb +0 -58
  1213. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1214. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1215. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1216. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1217. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1218. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1219. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1220. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1221. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1222. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1223. data/lib/aws-sdk-core/polly.rb +0 -14
  1224. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1225. data/lib/aws-sdk-core/pricing.rb +0 -6
  1226. data/lib/aws-sdk-core/qldb.rb +0 -6
  1227. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1228. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1229. data/lib/aws-sdk-core/ram.rb +0 -6
  1230. data/lib/aws-sdk-core/rds.rb +0 -16
  1231. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1232. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1233. data/lib/aws-sdk-core/redshift.rb +0 -7
  1234. data/lib/aws-sdk-core/rekognition.rb +0 -7
  1235. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1236. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1237. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1238. data/lib/aws-sdk-core/route53.rb +0 -7
  1239. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1240. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1241. data/lib/aws-sdk-core/s3.rb +0 -26
  1242. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1243. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1244. data/lib/aws-sdk-core/s3control.rb +0 -6
  1245. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1246. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1247. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1248. data/lib/aws-sdk-core/schemas.rb +0 -6
  1249. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1250. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1251. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1252. data/lib/aws-sdk-core/service.rb +0 -4
  1253. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1254. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1255. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1256. data/lib/aws-sdk-core/ses.rb +0 -7
  1257. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1258. data/lib/aws-sdk-core/shield.rb +0 -6
  1259. data/lib/aws-sdk-core/signer.rb +0 -7
  1260. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1261. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1262. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1263. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1264. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1265. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1266. data/lib/aws-sdk-core/sms.rb +0 -6
  1267. data/lib/aws-sdk-core/snowball.rb +0 -6
  1268. data/lib/aws-sdk-core/sns.rb +0 -7
  1269. data/lib/aws-sdk-core/sqs.rb +0 -7
  1270. data/lib/aws-sdk-core/ssm.rb +0 -6
  1271. data/lib/aws-sdk-core/sso.rb +0 -6
  1272. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1273. data/lib/aws-sdk-core/states.rb +0 -6
  1274. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1275. data/lib/aws-sdk-core/sts.rb +0 -6
  1276. data/lib/aws-sdk-core/support.rb +0 -6
  1277. data/lib/aws-sdk-core/swf.rb +0 -6
  1278. data/lib/aws-sdk-core/textract.rb +0 -6
  1279. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1280. data/lib/aws-sdk-core/transfer.rb +0 -6
  1281. data/lib/aws-sdk-core/translate.rb +0 -6
  1282. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1283. data/lib/aws-sdk-core/version.rb +0 -3
  1284. data/lib/aws-sdk-core/waf.rb +0 -6
  1285. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1286. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1287. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1288. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1289. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1290. data/lib/aws-sdk-core/worklink.rb +0 -6
  1291. data/lib/aws-sdk-core/workmail.rb +0 -6
  1292. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1293. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1294. data/lib/aws-sdk-core/xray.rb +0 -6
  1295. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1296. data/service-models.json +0 -881
@@ -1,384 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- "CreateBackup": [
5
- {
6
- "input": {
7
- "FileSystemId": "fs-0498eed5fe91001ec",
8
- "Tags": [
9
- {
10
- "Key": "Name",
11
- "Value": "MyBackup"
12
- }
13
- ]
14
- },
15
- "output": {
16
- "Backup": {
17
- "BackupId": "backup-03e3c82e0183b7b6b",
18
- "CreationTime": "1481841524.0",
19
- "FileSystem": {
20
- "FileSystemId": "fs-0498eed5fe91001ec",
21
- "OwnerId": "012345678912",
22
- "StorageCapacity": 300,
23
- "WindowsConfiguration": {
24
- "ActiveDirectoryId": "d-1234abcd12",
25
- "AutomaticBackupRetentionDays": 30,
26
- "DailyAutomaticBackupStartTime": "05:00",
27
- "WeeklyMaintenanceStartTime": "1:05:00"
28
- }
29
- },
30
- "Lifecycle": "CREATING",
31
- "ProgressPercent": 0,
32
- "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:backup/backup-03e3c82e0183b7b6b",
33
- "Tags": [
34
- {
35
- "Key": "Name",
36
- "Value": "MyBackup"
37
- }
38
- ],
39
- "Type": "USER_INITIATED"
40
- }
41
- },
42
- "comments": {
43
- },
44
- "description": "This operation creates a new backup.",
45
- "id": "to-create-a-new-backup-1481840798597",
46
- "title": "To create a new backup"
47
- }
48
- ],
49
- "CreateFileSystem": [
50
- {
51
- "input": {
52
- "ClientRequestToken": "a8ca07e4-61ec-4399-99f4-19853801bcd5",
53
- "FileSystemType": "WINDOWS",
54
- "KmsKeyId": "arn:aws:kms:us-east-1:012345678912:key/0ff3ea8d-130e-4133-877f-93908b6fdbd6",
55
- "SecurityGroupIds": [
56
- "sg-edcd9784"
57
- ],
58
- "StorageCapacity": 300,
59
- "SubnetIds": [
60
- "subnet-1234abcd"
61
- ],
62
- "Tags": [
63
- {
64
- "Key": "Name",
65
- "Value": "MyFileSystem"
66
- }
67
- ],
68
- "WindowsConfiguration": {
69
- "ActiveDirectoryId": "d-1234abcd12",
70
- "AutomaticBackupRetentionDays": 30,
71
- "DailyAutomaticBackupStartTime": "05:00",
72
- "ThroughputCapacity": 8,
73
- "WeeklyMaintenanceStartTime": "1:05:00"
74
- }
75
- },
76
- "output": {
77
- "FileSystem": {
78
- "CreationTime": "1481841524.0",
79
- "DNSName": "fs-0498eed5fe91001ec.fsx.com",
80
- "FileSystemId": "fs-0498eed5fe91001ec",
81
- "KmsKeyId": "arn:aws:kms:us-east-1:012345678912:key/0ff3ea8d-130e-4133-877f-93908b6fdbd6",
82
- "Lifecycle": "CREATING",
83
- "OwnerId": "012345678912",
84
- "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec",
85
- "StorageCapacity": 300,
86
- "SubnetIds": [
87
- "subnet-1234abcd"
88
- ],
89
- "Tags": [
90
- {
91
- "Key": "Name",
92
- "Value": "MyFileSystem"
93
- }
94
- ],
95
- "VpcId": "vpc-ab1234cd",
96
- "WindowsConfiguration": {
97
- "ActiveDirectoryId": "d-1234abcd12",
98
- "AutomaticBackupRetentionDays": 30,
99
- "DailyAutomaticBackupStartTime": "05:00",
100
- "ThroughputCapacity": 8,
101
- "WeeklyMaintenanceStartTime": "1:05:00"
102
- }
103
- }
104
- },
105
- "comments": {
106
- },
107
- "description": "This operation creates a new file system.",
108
- "id": "to-create-a-new-file-system-1481840798547",
109
- "title": "To create a new file system"
110
- }
111
- ],
112
- "CreateFileSystemFromBackup": [
113
- {
114
- "input": {
115
- "BackupId": "backup-03e3c82e0183b7b6b",
116
- "ClientRequestToken": "f4c94ed7-238d-4c46-93db-48cd62ec33b7",
117
- "SecurityGroupIds": [
118
- "sg-edcd9784"
119
- ],
120
- "SubnetIds": [
121
- "subnet-1234abcd"
122
- ],
123
- "Tags": [
124
- {
125
- "Key": "Name",
126
- "Value": "MyFileSystem"
127
- }
128
- ],
129
- "WindowsConfiguration": {
130
- "ThroughputCapacity": 8
131
- }
132
- },
133
- "output": {
134
- "FileSystem": {
135
- "CreationTime": "1481841524.0",
136
- "DNSName": "fs-0498eed5fe91001ec.fsx.com",
137
- "FileSystemId": "fs-0498eed5fe91001ec",
138
- "KmsKeyId": "arn:aws:kms:us-east-1:012345678912:key/0ff3ea8d-130e-4133-877f-93908b6fdbd6",
139
- "Lifecycle": "CREATING",
140
- "OwnerId": "012345678912",
141
- "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec",
142
- "StorageCapacity": 300,
143
- "SubnetIds": [
144
- "subnet-1234abcd"
145
- ],
146
- "Tags": [
147
- {
148
- "Key": "Name",
149
- "Value": "MyFileSystem"
150
- }
151
- ],
152
- "VpcId": "vpc-ab1234cd",
153
- "WindowsConfiguration": {
154
- "ActiveDirectoryId": "d-1234abcd12",
155
- "AutomaticBackupRetentionDays": 30,
156
- "DailyAutomaticBackupStartTime": "05:00",
157
- "ThroughputCapacity": 8,
158
- "WeeklyMaintenanceStartTime": "1:05:00"
159
- }
160
- }
161
- },
162
- "comments": {
163
- },
164
- "description": "This operation creates a new file system from backup.",
165
- "id": "to-create-a-new-file-system-from-backup-1481840798598",
166
- "title": "To create a new file system from backup"
167
- }
168
- ],
169
- "DeleteBackup": [
170
- {
171
- "input": {
172
- "BackupId": "backup-03e3c82e0183b7b6b"
173
- },
174
- "output": {
175
- "BackupId": "backup-03e3c82e0183b7b6b",
176
- "Lifecycle": "DELETED"
177
- },
178
- "comments": {
179
- },
180
- "description": "This operation deletes an Amazon FSx file system backup.",
181
- "id": "to-delete-a-file-system-1481847318399",
182
- "title": "To delete a backup"
183
- }
184
- ],
185
- "DeleteFileSystem": [
186
- {
187
- "input": {
188
- "FileSystemId": "fs-0498eed5fe91001ec"
189
- },
190
- "output": {
191
- "FileSystemId": "fs-0498eed5fe91001ec",
192
- "Lifecycle": "DELETING"
193
- },
194
- "comments": {
195
- },
196
- "description": "This operation deletes an Amazon FSx file system.",
197
- "id": "to-delete-a-file-system-1481847318348",
198
- "title": "To delete a file system"
199
- }
200
- ],
201
- "DescribeBackups": [
202
- {
203
- "input": {
204
- },
205
- "output": {
206
- "Backups": [
207
- {
208
- "BackupId": "backup-03e3c82e0183b7b6b",
209
- "CreationTime": "1481841524.0",
210
- "FileSystem": {
211
- "FileSystemId": "fs-0498eed5fe91001ec",
212
- "OwnerId": "012345678912",
213
- "StorageCapacity": 300,
214
- "WindowsConfiguration": {
215
- "ActiveDirectoryId": "d-1234abcd12",
216
- "AutomaticBackupRetentionDays": 30,
217
- "DailyAutomaticBackupStartTime": "05:00",
218
- "WeeklyMaintenanceStartTime": "1:05:00"
219
- }
220
- },
221
- "Lifecycle": "AVAILABLE",
222
- "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:backup/backup-03e3c82e0183b7b6b",
223
- "Tags": [
224
- {
225
- "Key": "Name",
226
- "Value": "MyBackup"
227
- }
228
- ],
229
- "Type": "USER_INITIATED"
230
- }
231
- ]
232
- },
233
- "comments": {
234
- },
235
- "description": "This operation describes all of the Amazon FSx backups in an account.",
236
- "id": "to-describe-backups-1481848448499",
237
- "title": "To describe Amazon FSx backups"
238
- }
239
- ],
240
- "DescribeFileSystems": [
241
- {
242
- "input": {
243
- },
244
- "output": {
245
- "FileSystems": [
246
- {
247
- "CreationTime": "1481841524.0",
248
- "DNSName": "fs-0498eed5fe91001ec.fsx.com",
249
- "FileSystemId": "fs-0498eed5fe91001ec",
250
- "KmsKeyId": "arn:aws:kms:us-east-1:012345678912:key/0ff3ea8d-130e-4133-877f-93908b6fdbd6",
251
- "Lifecycle": "AVAILABLE",
252
- "NetworkInterfaceIds": [
253
- "eni-abcd1234"
254
- ],
255
- "OwnerId": "012345678912",
256
- "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec",
257
- "StorageCapacity": 300,
258
- "SubnetIds": [
259
- "subnet-1234abcd"
260
- ],
261
- "Tags": [
262
- {
263
- "Key": "Name",
264
- "Value": "MyFileSystem"
265
- }
266
- ],
267
- "VpcId": "vpc-ab1234cd",
268
- "WindowsConfiguration": {
269
- "ActiveDirectoryId": "d-1234abcd12",
270
- "AutomaticBackupRetentionDays": 30,
271
- "DailyAutomaticBackupStartTime": "05:00",
272
- "ThroughputCapacity": 8,
273
- "WeeklyMaintenanceStartTime": "1:05:00"
274
- }
275
- }
276
- ]
277
- },
278
- "comments": {
279
- },
280
- "description": "This operation describes all of the Amazon FSx file systems in an account.",
281
- "id": "to-describe-a-file-systems-1481848448460",
282
- "title": "To describe an Amazon FSx file system"
283
- }
284
- ],
285
- "ListTagsForResource": [
286
- {
287
- "input": {
288
- "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec"
289
- },
290
- "output": {
291
- "Tags": [
292
- {
293
- "Key": "Name",
294
- "Value": "MyFileSystem"
295
- }
296
- ]
297
- },
298
- "comments": {
299
- },
300
- "description": "This operation lists tags for an Amazon FSx resource.",
301
- "id": "to-list-tags-for-a-fsx-resource-1481847318372",
302
- "title": "To list tags for a resource"
303
- }
304
- ],
305
- "TagResource": [
306
- {
307
- "input": {
308
- "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec",
309
- "Tags": [
310
- {
311
- "Key": "Name",
312
- "Value": "MyFileSystem"
313
- }
314
- ]
315
- },
316
- "comments": {
317
- },
318
- "description": "This operation tags an Amazon FSx resource.",
319
- "id": "to-tag-a-fsx-resource-1481847318371",
320
- "title": "To tag a resource"
321
- }
322
- ],
323
- "UntagResource": [
324
- {
325
- "input": {
326
- "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec",
327
- "TagKeys": [
328
- "Name"
329
- ]
330
- },
331
- "comments": {
332
- },
333
- "description": "This operation untags an Amazon FSx resource.",
334
- "id": "to-untag-a-fsx-resource-1481847318373",
335
- "title": "To untag a resource"
336
- }
337
- ],
338
- "UpdateFileSystem": [
339
- {
340
- "input": {
341
- "FileSystemId": "fs-0498eed5fe91001ec",
342
- "WindowsConfiguration": {
343
- "AutomaticBackupRetentionDays": 10,
344
- "DailyAutomaticBackupStartTime": "06:00",
345
- "WeeklyMaintenanceStartTime": "3:06:00"
346
- }
347
- },
348
- "output": {
349
- "FileSystem": {
350
- "CreationTime": "1481841524.0",
351
- "DNSName": "fs-0498eed5fe91001ec.fsx.com",
352
- "FileSystemId": "fs-0498eed5fe91001ec",
353
- "KmsKeyId": "arn:aws:kms:us-east-1:012345678912:key/0ff3ea8d-130e-4133-877f-93908b6fdbd6",
354
- "Lifecycle": "AVAILABLE",
355
- "OwnerId": "012345678912",
356
- "ResourceARN": "arn:aws:fsx:us-east-1:012345678912:file-system/fs-0498eed5fe91001ec",
357
- "StorageCapacity": 300,
358
- "SubnetIds": [
359
- "subnet-1234abcd"
360
- ],
361
- "Tags": [
362
- {
363
- "Key": "Name",
364
- "Value": "MyFileSystem"
365
- }
366
- ],
367
- "VpcId": "vpc-ab1234cd",
368
- "WindowsConfiguration": {
369
- "AutomaticBackupRetentionDays": 10,
370
- "DailyAutomaticBackupStartTime": "06:00",
371
- "ThroughputCapacity": 8,
372
- "WeeklyMaintenanceStartTime": "3:06:00"
373
- }
374
- }
375
- },
376
- "comments": {
377
- },
378
- "description": "This operation updates an existing file system.",
379
- "id": "to-update-a-file-system-1481840798595",
380
- "title": "To update an existing file system"
381
- }
382
- ]
383
- }
384
- }
@@ -1,19 +0,0 @@
1
- {
2
- "pagination": {
3
- "DescribeBackups": {
4
- "input_token": "NextToken",
5
- "output_token": "NextToken",
6
- "limit_key": "MaxResults"
7
- },
8
- "DescribeDataRepositoryTasks": {
9
- "input_token": "NextToken",
10
- "output_token": "NextToken",
11
- "limit_key": "MaxResults"
12
- },
13
- "DescribeFileSystems": {
14
- "input_token": "NextToken",
15
- "output_token": "NextToken",
16
- "limit_key": "MaxResults"
17
- }
18
- }
19
- }
@@ -1,3695 +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
- "serviceId":"GameLift",
10
- "signatureVersion":"v4",
11
- "targetPrefix":"GameLift",
12
- "uid":"gamelift-2015-10-01"
13
- },
14
- "operations":{
15
- "AcceptMatch":{
16
- "name":"AcceptMatch",
17
- "http":{
18
- "method":"POST",
19
- "requestUri":"/"
20
- },
21
- "input":{"shape":"AcceptMatchInput"},
22
- "output":{"shape":"AcceptMatchOutput"},
23
- "errors":[
24
- {"shape":"InvalidRequestException"},
25
- {"shape":"NotFoundException"},
26
- {"shape":"InternalServiceException"},
27
- {"shape":"UnsupportedRegionException"}
28
- ]
29
- },
30
- "CreateAlias":{
31
- "name":"CreateAlias",
32
- "http":{
33
- "method":"POST",
34
- "requestUri":"/"
35
- },
36
- "input":{"shape":"CreateAliasInput"},
37
- "output":{"shape":"CreateAliasOutput"},
38
- "errors":[
39
- {"shape":"UnauthorizedException"},
40
- {"shape":"InvalidRequestException"},
41
- {"shape":"ConflictException"},
42
- {"shape":"InternalServiceException"},
43
- {"shape":"LimitExceededException"},
44
- {"shape":"TaggingFailedException"}
45
- ]
46
- },
47
- "CreateBuild":{
48
- "name":"CreateBuild",
49
- "http":{
50
- "method":"POST",
51
- "requestUri":"/"
52
- },
53
- "input":{"shape":"CreateBuildInput"},
54
- "output":{"shape":"CreateBuildOutput"},
55
- "errors":[
56
- {"shape":"UnauthorizedException"},
57
- {"shape":"InvalidRequestException"},
58
- {"shape":"ConflictException"},
59
- {"shape":"TaggingFailedException"},
60
- {"shape":"InternalServiceException"}
61
- ]
62
- },
63
- "CreateFleet":{
64
- "name":"CreateFleet",
65
- "http":{
66
- "method":"POST",
67
- "requestUri":"/"
68
- },
69
- "input":{"shape":"CreateFleetInput"},
70
- "output":{"shape":"CreateFleetOutput"},
71
- "errors":[
72
- {"shape":"InternalServiceException"},
73
- {"shape":"NotFoundException"},
74
- {"shape":"ConflictException"},
75
- {"shape":"LimitExceededException"},
76
- {"shape":"InvalidRequestException"},
77
- {"shape":"UnauthorizedException"},
78
- {"shape":"TaggingFailedException"}
79
- ]
80
- },
81
- "CreateGameSession":{
82
- "name":"CreateGameSession",
83
- "http":{
84
- "method":"POST",
85
- "requestUri":"/"
86
- },
87
- "input":{"shape":"CreateGameSessionInput"},
88
- "output":{"shape":"CreateGameSessionOutput"},
89
- "errors":[
90
- {"shape":"ConflictException"},
91
- {"shape":"InternalServiceException"},
92
- {"shape":"UnauthorizedException"},
93
- {"shape":"InvalidFleetStatusException"},
94
- {"shape":"TerminalRoutingStrategyException"},
95
- {"shape":"InvalidRequestException"},
96
- {"shape":"NotFoundException"},
97
- {"shape":"FleetCapacityExceededException"},
98
- {"shape":"LimitExceededException"},
99
- {"shape":"IdempotentParameterMismatchException"}
100
- ]
101
- },
102
- "CreateGameSessionQueue":{
103
- "name":"CreateGameSessionQueue",
104
- "http":{
105
- "method":"POST",
106
- "requestUri":"/"
107
- },
108
- "input":{"shape":"CreateGameSessionQueueInput"},
109
- "output":{"shape":"CreateGameSessionQueueOutput"},
110
- "errors":[
111
- {"shape":"InternalServiceException"},
112
- {"shape":"InvalidRequestException"},
113
- {"shape":"UnauthorizedException"},
114
- {"shape":"LimitExceededException"},
115
- {"shape":"TaggingFailedException"}
116
- ]
117
- },
118
- "CreateMatchmakingConfiguration":{
119
- "name":"CreateMatchmakingConfiguration",
120
- "http":{
121
- "method":"POST",
122
- "requestUri":"/"
123
- },
124
- "input":{"shape":"CreateMatchmakingConfigurationInput"},
125
- "output":{"shape":"CreateMatchmakingConfigurationOutput"},
126
- "errors":[
127
- {"shape":"InvalidRequestException"},
128
- {"shape":"LimitExceededException"},
129
- {"shape":"NotFoundException"},
130
- {"shape":"InternalServiceException"},
131
- {"shape":"UnsupportedRegionException"},
132
- {"shape":"TaggingFailedException"}
133
- ]
134
- },
135
- "CreateMatchmakingRuleSet":{
136
- "name":"CreateMatchmakingRuleSet",
137
- "http":{
138
- "method":"POST",
139
- "requestUri":"/"
140
- },
141
- "input":{"shape":"CreateMatchmakingRuleSetInput"},
142
- "output":{"shape":"CreateMatchmakingRuleSetOutput"},
143
- "errors":[
144
- {"shape":"InvalidRequestException"},
145
- {"shape":"InternalServiceException"},
146
- {"shape":"UnsupportedRegionException"},
147
- {"shape":"TaggingFailedException"}
148
- ]
149
- },
150
- "CreatePlayerSession":{
151
- "name":"CreatePlayerSession",
152
- "http":{
153
- "method":"POST",
154
- "requestUri":"/"
155
- },
156
- "input":{"shape":"CreatePlayerSessionInput"},
157
- "output":{"shape":"CreatePlayerSessionOutput"},
158
- "errors":[
159
- {"shape":"InternalServiceException"},
160
- {"shape":"UnauthorizedException"},
161
- {"shape":"InvalidGameSessionStatusException"},
162
- {"shape":"GameSessionFullException"},
163
- {"shape":"TerminalRoutingStrategyException"},
164
- {"shape":"InvalidRequestException"},
165
- {"shape":"NotFoundException"}
166
- ]
167
- },
168
- "CreatePlayerSessions":{
169
- "name":"CreatePlayerSessions",
170
- "http":{
171
- "method":"POST",
172
- "requestUri":"/"
173
- },
174
- "input":{"shape":"CreatePlayerSessionsInput"},
175
- "output":{"shape":"CreatePlayerSessionsOutput"},
176
- "errors":[
177
- {"shape":"InternalServiceException"},
178
- {"shape":"UnauthorizedException"},
179
- {"shape":"InvalidGameSessionStatusException"},
180
- {"shape":"GameSessionFullException"},
181
- {"shape":"TerminalRoutingStrategyException"},
182
- {"shape":"InvalidRequestException"},
183
- {"shape":"NotFoundException"}
184
- ]
185
- },
186
- "CreateScript":{
187
- "name":"CreateScript",
188
- "http":{
189
- "method":"POST",
190
- "requestUri":"/"
191
- },
192
- "input":{"shape":"CreateScriptInput"},
193
- "output":{"shape":"CreateScriptOutput"},
194
- "errors":[
195
- {"shape":"UnauthorizedException"},
196
- {"shape":"InvalidRequestException"},
197
- {"shape":"ConflictException"},
198
- {"shape":"TaggingFailedException"},
199
- {"shape":"InternalServiceException"}
200
- ]
201
- },
202
- "CreateVpcPeeringAuthorization":{
203
- "name":"CreateVpcPeeringAuthorization",
204
- "http":{
205
- "method":"POST",
206
- "requestUri":"/"
207
- },
208
- "input":{"shape":"CreateVpcPeeringAuthorizationInput"},
209
- "output":{"shape":"CreateVpcPeeringAuthorizationOutput"},
210
- "errors":[
211
- {"shape":"UnauthorizedException"},
212
- {"shape":"InvalidRequestException"},
213
- {"shape":"NotFoundException"},
214
- {"shape":"InternalServiceException"}
215
- ]
216
- },
217
- "CreateVpcPeeringConnection":{
218
- "name":"CreateVpcPeeringConnection",
219
- "http":{
220
- "method":"POST",
221
- "requestUri":"/"
222
- },
223
- "input":{"shape":"CreateVpcPeeringConnectionInput"},
224
- "output":{"shape":"CreateVpcPeeringConnectionOutput"},
225
- "errors":[
226
- {"shape":"UnauthorizedException"},
227
- {"shape":"InvalidRequestException"},
228
- {"shape":"NotFoundException"},
229
- {"shape":"InternalServiceException"}
230
- ]
231
- },
232
- "DeleteAlias":{
233
- "name":"DeleteAlias",
234
- "http":{
235
- "method":"POST",
236
- "requestUri":"/"
237
- },
238
- "input":{"shape":"DeleteAliasInput"},
239
- "errors":[
240
- {"shape":"UnauthorizedException"},
241
- {"shape":"NotFoundException"},
242
- {"shape":"InvalidRequestException"},
243
- {"shape":"TaggingFailedException"},
244
- {"shape":"InternalServiceException"}
245
- ]
246
- },
247
- "DeleteBuild":{
248
- "name":"DeleteBuild",
249
- "http":{
250
- "method":"POST",
251
- "requestUri":"/"
252
- },
253
- "input":{"shape":"DeleteBuildInput"},
254
- "errors":[
255
- {"shape":"UnauthorizedException"},
256
- {"shape":"NotFoundException"},
257
- {"shape":"InternalServiceException"},
258
- {"shape":"TaggingFailedException"},
259
- {"shape":"InvalidRequestException"}
260
- ]
261
- },
262
- "DeleteFleet":{
263
- "name":"DeleteFleet",
264
- "http":{
265
- "method":"POST",
266
- "requestUri":"/"
267
- },
268
- "input":{"shape":"DeleteFleetInput"},
269
- "errors":[
270
- {"shape":"NotFoundException"},
271
- {"shape":"InternalServiceException"},
272
- {"shape":"InvalidFleetStatusException"},
273
- {"shape":"UnauthorizedException"},
274
- {"shape":"InvalidRequestException"},
275
- {"shape":"TaggingFailedException"}
276
- ]
277
- },
278
- "DeleteGameSessionQueue":{
279
- "name":"DeleteGameSessionQueue",
280
- "http":{
281
- "method":"POST",
282
- "requestUri":"/"
283
- },
284
- "input":{"shape":"DeleteGameSessionQueueInput"},
285
- "output":{"shape":"DeleteGameSessionQueueOutput"},
286
- "errors":[
287
- {"shape":"InternalServiceException"},
288
- {"shape":"InvalidRequestException"},
289
- {"shape":"NotFoundException"},
290
- {"shape":"UnauthorizedException"},
291
- {"shape":"TaggingFailedException"}
292
- ]
293
- },
294
- "DeleteMatchmakingConfiguration":{
295
- "name":"DeleteMatchmakingConfiguration",
296
- "http":{
297
- "method":"POST",
298
- "requestUri":"/"
299
- },
300
- "input":{"shape":"DeleteMatchmakingConfigurationInput"},
301
- "output":{"shape":"DeleteMatchmakingConfigurationOutput"},
302
- "errors":[
303
- {"shape":"InvalidRequestException"},
304
- {"shape":"NotFoundException"},
305
- {"shape":"InternalServiceException"},
306
- {"shape":"UnsupportedRegionException"},
307
- {"shape":"TaggingFailedException"}
308
- ]
309
- },
310
- "DeleteMatchmakingRuleSet":{
311
- "name":"DeleteMatchmakingRuleSet",
312
- "http":{
313
- "method":"POST",
314
- "requestUri":"/"
315
- },
316
- "input":{"shape":"DeleteMatchmakingRuleSetInput"},
317
- "output":{"shape":"DeleteMatchmakingRuleSetOutput"},
318
- "errors":[
319
- {"shape":"InvalidRequestException"},
320
- {"shape":"InternalServiceException"},
321
- {"shape":"UnsupportedRegionException"},
322
- {"shape":"NotFoundException"},
323
- {"shape":"TaggingFailedException"}
324
- ]
325
- },
326
- "DeleteScalingPolicy":{
327
- "name":"DeleteScalingPolicy",
328
- "http":{
329
- "method":"POST",
330
- "requestUri":"/"
331
- },
332
- "input":{"shape":"DeleteScalingPolicyInput"},
333
- "errors":[
334
- {"shape":"InternalServiceException"},
335
- {"shape":"InvalidRequestException"},
336
- {"shape":"UnauthorizedException"},
337
- {"shape":"NotFoundException"}
338
- ]
339
- },
340
- "DeleteScript":{
341
- "name":"DeleteScript",
342
- "http":{
343
- "method":"POST",
344
- "requestUri":"/"
345
- },
346
- "input":{"shape":"DeleteScriptInput"},
347
- "errors":[
348
- {"shape":"InvalidRequestException"},
349
- {"shape":"UnauthorizedException"},
350
- {"shape":"NotFoundException"},
351
- {"shape":"TaggingFailedException"},
352
- {"shape":"InternalServiceException"}
353
- ]
354
- },
355
- "DeleteVpcPeeringAuthorization":{
356
- "name":"DeleteVpcPeeringAuthorization",
357
- "http":{
358
- "method":"POST",
359
- "requestUri":"/"
360
- },
361
- "input":{"shape":"DeleteVpcPeeringAuthorizationInput"},
362
- "output":{"shape":"DeleteVpcPeeringAuthorizationOutput"},
363
- "errors":[
364
- {"shape":"UnauthorizedException"},
365
- {"shape":"InvalidRequestException"},
366
- {"shape":"NotFoundException"},
367
- {"shape":"InternalServiceException"}
368
- ]
369
- },
370
- "DeleteVpcPeeringConnection":{
371
- "name":"DeleteVpcPeeringConnection",
372
- "http":{
373
- "method":"POST",
374
- "requestUri":"/"
375
- },
376
- "input":{"shape":"DeleteVpcPeeringConnectionInput"},
377
- "output":{"shape":"DeleteVpcPeeringConnectionOutput"},
378
- "errors":[
379
- {"shape":"UnauthorizedException"},
380
- {"shape":"InvalidRequestException"},
381
- {"shape":"NotFoundException"},
382
- {"shape":"InternalServiceException"}
383
- ]
384
- },
385
- "DescribeAlias":{
386
- "name":"DescribeAlias",
387
- "http":{
388
- "method":"POST",
389
- "requestUri":"/"
390
- },
391
- "input":{"shape":"DescribeAliasInput"},
392
- "output":{"shape":"DescribeAliasOutput"},
393
- "errors":[
394
- {"shape":"UnauthorizedException"},
395
- {"shape":"InvalidRequestException"},
396
- {"shape":"NotFoundException"},
397
- {"shape":"InternalServiceException"}
398
- ]
399
- },
400
- "DescribeBuild":{
401
- "name":"DescribeBuild",
402
- "http":{
403
- "method":"POST",
404
- "requestUri":"/"
405
- },
406
- "input":{"shape":"DescribeBuildInput"},
407
- "output":{"shape":"DescribeBuildOutput"},
408
- "errors":[
409
- {"shape":"UnauthorizedException"},
410
- {"shape":"InvalidRequestException"},
411
- {"shape":"NotFoundException"},
412
- {"shape":"InternalServiceException"}
413
- ]
414
- },
415
- "DescribeEC2InstanceLimits":{
416
- "name":"DescribeEC2InstanceLimits",
417
- "http":{
418
- "method":"POST",
419
- "requestUri":"/"
420
- },
421
- "input":{"shape":"DescribeEC2InstanceLimitsInput"},
422
- "output":{"shape":"DescribeEC2InstanceLimitsOutput"},
423
- "errors":[
424
- {"shape":"InvalidRequestException"},
425
- {"shape":"InternalServiceException"},
426
- {"shape":"UnauthorizedException"}
427
- ]
428
- },
429
- "DescribeFleetAttributes":{
430
- "name":"DescribeFleetAttributes",
431
- "http":{
432
- "method":"POST",
433
- "requestUri":"/"
434
- },
435
- "input":{"shape":"DescribeFleetAttributesInput"},
436
- "output":{"shape":"DescribeFleetAttributesOutput"},
437
- "errors":[
438
- {"shape":"InternalServiceException"},
439
- {"shape":"NotFoundException"},
440
- {"shape":"InvalidRequestException"},
441
- {"shape":"UnauthorizedException"}
442
- ]
443
- },
444
- "DescribeFleetCapacity":{
445
- "name":"DescribeFleetCapacity",
446
- "http":{
447
- "method":"POST",
448
- "requestUri":"/"
449
- },
450
- "input":{"shape":"DescribeFleetCapacityInput"},
451
- "output":{"shape":"DescribeFleetCapacityOutput"},
452
- "errors":[
453
- {"shape":"InternalServiceException"},
454
- {"shape":"NotFoundException"},
455
- {"shape":"InvalidRequestException"},
456
- {"shape":"UnauthorizedException"}
457
- ]
458
- },
459
- "DescribeFleetEvents":{
460
- "name":"DescribeFleetEvents",
461
- "http":{
462
- "method":"POST",
463
- "requestUri":"/"
464
- },
465
- "input":{"shape":"DescribeFleetEventsInput"},
466
- "output":{"shape":"DescribeFleetEventsOutput"},
467
- "errors":[
468
- {"shape":"NotFoundException"},
469
- {"shape":"InternalServiceException"},
470
- {"shape":"UnauthorizedException"},
471
- {"shape":"InvalidRequestException"}
472
- ]
473
- },
474
- "DescribeFleetPortSettings":{
475
- "name":"DescribeFleetPortSettings",
476
- "http":{
477
- "method":"POST",
478
- "requestUri":"/"
479
- },
480
- "input":{"shape":"DescribeFleetPortSettingsInput"},
481
- "output":{"shape":"DescribeFleetPortSettingsOutput"},
482
- "errors":[
483
- {"shape":"InternalServiceException"},
484
- {"shape":"NotFoundException"},
485
- {"shape":"InvalidRequestException"},
486
- {"shape":"UnauthorizedException"}
487
- ]
488
- },
489
- "DescribeFleetUtilization":{
490
- "name":"DescribeFleetUtilization",
491
- "http":{
492
- "method":"POST",
493
- "requestUri":"/"
494
- },
495
- "input":{"shape":"DescribeFleetUtilizationInput"},
496
- "output":{"shape":"DescribeFleetUtilizationOutput"},
497
- "errors":[
498
- {"shape":"InternalServiceException"},
499
- {"shape":"NotFoundException"},
500
- {"shape":"InvalidRequestException"},
501
- {"shape":"UnauthorizedException"}
502
- ]
503
- },
504
- "DescribeGameSessionDetails":{
505
- "name":"DescribeGameSessionDetails",
506
- "http":{
507
- "method":"POST",
508
- "requestUri":"/"
509
- },
510
- "input":{"shape":"DescribeGameSessionDetailsInput"},
511
- "output":{"shape":"DescribeGameSessionDetailsOutput"},
512
- "errors":[
513
- {"shape":"InternalServiceException"},
514
- {"shape":"NotFoundException"},
515
- {"shape":"InvalidRequestException"},
516
- {"shape":"UnauthorizedException"},
517
- {"shape":"TerminalRoutingStrategyException"}
518
- ]
519
- },
520
- "DescribeGameSessionPlacement":{
521
- "name":"DescribeGameSessionPlacement",
522
- "http":{
523
- "method":"POST",
524
- "requestUri":"/"
525
- },
526
- "input":{"shape":"DescribeGameSessionPlacementInput"},
527
- "output":{"shape":"DescribeGameSessionPlacementOutput"},
528
- "errors":[
529
- {"shape":"InternalServiceException"},
530
- {"shape":"InvalidRequestException"},
531
- {"shape":"NotFoundException"},
532
- {"shape":"UnauthorizedException"}
533
- ]
534
- },
535
- "DescribeGameSessionQueues":{
536
- "name":"DescribeGameSessionQueues",
537
- "http":{
538
- "method":"POST",
539
- "requestUri":"/"
540
- },
541
- "input":{"shape":"DescribeGameSessionQueuesInput"},
542
- "output":{"shape":"DescribeGameSessionQueuesOutput"},
543
- "errors":[
544
- {"shape":"InternalServiceException"},
545
- {"shape":"InvalidRequestException"},
546
- {"shape":"NotFoundException"},
547
- {"shape":"UnauthorizedException"}
548
- ]
549
- },
550
- "DescribeGameSessions":{
551
- "name":"DescribeGameSessions",
552
- "http":{
553
- "method":"POST",
554
- "requestUri":"/"
555
- },
556
- "input":{"shape":"DescribeGameSessionsInput"},
557
- "output":{"shape":"DescribeGameSessionsOutput"},
558
- "errors":[
559
- {"shape":"InternalServiceException"},
560
- {"shape":"NotFoundException"},
561
- {"shape":"InvalidRequestException"},
562
- {"shape":"UnauthorizedException"},
563
- {"shape":"TerminalRoutingStrategyException"}
564
- ]
565
- },
566
- "DescribeInstances":{
567
- "name":"DescribeInstances",
568
- "http":{
569
- "method":"POST",
570
- "requestUri":"/"
571
- },
572
- "input":{"shape":"DescribeInstancesInput"},
573
- "output":{"shape":"DescribeInstancesOutput"},
574
- "errors":[
575
- {"shape":"UnauthorizedException"},
576
- {"shape":"InvalidRequestException"},
577
- {"shape":"NotFoundException"},
578
- {"shape":"InternalServiceException"}
579
- ]
580
- },
581
- "DescribeMatchmaking":{
582
- "name":"DescribeMatchmaking",
583
- "http":{
584
- "method":"POST",
585
- "requestUri":"/"
586
- },
587
- "input":{"shape":"DescribeMatchmakingInput"},
588
- "output":{"shape":"DescribeMatchmakingOutput"},
589
- "errors":[
590
- {"shape":"InvalidRequestException"},
591
- {"shape":"InternalServiceException"},
592
- {"shape":"UnsupportedRegionException"}
593
- ]
594
- },
595
- "DescribeMatchmakingConfigurations":{
596
- "name":"DescribeMatchmakingConfigurations",
597
- "http":{
598
- "method":"POST",
599
- "requestUri":"/"
600
- },
601
- "input":{"shape":"DescribeMatchmakingConfigurationsInput"},
602
- "output":{"shape":"DescribeMatchmakingConfigurationsOutput"},
603
- "errors":[
604
- {"shape":"InvalidRequestException"},
605
- {"shape":"InternalServiceException"},
606
- {"shape":"UnsupportedRegionException"}
607
- ]
608
- },
609
- "DescribeMatchmakingRuleSets":{
610
- "name":"DescribeMatchmakingRuleSets",
611
- "http":{
612
- "method":"POST",
613
- "requestUri":"/"
614
- },
615
- "input":{"shape":"DescribeMatchmakingRuleSetsInput"},
616
- "output":{"shape":"DescribeMatchmakingRuleSetsOutput"},
617
- "errors":[
618
- {"shape":"InvalidRequestException"},
619
- {"shape":"InternalServiceException"},
620
- {"shape":"NotFoundException"},
621
- {"shape":"UnsupportedRegionException"}
622
- ]
623
- },
624
- "DescribePlayerSessions":{
625
- "name":"DescribePlayerSessions",
626
- "http":{
627
- "method":"POST",
628
- "requestUri":"/"
629
- },
630
- "input":{"shape":"DescribePlayerSessionsInput"},
631
- "output":{"shape":"DescribePlayerSessionsOutput"},
632
- "errors":[
633
- {"shape":"InternalServiceException"},
634
- {"shape":"NotFoundException"},
635
- {"shape":"InvalidRequestException"},
636
- {"shape":"UnauthorizedException"}
637
- ]
638
- },
639
- "DescribeRuntimeConfiguration":{
640
- "name":"DescribeRuntimeConfiguration",
641
- "http":{
642
- "method":"POST",
643
- "requestUri":"/"
644
- },
645
- "input":{"shape":"DescribeRuntimeConfigurationInput"},
646
- "output":{"shape":"DescribeRuntimeConfigurationOutput"},
647
- "errors":[
648
- {"shape":"UnauthorizedException"},
649
- {"shape":"NotFoundException"},
650
- {"shape":"InternalServiceException"},
651
- {"shape":"InvalidRequestException"}
652
- ]
653
- },
654
- "DescribeScalingPolicies":{
655
- "name":"DescribeScalingPolicies",
656
- "http":{
657
- "method":"POST",
658
- "requestUri":"/"
659
- },
660
- "input":{"shape":"DescribeScalingPoliciesInput"},
661
- "output":{"shape":"DescribeScalingPoliciesOutput"},
662
- "errors":[
663
- {"shape":"InternalServiceException"},
664
- {"shape":"InvalidRequestException"},
665
- {"shape":"UnauthorizedException"},
666
- {"shape":"NotFoundException"}
667
- ]
668
- },
669
- "DescribeScript":{
670
- "name":"DescribeScript",
671
- "http":{
672
- "method":"POST",
673
- "requestUri":"/"
674
- },
675
- "input":{"shape":"DescribeScriptInput"},
676
- "output":{"shape":"DescribeScriptOutput"},
677
- "errors":[
678
- {"shape":"UnauthorizedException"},
679
- {"shape":"InvalidRequestException"},
680
- {"shape":"InternalServiceException"},
681
- {"shape":"NotFoundException"}
682
- ]
683
- },
684
- "DescribeVpcPeeringAuthorizations":{
685
- "name":"DescribeVpcPeeringAuthorizations",
686
- "http":{
687
- "method":"POST",
688
- "requestUri":"/"
689
- },
690
- "input":{"shape":"DescribeVpcPeeringAuthorizationsInput"},
691
- "output":{"shape":"DescribeVpcPeeringAuthorizationsOutput"},
692
- "errors":[
693
- {"shape":"UnauthorizedException"},
694
- {"shape":"InvalidRequestException"},
695
- {"shape":"InternalServiceException"}
696
- ]
697
- },
698
- "DescribeVpcPeeringConnections":{
699
- "name":"DescribeVpcPeeringConnections",
700
- "http":{
701
- "method":"POST",
702
- "requestUri":"/"
703
- },
704
- "input":{"shape":"DescribeVpcPeeringConnectionsInput"},
705
- "output":{"shape":"DescribeVpcPeeringConnectionsOutput"},
706
- "errors":[
707
- {"shape":"UnauthorizedException"},
708
- {"shape":"InvalidRequestException"},
709
- {"shape":"NotFoundException"},
710
- {"shape":"InternalServiceException"}
711
- ]
712
- },
713
- "GetGameSessionLogUrl":{
714
- "name":"GetGameSessionLogUrl",
715
- "http":{
716
- "method":"POST",
717
- "requestUri":"/"
718
- },
719
- "input":{"shape":"GetGameSessionLogUrlInput"},
720
- "output":{"shape":"GetGameSessionLogUrlOutput"},
721
- "errors":[
722
- {"shape":"InternalServiceException"},
723
- {"shape":"NotFoundException"},
724
- {"shape":"UnauthorizedException"},
725
- {"shape":"InvalidRequestException"}
726
- ]
727
- },
728
- "GetInstanceAccess":{
729
- "name":"GetInstanceAccess",
730
- "http":{
731
- "method":"POST",
732
- "requestUri":"/"
733
- },
734
- "input":{"shape":"GetInstanceAccessInput"},
735
- "output":{"shape":"GetInstanceAccessOutput"},
736
- "errors":[
737
- {"shape":"UnauthorizedException"},
738
- {"shape":"InvalidRequestException"},
739
- {"shape":"NotFoundException"},
740
- {"shape":"InternalServiceException"}
741
- ]
742
- },
743
- "ListAliases":{
744
- "name":"ListAliases",
745
- "http":{
746
- "method":"POST",
747
- "requestUri":"/"
748
- },
749
- "input":{"shape":"ListAliasesInput"},
750
- "output":{"shape":"ListAliasesOutput"},
751
- "errors":[
752
- {"shape":"UnauthorizedException"},
753
- {"shape":"InvalidRequestException"},
754
- {"shape":"InternalServiceException"}
755
- ]
756
- },
757
- "ListBuilds":{
758
- "name":"ListBuilds",
759
- "http":{
760
- "method":"POST",
761
- "requestUri":"/"
762
- },
763
- "input":{"shape":"ListBuildsInput"},
764
- "output":{"shape":"ListBuildsOutput"},
765
- "errors":[
766
- {"shape":"UnauthorizedException"},
767
- {"shape":"InvalidRequestException"},
768
- {"shape":"InternalServiceException"}
769
- ]
770
- },
771
- "ListFleets":{
772
- "name":"ListFleets",
773
- "http":{
774
- "method":"POST",
775
- "requestUri":"/"
776
- },
777
- "input":{"shape":"ListFleetsInput"},
778
- "output":{"shape":"ListFleetsOutput"},
779
- "errors":[
780
- {"shape":"InternalServiceException"},
781
- {"shape":"NotFoundException"},
782
- {"shape":"InvalidRequestException"},
783
- {"shape":"UnauthorizedException"}
784
- ]
785
- },
786
- "ListScripts":{
787
- "name":"ListScripts",
788
- "http":{
789
- "method":"POST",
790
- "requestUri":"/"
791
- },
792
- "input":{"shape":"ListScriptsInput"},
793
- "output":{"shape":"ListScriptsOutput"},
794
- "errors":[
795
- {"shape":"UnauthorizedException"},
796
- {"shape":"InvalidRequestException"},
797
- {"shape":"InternalServiceException"}
798
- ]
799
- },
800
- "ListTagsForResource":{
801
- "name":"ListTagsForResource",
802
- "http":{
803
- "method":"POST",
804
- "requestUri":"/"
805
- },
806
- "input":{"shape":"ListTagsForResourceRequest"},
807
- "output":{"shape":"ListTagsForResourceResponse"},
808
- "errors":[
809
- {"shape":"NotFoundException"},
810
- {"shape":"InvalidRequestException"},
811
- {"shape":"TaggingFailedException"},
812
- {"shape":"InternalServiceException"}
813
- ]
814
- },
815
- "PutScalingPolicy":{
816
- "name":"PutScalingPolicy",
817
- "http":{
818
- "method":"POST",
819
- "requestUri":"/"
820
- },
821
- "input":{"shape":"PutScalingPolicyInput"},
822
- "output":{"shape":"PutScalingPolicyOutput"},
823
- "errors":[
824
- {"shape":"InternalServiceException"},
825
- {"shape":"InvalidRequestException"},
826
- {"shape":"UnauthorizedException"},
827
- {"shape":"NotFoundException"}
828
- ]
829
- },
830
- "RequestUploadCredentials":{
831
- "name":"RequestUploadCredentials",
832
- "http":{
833
- "method":"POST",
834
- "requestUri":"/"
835
- },
836
- "input":{"shape":"RequestUploadCredentialsInput"},
837
- "output":{"shape":"RequestUploadCredentialsOutput"},
838
- "errors":[
839
- {"shape":"UnauthorizedException"},
840
- {"shape":"InvalidRequestException"},
841
- {"shape":"NotFoundException"},
842
- {"shape":"InternalServiceException"}
843
- ]
844
- },
845
- "ResolveAlias":{
846
- "name":"ResolveAlias",
847
- "http":{
848
- "method":"POST",
849
- "requestUri":"/"
850
- },
851
- "input":{"shape":"ResolveAliasInput"},
852
- "output":{"shape":"ResolveAliasOutput"},
853
- "errors":[
854
- {"shape":"UnauthorizedException"},
855
- {"shape":"InvalidRequestException"},
856
- {"shape":"NotFoundException"},
857
- {"shape":"TerminalRoutingStrategyException"},
858
- {"shape":"InternalServiceException"}
859
- ]
860
- },
861
- "SearchGameSessions":{
862
- "name":"SearchGameSessions",
863
- "http":{
864
- "method":"POST",
865
- "requestUri":"/"
866
- },
867
- "input":{"shape":"SearchGameSessionsInput"},
868
- "output":{"shape":"SearchGameSessionsOutput"},
869
- "errors":[
870
- {"shape":"InternalServiceException"},
871
- {"shape":"NotFoundException"},
872
- {"shape":"InvalidRequestException"},
873
- {"shape":"UnauthorizedException"},
874
- {"shape":"TerminalRoutingStrategyException"}
875
- ]
876
- },
877
- "StartFleetActions":{
878
- "name":"StartFleetActions",
879
- "http":{
880
- "method":"POST",
881
- "requestUri":"/"
882
- },
883
- "input":{"shape":"StartFleetActionsInput"},
884
- "output":{"shape":"StartFleetActionsOutput"},
885
- "errors":[
886
- {"shape":"InternalServiceException"},
887
- {"shape":"InvalidRequestException"},
888
- {"shape":"UnauthorizedException"},
889
- {"shape":"NotFoundException"}
890
- ]
891
- },
892
- "StartGameSessionPlacement":{
893
- "name":"StartGameSessionPlacement",
894
- "http":{
895
- "method":"POST",
896
- "requestUri":"/"
897
- },
898
- "input":{"shape":"StartGameSessionPlacementInput"},
899
- "output":{"shape":"StartGameSessionPlacementOutput"},
900
- "errors":[
901
- {"shape":"InternalServiceException"},
902
- {"shape":"InvalidRequestException"},
903
- {"shape":"NotFoundException"},
904
- {"shape":"UnauthorizedException"}
905
- ]
906
- },
907
- "StartMatchBackfill":{
908
- "name":"StartMatchBackfill",
909
- "http":{
910
- "method":"POST",
911
- "requestUri":"/"
912
- },
913
- "input":{"shape":"StartMatchBackfillInput"},
914
- "output":{"shape":"StartMatchBackfillOutput"},
915
- "errors":[
916
- {"shape":"InvalidRequestException"},
917
- {"shape":"NotFoundException"},
918
- {"shape":"InternalServiceException"},
919
- {"shape":"UnsupportedRegionException"}
920
- ]
921
- },
922
- "StartMatchmaking":{
923
- "name":"StartMatchmaking",
924
- "http":{
925
- "method":"POST",
926
- "requestUri":"/"
927
- },
928
- "input":{"shape":"StartMatchmakingInput"},
929
- "output":{"shape":"StartMatchmakingOutput"},
930
- "errors":[
931
- {"shape":"InvalidRequestException"},
932
- {"shape":"NotFoundException"},
933
- {"shape":"InternalServiceException"},
934
- {"shape":"UnsupportedRegionException"}
935
- ]
936
- },
937
- "StopFleetActions":{
938
- "name":"StopFleetActions",
939
- "http":{
940
- "method":"POST",
941
- "requestUri":"/"
942
- },
943
- "input":{"shape":"StopFleetActionsInput"},
944
- "output":{"shape":"StopFleetActionsOutput"},
945
- "errors":[
946
- {"shape":"InternalServiceException"},
947
- {"shape":"InvalidRequestException"},
948
- {"shape":"UnauthorizedException"},
949
- {"shape":"NotFoundException"}
950
- ]
951
- },
952
- "StopGameSessionPlacement":{
953
- "name":"StopGameSessionPlacement",
954
- "http":{
955
- "method":"POST",
956
- "requestUri":"/"
957
- },
958
- "input":{"shape":"StopGameSessionPlacementInput"},
959
- "output":{"shape":"StopGameSessionPlacementOutput"},
960
- "errors":[
961
- {"shape":"InternalServiceException"},
962
- {"shape":"InvalidRequestException"},
963
- {"shape":"NotFoundException"},
964
- {"shape":"UnauthorizedException"}
965
- ]
966
- },
967
- "StopMatchmaking":{
968
- "name":"StopMatchmaking",
969
- "http":{
970
- "method":"POST",
971
- "requestUri":"/"
972
- },
973
- "input":{"shape":"StopMatchmakingInput"},
974
- "output":{"shape":"StopMatchmakingOutput"},
975
- "errors":[
976
- {"shape":"InvalidRequestException"},
977
- {"shape":"NotFoundException"},
978
- {"shape":"InternalServiceException"},
979
- {"shape":"UnsupportedRegionException"}
980
- ]
981
- },
982
- "TagResource":{
983
- "name":"TagResource",
984
- "http":{
985
- "method":"POST",
986
- "requestUri":"/"
987
- },
988
- "input":{"shape":"TagResourceRequest"},
989
- "output":{"shape":"TagResourceResponse"},
990
- "errors":[
991
- {"shape":"NotFoundException"},
992
- {"shape":"InvalidRequestException"},
993
- {"shape":"TaggingFailedException"},
994
- {"shape":"InternalServiceException"}
995
- ]
996
- },
997
- "UntagResource":{
998
- "name":"UntagResource",
999
- "http":{
1000
- "method":"POST",
1001
- "requestUri":"/"
1002
- },
1003
- "input":{"shape":"UntagResourceRequest"},
1004
- "output":{"shape":"UntagResourceResponse"},
1005
- "errors":[
1006
- {"shape":"NotFoundException"},
1007
- {"shape":"InvalidRequestException"},
1008
- {"shape":"TaggingFailedException"},
1009
- {"shape":"InternalServiceException"}
1010
- ]
1011
- },
1012
- "UpdateAlias":{
1013
- "name":"UpdateAlias",
1014
- "http":{
1015
- "method":"POST",
1016
- "requestUri":"/"
1017
- },
1018
- "input":{"shape":"UpdateAliasInput"},
1019
- "output":{"shape":"UpdateAliasOutput"},
1020
- "errors":[
1021
- {"shape":"UnauthorizedException"},
1022
- {"shape":"InvalidRequestException"},
1023
- {"shape":"NotFoundException"},
1024
- {"shape":"InternalServiceException"}
1025
- ]
1026
- },
1027
- "UpdateBuild":{
1028
- "name":"UpdateBuild",
1029
- "http":{
1030
- "method":"POST",
1031
- "requestUri":"/"
1032
- },
1033
- "input":{"shape":"UpdateBuildInput"},
1034
- "output":{"shape":"UpdateBuildOutput"},
1035
- "errors":[
1036
- {"shape":"UnauthorizedException"},
1037
- {"shape":"InvalidRequestException"},
1038
- {"shape":"NotFoundException"},
1039
- {"shape":"InternalServiceException"}
1040
- ]
1041
- },
1042
- "UpdateFleetAttributes":{
1043
- "name":"UpdateFleetAttributes",
1044
- "http":{
1045
- "method":"POST",
1046
- "requestUri":"/"
1047
- },
1048
- "input":{"shape":"UpdateFleetAttributesInput"},
1049
- "output":{"shape":"UpdateFleetAttributesOutput"},
1050
- "errors":[
1051
- {"shape":"NotFoundException"},
1052
- {"shape":"ConflictException"},
1053
- {"shape":"InvalidFleetStatusException"},
1054
- {"shape":"LimitExceededException"},
1055
- {"shape":"InternalServiceException"},
1056
- {"shape":"InvalidRequestException"},
1057
- {"shape":"UnauthorizedException"}
1058
- ]
1059
- },
1060
- "UpdateFleetCapacity":{
1061
- "name":"UpdateFleetCapacity",
1062
- "http":{
1063
- "method":"POST",
1064
- "requestUri":"/"
1065
- },
1066
- "input":{"shape":"UpdateFleetCapacityInput"},
1067
- "output":{"shape":"UpdateFleetCapacityOutput"},
1068
- "errors":[
1069
- {"shape":"NotFoundException"},
1070
- {"shape":"ConflictException"},
1071
- {"shape":"LimitExceededException"},
1072
- {"shape":"InvalidFleetStatusException"},
1073
- {"shape":"InternalServiceException"},
1074
- {"shape":"InvalidRequestException"},
1075
- {"shape":"UnauthorizedException"}
1076
- ]
1077
- },
1078
- "UpdateFleetPortSettings":{
1079
- "name":"UpdateFleetPortSettings",
1080
- "http":{
1081
- "method":"POST",
1082
- "requestUri":"/"
1083
- },
1084
- "input":{"shape":"UpdateFleetPortSettingsInput"},
1085
- "output":{"shape":"UpdateFleetPortSettingsOutput"},
1086
- "errors":[
1087
- {"shape":"NotFoundException"},
1088
- {"shape":"ConflictException"},
1089
- {"shape":"InvalidFleetStatusException"},
1090
- {"shape":"LimitExceededException"},
1091
- {"shape":"InternalServiceException"},
1092
- {"shape":"InvalidRequestException"},
1093
- {"shape":"UnauthorizedException"}
1094
- ]
1095
- },
1096
- "UpdateGameSession":{
1097
- "name":"UpdateGameSession",
1098
- "http":{
1099
- "method":"POST",
1100
- "requestUri":"/"
1101
- },
1102
- "input":{"shape":"UpdateGameSessionInput"},
1103
- "output":{"shape":"UpdateGameSessionOutput"},
1104
- "errors":[
1105
- {"shape":"NotFoundException"},
1106
- {"shape":"ConflictException"},
1107
- {"shape":"InternalServiceException"},
1108
- {"shape":"UnauthorizedException"},
1109
- {"shape":"InvalidGameSessionStatusException"},
1110
- {"shape":"InvalidRequestException"}
1111
- ]
1112
- },
1113
- "UpdateGameSessionQueue":{
1114
- "name":"UpdateGameSessionQueue",
1115
- "http":{
1116
- "method":"POST",
1117
- "requestUri":"/"
1118
- },
1119
- "input":{"shape":"UpdateGameSessionQueueInput"},
1120
- "output":{"shape":"UpdateGameSessionQueueOutput"},
1121
- "errors":[
1122
- {"shape":"InternalServiceException"},
1123
- {"shape":"InvalidRequestException"},
1124
- {"shape":"NotFoundException"},
1125
- {"shape":"UnauthorizedException"}
1126
- ]
1127
- },
1128
- "UpdateMatchmakingConfiguration":{
1129
- "name":"UpdateMatchmakingConfiguration",
1130
- "http":{
1131
- "method":"POST",
1132
- "requestUri":"/"
1133
- },
1134
- "input":{"shape":"UpdateMatchmakingConfigurationInput"},
1135
- "output":{"shape":"UpdateMatchmakingConfigurationOutput"},
1136
- "errors":[
1137
- {"shape":"InvalidRequestException"},
1138
- {"shape":"NotFoundException"},
1139
- {"shape":"InternalServiceException"},
1140
- {"shape":"UnsupportedRegionException"}
1141
- ]
1142
- },
1143
- "UpdateRuntimeConfiguration":{
1144
- "name":"UpdateRuntimeConfiguration",
1145
- "http":{
1146
- "method":"POST",
1147
- "requestUri":"/"
1148
- },
1149
- "input":{"shape":"UpdateRuntimeConfigurationInput"},
1150
- "output":{"shape":"UpdateRuntimeConfigurationOutput"},
1151
- "errors":[
1152
- {"shape":"UnauthorizedException"},
1153
- {"shape":"NotFoundException"},
1154
- {"shape":"InternalServiceException"},
1155
- {"shape":"InvalidRequestException"},
1156
- {"shape":"InvalidFleetStatusException"}
1157
- ]
1158
- },
1159
- "UpdateScript":{
1160
- "name":"UpdateScript",
1161
- "http":{
1162
- "method":"POST",
1163
- "requestUri":"/"
1164
- },
1165
- "input":{"shape":"UpdateScriptInput"},
1166
- "output":{"shape":"UpdateScriptOutput"},
1167
- "errors":[
1168
- {"shape":"UnauthorizedException"},
1169
- {"shape":"InvalidRequestException"},
1170
- {"shape":"NotFoundException"},
1171
- {"shape":"InternalServiceException"}
1172
- ]
1173
- },
1174
- "ValidateMatchmakingRuleSet":{
1175
- "name":"ValidateMatchmakingRuleSet",
1176
- "http":{
1177
- "method":"POST",
1178
- "requestUri":"/"
1179
- },
1180
- "input":{"shape":"ValidateMatchmakingRuleSetInput"},
1181
- "output":{"shape":"ValidateMatchmakingRuleSetOutput"},
1182
- "errors":[
1183
- {"shape":"InternalServiceException"},
1184
- {"shape":"UnsupportedRegionException"},
1185
- {"shape":"InvalidRequestException"}
1186
- ]
1187
- }
1188
- },
1189
- "shapes":{
1190
- "AcceptMatchInput":{
1191
- "type":"structure",
1192
- "required":[
1193
- "TicketId",
1194
- "PlayerIds",
1195
- "AcceptanceType"
1196
- ],
1197
- "members":{
1198
- "TicketId":{"shape":"MatchmakingIdStringModel"},
1199
- "PlayerIds":{"shape":"StringList"},
1200
- "AcceptanceType":{"shape":"AcceptanceType"}
1201
- }
1202
- },
1203
- "AcceptMatchOutput":{
1204
- "type":"structure",
1205
- "members":{
1206
- }
1207
- },
1208
- "AcceptanceType":{
1209
- "type":"string",
1210
- "enum":[
1211
- "ACCEPT",
1212
- "REJECT"
1213
- ]
1214
- },
1215
- "Alias":{
1216
- "type":"structure",
1217
- "members":{
1218
- "AliasId":{"shape":"AliasId"},
1219
- "Name":{"shape":"NonBlankAndLengthConstraintString"},
1220
- "AliasArn":{"shape":"ArnStringModel"},
1221
- "Description":{"shape":"FreeText"},
1222
- "RoutingStrategy":{"shape":"RoutingStrategy"},
1223
- "CreationTime":{"shape":"Timestamp"},
1224
- "LastUpdatedTime":{"shape":"Timestamp"}
1225
- }
1226
- },
1227
- "AliasId":{
1228
- "type":"string",
1229
- "pattern":"^alias-\\S+|^arn:.*:alias\\/alias-\\S+"
1230
- },
1231
- "AliasList":{
1232
- "type":"list",
1233
- "member":{"shape":"Alias"}
1234
- },
1235
- "AmazonResourceName":{
1236
- "type":"string",
1237
- "max":1011,
1238
- "min":1
1239
- },
1240
- "ArnStringModel":{
1241
- "type":"string",
1242
- "max":256,
1243
- "min":1,
1244
- "pattern":"[a-zA-Z0-9:/-]+"
1245
- },
1246
- "AttributeValue":{
1247
- "type":"structure",
1248
- "members":{
1249
- "S":{"shape":"NonZeroAndMaxString"},
1250
- "N":{"shape":"DoubleObject"},
1251
- "SL":{"shape":"StringList"},
1252
- "SDM":{"shape":"StringDoubleMap"}
1253
- }
1254
- },
1255
- "AwsCredentials":{
1256
- "type":"structure",
1257
- "members":{
1258
- "AccessKeyId":{"shape":"NonEmptyString"},
1259
- "SecretAccessKey":{"shape":"NonEmptyString"},
1260
- "SessionToken":{"shape":"NonEmptyString"}
1261
- },
1262
- "sensitive":true
1263
- },
1264
- "BackfillMode":{
1265
- "type":"string",
1266
- "enum":[
1267
- "AUTOMATIC",
1268
- "MANUAL"
1269
- ]
1270
- },
1271
- "BooleanModel":{"type":"boolean"},
1272
- "Build":{
1273
- "type":"structure",
1274
- "members":{
1275
- "BuildId":{"shape":"BuildId"},
1276
- "BuildArn":{"shape":"BuildArn"},
1277
- "Name":{"shape":"FreeText"},
1278
- "Version":{"shape":"FreeText"},
1279
- "Status":{"shape":"BuildStatus"},
1280
- "SizeOnDisk":{"shape":"PositiveLong"},
1281
- "OperatingSystem":{"shape":"OperatingSystem"},
1282
- "CreationTime":{"shape":"Timestamp"}
1283
- }
1284
- },
1285
- "BuildArn":{
1286
- "type":"string",
1287
- "pattern":"^arn:.*:build\\/build-\\S+"
1288
- },
1289
- "BuildId":{
1290
- "type":"string",
1291
- "pattern":"^build-\\S+|^arn:.*:build\\/build-\\S+"
1292
- },
1293
- "BuildList":{
1294
- "type":"list",
1295
- "member":{"shape":"Build"}
1296
- },
1297
- "BuildStatus":{
1298
- "type":"string",
1299
- "enum":[
1300
- "INITIALIZED",
1301
- "READY",
1302
- "FAILED"
1303
- ]
1304
- },
1305
- "CertificateConfiguration":{
1306
- "type":"structure",
1307
- "required":["CertificateType"],
1308
- "members":{
1309
- "CertificateType":{"shape":"CertificateType"}
1310
- }
1311
- },
1312
- "CertificateType":{
1313
- "type":"string",
1314
- "enum":[
1315
- "DISABLED",
1316
- "GENERATED"
1317
- ]
1318
- },
1319
- "ComparisonOperatorType":{
1320
- "type":"string",
1321
- "enum":[
1322
- "GreaterThanOrEqualToThreshold",
1323
- "GreaterThanThreshold",
1324
- "LessThanThreshold",
1325
- "LessThanOrEqualToThreshold"
1326
- ]
1327
- },
1328
- "ConflictException":{
1329
- "type":"structure",
1330
- "members":{
1331
- "Message":{"shape":"NonEmptyString"}
1332
- },
1333
- "exception":true
1334
- },
1335
- "CreateAliasInput":{
1336
- "type":"structure",
1337
- "required":[
1338
- "Name",
1339
- "RoutingStrategy"
1340
- ],
1341
- "members":{
1342
- "Name":{"shape":"NonBlankAndLengthConstraintString"},
1343
- "Description":{"shape":"NonZeroAndMaxString"},
1344
- "RoutingStrategy":{"shape":"RoutingStrategy"},
1345
- "Tags":{"shape":"TagList"}
1346
- }
1347
- },
1348
- "CreateAliasOutput":{
1349
- "type":"structure",
1350
- "members":{
1351
- "Alias":{"shape":"Alias"}
1352
- }
1353
- },
1354
- "CreateBuildInput":{
1355
- "type":"structure",
1356
- "members":{
1357
- "Name":{"shape":"NonZeroAndMaxString"},
1358
- "Version":{"shape":"NonZeroAndMaxString"},
1359
- "StorageLocation":{"shape":"S3Location"},
1360
- "OperatingSystem":{"shape":"OperatingSystem"},
1361
- "Tags":{"shape":"TagList"}
1362
- }
1363
- },
1364
- "CreateBuildOutput":{
1365
- "type":"structure",
1366
- "members":{
1367
- "Build":{"shape":"Build"},
1368
- "UploadCredentials":{"shape":"AwsCredentials"},
1369
- "StorageLocation":{"shape":"S3Location"}
1370
- }
1371
- },
1372
- "CreateFleetInput":{
1373
- "type":"structure",
1374
- "required":[
1375
- "Name",
1376
- "EC2InstanceType"
1377
- ],
1378
- "members":{
1379
- "Name":{"shape":"NonZeroAndMaxString"},
1380
- "Description":{"shape":"NonZeroAndMaxString"},
1381
- "BuildId":{"shape":"BuildId"},
1382
- "ScriptId":{"shape":"ScriptId"},
1383
- "ServerLaunchPath":{"shape":"NonZeroAndMaxString"},
1384
- "ServerLaunchParameters":{"shape":"NonZeroAndMaxString"},
1385
- "LogPaths":{"shape":"StringList"},
1386
- "EC2InstanceType":{"shape":"EC2InstanceType"},
1387
- "EC2InboundPermissions":{"shape":"IpPermissionsList"},
1388
- "NewGameSessionProtectionPolicy":{"shape":"ProtectionPolicy"},
1389
- "RuntimeConfiguration":{"shape":"RuntimeConfiguration"},
1390
- "ResourceCreationLimitPolicy":{"shape":"ResourceCreationLimitPolicy"},
1391
- "MetricGroups":{"shape":"MetricGroupList"},
1392
- "PeerVpcAwsAccountId":{"shape":"NonZeroAndMaxString"},
1393
- "PeerVpcId":{"shape":"NonZeroAndMaxString"},
1394
- "FleetType":{"shape":"FleetType"},
1395
- "InstanceRoleArn":{"shape":"NonEmptyString"},
1396
- "CertificateConfiguration":{"shape":"CertificateConfiguration"},
1397
- "Tags":{"shape":"TagList"}
1398
- }
1399
- },
1400
- "CreateFleetOutput":{
1401
- "type":"structure",
1402
- "members":{
1403
- "FleetAttributes":{"shape":"FleetAttributes"}
1404
- }
1405
- },
1406
- "CreateGameSessionInput":{
1407
- "type":"structure",
1408
- "required":["MaximumPlayerSessionCount"],
1409
- "members":{
1410
- "FleetId":{"shape":"FleetId"},
1411
- "AliasId":{"shape":"AliasId"},
1412
- "MaximumPlayerSessionCount":{"shape":"WholeNumber"},
1413
- "Name":{"shape":"NonZeroAndMaxString"},
1414
- "GameProperties":{"shape":"GamePropertyList"},
1415
- "CreatorId":{"shape":"NonZeroAndMaxString"},
1416
- "GameSessionId":{"shape":"IdStringModel"},
1417
- "IdempotencyToken":{"shape":"IdStringModel"},
1418
- "GameSessionData":{"shape":"GameSessionData"}
1419
- }
1420
- },
1421
- "CreateGameSessionOutput":{
1422
- "type":"structure",
1423
- "members":{
1424
- "GameSession":{"shape":"GameSession"}
1425
- }
1426
- },
1427
- "CreateGameSessionQueueInput":{
1428
- "type":"structure",
1429
- "required":["Name"],
1430
- "members":{
1431
- "Name":{"shape":"GameSessionQueueName"},
1432
- "TimeoutInSeconds":{"shape":"WholeNumber"},
1433
- "PlayerLatencyPolicies":{"shape":"PlayerLatencyPolicyList"},
1434
- "Destinations":{"shape":"GameSessionQueueDestinationList"},
1435
- "Tags":{"shape":"TagList"}
1436
- }
1437
- },
1438
- "CreateGameSessionQueueOutput":{
1439
- "type":"structure",
1440
- "members":{
1441
- "GameSessionQueue":{"shape":"GameSessionQueue"}
1442
- }
1443
- },
1444
- "CreateMatchmakingConfigurationInput":{
1445
- "type":"structure",
1446
- "required":[
1447
- "Name",
1448
- "GameSessionQueueArns",
1449
- "RequestTimeoutSeconds",
1450
- "AcceptanceRequired",
1451
- "RuleSetName"
1452
- ],
1453
- "members":{
1454
- "Name":{"shape":"MatchmakingIdStringModel"},
1455
- "Description":{"shape":"NonZeroAndMaxString"},
1456
- "GameSessionQueueArns":{"shape":"QueueArnsList"},
1457
- "RequestTimeoutSeconds":{"shape":"MatchmakingRequestTimeoutInteger"},
1458
- "AcceptanceTimeoutSeconds":{"shape":"MatchmakingAcceptanceTimeoutInteger"},
1459
- "AcceptanceRequired":{"shape":"BooleanModel"},
1460
- "RuleSetName":{"shape":"MatchmakingRuleSetName"},
1461
- "NotificationTarget":{"shape":"SnsArnStringModel"},
1462
- "AdditionalPlayerCount":{"shape":"WholeNumber"},
1463
- "CustomEventData":{"shape":"CustomEventData"},
1464
- "GameProperties":{"shape":"GamePropertyList"},
1465
- "GameSessionData":{"shape":"GameSessionData"},
1466
- "BackfillMode":{"shape":"BackfillMode"},
1467
- "Tags":{"shape":"TagList"}
1468
- }
1469
- },
1470
- "CreateMatchmakingConfigurationOutput":{
1471
- "type":"structure",
1472
- "members":{
1473
- "Configuration":{"shape":"MatchmakingConfiguration"}
1474
- }
1475
- },
1476
- "CreateMatchmakingRuleSetInput":{
1477
- "type":"structure",
1478
- "required":[
1479
- "Name",
1480
- "RuleSetBody"
1481
- ],
1482
- "members":{
1483
- "Name":{"shape":"MatchmakingIdStringModel"},
1484
- "RuleSetBody":{"shape":"RuleSetBody"},
1485
- "Tags":{"shape":"TagList"}
1486
- }
1487
- },
1488
- "CreateMatchmakingRuleSetOutput":{
1489
- "type":"structure",
1490
- "required":["RuleSet"],
1491
- "members":{
1492
- "RuleSet":{"shape":"MatchmakingRuleSet"}
1493
- }
1494
- },
1495
- "CreatePlayerSessionInput":{
1496
- "type":"structure",
1497
- "required":[
1498
- "GameSessionId",
1499
- "PlayerId"
1500
- ],
1501
- "members":{
1502
- "GameSessionId":{"shape":"ArnStringModel"},
1503
- "PlayerId":{"shape":"NonZeroAndMaxString"},
1504
- "PlayerData":{"shape":"PlayerData"}
1505
- }
1506
- },
1507
- "CreatePlayerSessionOutput":{
1508
- "type":"structure",
1509
- "members":{
1510
- "PlayerSession":{"shape":"PlayerSession"}
1511
- }
1512
- },
1513
- "CreatePlayerSessionsInput":{
1514
- "type":"structure",
1515
- "required":[
1516
- "GameSessionId",
1517
- "PlayerIds"
1518
- ],
1519
- "members":{
1520
- "GameSessionId":{"shape":"ArnStringModel"},
1521
- "PlayerIds":{"shape":"PlayerIdList"},
1522
- "PlayerDataMap":{"shape":"PlayerDataMap"}
1523
- }
1524
- },
1525
- "CreatePlayerSessionsOutput":{
1526
- "type":"structure",
1527
- "members":{
1528
- "PlayerSessions":{"shape":"PlayerSessionList"}
1529
- }
1530
- },
1531
- "CreateScriptInput":{
1532
- "type":"structure",
1533
- "members":{
1534
- "Name":{"shape":"NonZeroAndMaxString"},
1535
- "Version":{"shape":"NonZeroAndMaxString"},
1536
- "StorageLocation":{"shape":"S3Location"},
1537
- "ZipFile":{"shape":"ZipBlob"},
1538
- "Tags":{"shape":"TagList"}
1539
- }
1540
- },
1541
- "CreateScriptOutput":{
1542
- "type":"structure",
1543
- "members":{
1544
- "Script":{"shape":"Script"}
1545
- }
1546
- },
1547
- "CreateVpcPeeringAuthorizationInput":{
1548
- "type":"structure",
1549
- "required":[
1550
- "GameLiftAwsAccountId",
1551
- "PeerVpcId"
1552
- ],
1553
- "members":{
1554
- "GameLiftAwsAccountId":{"shape":"NonZeroAndMaxString"},
1555
- "PeerVpcId":{"shape":"NonZeroAndMaxString"}
1556
- }
1557
- },
1558
- "CreateVpcPeeringAuthorizationOutput":{
1559
- "type":"structure",
1560
- "members":{
1561
- "VpcPeeringAuthorization":{"shape":"VpcPeeringAuthorization"}
1562
- }
1563
- },
1564
- "CreateVpcPeeringConnectionInput":{
1565
- "type":"structure",
1566
- "required":[
1567
- "FleetId",
1568
- "PeerVpcAwsAccountId",
1569
- "PeerVpcId"
1570
- ],
1571
- "members":{
1572
- "FleetId":{"shape":"FleetId"},
1573
- "PeerVpcAwsAccountId":{"shape":"NonZeroAndMaxString"},
1574
- "PeerVpcId":{"shape":"NonZeroAndMaxString"}
1575
- }
1576
- },
1577
- "CreateVpcPeeringConnectionOutput":{
1578
- "type":"structure",
1579
- "members":{
1580
- }
1581
- },
1582
- "CustomEventData":{
1583
- "type":"string",
1584
- "max":256,
1585
- "min":0
1586
- },
1587
- "DeleteAliasInput":{
1588
- "type":"structure",
1589
- "required":["AliasId"],
1590
- "members":{
1591
- "AliasId":{"shape":"AliasId"}
1592
- }
1593
- },
1594
- "DeleteBuildInput":{
1595
- "type":"structure",
1596
- "required":["BuildId"],
1597
- "members":{
1598
- "BuildId":{"shape":"BuildId"}
1599
- }
1600
- },
1601
- "DeleteFleetInput":{
1602
- "type":"structure",
1603
- "required":["FleetId"],
1604
- "members":{
1605
- "FleetId":{"shape":"FleetId"}
1606
- }
1607
- },
1608
- "DeleteGameSessionQueueInput":{
1609
- "type":"structure",
1610
- "required":["Name"],
1611
- "members":{
1612
- "Name":{"shape":"GameSessionQueueName"}
1613
- }
1614
- },
1615
- "DeleteGameSessionQueueOutput":{
1616
- "type":"structure",
1617
- "members":{
1618
- }
1619
- },
1620
- "DeleteMatchmakingConfigurationInput":{
1621
- "type":"structure",
1622
- "required":["Name"],
1623
- "members":{
1624
- "Name":{"shape":"MatchmakingConfigurationName"}
1625
- }
1626
- },
1627
- "DeleteMatchmakingConfigurationOutput":{
1628
- "type":"structure",
1629
- "members":{
1630
- }
1631
- },
1632
- "DeleteMatchmakingRuleSetInput":{
1633
- "type":"structure",
1634
- "required":["Name"],
1635
- "members":{
1636
- "Name":{"shape":"MatchmakingRuleSetName"}
1637
- }
1638
- },
1639
- "DeleteMatchmakingRuleSetOutput":{
1640
- "type":"structure",
1641
- "members":{
1642
- }
1643
- },
1644
- "DeleteScalingPolicyInput":{
1645
- "type":"structure",
1646
- "required":[
1647
- "Name",
1648
- "FleetId"
1649
- ],
1650
- "members":{
1651
- "Name":{"shape":"NonZeroAndMaxString"},
1652
- "FleetId":{"shape":"FleetId"}
1653
- }
1654
- },
1655
- "DeleteScriptInput":{
1656
- "type":"structure",
1657
- "required":["ScriptId"],
1658
- "members":{
1659
- "ScriptId":{"shape":"ScriptId"}
1660
- }
1661
- },
1662
- "DeleteVpcPeeringAuthorizationInput":{
1663
- "type":"structure",
1664
- "required":[
1665
- "GameLiftAwsAccountId",
1666
- "PeerVpcId"
1667
- ],
1668
- "members":{
1669
- "GameLiftAwsAccountId":{"shape":"NonZeroAndMaxString"},
1670
- "PeerVpcId":{"shape":"NonZeroAndMaxString"}
1671
- }
1672
- },
1673
- "DeleteVpcPeeringAuthorizationOutput":{
1674
- "type":"structure",
1675
- "members":{
1676
- }
1677
- },
1678
- "DeleteVpcPeeringConnectionInput":{
1679
- "type":"structure",
1680
- "required":[
1681
- "FleetId",
1682
- "VpcPeeringConnectionId"
1683
- ],
1684
- "members":{
1685
- "FleetId":{"shape":"FleetId"},
1686
- "VpcPeeringConnectionId":{"shape":"NonZeroAndMaxString"}
1687
- }
1688
- },
1689
- "DeleteVpcPeeringConnectionOutput":{
1690
- "type":"structure",
1691
- "members":{
1692
- }
1693
- },
1694
- "DescribeAliasInput":{
1695
- "type":"structure",
1696
- "required":["AliasId"],
1697
- "members":{
1698
- "AliasId":{"shape":"AliasId"}
1699
- }
1700
- },
1701
- "DescribeAliasOutput":{
1702
- "type":"structure",
1703
- "members":{
1704
- "Alias":{"shape":"Alias"}
1705
- }
1706
- },
1707
- "DescribeBuildInput":{
1708
- "type":"structure",
1709
- "required":["BuildId"],
1710
- "members":{
1711
- "BuildId":{"shape":"BuildId"}
1712
- }
1713
- },
1714
- "DescribeBuildOutput":{
1715
- "type":"structure",
1716
- "members":{
1717
- "Build":{"shape":"Build"}
1718
- }
1719
- },
1720
- "DescribeEC2InstanceLimitsInput":{
1721
- "type":"structure",
1722
- "members":{
1723
- "EC2InstanceType":{"shape":"EC2InstanceType"}
1724
- }
1725
- },
1726
- "DescribeEC2InstanceLimitsOutput":{
1727
- "type":"structure",
1728
- "members":{
1729
- "EC2InstanceLimits":{"shape":"EC2InstanceLimitList"}
1730
- }
1731
- },
1732
- "DescribeFleetAttributesInput":{
1733
- "type":"structure",
1734
- "members":{
1735
- "FleetIds":{"shape":"FleetIdList"},
1736
- "Limit":{"shape":"PositiveInteger"},
1737
- "NextToken":{"shape":"NonZeroAndMaxString"}
1738
- }
1739
- },
1740
- "DescribeFleetAttributesOutput":{
1741
- "type":"structure",
1742
- "members":{
1743
- "FleetAttributes":{"shape":"FleetAttributesList"},
1744
- "NextToken":{"shape":"NonZeroAndMaxString"}
1745
- }
1746
- },
1747
- "DescribeFleetCapacityInput":{
1748
- "type":"structure",
1749
- "members":{
1750
- "FleetIds":{"shape":"FleetIdList"},
1751
- "Limit":{"shape":"PositiveInteger"},
1752
- "NextToken":{"shape":"NonZeroAndMaxString"}
1753
- }
1754
- },
1755
- "DescribeFleetCapacityOutput":{
1756
- "type":"structure",
1757
- "members":{
1758
- "FleetCapacity":{"shape":"FleetCapacityList"},
1759
- "NextToken":{"shape":"NonZeroAndMaxString"}
1760
- }
1761
- },
1762
- "DescribeFleetEventsInput":{
1763
- "type":"structure",
1764
- "required":["FleetId"],
1765
- "members":{
1766
- "FleetId":{"shape":"FleetId"},
1767
- "StartTime":{"shape":"Timestamp"},
1768
- "EndTime":{"shape":"Timestamp"},
1769
- "Limit":{"shape":"PositiveInteger"},
1770
- "NextToken":{"shape":"NonZeroAndMaxString"}
1771
- }
1772
- },
1773
- "DescribeFleetEventsOutput":{
1774
- "type":"structure",
1775
- "members":{
1776
- "Events":{"shape":"EventList"},
1777
- "NextToken":{"shape":"NonZeroAndMaxString"}
1778
- }
1779
- },
1780
- "DescribeFleetPortSettingsInput":{
1781
- "type":"structure",
1782
- "required":["FleetId"],
1783
- "members":{
1784
- "FleetId":{"shape":"FleetId"}
1785
- }
1786
- },
1787
- "DescribeFleetPortSettingsOutput":{
1788
- "type":"structure",
1789
- "members":{
1790
- "InboundPermissions":{"shape":"IpPermissionsList"}
1791
- }
1792
- },
1793
- "DescribeFleetUtilizationInput":{
1794
- "type":"structure",
1795
- "members":{
1796
- "FleetIds":{"shape":"FleetIdList"},
1797
- "Limit":{"shape":"PositiveInteger"},
1798
- "NextToken":{"shape":"NonZeroAndMaxString"}
1799
- }
1800
- },
1801
- "DescribeFleetUtilizationOutput":{
1802
- "type":"structure",
1803
- "members":{
1804
- "FleetUtilization":{"shape":"FleetUtilizationList"},
1805
- "NextToken":{"shape":"NonZeroAndMaxString"}
1806
- }
1807
- },
1808
- "DescribeGameSessionDetailsInput":{
1809
- "type":"structure",
1810
- "members":{
1811
- "FleetId":{"shape":"FleetId"},
1812
- "GameSessionId":{"shape":"ArnStringModel"},
1813
- "AliasId":{"shape":"AliasId"},
1814
- "StatusFilter":{"shape":"NonZeroAndMaxString"},
1815
- "Limit":{"shape":"PositiveInteger"},
1816
- "NextToken":{"shape":"NonZeroAndMaxString"}
1817
- }
1818
- },
1819
- "DescribeGameSessionDetailsOutput":{
1820
- "type":"structure",
1821
- "members":{
1822
- "GameSessionDetails":{"shape":"GameSessionDetailList"},
1823
- "NextToken":{"shape":"NonZeroAndMaxString"}
1824
- }
1825
- },
1826
- "DescribeGameSessionPlacementInput":{
1827
- "type":"structure",
1828
- "required":["PlacementId"],
1829
- "members":{
1830
- "PlacementId":{"shape":"IdStringModel"}
1831
- }
1832
- },
1833
- "DescribeGameSessionPlacementOutput":{
1834
- "type":"structure",
1835
- "members":{
1836
- "GameSessionPlacement":{"shape":"GameSessionPlacement"}
1837
- }
1838
- },
1839
- "DescribeGameSessionQueuesInput":{
1840
- "type":"structure",
1841
- "members":{
1842
- "Names":{"shape":"GameSessionQueueNameList"},
1843
- "Limit":{"shape":"PositiveInteger"},
1844
- "NextToken":{"shape":"NonZeroAndMaxString"}
1845
- }
1846
- },
1847
- "DescribeGameSessionQueuesOutput":{
1848
- "type":"structure",
1849
- "members":{
1850
- "GameSessionQueues":{"shape":"GameSessionQueueList"},
1851
- "NextToken":{"shape":"NonZeroAndMaxString"}
1852
- }
1853
- },
1854
- "DescribeGameSessionsInput":{
1855
- "type":"structure",
1856
- "members":{
1857
- "FleetId":{"shape":"FleetId"},
1858
- "GameSessionId":{"shape":"ArnStringModel"},
1859
- "AliasId":{"shape":"AliasId"},
1860
- "StatusFilter":{"shape":"NonZeroAndMaxString"},
1861
- "Limit":{"shape":"PositiveInteger"},
1862
- "NextToken":{"shape":"NonZeroAndMaxString"}
1863
- }
1864
- },
1865
- "DescribeGameSessionsOutput":{
1866
- "type":"structure",
1867
- "members":{
1868
- "GameSessions":{"shape":"GameSessionList"},
1869
- "NextToken":{"shape":"NonZeroAndMaxString"}
1870
- }
1871
- },
1872
- "DescribeInstancesInput":{
1873
- "type":"structure",
1874
- "required":["FleetId"],
1875
- "members":{
1876
- "FleetId":{"shape":"FleetId"},
1877
- "InstanceId":{"shape":"InstanceId"},
1878
- "Limit":{"shape":"PositiveInteger"},
1879
- "NextToken":{"shape":"NonZeroAndMaxString"}
1880
- }
1881
- },
1882
- "DescribeInstancesOutput":{
1883
- "type":"structure",
1884
- "members":{
1885
- "Instances":{"shape":"InstanceList"},
1886
- "NextToken":{"shape":"NonZeroAndMaxString"}
1887
- }
1888
- },
1889
- "DescribeMatchmakingConfigurationsInput":{
1890
- "type":"structure",
1891
- "members":{
1892
- "Names":{"shape":"MatchmakingConfigurationNameList"},
1893
- "RuleSetName":{"shape":"MatchmakingRuleSetName"},
1894
- "Limit":{"shape":"PositiveInteger"},
1895
- "NextToken":{"shape":"NonZeroAndMaxString"}
1896
- }
1897
- },
1898
- "DescribeMatchmakingConfigurationsOutput":{
1899
- "type":"structure",
1900
- "members":{
1901
- "Configurations":{"shape":"MatchmakingConfigurationList"},
1902
- "NextToken":{"shape":"NonZeroAndMaxString"}
1903
- }
1904
- },
1905
- "DescribeMatchmakingInput":{
1906
- "type":"structure",
1907
- "required":["TicketIds"],
1908
- "members":{
1909
- "TicketIds":{"shape":"MatchmakingIdList"}
1910
- }
1911
- },
1912
- "DescribeMatchmakingOutput":{
1913
- "type":"structure",
1914
- "members":{
1915
- "TicketList":{"shape":"MatchmakingTicketList"}
1916
- }
1917
- },
1918
- "DescribeMatchmakingRuleSetsInput":{
1919
- "type":"structure",
1920
- "members":{
1921
- "Names":{"shape":"MatchmakingRuleSetNameList"},
1922
- "Limit":{"shape":"RuleSetLimit"},
1923
- "NextToken":{"shape":"NonZeroAndMaxString"}
1924
- }
1925
- },
1926
- "DescribeMatchmakingRuleSetsOutput":{
1927
- "type":"structure",
1928
- "required":["RuleSets"],
1929
- "members":{
1930
- "RuleSets":{"shape":"MatchmakingRuleSetList"},
1931
- "NextToken":{"shape":"NonZeroAndMaxString"}
1932
- }
1933
- },
1934
- "DescribePlayerSessionsInput":{
1935
- "type":"structure",
1936
- "members":{
1937
- "GameSessionId":{"shape":"ArnStringModel"},
1938
- "PlayerId":{"shape":"NonZeroAndMaxString"},
1939
- "PlayerSessionId":{"shape":"PlayerSessionId"},
1940
- "PlayerSessionStatusFilter":{"shape":"NonZeroAndMaxString"},
1941
- "Limit":{"shape":"PositiveInteger"},
1942
- "NextToken":{"shape":"NonZeroAndMaxString"}
1943
- }
1944
- },
1945
- "DescribePlayerSessionsOutput":{
1946
- "type":"structure",
1947
- "members":{
1948
- "PlayerSessions":{"shape":"PlayerSessionList"},
1949
- "NextToken":{"shape":"NonZeroAndMaxString"}
1950
- }
1951
- },
1952
- "DescribeRuntimeConfigurationInput":{
1953
- "type":"structure",
1954
- "required":["FleetId"],
1955
- "members":{
1956
- "FleetId":{"shape":"FleetId"}
1957
- }
1958
- },
1959
- "DescribeRuntimeConfigurationOutput":{
1960
- "type":"structure",
1961
- "members":{
1962
- "RuntimeConfiguration":{"shape":"RuntimeConfiguration"}
1963
- }
1964
- },
1965
- "DescribeScalingPoliciesInput":{
1966
- "type":"structure",
1967
- "required":["FleetId"],
1968
- "members":{
1969
- "FleetId":{"shape":"FleetId"},
1970
- "StatusFilter":{"shape":"ScalingStatusType"},
1971
- "Limit":{"shape":"PositiveInteger"},
1972
- "NextToken":{"shape":"NonZeroAndMaxString"}
1973
- }
1974
- },
1975
- "DescribeScalingPoliciesOutput":{
1976
- "type":"structure",
1977
- "members":{
1978
- "ScalingPolicies":{"shape":"ScalingPolicyList"},
1979
- "NextToken":{"shape":"NonZeroAndMaxString"}
1980
- }
1981
- },
1982
- "DescribeScriptInput":{
1983
- "type":"structure",
1984
- "required":["ScriptId"],
1985
- "members":{
1986
- "ScriptId":{"shape":"ScriptId"}
1987
- }
1988
- },
1989
- "DescribeScriptOutput":{
1990
- "type":"structure",
1991
- "members":{
1992
- "Script":{"shape":"Script"}
1993
- }
1994
- },
1995
- "DescribeVpcPeeringAuthorizationsInput":{
1996
- "type":"structure",
1997
- "members":{
1998
- }
1999
- },
2000
- "DescribeVpcPeeringAuthorizationsOutput":{
2001
- "type":"structure",
2002
- "members":{
2003
- "VpcPeeringAuthorizations":{"shape":"VpcPeeringAuthorizationList"}
2004
- }
2005
- },
2006
- "DescribeVpcPeeringConnectionsInput":{
2007
- "type":"structure",
2008
- "members":{
2009
- "FleetId":{"shape":"FleetId"}
2010
- }
2011
- },
2012
- "DescribeVpcPeeringConnectionsOutput":{
2013
- "type":"structure",
2014
- "members":{
2015
- "VpcPeeringConnections":{"shape":"VpcPeeringConnectionList"}
2016
- }
2017
- },
2018
- "DesiredPlayerSession":{
2019
- "type":"structure",
2020
- "members":{
2021
- "PlayerId":{"shape":"NonZeroAndMaxString"},
2022
- "PlayerData":{"shape":"PlayerData"}
2023
- }
2024
- },
2025
- "DesiredPlayerSessionList":{
2026
- "type":"list",
2027
- "member":{"shape":"DesiredPlayerSession"}
2028
- },
2029
- "DnsName":{"type":"string"},
2030
- "Double":{"type":"double"},
2031
- "DoubleObject":{"type":"double"},
2032
- "EC2InstanceCounts":{
2033
- "type":"structure",
2034
- "members":{
2035
- "DESIRED":{"shape":"WholeNumber"},
2036
- "MINIMUM":{"shape":"WholeNumber"},
2037
- "MAXIMUM":{"shape":"WholeNumber"},
2038
- "PENDING":{"shape":"WholeNumber"},
2039
- "ACTIVE":{"shape":"WholeNumber"},
2040
- "IDLE":{"shape":"WholeNumber"},
2041
- "TERMINATING":{"shape":"WholeNumber"}
2042
- }
2043
- },
2044
- "EC2InstanceLimit":{
2045
- "type":"structure",
2046
- "members":{
2047
- "EC2InstanceType":{"shape":"EC2InstanceType"},
2048
- "CurrentInstances":{"shape":"WholeNumber"},
2049
- "InstanceLimit":{"shape":"WholeNumber"}
2050
- }
2051
- },
2052
- "EC2InstanceLimitList":{
2053
- "type":"list",
2054
- "member":{"shape":"EC2InstanceLimit"}
2055
- },
2056
- "EC2InstanceType":{
2057
- "type":"string",
2058
- "enum":[
2059
- "t2.micro",
2060
- "t2.small",
2061
- "t2.medium",
2062
- "t2.large",
2063
- "c3.large",
2064
- "c3.xlarge",
2065
- "c3.2xlarge",
2066
- "c3.4xlarge",
2067
- "c3.8xlarge",
2068
- "c4.large",
2069
- "c4.xlarge",
2070
- "c4.2xlarge",
2071
- "c4.4xlarge",
2072
- "c4.8xlarge",
2073
- "c5.large",
2074
- "c5.xlarge",
2075
- "c5.2xlarge",
2076
- "c5.4xlarge",
2077
- "c5.9xlarge",
2078
- "c5.12xlarge",
2079
- "c5.18xlarge",
2080
- "c5.24xlarge",
2081
- "r3.large",
2082
- "r3.xlarge",
2083
- "r3.2xlarge",
2084
- "r3.4xlarge",
2085
- "r3.8xlarge",
2086
- "r4.large",
2087
- "r4.xlarge",
2088
- "r4.2xlarge",
2089
- "r4.4xlarge",
2090
- "r4.8xlarge",
2091
- "r4.16xlarge",
2092
- "r5.large",
2093
- "r5.xlarge",
2094
- "r5.2xlarge",
2095
- "r5.4xlarge",
2096
- "r5.8xlarge",
2097
- "r5.12xlarge",
2098
- "r5.16xlarge",
2099
- "r5.24xlarge",
2100
- "m3.medium",
2101
- "m3.large",
2102
- "m3.xlarge",
2103
- "m3.2xlarge",
2104
- "m4.large",
2105
- "m4.xlarge",
2106
- "m4.2xlarge",
2107
- "m4.4xlarge",
2108
- "m4.10xlarge",
2109
- "m5.large",
2110
- "m5.xlarge",
2111
- "m5.2xlarge",
2112
- "m5.4xlarge",
2113
- "m5.8xlarge",
2114
- "m5.12xlarge",
2115
- "m5.16xlarge",
2116
- "m5.24xlarge"
2117
- ]
2118
- },
2119
- "Event":{
2120
- "type":"structure",
2121
- "members":{
2122
- "EventId":{"shape":"NonZeroAndMaxString"},
2123
- "ResourceId":{"shape":"NonZeroAndMaxString"},
2124
- "EventCode":{"shape":"EventCode"},
2125
- "Message":{"shape":"NonEmptyString"},
2126
- "EventTime":{"shape":"Timestamp"},
2127
- "PreSignedLogUrl":{"shape":"NonZeroAndMaxString"}
2128
- }
2129
- },
2130
- "EventCode":{
2131
- "type":"string",
2132
- "enum":[
2133
- "GENERIC_EVENT",
2134
- "FLEET_CREATED",
2135
- "FLEET_DELETED",
2136
- "FLEET_SCALING_EVENT",
2137
- "FLEET_STATE_DOWNLOADING",
2138
- "FLEET_STATE_VALIDATING",
2139
- "FLEET_STATE_BUILDING",
2140
- "FLEET_STATE_ACTIVATING",
2141
- "FLEET_STATE_ACTIVE",
2142
- "FLEET_STATE_ERROR",
2143
- "FLEET_INITIALIZATION_FAILED",
2144
- "FLEET_BINARY_DOWNLOAD_FAILED",
2145
- "FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND",
2146
- "FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE",
2147
- "FLEET_VALIDATION_TIMED_OUT",
2148
- "FLEET_ACTIVATION_FAILED",
2149
- "FLEET_ACTIVATION_FAILED_NO_INSTANCES",
2150
- "FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED",
2151
- "SERVER_PROCESS_INVALID_PATH",
2152
- "SERVER_PROCESS_SDK_INITIALIZATION_TIMEOUT",
2153
- "SERVER_PROCESS_PROCESS_READY_TIMEOUT",
2154
- "SERVER_PROCESS_CRASHED",
2155
- "SERVER_PROCESS_TERMINATED_UNHEALTHY",
2156
- "SERVER_PROCESS_FORCE_TERMINATED",
2157
- "SERVER_PROCESS_PROCESS_EXIT_TIMEOUT",
2158
- "GAME_SESSION_ACTIVATION_TIMEOUT",
2159
- "FLEET_CREATION_EXTRACTING_BUILD",
2160
- "FLEET_CREATION_RUNNING_INSTALLER",
2161
- "FLEET_CREATION_VALIDATING_RUNTIME_CONFIG",
2162
- "FLEET_VPC_PEERING_SUCCEEDED",
2163
- "FLEET_VPC_PEERING_FAILED",
2164
- "FLEET_VPC_PEERING_DELETED",
2165
- "INSTANCE_INTERRUPTED"
2166
- ]
2167
- },
2168
- "EventList":{
2169
- "type":"list",
2170
- "member":{"shape":"Event"}
2171
- },
2172
- "FleetAction":{
2173
- "type":"string",
2174
- "enum":["AUTO_SCALING"]
2175
- },
2176
- "FleetActionList":{
2177
- "type":"list",
2178
- "member":{"shape":"FleetAction"},
2179
- "max":1,
2180
- "min":1
2181
- },
2182
- "FleetAttributes":{
2183
- "type":"structure",
2184
- "members":{
2185
- "FleetId":{"shape":"FleetId"},
2186
- "FleetArn":{"shape":"ArnStringModel"},
2187
- "FleetType":{"shape":"FleetType"},
2188
- "InstanceType":{"shape":"EC2InstanceType"},
2189
- "Description":{"shape":"NonZeroAndMaxString"},
2190
- "Name":{"shape":"NonZeroAndMaxString"},
2191
- "CreationTime":{"shape":"Timestamp"},
2192
- "TerminationTime":{"shape":"Timestamp"},
2193
- "Status":{"shape":"FleetStatus"},
2194
- "BuildId":{"shape":"BuildId"},
2195
- "BuildArn":{"shape":"BuildArn"},
2196
- "ScriptId":{"shape":"ScriptId"},
2197
- "ScriptArn":{"shape":"ScriptArn"},
2198
- "ServerLaunchPath":{"shape":"NonZeroAndMaxString"},
2199
- "ServerLaunchParameters":{"shape":"NonZeroAndMaxString"},
2200
- "LogPaths":{"shape":"StringList"},
2201
- "NewGameSessionProtectionPolicy":{"shape":"ProtectionPolicy"},
2202
- "OperatingSystem":{"shape":"OperatingSystem"},
2203
- "ResourceCreationLimitPolicy":{"shape":"ResourceCreationLimitPolicy"},
2204
- "MetricGroups":{"shape":"MetricGroupList"},
2205
- "StoppedActions":{"shape":"FleetActionList"},
2206
- "InstanceRoleArn":{"shape":"NonEmptyString"},
2207
- "CertificateConfiguration":{"shape":"CertificateConfiguration"}
2208
- }
2209
- },
2210
- "FleetAttributesList":{
2211
- "type":"list",
2212
- "member":{"shape":"FleetAttributes"}
2213
- },
2214
- "FleetCapacity":{
2215
- "type":"structure",
2216
- "members":{
2217
- "FleetId":{"shape":"FleetId"},
2218
- "InstanceType":{"shape":"EC2InstanceType"},
2219
- "InstanceCounts":{"shape":"EC2InstanceCounts"}
2220
- }
2221
- },
2222
- "FleetCapacityExceededException":{
2223
- "type":"structure",
2224
- "members":{
2225
- "Message":{"shape":"NonEmptyString"}
2226
- },
2227
- "exception":true
2228
- },
2229
- "FleetCapacityList":{
2230
- "type":"list",
2231
- "member":{"shape":"FleetCapacity"}
2232
- },
2233
- "FleetId":{
2234
- "type":"string",
2235
- "pattern":"^fleet-\\S+|^arn:.*:fleet\\/fleet-\\S+"
2236
- },
2237
- "FleetIdList":{
2238
- "type":"list",
2239
- "member":{"shape":"FleetId"},
2240
- "min":1
2241
- },
2242
- "FleetStatus":{
2243
- "type":"string",
2244
- "enum":[
2245
- "NEW",
2246
- "DOWNLOADING",
2247
- "VALIDATING",
2248
- "BUILDING",
2249
- "ACTIVATING",
2250
- "ACTIVE",
2251
- "DELETING",
2252
- "ERROR",
2253
- "TERMINATED"
2254
- ]
2255
- },
2256
- "FleetType":{
2257
- "type":"string",
2258
- "enum":[
2259
- "ON_DEMAND",
2260
- "SPOT"
2261
- ]
2262
- },
2263
- "FleetUtilization":{
2264
- "type":"structure",
2265
- "members":{
2266
- "FleetId":{"shape":"FleetId"},
2267
- "ActiveServerProcessCount":{"shape":"WholeNumber"},
2268
- "ActiveGameSessionCount":{"shape":"WholeNumber"},
2269
- "CurrentPlayerSessionCount":{"shape":"WholeNumber"},
2270
- "MaximumPlayerSessionCount":{"shape":"WholeNumber"}
2271
- }
2272
- },
2273
- "FleetUtilizationList":{
2274
- "type":"list",
2275
- "member":{"shape":"FleetUtilization"}
2276
- },
2277
- "Float":{"type":"float"},
2278
- "FreeText":{"type":"string"},
2279
- "GameProperty":{
2280
- "type":"structure",
2281
- "required":[
2282
- "Key",
2283
- "Value"
2284
- ],
2285
- "members":{
2286
- "Key":{"shape":"GamePropertyKey"},
2287
- "Value":{"shape":"GamePropertyValue"}
2288
- }
2289
- },
2290
- "GamePropertyKey":{
2291
- "type":"string",
2292
- "max":32
2293
- },
2294
- "GamePropertyList":{
2295
- "type":"list",
2296
- "member":{"shape":"GameProperty"},
2297
- "max":16
2298
- },
2299
- "GamePropertyValue":{
2300
- "type":"string",
2301
- "max":96
2302
- },
2303
- "GameSession":{
2304
- "type":"structure",
2305
- "members":{
2306
- "GameSessionId":{"shape":"NonZeroAndMaxString"},
2307
- "Name":{"shape":"NonZeroAndMaxString"},
2308
- "FleetId":{"shape":"FleetId"},
2309
- "FleetArn":{"shape":"ArnStringModel"},
2310
- "CreationTime":{"shape":"Timestamp"},
2311
- "TerminationTime":{"shape":"Timestamp"},
2312
- "CurrentPlayerSessionCount":{"shape":"WholeNumber"},
2313
- "MaximumPlayerSessionCount":{"shape":"WholeNumber"},
2314
- "Status":{"shape":"GameSessionStatus"},
2315
- "StatusReason":{"shape":"GameSessionStatusReason"},
2316
- "GameProperties":{"shape":"GamePropertyList"},
2317
- "IpAddress":{"shape":"IpAddress"},
2318
- "DnsName":{"shape":"DnsName"},
2319
- "Port":{"shape":"PortNumber"},
2320
- "PlayerSessionCreationPolicy":{"shape":"PlayerSessionCreationPolicy"},
2321
- "CreatorId":{"shape":"NonZeroAndMaxString"},
2322
- "GameSessionData":{"shape":"GameSessionData"},
2323
- "MatchmakerData":{"shape":"MatchmakerData"}
2324
- }
2325
- },
2326
- "GameSessionActivationTimeoutSeconds":{
2327
- "type":"integer",
2328
- "max":600,
2329
- "min":1
2330
- },
2331
- "GameSessionConnectionInfo":{
2332
- "type":"structure",
2333
- "members":{
2334
- "GameSessionArn":{"shape":"ArnStringModel"},
2335
- "IpAddress":{"shape":"StringModel"},
2336
- "DnsName":{"shape":"DnsName"},
2337
- "Port":{"shape":"PositiveInteger"},
2338
- "MatchedPlayerSessions":{"shape":"MatchedPlayerSessionList"}
2339
- }
2340
- },
2341
- "GameSessionData":{
2342
- "type":"string",
2343
- "max":4096,
2344
- "min":1
2345
- },
2346
- "GameSessionDetail":{
2347
- "type":"structure",
2348
- "members":{
2349
- "GameSession":{"shape":"GameSession"},
2350
- "ProtectionPolicy":{"shape":"ProtectionPolicy"}
2351
- }
2352
- },
2353
- "GameSessionDetailList":{
2354
- "type":"list",
2355
- "member":{"shape":"GameSessionDetail"}
2356
- },
2357
- "GameSessionFullException":{
2358
- "type":"structure",
2359
- "members":{
2360
- "Message":{"shape":"NonEmptyString"}
2361
- },
2362
- "exception":true
2363
- },
2364
- "GameSessionList":{
2365
- "type":"list",
2366
- "member":{"shape":"GameSession"}
2367
- },
2368
- "GameSessionPlacement":{
2369
- "type":"structure",
2370
- "members":{
2371
- "PlacementId":{"shape":"IdStringModel"},
2372
- "GameSessionQueueName":{"shape":"GameSessionQueueName"},
2373
- "Status":{"shape":"GameSessionPlacementState"},
2374
- "GameProperties":{"shape":"GamePropertyList"},
2375
- "MaximumPlayerSessionCount":{"shape":"WholeNumber"},
2376
- "GameSessionName":{"shape":"NonZeroAndMaxString"},
2377
- "GameSessionId":{"shape":"NonZeroAndMaxString"},
2378
- "GameSessionArn":{"shape":"NonZeroAndMaxString"},
2379
- "GameSessionRegion":{"shape":"NonZeroAndMaxString"},
2380
- "PlayerLatencies":{"shape":"PlayerLatencyList"},
2381
- "StartTime":{"shape":"Timestamp"},
2382
- "EndTime":{"shape":"Timestamp"},
2383
- "IpAddress":{"shape":"IpAddress"},
2384
- "DnsName":{"shape":"DnsName"},
2385
- "Port":{"shape":"PortNumber"},
2386
- "PlacedPlayerSessions":{"shape":"PlacedPlayerSessionList"},
2387
- "GameSessionData":{"shape":"GameSessionData"},
2388
- "MatchmakerData":{"shape":"MatchmakerData"}
2389
- }
2390
- },
2391
- "GameSessionPlacementState":{
2392
- "type":"string",
2393
- "enum":[
2394
- "PENDING",
2395
- "FULFILLED",
2396
- "CANCELLED",
2397
- "TIMED_OUT",
2398
- "FAILED"
2399
- ]
2400
- },
2401
- "GameSessionQueue":{
2402
- "type":"structure",
2403
- "members":{
2404
- "Name":{"shape":"GameSessionQueueName"},
2405
- "GameSessionQueueArn":{"shape":"ArnStringModel"},
2406
- "TimeoutInSeconds":{"shape":"WholeNumber"},
2407
- "PlayerLatencyPolicies":{"shape":"PlayerLatencyPolicyList"},
2408
- "Destinations":{"shape":"GameSessionQueueDestinationList"}
2409
- }
2410
- },
2411
- "GameSessionQueueDestination":{
2412
- "type":"structure",
2413
- "members":{
2414
- "DestinationArn":{"shape":"ArnStringModel"}
2415
- }
2416
- },
2417
- "GameSessionQueueDestinationList":{
2418
- "type":"list",
2419
- "member":{"shape":"GameSessionQueueDestination"}
2420
- },
2421
- "GameSessionQueueList":{
2422
- "type":"list",
2423
- "member":{"shape":"GameSessionQueue"}
2424
- },
2425
- "GameSessionQueueName":{
2426
- "type":"string",
2427
- "max":256,
2428
- "min":1,
2429
- "pattern":"[a-zA-Z0-9-]+|^arn:.*:gamesessionqueue\\/[a-zA-Z0-9-]+"
2430
- },
2431
- "GameSessionQueueNameList":{
2432
- "type":"list",
2433
- "member":{"shape":"GameSessionQueueName"}
2434
- },
2435
- "GameSessionStatus":{
2436
- "type":"string",
2437
- "enum":[
2438
- "ACTIVE",
2439
- "ACTIVATING",
2440
- "TERMINATED",
2441
- "TERMINATING",
2442
- "ERROR"
2443
- ]
2444
- },
2445
- "GameSessionStatusReason":{
2446
- "type":"string",
2447
- "enum":["INTERRUPTED"]
2448
- },
2449
- "GetGameSessionLogUrlInput":{
2450
- "type":"structure",
2451
- "required":["GameSessionId"],
2452
- "members":{
2453
- "GameSessionId":{"shape":"ArnStringModel"}
2454
- }
2455
- },
2456
- "GetGameSessionLogUrlOutput":{
2457
- "type":"structure",
2458
- "members":{
2459
- "PreSignedUrl":{"shape":"NonZeroAndMaxString"}
2460
- }
2461
- },
2462
- "GetInstanceAccessInput":{
2463
- "type":"structure",
2464
- "required":[
2465
- "FleetId",
2466
- "InstanceId"
2467
- ],
2468
- "members":{
2469
- "FleetId":{"shape":"FleetId"},
2470
- "InstanceId":{"shape":"InstanceId"}
2471
- }
2472
- },
2473
- "GetInstanceAccessOutput":{
2474
- "type":"structure",
2475
- "members":{
2476
- "InstanceAccess":{"shape":"InstanceAccess"}
2477
- }
2478
- },
2479
- "IdStringModel":{
2480
- "type":"string",
2481
- "max":48,
2482
- "min":1,
2483
- "pattern":"[a-zA-Z0-9-]+"
2484
- },
2485
- "IdempotentParameterMismatchException":{
2486
- "type":"structure",
2487
- "members":{
2488
- "Message":{"shape":"NonEmptyString"}
2489
- },
2490
- "exception":true
2491
- },
2492
- "Instance":{
2493
- "type":"structure",
2494
- "members":{
2495
- "FleetId":{"shape":"FleetId"},
2496
- "InstanceId":{"shape":"InstanceId"},
2497
- "IpAddress":{"shape":"IpAddress"},
2498
- "DnsName":{"shape":"DnsName"},
2499
- "OperatingSystem":{"shape":"OperatingSystem"},
2500
- "Type":{"shape":"EC2InstanceType"},
2501
- "Status":{"shape":"InstanceStatus"},
2502
- "CreationTime":{"shape":"Timestamp"}
2503
- }
2504
- },
2505
- "InstanceAccess":{
2506
- "type":"structure",
2507
- "members":{
2508
- "FleetId":{"shape":"FleetId"},
2509
- "InstanceId":{"shape":"InstanceId"},
2510
- "IpAddress":{"shape":"IpAddress"},
2511
- "OperatingSystem":{"shape":"OperatingSystem"},
2512
- "Credentials":{"shape":"InstanceCredentials"}
2513
- }
2514
- },
2515
- "InstanceCredentials":{
2516
- "type":"structure",
2517
- "members":{
2518
- "UserName":{"shape":"NonEmptyString"},
2519
- "Secret":{"shape":"NonEmptyString"}
2520
- },
2521
- "sensitive":true
2522
- },
2523
- "InstanceId":{
2524
- "type":"string",
2525
- "pattern":"[a-zA-Z0-9\\.-]+"
2526
- },
2527
- "InstanceList":{
2528
- "type":"list",
2529
- "member":{"shape":"Instance"}
2530
- },
2531
- "InstanceStatus":{
2532
- "type":"string",
2533
- "enum":[
2534
- "PENDING",
2535
- "ACTIVE",
2536
- "TERMINATING"
2537
- ]
2538
- },
2539
- "Integer":{"type":"integer"},
2540
- "InternalServiceException":{
2541
- "type":"structure",
2542
- "members":{
2543
- "Message":{"shape":"NonEmptyString"}
2544
- },
2545
- "exception":true,
2546
- "fault":true
2547
- },
2548
- "InvalidFleetStatusException":{
2549
- "type":"structure",
2550
- "members":{
2551
- "Message":{"shape":"NonEmptyString"}
2552
- },
2553
- "exception":true
2554
- },
2555
- "InvalidGameSessionStatusException":{
2556
- "type":"structure",
2557
- "members":{
2558
- "Message":{"shape":"NonEmptyString"}
2559
- },
2560
- "exception":true
2561
- },
2562
- "InvalidRequestException":{
2563
- "type":"structure",
2564
- "members":{
2565
- "Message":{"shape":"NonEmptyString"}
2566
- },
2567
- "exception":true
2568
- },
2569
- "IpAddress":{"type":"string"},
2570
- "IpPermission":{
2571
- "type":"structure",
2572
- "required":[
2573
- "FromPort",
2574
- "ToPort",
2575
- "IpRange",
2576
- "Protocol"
2577
- ],
2578
- "members":{
2579
- "FromPort":{"shape":"PortNumber"},
2580
- "ToPort":{"shape":"PortNumber"},
2581
- "IpRange":{"shape":"NonBlankString"},
2582
- "Protocol":{"shape":"IpProtocol"}
2583
- }
2584
- },
2585
- "IpPermissionsList":{
2586
- "type":"list",
2587
- "member":{"shape":"IpPermission"},
2588
- "max":50
2589
- },
2590
- "IpProtocol":{
2591
- "type":"string",
2592
- "enum":[
2593
- "TCP",
2594
- "UDP"
2595
- ]
2596
- },
2597
- "LatencyMap":{
2598
- "type":"map",
2599
- "key":{"shape":"NonEmptyString"},
2600
- "value":{"shape":"PositiveInteger"}
2601
- },
2602
- "LimitExceededException":{
2603
- "type":"structure",
2604
- "members":{
2605
- "Message":{"shape":"NonEmptyString"}
2606
- },
2607
- "exception":true
2608
- },
2609
- "ListAliasesInput":{
2610
- "type":"structure",
2611
- "members":{
2612
- "RoutingStrategyType":{"shape":"RoutingStrategyType"},
2613
- "Name":{"shape":"NonEmptyString"},
2614
- "Limit":{"shape":"PositiveInteger"},
2615
- "NextToken":{"shape":"NonEmptyString"}
2616
- }
2617
- },
2618
- "ListAliasesOutput":{
2619
- "type":"structure",
2620
- "members":{
2621
- "Aliases":{"shape":"AliasList"},
2622
- "NextToken":{"shape":"NonEmptyString"}
2623
- }
2624
- },
2625
- "ListBuildsInput":{
2626
- "type":"structure",
2627
- "members":{
2628
- "Status":{"shape":"BuildStatus"},
2629
- "Limit":{"shape":"PositiveInteger"},
2630
- "NextToken":{"shape":"NonEmptyString"}
2631
- }
2632
- },
2633
- "ListBuildsOutput":{
2634
- "type":"structure",
2635
- "members":{
2636
- "Builds":{"shape":"BuildList"},
2637
- "NextToken":{"shape":"NonEmptyString"}
2638
- }
2639
- },
2640
- "ListFleetsInput":{
2641
- "type":"structure",
2642
- "members":{
2643
- "BuildId":{"shape":"BuildId"},
2644
- "ScriptId":{"shape":"ScriptId"},
2645
- "Limit":{"shape":"PositiveInteger"},
2646
- "NextToken":{"shape":"NonZeroAndMaxString"}
2647
- }
2648
- },
2649
- "ListFleetsOutput":{
2650
- "type":"structure",
2651
- "members":{
2652
- "FleetIds":{"shape":"FleetIdList"},
2653
- "NextToken":{"shape":"NonZeroAndMaxString"}
2654
- }
2655
- },
2656
- "ListScriptsInput":{
2657
- "type":"structure",
2658
- "members":{
2659
- "Limit":{"shape":"PositiveInteger"},
2660
- "NextToken":{"shape":"NonEmptyString"}
2661
- }
2662
- },
2663
- "ListScriptsOutput":{
2664
- "type":"structure",
2665
- "members":{
2666
- "Scripts":{"shape":"ScriptList"},
2667
- "NextToken":{"shape":"NonEmptyString"}
2668
- }
2669
- },
2670
- "ListTagsForResourceRequest":{
2671
- "type":"structure",
2672
- "required":["ResourceARN"],
2673
- "members":{
2674
- "ResourceARN":{"shape":"AmazonResourceName"}
2675
- }
2676
- },
2677
- "ListTagsForResourceResponse":{
2678
- "type":"structure",
2679
- "members":{
2680
- "Tags":{"shape":"TagList"}
2681
- }
2682
- },
2683
- "MatchedPlayerSession":{
2684
- "type":"structure",
2685
- "members":{
2686
- "PlayerId":{"shape":"NonZeroAndMaxString"},
2687
- "PlayerSessionId":{"shape":"PlayerSessionId"}
2688
- }
2689
- },
2690
- "MatchedPlayerSessionList":{
2691
- "type":"list",
2692
- "member":{"shape":"MatchedPlayerSession"}
2693
- },
2694
- "MatchmakerData":{
2695
- "type":"string",
2696
- "max":390000,
2697
- "min":1
2698
- },
2699
- "MatchmakingAcceptanceTimeoutInteger":{
2700
- "type":"integer",
2701
- "max":600,
2702
- "min":1
2703
- },
2704
- "MatchmakingConfiguration":{
2705
- "type":"structure",
2706
- "members":{
2707
- "Name":{"shape":"MatchmakingIdStringModel"},
2708
- "ConfigurationArn":{"shape":"MatchmakingConfigurationArn"},
2709
- "Description":{"shape":"NonZeroAndMaxString"},
2710
- "GameSessionQueueArns":{"shape":"QueueArnsList"},
2711
- "RequestTimeoutSeconds":{"shape":"MatchmakingRequestTimeoutInteger"},
2712
- "AcceptanceTimeoutSeconds":{"shape":"MatchmakingAcceptanceTimeoutInteger"},
2713
- "AcceptanceRequired":{"shape":"BooleanModel"},
2714
- "RuleSetName":{"shape":"MatchmakingIdStringModel"},
2715
- "RuleSetArn":{"shape":"MatchmakingRuleSetArn"},
2716
- "NotificationTarget":{"shape":"SnsArnStringModel"},
2717
- "AdditionalPlayerCount":{"shape":"WholeNumber"},
2718
- "CustomEventData":{"shape":"CustomEventData"},
2719
- "CreationTime":{"shape":"Timestamp"},
2720
- "GameProperties":{"shape":"GamePropertyList"},
2721
- "GameSessionData":{"shape":"GameSessionData"},
2722
- "BackfillMode":{"shape":"BackfillMode"}
2723
- }
2724
- },
2725
- "MatchmakingConfigurationArn":{
2726
- "type":"string",
2727
- "pattern":"^arn:.*:matchmakingconfiguration\\/[a-zA-Z0-9-\\.]*"
2728
- },
2729
- "MatchmakingConfigurationList":{
2730
- "type":"list",
2731
- "member":{"shape":"MatchmakingConfiguration"}
2732
- },
2733
- "MatchmakingConfigurationName":{
2734
- "type":"string",
2735
- "max":256,
2736
- "min":1,
2737
- "pattern":"[a-zA-Z0-9-\\.]*|^arn:.*:matchmakingconfiguration\\/[a-zA-Z0-9-\\.]*"
2738
- },
2739
- "MatchmakingConfigurationNameList":{
2740
- "type":"list",
2741
- "member":{"shape":"MatchmakingConfigurationName"}
2742
- },
2743
- "MatchmakingConfigurationStatus":{
2744
- "type":"string",
2745
- "enum":[
2746
- "CANCELLED",
2747
- "COMPLETED",
2748
- "FAILED",
2749
- "PLACING",
2750
- "QUEUED",
2751
- "REQUIRES_ACCEPTANCE",
2752
- "SEARCHING",
2753
- "TIMED_OUT"
2754
- ]
2755
- },
2756
- "MatchmakingIdList":{
2757
- "type":"list",
2758
- "member":{"shape":"MatchmakingIdStringModel"}
2759
- },
2760
- "MatchmakingIdStringModel":{
2761
- "type":"string",
2762
- "max":128,
2763
- "pattern":"[a-zA-Z0-9-\\.]*"
2764
- },
2765
- "MatchmakingRequestTimeoutInteger":{
2766
- "type":"integer",
2767
- "max":43200,
2768
- "min":1
2769
- },
2770
- "MatchmakingRuleSet":{
2771
- "type":"structure",
2772
- "required":["RuleSetBody"],
2773
- "members":{
2774
- "RuleSetName":{"shape":"MatchmakingIdStringModel"},
2775
- "RuleSetArn":{"shape":"MatchmakingRuleSetArn"},
2776
- "RuleSetBody":{"shape":"RuleSetBody"},
2777
- "CreationTime":{"shape":"Timestamp"}
2778
- }
2779
- },
2780
- "MatchmakingRuleSetArn":{
2781
- "type":"string",
2782
- "pattern":"^arn:.*:matchmakingruleset\\/[a-zA-Z0-9-\\.]*"
2783
- },
2784
- "MatchmakingRuleSetList":{
2785
- "type":"list",
2786
- "member":{"shape":"MatchmakingRuleSet"}
2787
- },
2788
- "MatchmakingRuleSetName":{
2789
- "type":"string",
2790
- "max":256,
2791
- "min":1,
2792
- "pattern":"[a-zA-Z0-9-\\.]*|^arn:.*:matchmakingruleset\\/[a-zA-Z0-9-\\.]*"
2793
- },
2794
- "MatchmakingRuleSetNameList":{
2795
- "type":"list",
2796
- "member":{"shape":"MatchmakingRuleSetName"},
2797
- "max":10,
2798
- "min":1
2799
- },
2800
- "MatchmakingTicket":{
2801
- "type":"structure",
2802
- "members":{
2803
- "TicketId":{"shape":"MatchmakingIdStringModel"},
2804
- "ConfigurationName":{"shape":"MatchmakingIdStringModel"},
2805
- "ConfigurationArn":{"shape":"MatchmakingConfigurationArn"},
2806
- "Status":{"shape":"MatchmakingConfigurationStatus"},
2807
- "StatusReason":{"shape":"StringModel"},
2808
- "StatusMessage":{"shape":"StringModel"},
2809
- "StartTime":{"shape":"Timestamp"},
2810
- "EndTime":{"shape":"Timestamp"},
2811
- "Players":{"shape":"PlayerList"},
2812
- "GameSessionConnectionInfo":{"shape":"GameSessionConnectionInfo"},
2813
- "EstimatedWaitTime":{"shape":"WholeNumber"}
2814
- }
2815
- },
2816
- "MatchmakingTicketList":{
2817
- "type":"list",
2818
- "member":{"shape":"MatchmakingTicket"}
2819
- },
2820
- "MaxConcurrentGameSessionActivations":{
2821
- "type":"integer",
2822
- "max":2147483647,
2823
- "min":1
2824
- },
2825
- "MetricGroup":{
2826
- "type":"string",
2827
- "max":255,
2828
- "min":1
2829
- },
2830
- "MetricGroupList":{
2831
- "type":"list",
2832
- "member":{"shape":"MetricGroup"},
2833
- "max":1
2834
- },
2835
- "MetricName":{
2836
- "type":"string",
2837
- "enum":[
2838
- "ActivatingGameSessions",
2839
- "ActiveGameSessions",
2840
- "ActiveInstances",
2841
- "AvailableGameSessions",
2842
- "AvailablePlayerSessions",
2843
- "CurrentPlayerSessions",
2844
- "IdleInstances",
2845
- "PercentAvailableGameSessions",
2846
- "PercentIdleInstances",
2847
- "QueueDepth",
2848
- "WaitTime"
2849
- ]
2850
- },
2851
- "NonBlankAndLengthConstraintString":{
2852
- "type":"string",
2853
- "max":1024,
2854
- "min":1,
2855
- "pattern":".*\\S.*"
2856
- },
2857
- "NonBlankString":{
2858
- "type":"string",
2859
- "pattern":"[^\\s]+"
2860
- },
2861
- "NonEmptyString":{
2862
- "type":"string",
2863
- "min":1
2864
- },
2865
- "NonZeroAndMaxString":{
2866
- "type":"string",
2867
- "max":1024,
2868
- "min":1
2869
- },
2870
- "NotFoundException":{
2871
- "type":"structure",
2872
- "members":{
2873
- "Message":{"shape":"NonEmptyString"}
2874
- },
2875
- "exception":true
2876
- },
2877
- "OperatingSystem":{
2878
- "type":"string",
2879
- "enum":[
2880
- "WINDOWS_2012",
2881
- "AMAZON_LINUX",
2882
- "AMAZON_LINUX_2"
2883
- ]
2884
- },
2885
- "PlacedPlayerSession":{
2886
- "type":"structure",
2887
- "members":{
2888
- "PlayerId":{"shape":"NonZeroAndMaxString"},
2889
- "PlayerSessionId":{"shape":"PlayerSessionId"}
2890
- }
2891
- },
2892
- "PlacedPlayerSessionList":{
2893
- "type":"list",
2894
- "member":{"shape":"PlacedPlayerSession"}
2895
- },
2896
- "Player":{
2897
- "type":"structure",
2898
- "members":{
2899
- "PlayerId":{"shape":"NonZeroAndMaxString"},
2900
- "PlayerAttributes":{"shape":"PlayerAttributeMap"},
2901
- "Team":{"shape":"NonZeroAndMaxString"},
2902
- "LatencyInMs":{"shape":"LatencyMap"}
2903
- }
2904
- },
2905
- "PlayerAttributeMap":{
2906
- "type":"map",
2907
- "key":{"shape":"NonZeroAndMaxString"},
2908
- "value":{"shape":"AttributeValue"}
2909
- },
2910
- "PlayerData":{
2911
- "type":"string",
2912
- "max":2048,
2913
- "min":1
2914
- },
2915
- "PlayerDataMap":{
2916
- "type":"map",
2917
- "key":{"shape":"NonZeroAndMaxString"},
2918
- "value":{"shape":"PlayerData"}
2919
- },
2920
- "PlayerIdList":{
2921
- "type":"list",
2922
- "member":{"shape":"NonZeroAndMaxString"},
2923
- "max":25,
2924
- "min":1
2925
- },
2926
- "PlayerLatency":{
2927
- "type":"structure",
2928
- "members":{
2929
- "PlayerId":{"shape":"NonZeroAndMaxString"},
2930
- "RegionIdentifier":{"shape":"NonZeroAndMaxString"},
2931
- "LatencyInMilliseconds":{"shape":"Float"}
2932
- }
2933
- },
2934
- "PlayerLatencyList":{
2935
- "type":"list",
2936
- "member":{"shape":"PlayerLatency"}
2937
- },
2938
- "PlayerLatencyPolicy":{
2939
- "type":"structure",
2940
- "members":{
2941
- "MaximumIndividualPlayerLatencyMilliseconds":{"shape":"WholeNumber"},
2942
- "PolicyDurationSeconds":{"shape":"WholeNumber"}
2943
- }
2944
- },
2945
- "PlayerLatencyPolicyList":{
2946
- "type":"list",
2947
- "member":{"shape":"PlayerLatencyPolicy"}
2948
- },
2949
- "PlayerList":{
2950
- "type":"list",
2951
- "member":{"shape":"Player"}
2952
- },
2953
- "PlayerSession":{
2954
- "type":"structure",
2955
- "members":{
2956
- "PlayerSessionId":{"shape":"PlayerSessionId"},
2957
- "PlayerId":{"shape":"NonZeroAndMaxString"},
2958
- "GameSessionId":{"shape":"NonZeroAndMaxString"},
2959
- "FleetId":{"shape":"FleetId"},
2960
- "FleetArn":{"shape":"ArnStringModel"},
2961
- "CreationTime":{"shape":"Timestamp"},
2962
- "TerminationTime":{"shape":"Timestamp"},
2963
- "Status":{"shape":"PlayerSessionStatus"},
2964
- "IpAddress":{"shape":"IpAddress"},
2965
- "DnsName":{"shape":"DnsName"},
2966
- "Port":{"shape":"PortNumber"},
2967
- "PlayerData":{"shape":"PlayerData"}
2968
- }
2969
- },
2970
- "PlayerSessionCreationPolicy":{
2971
- "type":"string",
2972
- "enum":[
2973
- "ACCEPT_ALL",
2974
- "DENY_ALL"
2975
- ]
2976
- },
2977
- "PlayerSessionId":{
2978
- "type":"string",
2979
- "pattern":"^psess-\\S+"
2980
- },
2981
- "PlayerSessionList":{
2982
- "type":"list",
2983
- "member":{"shape":"PlayerSession"}
2984
- },
2985
- "PlayerSessionStatus":{
2986
- "type":"string",
2987
- "enum":[
2988
- "RESERVED",
2989
- "ACTIVE",
2990
- "COMPLETED",
2991
- "TIMEDOUT"
2992
- ]
2993
- },
2994
- "PolicyType":{
2995
- "type":"string",
2996
- "enum":[
2997
- "RuleBased",
2998
- "TargetBased"
2999
- ]
3000
- },
3001
- "PortNumber":{
3002
- "type":"integer",
3003
- "max":60000,
3004
- "min":1
3005
- },
3006
- "PositiveInteger":{
3007
- "type":"integer",
3008
- "min":1
3009
- },
3010
- "PositiveLong":{
3011
- "type":"long",
3012
- "min":1
3013
- },
3014
- "ProtectionPolicy":{
3015
- "type":"string",
3016
- "enum":[
3017
- "NoProtection",
3018
- "FullProtection"
3019
- ]
3020
- },
3021
- "PutScalingPolicyInput":{
3022
- "type":"structure",
3023
- "required":[
3024
- "Name",
3025
- "FleetId",
3026
- "MetricName"
3027
- ],
3028
- "members":{
3029
- "Name":{"shape":"NonZeroAndMaxString"},
3030
- "FleetId":{"shape":"FleetId"},
3031
- "ScalingAdjustment":{"shape":"Integer"},
3032
- "ScalingAdjustmentType":{"shape":"ScalingAdjustmentType"},
3033
- "Threshold":{"shape":"Double"},
3034
- "ComparisonOperator":{"shape":"ComparisonOperatorType"},
3035
- "EvaluationPeriods":{"shape":"PositiveInteger"},
3036
- "MetricName":{"shape":"MetricName"},
3037
- "PolicyType":{"shape":"PolicyType"},
3038
- "TargetConfiguration":{"shape":"TargetConfiguration"}
3039
- }
3040
- },
3041
- "PutScalingPolicyOutput":{
3042
- "type":"structure",
3043
- "members":{
3044
- "Name":{"shape":"NonZeroAndMaxString"}
3045
- }
3046
- },
3047
- "QueueArnsList":{
3048
- "type":"list",
3049
- "member":{"shape":"ArnStringModel"}
3050
- },
3051
- "RequestUploadCredentialsInput":{
3052
- "type":"structure",
3053
- "required":["BuildId"],
3054
- "members":{
3055
- "BuildId":{"shape":"BuildId"}
3056
- }
3057
- },
3058
- "RequestUploadCredentialsOutput":{
3059
- "type":"structure",
3060
- "members":{
3061
- "UploadCredentials":{"shape":"AwsCredentials"},
3062
- "StorageLocation":{"shape":"S3Location"}
3063
- }
3064
- },
3065
- "ResolveAliasInput":{
3066
- "type":"structure",
3067
- "required":["AliasId"],
3068
- "members":{
3069
- "AliasId":{"shape":"AliasId"}
3070
- }
3071
- },
3072
- "ResolveAliasOutput":{
3073
- "type":"structure",
3074
- "members":{
3075
- "FleetId":{"shape":"FleetId"},
3076
- "FleetArn":{"shape":"ArnStringModel"}
3077
- }
3078
- },
3079
- "ResourceCreationLimitPolicy":{
3080
- "type":"structure",
3081
- "members":{
3082
- "NewGameSessionsPerCreator":{"shape":"WholeNumber"},
3083
- "PolicyPeriodInMinutes":{"shape":"WholeNumber"}
3084
- }
3085
- },
3086
- "RoutingStrategy":{
3087
- "type":"structure",
3088
- "members":{
3089
- "Type":{"shape":"RoutingStrategyType"},
3090
- "FleetId":{"shape":"FleetId"},
3091
- "Message":{"shape":"FreeText"}
3092
- }
3093
- },
3094
- "RoutingStrategyType":{
3095
- "type":"string",
3096
- "enum":[
3097
- "SIMPLE",
3098
- "TERMINAL"
3099
- ]
3100
- },
3101
- "RuleSetBody":{
3102
- "type":"string",
3103
- "max":65535,
3104
- "min":1
3105
- },
3106
- "RuleSetLimit":{
3107
- "type":"integer",
3108
- "max":10,
3109
- "min":1
3110
- },
3111
- "RuntimeConfiguration":{
3112
- "type":"structure",
3113
- "members":{
3114
- "ServerProcesses":{"shape":"ServerProcessList"},
3115
- "MaxConcurrentGameSessionActivations":{"shape":"MaxConcurrentGameSessionActivations"},
3116
- "GameSessionActivationTimeoutSeconds":{"shape":"GameSessionActivationTimeoutSeconds"}
3117
- }
3118
- },
3119
- "S3Location":{
3120
- "type":"structure",
3121
- "members":{
3122
- "Bucket":{"shape":"NonEmptyString"},
3123
- "Key":{"shape":"NonEmptyString"},
3124
- "RoleArn":{"shape":"NonEmptyString"},
3125
- "ObjectVersion":{"shape":"NonEmptyString"}
3126
- }
3127
- },
3128
- "ScalingAdjustmentType":{
3129
- "type":"string",
3130
- "enum":[
3131
- "ChangeInCapacity",
3132
- "ExactCapacity",
3133
- "PercentChangeInCapacity"
3134
- ]
3135
- },
3136
- "ScalingPolicy":{
3137
- "type":"structure",
3138
- "members":{
3139
- "FleetId":{"shape":"FleetId"},
3140
- "Name":{"shape":"NonZeroAndMaxString"},
3141
- "Status":{"shape":"ScalingStatusType"},
3142
- "ScalingAdjustment":{"shape":"Integer"},
3143
- "ScalingAdjustmentType":{"shape":"ScalingAdjustmentType"},
3144
- "ComparisonOperator":{"shape":"ComparisonOperatorType"},
3145
- "Threshold":{"shape":"Double"},
3146
- "EvaluationPeriods":{"shape":"PositiveInteger"},
3147
- "MetricName":{"shape":"MetricName"},
3148
- "PolicyType":{"shape":"PolicyType"},
3149
- "TargetConfiguration":{"shape":"TargetConfiguration"}
3150
- }
3151
- },
3152
- "ScalingPolicyList":{
3153
- "type":"list",
3154
- "member":{"shape":"ScalingPolicy"}
3155
- },
3156
- "ScalingStatusType":{
3157
- "type":"string",
3158
- "enum":[
3159
- "ACTIVE",
3160
- "UPDATE_REQUESTED",
3161
- "UPDATING",
3162
- "DELETE_REQUESTED",
3163
- "DELETING",
3164
- "DELETED",
3165
- "ERROR"
3166
- ]
3167
- },
3168
- "Script":{
3169
- "type":"structure",
3170
- "members":{
3171
- "ScriptId":{"shape":"ScriptId"},
3172
- "ScriptArn":{"shape":"ScriptArn"},
3173
- "Name":{"shape":"NonZeroAndMaxString"},
3174
- "Version":{"shape":"NonZeroAndMaxString"},
3175
- "SizeOnDisk":{"shape":"PositiveLong"},
3176
- "CreationTime":{"shape":"Timestamp"},
3177
- "StorageLocation":{"shape":"S3Location"}
3178
- }
3179
- },
3180
- "ScriptArn":{
3181
- "type":"string",
3182
- "pattern":"^arn:.*:script\\/script-\\S+"
3183
- },
3184
- "ScriptId":{
3185
- "type":"string",
3186
- "pattern":"^script-\\S+|^arn:.*:script\\/script-\\S+"
3187
- },
3188
- "ScriptList":{
3189
- "type":"list",
3190
- "member":{"shape":"Script"}
3191
- },
3192
- "SearchGameSessionsInput":{
3193
- "type":"structure",
3194
- "members":{
3195
- "FleetId":{"shape":"FleetId"},
3196
- "AliasId":{"shape":"AliasId"},
3197
- "FilterExpression":{"shape":"NonZeroAndMaxString"},
3198
- "SortExpression":{"shape":"NonZeroAndMaxString"},
3199
- "Limit":{"shape":"PositiveInteger"},
3200
- "NextToken":{"shape":"NonZeroAndMaxString"}
3201
- }
3202
- },
3203
- "SearchGameSessionsOutput":{
3204
- "type":"structure",
3205
- "members":{
3206
- "GameSessions":{"shape":"GameSessionList"},
3207
- "NextToken":{"shape":"NonZeroAndMaxString"}
3208
- }
3209
- },
3210
- "ServerProcess":{
3211
- "type":"structure",
3212
- "required":[
3213
- "LaunchPath",
3214
- "ConcurrentExecutions"
3215
- ],
3216
- "members":{
3217
- "LaunchPath":{"shape":"NonZeroAndMaxString"},
3218
- "Parameters":{"shape":"NonZeroAndMaxString"},
3219
- "ConcurrentExecutions":{"shape":"PositiveInteger"}
3220
- }
3221
- },
3222
- "ServerProcessList":{
3223
- "type":"list",
3224
- "member":{"shape":"ServerProcess"},
3225
- "max":50,
3226
- "min":1
3227
- },
3228
- "SnsArnStringModel":{
3229
- "type":"string",
3230
- "max":300,
3231
- "min":0,
3232
- "pattern":"[a-zA-Z0-9:_/-]*"
3233
- },
3234
- "StartFleetActionsInput":{
3235
- "type":"structure",
3236
- "required":[
3237
- "FleetId",
3238
- "Actions"
3239
- ],
3240
- "members":{
3241
- "FleetId":{"shape":"FleetId"},
3242
- "Actions":{"shape":"FleetActionList"}
3243
- }
3244
- },
3245
- "StartFleetActionsOutput":{
3246
- "type":"structure",
3247
- "members":{
3248
- }
3249
- },
3250
- "StartGameSessionPlacementInput":{
3251
- "type":"structure",
3252
- "required":[
3253
- "PlacementId",
3254
- "GameSessionQueueName",
3255
- "MaximumPlayerSessionCount"
3256
- ],
3257
- "members":{
3258
- "PlacementId":{"shape":"IdStringModel"},
3259
- "GameSessionQueueName":{"shape":"GameSessionQueueName"},
3260
- "GameProperties":{"shape":"GamePropertyList"},
3261
- "MaximumPlayerSessionCount":{"shape":"WholeNumber"},
3262
- "GameSessionName":{"shape":"NonZeroAndMaxString"},
3263
- "PlayerLatencies":{"shape":"PlayerLatencyList"},
3264
- "DesiredPlayerSessions":{"shape":"DesiredPlayerSessionList"},
3265
- "GameSessionData":{"shape":"GameSessionData"}
3266
- }
3267
- },
3268
- "StartGameSessionPlacementOutput":{
3269
- "type":"structure",
3270
- "members":{
3271
- "GameSessionPlacement":{"shape":"GameSessionPlacement"}
3272
- }
3273
- },
3274
- "StartMatchBackfillInput":{
3275
- "type":"structure",
3276
- "required":[
3277
- "ConfigurationName",
3278
- "GameSessionArn",
3279
- "Players"
3280
- ],
3281
- "members":{
3282
- "TicketId":{"shape":"MatchmakingIdStringModel"},
3283
- "ConfigurationName":{"shape":"MatchmakingConfigurationName"},
3284
- "GameSessionArn":{"shape":"ArnStringModel"},
3285
- "Players":{"shape":"PlayerList"}
3286
- }
3287
- },
3288
- "StartMatchBackfillOutput":{
3289
- "type":"structure",
3290
- "members":{
3291
- "MatchmakingTicket":{"shape":"MatchmakingTicket"}
3292
- }
3293
- },
3294
- "StartMatchmakingInput":{
3295
- "type":"structure",
3296
- "required":[
3297
- "ConfigurationName",
3298
- "Players"
3299
- ],
3300
- "members":{
3301
- "TicketId":{"shape":"MatchmakingIdStringModel"},
3302
- "ConfigurationName":{"shape":"MatchmakingConfigurationName"},
3303
- "Players":{"shape":"PlayerList"}
3304
- }
3305
- },
3306
- "StartMatchmakingOutput":{
3307
- "type":"structure",
3308
- "members":{
3309
- "MatchmakingTicket":{"shape":"MatchmakingTicket"}
3310
- }
3311
- },
3312
- "StopFleetActionsInput":{
3313
- "type":"structure",
3314
- "required":[
3315
- "FleetId",
3316
- "Actions"
3317
- ],
3318
- "members":{
3319
- "FleetId":{"shape":"FleetId"},
3320
- "Actions":{"shape":"FleetActionList"}
3321
- }
3322
- },
3323
- "StopFleetActionsOutput":{
3324
- "type":"structure",
3325
- "members":{
3326
- }
3327
- },
3328
- "StopGameSessionPlacementInput":{
3329
- "type":"structure",
3330
- "required":["PlacementId"],
3331
- "members":{
3332
- "PlacementId":{"shape":"IdStringModel"}
3333
- }
3334
- },
3335
- "StopGameSessionPlacementOutput":{
3336
- "type":"structure",
3337
- "members":{
3338
- "GameSessionPlacement":{"shape":"GameSessionPlacement"}
3339
- }
3340
- },
3341
- "StopMatchmakingInput":{
3342
- "type":"structure",
3343
- "required":["TicketId"],
3344
- "members":{
3345
- "TicketId":{"shape":"MatchmakingIdStringModel"}
3346
- }
3347
- },
3348
- "StopMatchmakingOutput":{
3349
- "type":"structure",
3350
- "members":{
3351
- }
3352
- },
3353
- "StringDoubleMap":{
3354
- "type":"map",
3355
- "key":{"shape":"NonZeroAndMaxString"},
3356
- "value":{"shape":"DoubleObject"}
3357
- },
3358
- "StringList":{
3359
- "type":"list",
3360
- "member":{"shape":"NonZeroAndMaxString"}
3361
- },
3362
- "StringModel":{"type":"string"},
3363
- "Tag":{
3364
- "type":"structure",
3365
- "required":[
3366
- "Key",
3367
- "Value"
3368
- ],
3369
- "members":{
3370
- "Key":{"shape":"TagKey"},
3371
- "Value":{"shape":"TagValue"}
3372
- }
3373
- },
3374
- "TagKey":{
3375
- "type":"string",
3376
- "max":128,
3377
- "min":1
3378
- },
3379
- "TagKeyList":{
3380
- "type":"list",
3381
- "member":{"shape":"TagKey"},
3382
- "max":200,
3383
- "min":0
3384
- },
3385
- "TagList":{
3386
- "type":"list",
3387
- "member":{"shape":"Tag"},
3388
- "max":200,
3389
- "min":0
3390
- },
3391
- "TagResourceRequest":{
3392
- "type":"structure",
3393
- "required":[
3394
- "ResourceARN",
3395
- "Tags"
3396
- ],
3397
- "members":{
3398
- "ResourceARN":{"shape":"AmazonResourceName"},
3399
- "Tags":{"shape":"TagList"}
3400
- }
3401
- },
3402
- "TagResourceResponse":{
3403
- "type":"structure",
3404
- "members":{
3405
- }
3406
- },
3407
- "TagValue":{
3408
- "type":"string",
3409
- "max":256,
3410
- "min":0
3411
- },
3412
- "TaggingFailedException":{
3413
- "type":"structure",
3414
- "members":{
3415
- "Message":{"shape":"NonEmptyString"}
3416
- },
3417
- "exception":true
3418
- },
3419
- "TargetConfiguration":{
3420
- "type":"structure",
3421
- "required":["TargetValue"],
3422
- "members":{
3423
- "TargetValue":{"shape":"Double"}
3424
- }
3425
- },
3426
- "TerminalRoutingStrategyException":{
3427
- "type":"structure",
3428
- "members":{
3429
- "Message":{"shape":"NonEmptyString"}
3430
- },
3431
- "exception":true
3432
- },
3433
- "Timestamp":{"type":"timestamp"},
3434
- "UnauthorizedException":{
3435
- "type":"structure",
3436
- "members":{
3437
- "Message":{"shape":"NonEmptyString"}
3438
- },
3439
- "exception":true
3440
- },
3441
- "UnsupportedRegionException":{
3442
- "type":"structure",
3443
- "members":{
3444
- "Message":{"shape":"NonEmptyString"}
3445
- },
3446
- "exception":true
3447
- },
3448
- "UntagResourceRequest":{
3449
- "type":"structure",
3450
- "required":[
3451
- "ResourceARN",
3452
- "TagKeys"
3453
- ],
3454
- "members":{
3455
- "ResourceARN":{"shape":"AmazonResourceName"},
3456
- "TagKeys":{"shape":"TagKeyList"}
3457
- }
3458
- },
3459
- "UntagResourceResponse":{
3460
- "type":"structure",
3461
- "members":{
3462
- }
3463
- },
3464
- "UpdateAliasInput":{
3465
- "type":"structure",
3466
- "required":["AliasId"],
3467
- "members":{
3468
- "AliasId":{"shape":"AliasId"},
3469
- "Name":{"shape":"NonBlankAndLengthConstraintString"},
3470
- "Description":{"shape":"NonZeroAndMaxString"},
3471
- "RoutingStrategy":{"shape":"RoutingStrategy"}
3472
- }
3473
- },
3474
- "UpdateAliasOutput":{
3475
- "type":"structure",
3476
- "members":{
3477
- "Alias":{"shape":"Alias"}
3478
- }
3479
- },
3480
- "UpdateBuildInput":{
3481
- "type":"structure",
3482
- "required":["BuildId"],
3483
- "members":{
3484
- "BuildId":{"shape":"BuildId"},
3485
- "Name":{"shape":"NonZeroAndMaxString"},
3486
- "Version":{"shape":"NonZeroAndMaxString"}
3487
- }
3488
- },
3489
- "UpdateBuildOutput":{
3490
- "type":"structure",
3491
- "members":{
3492
- "Build":{"shape":"Build"}
3493
- }
3494
- },
3495
- "UpdateFleetAttributesInput":{
3496
- "type":"structure",
3497
- "required":["FleetId"],
3498
- "members":{
3499
- "FleetId":{"shape":"FleetId"},
3500
- "Name":{"shape":"NonZeroAndMaxString"},
3501
- "Description":{"shape":"NonZeroAndMaxString"},
3502
- "NewGameSessionProtectionPolicy":{"shape":"ProtectionPolicy"},
3503
- "ResourceCreationLimitPolicy":{"shape":"ResourceCreationLimitPolicy"},
3504
- "MetricGroups":{"shape":"MetricGroupList"}
3505
- }
3506
- },
3507
- "UpdateFleetAttributesOutput":{
3508
- "type":"structure",
3509
- "members":{
3510
- "FleetId":{"shape":"FleetId"}
3511
- }
3512
- },
3513
- "UpdateFleetCapacityInput":{
3514
- "type":"structure",
3515
- "required":["FleetId"],
3516
- "members":{
3517
- "FleetId":{"shape":"FleetId"},
3518
- "DesiredInstances":{"shape":"WholeNumber"},
3519
- "MinSize":{"shape":"WholeNumber"},
3520
- "MaxSize":{"shape":"WholeNumber"}
3521
- }
3522
- },
3523
- "UpdateFleetCapacityOutput":{
3524
- "type":"structure",
3525
- "members":{
3526
- "FleetId":{"shape":"FleetId"}
3527
- }
3528
- },
3529
- "UpdateFleetPortSettingsInput":{
3530
- "type":"structure",
3531
- "required":["FleetId"],
3532
- "members":{
3533
- "FleetId":{"shape":"FleetId"},
3534
- "InboundPermissionAuthorizations":{"shape":"IpPermissionsList"},
3535
- "InboundPermissionRevocations":{"shape":"IpPermissionsList"}
3536
- }
3537
- },
3538
- "UpdateFleetPortSettingsOutput":{
3539
- "type":"structure",
3540
- "members":{
3541
- "FleetId":{"shape":"FleetId"}
3542
- }
3543
- },
3544
- "UpdateGameSessionInput":{
3545
- "type":"structure",
3546
- "required":["GameSessionId"],
3547
- "members":{
3548
- "GameSessionId":{"shape":"ArnStringModel"},
3549
- "MaximumPlayerSessionCount":{"shape":"WholeNumber"},
3550
- "Name":{"shape":"NonZeroAndMaxString"},
3551
- "PlayerSessionCreationPolicy":{"shape":"PlayerSessionCreationPolicy"},
3552
- "ProtectionPolicy":{"shape":"ProtectionPolicy"}
3553
- }
3554
- },
3555
- "UpdateGameSessionOutput":{
3556
- "type":"structure",
3557
- "members":{
3558
- "GameSession":{"shape":"GameSession"}
3559
- }
3560
- },
3561
- "UpdateGameSessionQueueInput":{
3562
- "type":"structure",
3563
- "required":["Name"],
3564
- "members":{
3565
- "Name":{"shape":"GameSessionQueueName"},
3566
- "TimeoutInSeconds":{"shape":"WholeNumber"},
3567
- "PlayerLatencyPolicies":{"shape":"PlayerLatencyPolicyList"},
3568
- "Destinations":{"shape":"GameSessionQueueDestinationList"}
3569
- }
3570
- },
3571
- "UpdateGameSessionQueueOutput":{
3572
- "type":"structure",
3573
- "members":{
3574
- "GameSessionQueue":{"shape":"GameSessionQueue"}
3575
- }
3576
- },
3577
- "UpdateMatchmakingConfigurationInput":{
3578
- "type":"structure",
3579
- "required":["Name"],
3580
- "members":{
3581
- "Name":{"shape":"MatchmakingConfigurationName"},
3582
- "Description":{"shape":"NonZeroAndMaxString"},
3583
- "GameSessionQueueArns":{"shape":"QueueArnsList"},
3584
- "RequestTimeoutSeconds":{"shape":"MatchmakingRequestTimeoutInteger"},
3585
- "AcceptanceTimeoutSeconds":{"shape":"MatchmakingAcceptanceTimeoutInteger"},
3586
- "AcceptanceRequired":{"shape":"BooleanModel"},
3587
- "RuleSetName":{"shape":"MatchmakingRuleSetName"},
3588
- "NotificationTarget":{"shape":"SnsArnStringModel"},
3589
- "AdditionalPlayerCount":{"shape":"WholeNumber"},
3590
- "CustomEventData":{"shape":"CustomEventData"},
3591
- "GameProperties":{"shape":"GamePropertyList"},
3592
- "GameSessionData":{"shape":"GameSessionData"},
3593
- "BackfillMode":{"shape":"BackfillMode"}
3594
- }
3595
- },
3596
- "UpdateMatchmakingConfigurationOutput":{
3597
- "type":"structure",
3598
- "members":{
3599
- "Configuration":{"shape":"MatchmakingConfiguration"}
3600
- }
3601
- },
3602
- "UpdateRuntimeConfigurationInput":{
3603
- "type":"structure",
3604
- "required":[
3605
- "FleetId",
3606
- "RuntimeConfiguration"
3607
- ],
3608
- "members":{
3609
- "FleetId":{"shape":"FleetId"},
3610
- "RuntimeConfiguration":{"shape":"RuntimeConfiguration"}
3611
- }
3612
- },
3613
- "UpdateRuntimeConfigurationOutput":{
3614
- "type":"structure",
3615
- "members":{
3616
- "RuntimeConfiguration":{"shape":"RuntimeConfiguration"}
3617
- }
3618
- },
3619
- "UpdateScriptInput":{
3620
- "type":"structure",
3621
- "required":["ScriptId"],
3622
- "members":{
3623
- "ScriptId":{"shape":"ScriptId"},
3624
- "Name":{"shape":"NonZeroAndMaxString"},
3625
- "Version":{"shape":"NonZeroAndMaxString"},
3626
- "StorageLocation":{"shape":"S3Location"},
3627
- "ZipFile":{"shape":"ZipBlob"}
3628
- }
3629
- },
3630
- "UpdateScriptOutput":{
3631
- "type":"structure",
3632
- "members":{
3633
- "Script":{"shape":"Script"}
3634
- }
3635
- },
3636
- "ValidateMatchmakingRuleSetInput":{
3637
- "type":"structure",
3638
- "required":["RuleSetBody"],
3639
- "members":{
3640
- "RuleSetBody":{"shape":"RuleSetBody"}
3641
- }
3642
- },
3643
- "ValidateMatchmakingRuleSetOutput":{
3644
- "type":"structure",
3645
- "members":{
3646
- "Valid":{"shape":"BooleanModel"}
3647
- }
3648
- },
3649
- "VpcPeeringAuthorization":{
3650
- "type":"structure",
3651
- "members":{
3652
- "GameLiftAwsAccountId":{"shape":"NonZeroAndMaxString"},
3653
- "PeerVpcAwsAccountId":{"shape":"NonZeroAndMaxString"},
3654
- "PeerVpcId":{"shape":"NonZeroAndMaxString"},
3655
- "CreationTime":{"shape":"Timestamp"},
3656
- "ExpirationTime":{"shape":"Timestamp"}
3657
- }
3658
- },
3659
- "VpcPeeringAuthorizationList":{
3660
- "type":"list",
3661
- "member":{"shape":"VpcPeeringAuthorization"}
3662
- },
3663
- "VpcPeeringConnection":{
3664
- "type":"structure",
3665
- "members":{
3666
- "FleetId":{"shape":"FleetId"},
3667
- "FleetArn":{"shape":"ArnStringModel"},
3668
- "IpV4CidrBlock":{"shape":"NonZeroAndMaxString"},
3669
- "VpcPeeringConnectionId":{"shape":"NonZeroAndMaxString"},
3670
- "Status":{"shape":"VpcPeeringConnectionStatus"},
3671
- "PeerVpcId":{"shape":"NonZeroAndMaxString"},
3672
- "GameLiftVpcId":{"shape":"NonZeroAndMaxString"}
3673
- }
3674
- },
3675
- "VpcPeeringConnectionList":{
3676
- "type":"list",
3677
- "member":{"shape":"VpcPeeringConnection"}
3678
- },
3679
- "VpcPeeringConnectionStatus":{
3680
- "type":"structure",
3681
- "members":{
3682
- "Code":{"shape":"NonZeroAndMaxString"},
3683
- "Message":{"shape":"NonZeroAndMaxString"}
3684
- }
3685
- },
3686
- "WholeNumber":{
3687
- "type":"integer",
3688
- "min":0
3689
- },
3690
- "ZipBlob":{
3691
- "type":"blob",
3692
- "max":5000000
3693
- }
3694
- }
3695
- }