aws-sdk-core 2.11.408 → 3.77.0

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