aws-sdk-core 2.11.359 → 3.67.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1166) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -552
  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 +2 -0
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
  18. data/lib/aws-sdk-core/errors.rb +123 -22
  19. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  20. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  21. data/lib/aws-sdk-core/instance_profile_credentials.rb +4 -3
  22. data/lib/aws-sdk-core/json.rb +9 -10
  23. data/lib/aws-sdk-core/json/builder.rb +4 -2
  24. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  25. data/lib/aws-sdk-core/json/handler.rb +22 -3
  26. data/lib/aws-sdk-core/json/parser.rb +1 -1
  27. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  28. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  29. data/lib/aws-sdk-core/pager.rb +30 -25
  30. data/lib/aws-sdk-core/param_converter.rb +3 -3
  31. data/lib/aws-sdk-core/param_validator.rb +56 -21
  32. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  33. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  34. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  35. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  36. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  37. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  38. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  39. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
  40. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  41. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  42. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  43. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  44. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  45. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  46. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  47. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  48. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  49. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  50. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  51. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  52. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -15
  53. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  54. data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
  55. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  56. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  57. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  58. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  59. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  60. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  61. data/lib/aws-sdk-core/query.rb +5 -0
  62. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  63. data/lib/aws-sdk-core/query/handler.rb +20 -16
  64. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  65. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  66. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  67. data/lib/aws-sdk-core/rest.rb +10 -0
  68. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  69. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  70. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  71. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  72. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  73. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  74. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  75. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  76. data/lib/aws-sdk-core/shared_config.rb +164 -11
  77. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  78. data/lib/aws-sdk-core/structure.rb +22 -13
  79. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  80. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  81. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  82. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  83. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  84. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  85. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  86. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  87. data/lib/aws-sdk-core/util.rb +66 -0
  88. data/lib/aws-sdk-core/waiters.rb +3 -0
  89. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  90. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  91. data/lib/aws-sdk-core/xml.rb +9 -0
  92. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  93. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  94. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  95. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  96. data/lib/aws-sdk-sts.rb +45 -0
  97. data/lib/aws-sdk-sts/client.rb +1833 -0
  98. data/lib/aws-sdk-sts/client_api.rb +320 -0
  99. data/lib/aws-sdk-sts/customizations.rb +0 -0
  100. data/lib/aws-sdk-sts/errors.rb +142 -0
  101. data/lib/aws-sdk-sts/resource.rb +23 -0
  102. data/lib/aws-sdk-sts/types.rb +1312 -0
  103. data/lib/seahorse.rb +60 -60
  104. data/lib/seahorse/client/async_base.rb +50 -0
  105. data/lib/seahorse/client/async_response.rb +62 -0
  106. data/lib/seahorse/client/base.rb +2 -8
  107. data/lib/seahorse/client/configuration.rb +4 -2
  108. data/lib/seahorse/client/h2/connection.rb +244 -0
  109. data/lib/seahorse/client/h2/handler.rb +151 -0
  110. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  111. data/lib/seahorse/client/http/async_response.rb +42 -0
  112. data/lib/seahorse/client/http/response.rb +10 -5
  113. data/lib/seahorse/client/logging/formatter.rb +2 -0
  114. data/lib/seahorse/client/logging/handler.rb +2 -0
  115. data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
  116. data/lib/seahorse/client/net_http/handler.rb +5 -0
  117. data/lib/seahorse/client/net_http/patches.rb +9 -1
  118. data/lib/seahorse/client/networking_error.rb +28 -0
  119. data/lib/seahorse/client/plugin.rb +66 -6
  120. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  121. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  122. data/lib/seahorse/client/plugins/h2.rb +64 -0
  123. data/lib/seahorse/client/plugins/logging.rb +17 -19
  124. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  125. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  126. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  127. data/lib/seahorse/client/request_context.rb +5 -0
  128. data/lib/seahorse/model/api.rb +33 -0
  129. data/lib/seahorse/model/authorizer.rb +21 -0
  130. data/lib/seahorse/model/operation.rb +11 -0
  131. data/lib/seahorse/model/shapes.rb +44 -2
  132. data/lib/seahorse/util.rb +1 -22
  133. metadata +91 -1042
  134. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  135. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  136. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  137. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  138. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  139. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  140. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  141. data/apis/acm/2015-12-08/api-2.json +0 -843
  142. data/apis/acm/2015-12-08/examples-1.json +0 -5
  143. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  144. data/apis/acm/2015-12-08/smoke.json +0 -18
  145. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  146. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4003
  147. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  148. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  149. data/apis/amplify/2017-07-25/api-2.json +0 -1972
  150. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  151. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  152. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  153. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  154. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  155. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  156. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  157. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  158. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
  159. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  160. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -779
  161. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  162. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  163. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  164. data/apis/application-insights/2018-11-25/api-2.json +0 -721
  165. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  166. data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
  167. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  168. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  169. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  170. data/apis/appmesh/2019-01-25/api-2.json +0 -3281
  171. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  172. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  173. data/apis/appstream/2016-12-01/api-2.json +0 -2340
  174. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  175. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  176. data/apis/appstream/2016-12-01/smoke.json +0 -11
  177. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  178. data/apis/appsync/2017-07-25/api-2.json +0 -2003
  179. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  180. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  181. data/apis/athena/2017-05-18/api-2.json +0 -985
  182. data/apis/athena/2017-05-18/examples-1.json +0 -5
  183. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  184. data/apis/athena/2017-05-18/smoke.json +0 -11
  185. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  186. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  187. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  188. data/apis/autoscaling/2011-01-01/api-2.json +0 -2455
  189. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  190. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  191. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  192. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  193. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  194. data/apis/backup/2018-11-15/api-2.json +0 -2150
  195. data/apis/backup/2018-11-15/examples-1.json +0 -5
  196. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  197. data/apis/batch/2016-08-10/api-2.json +0 -1128
  198. data/apis/batch/2016-08-10/examples-1.json +0 -589
  199. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  200. data/apis/batch/2016-08-10/smoke.json +0 -11
  201. data/apis/budgets/2016-10-20/api-2.json +0 -807
  202. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  203. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  204. data/apis/ce/2017-10-25/api-2.json +0 -1035
  205. data/apis/ce/2017-10-25/examples-1.json +0 -5
  206. data/apis/ce/2017-10-25/paginators-1.json +0 -4
  207. data/apis/chime/2018-05-01/api-2.json +0 -2902
  208. data/apis/chime/2018-05-01/examples-1.json +0 -5
  209. data/apis/chime/2018-05-01/paginators-1.json +0 -29
  210. data/apis/cloud9/2017-09-23/api-2.json +0 -547
  211. data/apis/cloud9/2017-09-23/examples-1.json +0 -308
  212. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  213. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  214. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  215. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  216. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  217. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  218. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  219. data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
  220. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  221. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  222. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  223. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
  224. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  225. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  226. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  227. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  228. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  229. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  230. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  231. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  232. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  233. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  234. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  235. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  236. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  237. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  238. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  239. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  240. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  241. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  242. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  243. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  244. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  245. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  246. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  247. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  248. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  249. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  250. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  251. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  252. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  253. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  254. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  255. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  256. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  257. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  258. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  259. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  260. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  261. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  262. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  263. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  264. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  265. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  266. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  267. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  268. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  269. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  270. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  271. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  272. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  273. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  274. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  275. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  276. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  277. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  278. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  279. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  280. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  281. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  282. data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
  283. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  284. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  285. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  286. data/apis/codebuild/2016-10-06/api-2.json +0 -1276
  287. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  288. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  289. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  290. data/apis/codecommit/2015-04-13/api-2.json +0 -4248
  291. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  292. data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
  293. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  294. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  295. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  296. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  297. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  298. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  299. data/apis/codepipeline/2015-07-09/api-2.json +0 -2406
  300. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  301. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  302. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  303. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  304. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  305. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  306. data/apis/codestar/2017-04-19/smoke.json +0 -11
  307. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1053
  308. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  309. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  310. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5349
  311. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  312. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -52
  313. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  314. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  315. data/apis/comprehend/2017-11-27/api-2.json +0 -2361
  316. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  317. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  318. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
  319. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  320. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  321. data/apis/config/2014-11-12/api-2.json +0 -3496
  322. data/apis/config/2014-11-12/examples-1.json +0 -5
  323. data/apis/config/2014-11-12/paginators-1.json +0 -21
  324. data/apis/config/2014-11-12/smoke.json +0 -19
  325. data/apis/connect/2017-08-08/api-2.json +0 -1379
  326. data/apis/connect/2017-08-08/examples-1.json +0 -5
  327. data/apis/connect/2017-08-08/paginators-1.json +0 -14
  328. data/apis/cur/2017-01-06/api-2.json +0 -277
  329. data/apis/cur/2017-01-06/examples-1.json +0 -102
  330. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  331. data/apis/cur/2017-01-06/smoke.json +0 -11
  332. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  333. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  334. data/apis/datasync/2018-11-09/api-2.json +0 -1305
  335. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  336. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  337. data/apis/dax/2017-04-19/api-2.json +0 -1140
  338. data/apis/dax/2017-04-19/examples-1.json +0 -5
  339. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  340. data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
  341. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  342. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  343. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  344. data/apis/directconnect/2012-10-25/api-2.json +0 -2066
  345. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  346. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  347. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  348. data/apis/discovery/2015-11-01/api-2.json +0 -1334
  349. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  350. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  351. data/apis/discovery/2015-11-01/smoke.json +0 -11
  352. data/apis/dlm/2018-01-12/api-2.json +0 -444
  353. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  354. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  355. data/apis/dms/2016-01-01/api-2.json +0 -2259
  356. data/apis/dms/2016-01-01/examples-1.json +0 -1053
  357. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  358. data/apis/dms/2016-01-01/smoke.json +0 -18
  359. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  360. data/apis/docdb/2014-10-31/api-2.json +0 -2482
  361. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  362. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  363. data/apis/docdb/2014-10-31/smoke.json +0 -18
  364. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  365. data/apis/ds/2015-04-16/api-2.json +0 -2634
  366. data/apis/ds/2015-04-16/examples-1.json +0 -5
  367. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  368. data/apis/ds/2015-04-16/smoke.json +0 -20
  369. data/apis/dynamodb/2011-12-05/api-2.json +0 -803
  370. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  371. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  372. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  373. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  374. data/apis/dynamodb/2012-08-10/api-2.json +0 -2802
  375. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  376. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  377. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  378. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  379. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  380. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  381. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  382. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  383. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  384. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  385. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  386. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  387. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  388. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  389. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  390. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  391. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  392. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  393. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  394. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  395. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  396. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  397. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  398. data/apis/ec2/2016-11-15/api-2.json +0 -25416
  399. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  400. data/apis/ec2/2016-11-15/paginators-1.json +0 -450
  401. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  402. data/apis/ec2/2016-11-15/smoke.json +0 -20
  403. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  404. data/apis/ecr/2015-09-21/api-2.json +0 -1383
  405. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  406. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  407. data/apis/ecr/2015-09-21/smoke.json +0 -18
  408. data/apis/ecs/2014-11-13/api-2.json +0 -2903
  409. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  410. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  411. data/apis/ecs/2014-11-13/smoke.json +0 -18
  412. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  413. data/apis/eks/2017-11-01/api-2.json +0 -750
  414. data/apis/eks/2017-11-01/examples-1.json +0 -114
  415. data/apis/eks/2017-11-01/paginators-1.json +0 -16
  416. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  417. data/apis/elasticache/2015-02-02/api-2.json +0 -3152
  418. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  419. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  420. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  421. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  422. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  423. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  424. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  425. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  426. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -896
  427. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  428. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  429. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  430. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  431. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  432. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  433. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  434. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  435. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2299
  436. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  437. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  438. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  439. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  440. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2187
  441. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  442. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  443. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  444. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  445. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  446. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  447. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  448. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  449. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  450. data/apis/email/2010-12-01/api-2.json +0 -3182
  451. data/apis/email/2010-12-01/examples-1.json +0 -1021
  452. data/apis/email/2010-12-01/paginators-1.json +0 -18
  453. data/apis/email/2010-12-01/smoke.json +0 -18
  454. data/apis/email/2010-12-01/waiters-2.json +0 -18
  455. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  456. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  457. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  458. data/apis/es/2015-01-01/api-2.json +0 -1543
  459. data/apis/es/2015-01-01/examples-1.json +0 -5
  460. data/apis/es/2015-01-01/paginators-1.json +0 -29
  461. data/apis/es/2015-01-01/smoke.json +0 -18
  462. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  463. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  464. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  465. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  466. data/apis/events/2015-10-07/api-2.json +0 -1462
  467. data/apis/events/2015-10-07/examples-1.json +0 -5
  468. data/apis/events/2015-10-07/paginators-1.json +0 -4
  469. data/apis/events/2015-10-07/smoke.json +0 -18
  470. data/apis/firehose/2015-08-04/api-2.json +0 -1376
  471. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  472. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  473. data/apis/firehose/2015-08-04/smoke.json +0 -18
  474. data/apis/fms/2018-01-01/api-2.json +0 -692
  475. data/apis/fms/2018-01-01/examples-1.json +0 -5
  476. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  477. data/apis/forecast/2018-06-26/api-2.json +0 -1373
  478. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  479. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  480. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  481. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  482. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  483. data/apis/fsx/2018-03-01/api-2.json +0 -1050
  484. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  485. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  486. data/apis/gamelift/2015-10-01/api-2.json +0 -3470
  487. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  488. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  489. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  490. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  491. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  492. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  493. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  494. data/apis/glacier/2012-06-01/smoke.json +0 -18
  495. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  496. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -817
  497. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  498. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  499. data/apis/glue/2017-03-31/api-2.json +0 -6294
  500. data/apis/glue/2017-03-31/examples-1.json +0 -5
  501. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  502. data/apis/glue/2017-03-31/smoke.json +0 -11
  503. data/apis/greengrass/2017-06-07/api-2.json +0 -5106
  504. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  505. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  506. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  507. data/apis/guardduty/2017-11-28/api-2.json +0 -3206
  508. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  509. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  510. data/apis/health/2016-08-04/api-2.json +0 -554
  511. data/apis/health/2016-08-04/examples-1.json +0 -5
  512. data/apis/health/2016-08-04/paginators-1.json +0 -31
  513. data/apis/health/2016-08-04/smoke.json +0 -11
  514. data/apis/iam/2010-05-08/api-2.json +0 -5778
  515. data/apis/iam/2010-05-08/examples-1.json +0 -1572
  516. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  517. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  518. data/apis/iam/2010-05-08/smoke.json +0 -18
  519. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  520. data/apis/importexport/2010-06-01/api-2.json +0 -667
  521. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  522. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  523. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  524. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  525. data/apis/inspector/2016-02-16/smoke.json +0 -18
  526. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  527. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  528. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  529. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  530. data/apis/iot/2015-05-28/api-2.json +0 -9676
  531. data/apis/iot/2015-05-28/examples-1.json +0 -5
  532. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  533. data/apis/iot/2015-05-28/smoke.json +0 -18
  534. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  535. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  536. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  537. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  538. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2222
  539. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  540. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  541. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  542. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  543. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  544. data/apis/iotevents/2018-07-27/api-2.json +0 -1133
  545. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  546. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  547. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  548. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  549. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  550. data/apis/kafka/2018-11-14/api-2.json +0 -1698
  551. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  552. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -417
  553. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  554. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  555. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  556. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  557. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  558. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  559. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  560. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  561. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  562. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  563. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  564. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  565. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  566. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
  567. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  568. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  569. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  570. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  571. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  572. data/apis/kms/2014-11-01/api-2.json +0 -1834
  573. data/apis/kms/2014-11-01/examples-1.json +0 -906
  574. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  575. data/apis/kms/2014-11-01/smoke.json +0 -19
  576. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  577. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  578. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  579. data/apis/lambda/2014-11-11/api-2.json +0 -668
  580. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  581. data/apis/lambda/2015-03-31/api-2.json +0 -2353
  582. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  583. data/apis/lambda/2015-03-31/paginators-1.json +0 -40
  584. data/apis/lambda/2015-03-31/smoke.json +0 -18
  585. data/apis/lambda/2015-03-31/waiters-2.json +0 -22
  586. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  587. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  588. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  589. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  590. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  591. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  592. data/apis/lightsail/2016-11-28/api-2.json +0 -4781
  593. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  594. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  595. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  596. data/apis/logs/2014-03-28/api-2.json +0 -1701
  597. data/apis/logs/2014-03-28/examples-1.json +0 -5
  598. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  599. data/apis/logs/2014-03-28/smoke.json +0 -19
  600. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  601. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  602. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  603. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  604. data/apis/macie/2017-12-19/api-2.json +0 -365
  605. data/apis/macie/2017-12-19/examples-1.json +0 -5
  606. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  607. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  608. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  609. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  610. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -174
  611. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  612. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  613. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  614. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
  615. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  616. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8292
  617. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  618. data/apis/medialive/2017-10-14/api-2.json +0 -9023
  619. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  620. data/apis/medialive/2017-10-14/waiters-2.json +0 -111
  621. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1498
  622. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  623. data/apis/mediapackage/2017-10-12/api-2.json +0 -2039
  624. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
  625. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  626. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  627. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  628. data/apis/mediastore/2017-09-01/api-2.json +0 -735
  629. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  630. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  631. data/apis/mediatailor/2018-04-23/api-2.json +0 -524
  632. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  633. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -344
  634. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  635. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  636. data/apis/mobile/2017-07-01/api-2.json +0 -551
  637. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  638. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  639. data/apis/monitoring/2010-08-01/api-2.json +0 -1525
  640. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  641. data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
  642. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  643. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  644. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  645. data/apis/mq/2017-11-27/api-2.json +0 -2514
  646. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  647. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  648. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  649. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  650. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  651. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  652. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  653. data/apis/neptune/2014-10-31/smoke.json +0 -18
  654. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  655. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  656. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  657. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  658. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  659. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  660. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  661. data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
  662. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  663. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  664. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  665. data/apis/organizations/2016-11-28/api-2.json +0 -2317
  666. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  667. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  668. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  669. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  670. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  671. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
  672. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  673. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  674. data/apis/personalize/2018-05-22/api-2.json +0 -1703
  675. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  676. data/apis/personalize/2018-05-22/paginators-1.json +0 -58
  677. data/apis/pi/2018-02-27/api-2.json +0 -253
  678. data/apis/pi/2018-02-27/examples-1.json +0 -5
  679. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  680. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2080
  681. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  682. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  683. data/apis/pinpoint/2016-12-01/api-2.json +0 -8526
  684. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  685. data/apis/polly/2016-06-10/api-2.json +0 -830
  686. data/apis/polly/2016-06-10/examples-1.json +0 -171
  687. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  688. data/apis/polly/2016-06-10/smoke.json +0 -11
  689. data/apis/pricing/2017-10-15/api-2.json +0 -227
  690. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  691. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  692. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  693. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  694. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  695. data/apis/qldb/2019-01-02/api-2.json +0 -776
  696. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  697. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  698. data/apis/quicksight/2018-04-01/api-2.json +0 -1223
  699. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  700. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  701. data/apis/ram/2018-01-04/api-2.json +0 -1021
  702. data/apis/ram/2018-01-04/examples-1.json +0 -5
  703. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  704. data/apis/rds-data/2018-08-01/api-2.json +0 -540
  705. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  706. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  707. data/apis/rds/2013-01-10/api-2.json +0 -2903
  708. data/apis/rds/2013-01-10/examples-1.json +0 -5
  709. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  710. data/apis/rds/2013-01-10/smoke.json +0 -18
  711. data/apis/rds/2013-02-12/api-2.json +0 -3059
  712. data/apis/rds/2013-02-12/examples-1.json +0 -5
  713. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  714. data/apis/rds/2013-02-12/smoke.json +0 -18
  715. data/apis/rds/2013-09-09/api-2.json +0 -3160
  716. data/apis/rds/2013-09-09/examples-1.json +0 -5
  717. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  718. data/apis/rds/2013-09-09/smoke.json +0 -18
  719. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  720. data/apis/rds/2014-09-01/api-2.json +0 -3273
  721. data/apis/rds/2014-09-01/examples-1.json +0 -5
  722. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  723. data/apis/rds/2014-09-01/smoke.json +0 -18
  724. data/apis/rds/2014-10-31/api-2.json +0 -6579
  725. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  726. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  727. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  728. data/apis/rds/2014-10-31/smoke.json +0 -18
  729. data/apis/rds/2014-10-31/waiters-2.json +0 -175
  730. data/apis/rds/2015-11-12/api-2.json +0 -5509
  731. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  732. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  733. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  734. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  735. data/apis/redshift/2012-12-01/api-2.json +0 -4995
  736. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  737. data/apis/redshift/2012-12-01/paginators-1.json +0 -100
  738. data/apis/redshift/2012-12-01/smoke.json +0 -18
  739. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  740. data/apis/rekognition/2016-06-27/api-2.json +0 -2142
  741. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  742. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  743. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  744. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  745. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  746. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  747. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
  748. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  749. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  750. data/apis/robomaker/2018-06-29/api-2.json +0 -2138
  751. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  752. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  753. data/apis/route53/2013-04-01/api-2.json +0 -3780
  754. data/apis/route53/2013-04-01/examples-1.json +0 -762
  755. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  756. data/apis/route53/2013-04-01/smoke.json +0 -18
  757. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  758. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  759. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  760. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  761. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  762. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  763. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  764. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  765. data/apis/runtime.lex/2016-11-28/api-2.json +0 -680
  766. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  767. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  768. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  769. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  770. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  771. data/apis/s3/2006-03-01/api-2.json +0 -6576
  772. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  773. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  774. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  775. data/apis/s3/2006-03-01/smoke.json +0 -11
  776. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  777. data/apis/s3control/2018-08-20/api-2.json +0 -1044
  778. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  779. data/apis/s3control/2018-08-20/paginators-1.json +0 -9
  780. data/apis/sagemaker/2017-07-24/api-2.json +0 -5245
  781. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  782. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  783. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  784. data/apis/sdb/2009-04-15/api-2.json +0 -955
  785. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  786. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  787. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  788. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  789. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  790. data/apis/securityhub/2018-10-26/api-2.json +0 -2105
  791. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  792. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  793. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
  794. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  795. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  796. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  797. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  798. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  799. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  800. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  801. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  802. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  803. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  804. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  805. data/apis/shield/2016-06-02/api-2.json +0 -893
  806. data/apis/shield/2016-06-02/examples-1.json +0 -5
  807. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  808. data/apis/shield/2016-06-02/smoke.json +0 -11
  809. data/apis/signer/2017-08-25/api-2.json +0 -670
  810. data/apis/signer/2017-08-25/examples-1.json +0 -5
  811. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  812. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  813. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  814. data/apis/sms/2016-10-24/api-2.json +0 -1366
  815. data/apis/sms/2016-10-24/examples-1.json +0 -5
  816. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  817. data/apis/sms/2016-10-24/smoke.json +0 -18
  818. data/apis/snowball/2016-06-30/api-2.json +0 -929
  819. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  820. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  821. data/apis/snowball/2016-06-30/smoke.json +0 -11
  822. data/apis/sns/2010-03-31/api-2.json +0 -1468
  823. data/apis/sns/2010-03-31/examples-1.json +0 -5
  824. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  825. data/apis/sns/2010-03-31/resources-1.json +0 -327
  826. data/apis/sns/2010-03-31/smoke.json +0 -19
  827. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  828. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  829. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  830. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  831. data/apis/sqs/2012-11-05/smoke.json +0 -18
  832. data/apis/ssm/2014-11-06/api-2.json +0 -8914
  833. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  834. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  835. data/apis/ssm/2014-11-06/smoke.json +0 -18
  836. data/apis/states/2016-11-23/api-2.json +0 -1409
  837. data/apis/states/2016-11-23/examples-1.json +0 -5
  838. data/apis/states/2016-11-23/paginators-1.json +0 -28
  839. data/apis/states/2016-11-23/smoke.json +0 -11
  840. data/apis/storagegateway/2013-06-30/api-2.json +0 -3166
  841. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  842. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  843. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  844. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  845. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  846. data/apis/sts/2011-06-15/api-2.json +0 -562
  847. data/apis/sts/2011-06-15/examples-1.json +0 -207
  848. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  849. data/apis/sts/2011-06-15/smoke.json +0 -19
  850. data/apis/support/2013-04-15/api-2.json +0 -772
  851. data/apis/support/2013-04-15/examples-1.json +0 -5
  852. data/apis/support/2013-04-15/paginators-1.json +0 -25
  853. data/apis/swf/2012-01-25/api-2.json +0 -2792
  854. data/apis/swf/2012-01-25/examples-1.json +0 -5
  855. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  856. data/apis/textract/2018-06-27/api-2.json +0 -572
  857. data/apis/textract/2018-06-27/examples-1.json +0 -5
  858. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  859. data/apis/transcribe/2017-10-26/api-2.json +0 -505
  860. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  861. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  862. data/apis/transfer/2018-11-05/api-2.json +0 -857
  863. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  864. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  865. data/apis/translate/2017-07-01/api-2.json +0 -408
  866. data/apis/translate/2017-07-01/examples-1.json +0 -5
  867. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  868. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  869. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  870. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  871. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  872. data/apis/waf/2015-08-24/api-2.json +0 -3857
  873. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  874. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  875. data/apis/waf/2015-08-24/smoke.json +0 -21
  876. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  877. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  878. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  879. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  880. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  881. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  882. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  883. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  884. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  885. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  886. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  887. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  888. data/apis/workspaces/2015-04-08/api-2.json +0 -1764
  889. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  890. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  891. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  892. data/apis/xray/2016-04-12/api-2.json +0 -1352
  893. data/apis/xray/2016-04-12/examples-1.json +0 -5
  894. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  895. data/bin/aws.rb +0 -180
  896. data/endpoints.json +0 -5177
  897. data/lib/aws-sdk-core/acm.rb +0 -7
  898. data/lib/aws-sdk-core/acmpca.rb +0 -7
  899. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  900. data/lib/aws-sdk-core/amplify.rb +0 -6
  901. data/lib/aws-sdk-core/api/builder.rb +0 -129
  902. data/lib/aws-sdk-core/api/customizations.rb +0 -299
  903. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  904. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  905. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  906. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  907. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  908. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  909. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  910. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  911. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  912. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  913. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  914. data/lib/aws-sdk-core/apigateway.rb +0 -6
  915. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  916. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  917. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  918. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  919. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  920. data/lib/aws-sdk-core/appmesh.rb +0 -6
  921. data/lib/aws-sdk-core/appstream.rb +0 -7
  922. data/lib/aws-sdk-core/appsync.rb +0 -6
  923. data/lib/aws-sdk-core/athena.rb +0 -6
  924. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  925. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  926. data/lib/aws-sdk-core/backup.rb +0 -6
  927. data/lib/aws-sdk-core/batch.rb +0 -6
  928. data/lib/aws-sdk-core/budgets.rb +0 -6
  929. data/lib/aws-sdk-core/checksums.rb +0 -51
  930. data/lib/aws-sdk-core/chime.rb +0 -6
  931. data/lib/aws-sdk-core/client.rb +0 -62
  932. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  933. data/lib/aws-sdk-core/cloud9.rb +0 -6
  934. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  935. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  936. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  937. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  938. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  939. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  940. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  941. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  942. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  943. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  944. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  945. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  946. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  947. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  948. data/lib/aws-sdk-core/codebuild.rb +0 -6
  949. data/lib/aws-sdk-core/codecommit.rb +0 -6
  950. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  951. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  952. data/lib/aws-sdk-core/codestar.rb +0 -6
  953. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  954. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  955. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  956. data/lib/aws-sdk-core/comprehend.rb +0 -6
  957. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  958. data/lib/aws-sdk-core/configservice.rb +0 -6
  959. data/lib/aws-sdk-core/connect.rb +0 -6
  960. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  961. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  962. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  963. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  964. data/lib/aws-sdk-core/datasync.rb +0 -6
  965. data/lib/aws-sdk-core/dax.rb +0 -6
  966. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  967. data/lib/aws-sdk-core/directconnect.rb +0 -6
  968. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  969. data/lib/aws-sdk-core/dlm.rb +0 -6
  970. data/lib/aws-sdk-core/docdb.rb +0 -7
  971. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  972. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  973. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  974. data/lib/aws-sdk-core/ec2.rb +0 -8
  975. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  976. data/lib/aws-sdk-core/ecr.rb +0 -6
  977. data/lib/aws-sdk-core/ecs.rb +0 -7
  978. data/lib/aws-sdk-core/efs.rb +0 -6
  979. data/lib/aws-sdk-core/eks.rb +0 -7
  980. data/lib/aws-sdk-core/elasticache.rb +0 -7
  981. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  982. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  983. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  984. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  985. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  986. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  987. data/lib/aws-sdk-core/emr.rb +0 -7
  988. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  989. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  990. data/lib/aws-sdk-core/firehose.rb +0 -6
  991. data/lib/aws-sdk-core/fms.rb +0 -6
  992. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  993. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  994. data/lib/aws-sdk-core/fsx.rb +0 -6
  995. data/lib/aws-sdk-core/gamelift.rb +0 -6
  996. data/lib/aws-sdk-core/glacier.rb +0 -8
  997. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  998. data/lib/aws-sdk-core/glue.rb +0 -6
  999. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1000. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1001. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1002. data/lib/aws-sdk-core/health.rb +0 -6
  1003. data/lib/aws-sdk-core/iam.rb +0 -8
  1004. data/lib/aws-sdk-core/importexport.rb +0 -5
  1005. data/lib/aws-sdk-core/inspector.rb +0 -6
  1006. data/lib/aws-sdk-core/iot.rb +0 -6
  1007. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1008. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1009. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1010. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1011. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1012. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1013. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1014. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1015. data/lib/aws-sdk-core/kafka.rb +0 -5
  1016. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1017. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1018. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1019. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1020. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1021. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1022. data/lib/aws-sdk-core/kms.rb +0 -6
  1023. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1024. data/lib/aws-sdk-core/lambda.rb +0 -7
  1025. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1026. data/lib/aws-sdk-core/lex.rb +0 -6
  1027. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1028. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1029. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1030. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1031. data/lib/aws-sdk-core/macie.rb +0 -6
  1032. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1033. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1034. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1035. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1036. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1037. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1038. data/lib/aws-sdk-core/medialive.rb +0 -6
  1039. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1040. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1041. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1042. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1043. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1044. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1045. data/lib/aws-sdk-core/mobile.rb +0 -6
  1046. data/lib/aws-sdk-core/mq.rb +0 -5
  1047. data/lib/aws-sdk-core/mturk.rb +0 -6
  1048. data/lib/aws-sdk-core/neptune.rb +0 -7
  1049. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1050. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1051. data/lib/aws-sdk-core/organizations.rb +0 -6
  1052. data/lib/aws-sdk-core/partitions.rb +0 -174
  1053. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1054. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1055. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1056. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1057. data/lib/aws-sdk-core/personalize.rb +0 -6
  1058. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1059. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1060. data/lib/aws-sdk-core/pi.rb +0 -6
  1061. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1062. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1063. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1064. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1065. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1066. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1067. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1068. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1069. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1070. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1071. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1072. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1073. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1074. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1075. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1076. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1077. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1078. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1079. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1080. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1081. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1082. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1083. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1084. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1085. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1086. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1087. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1088. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1089. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1090. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1091. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1092. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1093. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1094. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1095. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1096. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1097. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1098. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1099. data/lib/aws-sdk-core/polly.rb +0 -14
  1100. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1101. data/lib/aws-sdk-core/pricing.rb +0 -6
  1102. data/lib/aws-sdk-core/qldb.rb +0 -6
  1103. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1104. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1105. data/lib/aws-sdk-core/ram.rb +0 -6
  1106. data/lib/aws-sdk-core/rds.rb +0 -16
  1107. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1108. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1109. data/lib/aws-sdk-core/redshift.rb +0 -7
  1110. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1111. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1112. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1113. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1114. data/lib/aws-sdk-core/route53.rb +0 -7
  1115. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1116. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1117. data/lib/aws-sdk-core/s3.rb +0 -26
  1118. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1119. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1120. data/lib/aws-sdk-core/s3control.rb +0 -6
  1121. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1122. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1123. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1124. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1125. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1126. data/lib/aws-sdk-core/service.rb +0 -4
  1127. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1128. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1129. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1130. data/lib/aws-sdk-core/ses.rb +0 -7
  1131. data/lib/aws-sdk-core/shield.rb +0 -6
  1132. data/lib/aws-sdk-core/signer.rb +0 -7
  1133. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1134. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1135. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1136. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1137. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1138. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1139. data/lib/aws-sdk-core/sms.rb +0 -6
  1140. data/lib/aws-sdk-core/snowball.rb +0 -6
  1141. data/lib/aws-sdk-core/sns.rb +0 -7
  1142. data/lib/aws-sdk-core/sqs.rb +0 -7
  1143. data/lib/aws-sdk-core/ssm.rb +0 -6
  1144. data/lib/aws-sdk-core/states.rb +0 -6
  1145. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1146. data/lib/aws-sdk-core/sts.rb +0 -6
  1147. data/lib/aws-sdk-core/support.rb +0 -6
  1148. data/lib/aws-sdk-core/swf.rb +0 -6
  1149. data/lib/aws-sdk-core/textract.rb +0 -6
  1150. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1151. data/lib/aws-sdk-core/transfer.rb +0 -6
  1152. data/lib/aws-sdk-core/translate.rb +0 -6
  1153. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1154. data/lib/aws-sdk-core/version.rb +0 -3
  1155. data/lib/aws-sdk-core/waf.rb +0 -6
  1156. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1157. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1158. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1159. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1160. data/lib/aws-sdk-core/worklink.rb +0 -6
  1161. data/lib/aws-sdk-core/workmail.rb +0 -6
  1162. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1163. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1164. data/lib/aws-sdk-core/xray.rb +0 -6
  1165. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1166. data/service-models.json +0 -769
@@ -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,3470 +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
- "r3.large",
1998
- "r3.xlarge",
1999
- "r3.2xlarge",
2000
- "r3.4xlarge",
2001
- "r3.8xlarge",
2002
- "r4.large",
2003
- "r4.xlarge",
2004
- "r4.2xlarge",
2005
- "r4.4xlarge",
2006
- "r4.8xlarge",
2007
- "r4.16xlarge",
2008
- "m3.medium",
2009
- "m3.large",
2010
- "m3.xlarge",
2011
- "m3.2xlarge",
2012
- "m4.large",
2013
- "m4.xlarge",
2014
- "m4.2xlarge",
2015
- "m4.4xlarge",
2016
- "m4.10xlarge"
2017
- ]
2018
- },
2019
- "Event":{
2020
- "type":"structure",
2021
- "members":{
2022
- "EventId":{"shape":"NonZeroAndMaxString"},
2023
- "ResourceId":{"shape":"NonZeroAndMaxString"},
2024
- "EventCode":{"shape":"EventCode"},
2025
- "Message":{"shape":"NonEmptyString"},
2026
- "EventTime":{"shape":"Timestamp"},
2027
- "PreSignedLogUrl":{"shape":"NonZeroAndMaxString"}
2028
- }
2029
- },
2030
- "EventCode":{
2031
- "type":"string",
2032
- "enum":[
2033
- "GENERIC_EVENT",
2034
- "FLEET_CREATED",
2035
- "FLEET_DELETED",
2036
- "FLEET_SCALING_EVENT",
2037
- "FLEET_STATE_DOWNLOADING",
2038
- "FLEET_STATE_VALIDATING",
2039
- "FLEET_STATE_BUILDING",
2040
- "FLEET_STATE_ACTIVATING",
2041
- "FLEET_STATE_ACTIVE",
2042
- "FLEET_STATE_ERROR",
2043
- "FLEET_INITIALIZATION_FAILED",
2044
- "FLEET_BINARY_DOWNLOAD_FAILED",
2045
- "FLEET_VALIDATION_LAUNCH_PATH_NOT_FOUND",
2046
- "FLEET_VALIDATION_EXECUTABLE_RUNTIME_FAILURE",
2047
- "FLEET_VALIDATION_TIMED_OUT",
2048
- "FLEET_ACTIVATION_FAILED",
2049
- "FLEET_ACTIVATION_FAILED_NO_INSTANCES",
2050
- "FLEET_NEW_GAME_SESSION_PROTECTION_POLICY_UPDATED",
2051
- "SERVER_PROCESS_INVALID_PATH",
2052
- "SERVER_PROCESS_SDK_INITIALIZATION_TIMEOUT",
2053
- "SERVER_PROCESS_PROCESS_READY_TIMEOUT",
2054
- "SERVER_PROCESS_CRASHED",
2055
- "SERVER_PROCESS_TERMINATED_UNHEALTHY",
2056
- "SERVER_PROCESS_FORCE_TERMINATED",
2057
- "SERVER_PROCESS_PROCESS_EXIT_TIMEOUT",
2058
- "GAME_SESSION_ACTIVATION_TIMEOUT",
2059
- "FLEET_CREATION_EXTRACTING_BUILD",
2060
- "FLEET_CREATION_RUNNING_INSTALLER",
2061
- "FLEET_CREATION_VALIDATING_RUNTIME_CONFIG",
2062
- "FLEET_VPC_PEERING_SUCCEEDED",
2063
- "FLEET_VPC_PEERING_FAILED",
2064
- "FLEET_VPC_PEERING_DELETED",
2065
- "INSTANCE_INTERRUPTED"
2066
- ]
2067
- },
2068
- "EventList":{
2069
- "type":"list",
2070
- "member":{"shape":"Event"}
2071
- },
2072
- "FleetAction":{
2073
- "type":"string",
2074
- "enum":["AUTO_SCALING"]
2075
- },
2076
- "FleetActionList":{
2077
- "type":"list",
2078
- "member":{"shape":"FleetAction"},
2079
- "max":1,
2080
- "min":1
2081
- },
2082
- "FleetAttributes":{
2083
- "type":"structure",
2084
- "members":{
2085
- "FleetId":{"shape":"FleetId"},
2086
- "FleetArn":{"shape":"ArnStringModel"},
2087
- "FleetType":{"shape":"FleetType"},
2088
- "InstanceType":{"shape":"EC2InstanceType"},
2089
- "Description":{"shape":"NonZeroAndMaxString"},
2090
- "Name":{"shape":"NonZeroAndMaxString"},
2091
- "CreationTime":{"shape":"Timestamp"},
2092
- "TerminationTime":{"shape":"Timestamp"},
2093
- "Status":{"shape":"FleetStatus"},
2094
- "BuildId":{"shape":"BuildId"},
2095
- "ScriptId":{"shape":"ScriptId"},
2096
- "ServerLaunchPath":{"shape":"NonZeroAndMaxString"},
2097
- "ServerLaunchParameters":{"shape":"NonZeroAndMaxString"},
2098
- "LogPaths":{"shape":"StringList"},
2099
- "NewGameSessionProtectionPolicy":{"shape":"ProtectionPolicy"},
2100
- "OperatingSystem":{"shape":"OperatingSystem"},
2101
- "ResourceCreationLimitPolicy":{"shape":"ResourceCreationLimitPolicy"},
2102
- "MetricGroups":{"shape":"MetricGroupList"},
2103
- "StoppedActions":{"shape":"FleetActionList"},
2104
- "InstanceRoleArn":{"shape":"NonEmptyString"},
2105
- "CertificateConfiguration":{"shape":"CertificateConfiguration"}
2106
- }
2107
- },
2108
- "FleetAttributesList":{
2109
- "type":"list",
2110
- "member":{"shape":"FleetAttributes"}
2111
- },
2112
- "FleetCapacity":{
2113
- "type":"structure",
2114
- "members":{
2115
- "FleetId":{"shape":"FleetId"},
2116
- "InstanceType":{"shape":"EC2InstanceType"},
2117
- "InstanceCounts":{"shape":"EC2InstanceCounts"}
2118
- }
2119
- },
2120
- "FleetCapacityExceededException":{
2121
- "type":"structure",
2122
- "members":{
2123
- "Message":{"shape":"NonEmptyString"}
2124
- },
2125
- "exception":true
2126
- },
2127
- "FleetCapacityList":{
2128
- "type":"list",
2129
- "member":{"shape":"FleetCapacity"}
2130
- },
2131
- "FleetId":{
2132
- "type":"string",
2133
- "pattern":"^fleet-\\S+"
2134
- },
2135
- "FleetIdList":{
2136
- "type":"list",
2137
- "member":{"shape":"FleetId"},
2138
- "min":1
2139
- },
2140
- "FleetStatus":{
2141
- "type":"string",
2142
- "enum":[
2143
- "NEW",
2144
- "DOWNLOADING",
2145
- "VALIDATING",
2146
- "BUILDING",
2147
- "ACTIVATING",
2148
- "ACTIVE",
2149
- "DELETING",
2150
- "ERROR",
2151
- "TERMINATED"
2152
- ]
2153
- },
2154
- "FleetType":{
2155
- "type":"string",
2156
- "enum":[
2157
- "ON_DEMAND",
2158
- "SPOT"
2159
- ]
2160
- },
2161
- "FleetUtilization":{
2162
- "type":"structure",
2163
- "members":{
2164
- "FleetId":{"shape":"FleetId"},
2165
- "ActiveServerProcessCount":{"shape":"WholeNumber"},
2166
- "ActiveGameSessionCount":{"shape":"WholeNumber"},
2167
- "CurrentPlayerSessionCount":{"shape":"WholeNumber"},
2168
- "MaximumPlayerSessionCount":{"shape":"WholeNumber"}
2169
- }
2170
- },
2171
- "FleetUtilizationList":{
2172
- "type":"list",
2173
- "member":{"shape":"FleetUtilization"}
2174
- },
2175
- "Float":{"type":"float"},
2176
- "FreeText":{"type":"string"},
2177
- "GameProperty":{
2178
- "type":"structure",
2179
- "required":[
2180
- "Key",
2181
- "Value"
2182
- ],
2183
- "members":{
2184
- "Key":{"shape":"GamePropertyKey"},
2185
- "Value":{"shape":"GamePropertyValue"}
2186
- }
2187
- },
2188
- "GamePropertyKey":{
2189
- "type":"string",
2190
- "max":32
2191
- },
2192
- "GamePropertyList":{
2193
- "type":"list",
2194
- "member":{"shape":"GameProperty"},
2195
- "max":16
2196
- },
2197
- "GamePropertyValue":{
2198
- "type":"string",
2199
- "max":96
2200
- },
2201
- "GameSession":{
2202
- "type":"structure",
2203
- "members":{
2204
- "GameSessionId":{"shape":"NonZeroAndMaxString"},
2205
- "Name":{"shape":"NonZeroAndMaxString"},
2206
- "FleetId":{"shape":"FleetId"},
2207
- "CreationTime":{"shape":"Timestamp"},
2208
- "TerminationTime":{"shape":"Timestamp"},
2209
- "CurrentPlayerSessionCount":{"shape":"WholeNumber"},
2210
- "MaximumPlayerSessionCount":{"shape":"WholeNumber"},
2211
- "Status":{"shape":"GameSessionStatus"},
2212
- "StatusReason":{"shape":"GameSessionStatusReason"},
2213
- "GameProperties":{"shape":"GamePropertyList"},
2214
- "IpAddress":{"shape":"IpAddress"},
2215
- "DnsName":{"shape":"DnsName"},
2216
- "Port":{"shape":"PortNumber"},
2217
- "PlayerSessionCreationPolicy":{"shape":"PlayerSessionCreationPolicy"},
2218
- "CreatorId":{"shape":"NonZeroAndMaxString"},
2219
- "GameSessionData":{"shape":"GameSessionData"},
2220
- "MatchmakerData":{"shape":"MatchmakerData"}
2221
- }
2222
- },
2223
- "GameSessionActivationTimeoutSeconds":{
2224
- "type":"integer",
2225
- "max":600,
2226
- "min":1
2227
- },
2228
- "GameSessionConnectionInfo":{
2229
- "type":"structure",
2230
- "members":{
2231
- "GameSessionArn":{"shape":"ArnStringModel"},
2232
- "IpAddress":{"shape":"StringModel"},
2233
- "DnsName":{"shape":"DnsName"},
2234
- "Port":{"shape":"PositiveInteger"},
2235
- "MatchedPlayerSessions":{"shape":"MatchedPlayerSessionList"}
2236
- }
2237
- },
2238
- "GameSessionData":{
2239
- "type":"string",
2240
- "max":4096,
2241
- "min":1
2242
- },
2243
- "GameSessionDetail":{
2244
- "type":"structure",
2245
- "members":{
2246
- "GameSession":{"shape":"GameSession"},
2247
- "ProtectionPolicy":{"shape":"ProtectionPolicy"}
2248
- }
2249
- },
2250
- "GameSessionDetailList":{
2251
- "type":"list",
2252
- "member":{"shape":"GameSessionDetail"}
2253
- },
2254
- "GameSessionFullException":{
2255
- "type":"structure",
2256
- "members":{
2257
- "Message":{"shape":"NonEmptyString"}
2258
- },
2259
- "exception":true
2260
- },
2261
- "GameSessionList":{
2262
- "type":"list",
2263
- "member":{"shape":"GameSession"}
2264
- },
2265
- "GameSessionPlacement":{
2266
- "type":"structure",
2267
- "members":{
2268
- "PlacementId":{"shape":"IdStringModel"},
2269
- "GameSessionQueueName":{"shape":"GameSessionQueueName"},
2270
- "Status":{"shape":"GameSessionPlacementState"},
2271
- "GameProperties":{"shape":"GamePropertyList"},
2272
- "MaximumPlayerSessionCount":{"shape":"WholeNumber"},
2273
- "GameSessionName":{"shape":"NonZeroAndMaxString"},
2274
- "GameSessionId":{"shape":"NonZeroAndMaxString"},
2275
- "GameSessionArn":{"shape":"NonZeroAndMaxString"},
2276
- "GameSessionRegion":{"shape":"NonZeroAndMaxString"},
2277
- "PlayerLatencies":{"shape":"PlayerLatencyList"},
2278
- "StartTime":{"shape":"Timestamp"},
2279
- "EndTime":{"shape":"Timestamp"},
2280
- "IpAddress":{"shape":"IpAddress"},
2281
- "DnsName":{"shape":"DnsName"},
2282
- "Port":{"shape":"PortNumber"},
2283
- "PlacedPlayerSessions":{"shape":"PlacedPlayerSessionList"},
2284
- "GameSessionData":{"shape":"GameSessionData"},
2285
- "MatchmakerData":{"shape":"MatchmakerData"}
2286
- }
2287
- },
2288
- "GameSessionPlacementState":{
2289
- "type":"string",
2290
- "enum":[
2291
- "PENDING",
2292
- "FULFILLED",
2293
- "CANCELLED",
2294
- "TIMED_OUT",
2295
- "FAILED"
2296
- ]
2297
- },
2298
- "GameSessionQueue":{
2299
- "type":"structure",
2300
- "members":{
2301
- "Name":{"shape":"GameSessionQueueName"},
2302
- "GameSessionQueueArn":{"shape":"ArnStringModel"},
2303
- "TimeoutInSeconds":{"shape":"WholeNumber"},
2304
- "PlayerLatencyPolicies":{"shape":"PlayerLatencyPolicyList"},
2305
- "Destinations":{"shape":"GameSessionQueueDestinationList"}
2306
- }
2307
- },
2308
- "GameSessionQueueDestination":{
2309
- "type":"structure",
2310
- "members":{
2311
- "DestinationArn":{"shape":"ArnStringModel"}
2312
- }
2313
- },
2314
- "GameSessionQueueDestinationList":{
2315
- "type":"list",
2316
- "member":{"shape":"GameSessionQueueDestination"}
2317
- },
2318
- "GameSessionQueueList":{
2319
- "type":"list",
2320
- "member":{"shape":"GameSessionQueue"}
2321
- },
2322
- "GameSessionQueueName":{
2323
- "type":"string",
2324
- "max":128,
2325
- "min":1,
2326
- "pattern":"[a-zA-Z0-9-]+"
2327
- },
2328
- "GameSessionQueueNameList":{
2329
- "type":"list",
2330
- "member":{"shape":"GameSessionQueueName"}
2331
- },
2332
- "GameSessionStatus":{
2333
- "type":"string",
2334
- "enum":[
2335
- "ACTIVE",
2336
- "ACTIVATING",
2337
- "TERMINATED",
2338
- "TERMINATING",
2339
- "ERROR"
2340
- ]
2341
- },
2342
- "GameSessionStatusReason":{
2343
- "type":"string",
2344
- "enum":["INTERRUPTED"]
2345
- },
2346
- "GetGameSessionLogUrlInput":{
2347
- "type":"structure",
2348
- "required":["GameSessionId"],
2349
- "members":{
2350
- "GameSessionId":{"shape":"ArnStringModel"}
2351
- }
2352
- },
2353
- "GetGameSessionLogUrlOutput":{
2354
- "type":"structure",
2355
- "members":{
2356
- "PreSignedUrl":{"shape":"NonZeroAndMaxString"}
2357
- }
2358
- },
2359
- "GetInstanceAccessInput":{
2360
- "type":"structure",
2361
- "required":[
2362
- "FleetId",
2363
- "InstanceId"
2364
- ],
2365
- "members":{
2366
- "FleetId":{"shape":"FleetId"},
2367
- "InstanceId":{"shape":"InstanceId"}
2368
- }
2369
- },
2370
- "GetInstanceAccessOutput":{
2371
- "type":"structure",
2372
- "members":{
2373
- "InstanceAccess":{"shape":"InstanceAccess"}
2374
- }
2375
- },
2376
- "IdStringModel":{
2377
- "type":"string",
2378
- "max":48,
2379
- "min":1,
2380
- "pattern":"[a-zA-Z0-9-]+"
2381
- },
2382
- "IdempotentParameterMismatchException":{
2383
- "type":"structure",
2384
- "members":{
2385
- "Message":{"shape":"NonEmptyString"}
2386
- },
2387
- "exception":true
2388
- },
2389
- "Instance":{
2390
- "type":"structure",
2391
- "members":{
2392
- "FleetId":{"shape":"FleetId"},
2393
- "InstanceId":{"shape":"InstanceId"},
2394
- "IpAddress":{"shape":"IpAddress"},
2395
- "DnsName":{"shape":"DnsName"},
2396
- "OperatingSystem":{"shape":"OperatingSystem"},
2397
- "Type":{"shape":"EC2InstanceType"},
2398
- "Status":{"shape":"InstanceStatus"},
2399
- "CreationTime":{"shape":"Timestamp"}
2400
- }
2401
- },
2402
- "InstanceAccess":{
2403
- "type":"structure",
2404
- "members":{
2405
- "FleetId":{"shape":"FleetId"},
2406
- "InstanceId":{"shape":"InstanceId"},
2407
- "IpAddress":{"shape":"IpAddress"},
2408
- "OperatingSystem":{"shape":"OperatingSystem"},
2409
- "Credentials":{"shape":"InstanceCredentials"}
2410
- }
2411
- },
2412
- "InstanceCredentials":{
2413
- "type":"structure",
2414
- "members":{
2415
- "UserName":{"shape":"NonEmptyString"},
2416
- "Secret":{"shape":"NonEmptyString"}
2417
- },
2418
- "sensitive":true
2419
- },
2420
- "InstanceId":{
2421
- "type":"string",
2422
- "pattern":"[a-zA-Z0-9\\.-]+"
2423
- },
2424
- "InstanceList":{
2425
- "type":"list",
2426
- "member":{"shape":"Instance"}
2427
- },
2428
- "InstanceStatus":{
2429
- "type":"string",
2430
- "enum":[
2431
- "PENDING",
2432
- "ACTIVE",
2433
- "TERMINATING"
2434
- ]
2435
- },
2436
- "Integer":{"type":"integer"},
2437
- "InternalServiceException":{
2438
- "type":"structure",
2439
- "members":{
2440
- "Message":{"shape":"NonEmptyString"}
2441
- },
2442
- "exception":true,
2443
- "fault":true
2444
- },
2445
- "InvalidFleetStatusException":{
2446
- "type":"structure",
2447
- "members":{
2448
- "Message":{"shape":"NonEmptyString"}
2449
- },
2450
- "exception":true
2451
- },
2452
- "InvalidGameSessionStatusException":{
2453
- "type":"structure",
2454
- "members":{
2455
- "Message":{"shape":"NonEmptyString"}
2456
- },
2457
- "exception":true
2458
- },
2459
- "InvalidRequestException":{
2460
- "type":"structure",
2461
- "members":{
2462
- "Message":{"shape":"NonEmptyString"}
2463
- },
2464
- "exception":true
2465
- },
2466
- "IpAddress":{"type":"string"},
2467
- "IpPermission":{
2468
- "type":"structure",
2469
- "required":[
2470
- "FromPort",
2471
- "ToPort",
2472
- "IpRange",
2473
- "Protocol"
2474
- ],
2475
- "members":{
2476
- "FromPort":{"shape":"PortNumber"},
2477
- "ToPort":{"shape":"PortNumber"},
2478
- "IpRange":{"shape":"NonBlankString"},
2479
- "Protocol":{"shape":"IpProtocol"}
2480
- }
2481
- },
2482
- "IpPermissionsList":{
2483
- "type":"list",
2484
- "member":{"shape":"IpPermission"},
2485
- "max":50
2486
- },
2487
- "IpProtocol":{
2488
- "type":"string",
2489
- "enum":[
2490
- "TCP",
2491
- "UDP"
2492
- ]
2493
- },
2494
- "LatencyMap":{
2495
- "type":"map",
2496
- "key":{"shape":"NonEmptyString"},
2497
- "value":{"shape":"PositiveInteger"}
2498
- },
2499
- "LimitExceededException":{
2500
- "type":"structure",
2501
- "members":{
2502
- "Message":{"shape":"NonEmptyString"}
2503
- },
2504
- "exception":true
2505
- },
2506
- "ListAliasesInput":{
2507
- "type":"structure",
2508
- "members":{
2509
- "RoutingStrategyType":{"shape":"RoutingStrategyType"},
2510
- "Name":{"shape":"NonEmptyString"},
2511
- "Limit":{"shape":"PositiveInteger"},
2512
- "NextToken":{"shape":"NonEmptyString"}
2513
- }
2514
- },
2515
- "ListAliasesOutput":{
2516
- "type":"structure",
2517
- "members":{
2518
- "Aliases":{"shape":"AliasList"},
2519
- "NextToken":{"shape":"NonEmptyString"}
2520
- }
2521
- },
2522
- "ListBuildsInput":{
2523
- "type":"structure",
2524
- "members":{
2525
- "Status":{"shape":"BuildStatus"},
2526
- "Limit":{"shape":"PositiveInteger"},
2527
- "NextToken":{"shape":"NonEmptyString"}
2528
- }
2529
- },
2530
- "ListBuildsOutput":{
2531
- "type":"structure",
2532
- "members":{
2533
- "Builds":{"shape":"BuildList"},
2534
- "NextToken":{"shape":"NonEmptyString"}
2535
- }
2536
- },
2537
- "ListFleetsInput":{
2538
- "type":"structure",
2539
- "members":{
2540
- "BuildId":{"shape":"BuildId"},
2541
- "ScriptId":{"shape":"ScriptId"},
2542
- "Limit":{"shape":"PositiveInteger"},
2543
- "NextToken":{"shape":"NonZeroAndMaxString"}
2544
- }
2545
- },
2546
- "ListFleetsOutput":{
2547
- "type":"structure",
2548
- "members":{
2549
- "FleetIds":{"shape":"FleetIdList"},
2550
- "NextToken":{"shape":"NonZeroAndMaxString"}
2551
- }
2552
- },
2553
- "ListScriptsInput":{
2554
- "type":"structure",
2555
- "members":{
2556
- "Limit":{"shape":"PositiveInteger"},
2557
- "NextToken":{"shape":"NonEmptyString"}
2558
- }
2559
- },
2560
- "ListScriptsOutput":{
2561
- "type":"structure",
2562
- "members":{
2563
- "Scripts":{"shape":"ScriptList"},
2564
- "NextToken":{"shape":"NonEmptyString"}
2565
- }
2566
- },
2567
- "MatchedPlayerSession":{
2568
- "type":"structure",
2569
- "members":{
2570
- "PlayerId":{"shape":"NonZeroAndMaxString"},
2571
- "PlayerSessionId":{"shape":"PlayerSessionId"}
2572
- }
2573
- },
2574
- "MatchedPlayerSessionList":{
2575
- "type":"list",
2576
- "member":{"shape":"MatchedPlayerSession"}
2577
- },
2578
- "MatchmakerData":{
2579
- "type":"string",
2580
- "max":390000,
2581
- "min":1
2582
- },
2583
- "MatchmakingAcceptanceTimeoutInteger":{
2584
- "type":"integer",
2585
- "max":600,
2586
- "min":1
2587
- },
2588
- "MatchmakingConfiguration":{
2589
- "type":"structure",
2590
- "members":{
2591
- "Name":{"shape":"MatchmakingIdStringModel"},
2592
- "Description":{"shape":"NonZeroAndMaxString"},
2593
- "GameSessionQueueArns":{"shape":"QueueArnsList"},
2594
- "RequestTimeoutSeconds":{"shape":"MatchmakingRequestTimeoutInteger"},
2595
- "AcceptanceTimeoutSeconds":{"shape":"MatchmakingAcceptanceTimeoutInteger"},
2596
- "AcceptanceRequired":{"shape":"BooleanModel"},
2597
- "RuleSetName":{"shape":"MatchmakingIdStringModel"},
2598
- "NotificationTarget":{"shape":"SnsArnStringModel"},
2599
- "AdditionalPlayerCount":{"shape":"WholeNumber"},
2600
- "CustomEventData":{"shape":"CustomEventData"},
2601
- "CreationTime":{"shape":"Timestamp"},
2602
- "GameProperties":{"shape":"GamePropertyList"},
2603
- "GameSessionData":{"shape":"GameSessionData"},
2604
- "BackfillMode":{"shape":"BackfillMode"}
2605
- }
2606
- },
2607
- "MatchmakingConfigurationList":{
2608
- "type":"list",
2609
- "member":{"shape":"MatchmakingConfiguration"}
2610
- },
2611
- "MatchmakingConfigurationStatus":{
2612
- "type":"string",
2613
- "enum":[
2614
- "CANCELLED",
2615
- "COMPLETED",
2616
- "FAILED",
2617
- "PLACING",
2618
- "QUEUED",
2619
- "REQUIRES_ACCEPTANCE",
2620
- "SEARCHING",
2621
- "TIMED_OUT"
2622
- ]
2623
- },
2624
- "MatchmakingIdList":{
2625
- "type":"list",
2626
- "member":{"shape":"MatchmakingIdStringModel"}
2627
- },
2628
- "MatchmakingIdStringModel":{
2629
- "type":"string",
2630
- "max":128,
2631
- "pattern":"[a-zA-Z0-9-\\.]*"
2632
- },
2633
- "MatchmakingRequestTimeoutInteger":{
2634
- "type":"integer",
2635
- "max":43200,
2636
- "min":1
2637
- },
2638
- "MatchmakingRuleSet":{
2639
- "type":"structure",
2640
- "required":["RuleSetBody"],
2641
- "members":{
2642
- "RuleSetName":{"shape":"MatchmakingIdStringModel"},
2643
- "RuleSetBody":{"shape":"RuleSetBody"},
2644
- "CreationTime":{"shape":"Timestamp"}
2645
- }
2646
- },
2647
- "MatchmakingRuleSetList":{
2648
- "type":"list",
2649
- "member":{"shape":"MatchmakingRuleSet"}
2650
- },
2651
- "MatchmakingRuleSetNameList":{
2652
- "type":"list",
2653
- "member":{"shape":"MatchmakingIdStringModel"},
2654
- "max":10,
2655
- "min":1
2656
- },
2657
- "MatchmakingTicket":{
2658
- "type":"structure",
2659
- "members":{
2660
- "TicketId":{"shape":"MatchmakingIdStringModel"},
2661
- "ConfigurationName":{"shape":"MatchmakingIdStringModel"},
2662
- "Status":{"shape":"MatchmakingConfigurationStatus"},
2663
- "StatusReason":{"shape":"StringModel"},
2664
- "StatusMessage":{"shape":"StringModel"},
2665
- "StartTime":{"shape":"Timestamp"},
2666
- "EndTime":{"shape":"Timestamp"},
2667
- "Players":{"shape":"PlayerList"},
2668
- "GameSessionConnectionInfo":{"shape":"GameSessionConnectionInfo"},
2669
- "EstimatedWaitTime":{"shape":"WholeNumber"}
2670
- }
2671
- },
2672
- "MatchmakingTicketList":{
2673
- "type":"list",
2674
- "member":{"shape":"MatchmakingTicket"}
2675
- },
2676
- "MaxConcurrentGameSessionActivations":{
2677
- "type":"integer",
2678
- "max":2147483647,
2679
- "min":1
2680
- },
2681
- "MetricGroup":{
2682
- "type":"string",
2683
- "max":255,
2684
- "min":1
2685
- },
2686
- "MetricGroupList":{
2687
- "type":"list",
2688
- "member":{"shape":"MetricGroup"},
2689
- "max":1
2690
- },
2691
- "MetricName":{
2692
- "type":"string",
2693
- "enum":[
2694
- "ActivatingGameSessions",
2695
- "ActiveGameSessions",
2696
- "ActiveInstances",
2697
- "AvailableGameSessions",
2698
- "AvailablePlayerSessions",
2699
- "CurrentPlayerSessions",
2700
- "IdleInstances",
2701
- "PercentAvailableGameSessions",
2702
- "PercentIdleInstances",
2703
- "QueueDepth",
2704
- "WaitTime"
2705
- ]
2706
- },
2707
- "NonBlankAndLengthConstraintString":{
2708
- "type":"string",
2709
- "max":1024,
2710
- "min":1,
2711
- "pattern":".*\\S.*"
2712
- },
2713
- "NonBlankString":{
2714
- "type":"string",
2715
- "pattern":"[^\\s]+"
2716
- },
2717
- "NonEmptyString":{
2718
- "type":"string",
2719
- "min":1
2720
- },
2721
- "NonZeroAndMaxString":{
2722
- "type":"string",
2723
- "max":1024,
2724
- "min":1
2725
- },
2726
- "NotFoundException":{
2727
- "type":"structure",
2728
- "members":{
2729
- "Message":{"shape":"NonEmptyString"}
2730
- },
2731
- "exception":true
2732
- },
2733
- "OperatingSystem":{
2734
- "type":"string",
2735
- "enum":[
2736
- "WINDOWS_2012",
2737
- "AMAZON_LINUX"
2738
- ]
2739
- },
2740
- "PlacedPlayerSession":{
2741
- "type":"structure",
2742
- "members":{
2743
- "PlayerId":{"shape":"NonZeroAndMaxString"},
2744
- "PlayerSessionId":{"shape":"PlayerSessionId"}
2745
- }
2746
- },
2747
- "PlacedPlayerSessionList":{
2748
- "type":"list",
2749
- "member":{"shape":"PlacedPlayerSession"}
2750
- },
2751
- "Player":{
2752
- "type":"structure",
2753
- "members":{
2754
- "PlayerId":{"shape":"NonZeroAndMaxString"},
2755
- "PlayerAttributes":{"shape":"PlayerAttributeMap"},
2756
- "Team":{"shape":"NonZeroAndMaxString"},
2757
- "LatencyInMs":{"shape":"LatencyMap"}
2758
- }
2759
- },
2760
- "PlayerAttributeMap":{
2761
- "type":"map",
2762
- "key":{"shape":"NonZeroAndMaxString"},
2763
- "value":{"shape":"AttributeValue"}
2764
- },
2765
- "PlayerData":{
2766
- "type":"string",
2767
- "max":2048,
2768
- "min":1
2769
- },
2770
- "PlayerDataMap":{
2771
- "type":"map",
2772
- "key":{"shape":"NonZeroAndMaxString"},
2773
- "value":{"shape":"PlayerData"}
2774
- },
2775
- "PlayerIdList":{
2776
- "type":"list",
2777
- "member":{"shape":"NonZeroAndMaxString"},
2778
- "max":25,
2779
- "min":1
2780
- },
2781
- "PlayerLatency":{
2782
- "type":"structure",
2783
- "members":{
2784
- "PlayerId":{"shape":"NonZeroAndMaxString"},
2785
- "RegionIdentifier":{"shape":"NonZeroAndMaxString"},
2786
- "LatencyInMilliseconds":{"shape":"Float"}
2787
- }
2788
- },
2789
- "PlayerLatencyList":{
2790
- "type":"list",
2791
- "member":{"shape":"PlayerLatency"}
2792
- },
2793
- "PlayerLatencyPolicy":{
2794
- "type":"structure",
2795
- "members":{
2796
- "MaximumIndividualPlayerLatencyMilliseconds":{"shape":"WholeNumber"},
2797
- "PolicyDurationSeconds":{"shape":"WholeNumber"}
2798
- }
2799
- },
2800
- "PlayerLatencyPolicyList":{
2801
- "type":"list",
2802
- "member":{"shape":"PlayerLatencyPolicy"}
2803
- },
2804
- "PlayerList":{
2805
- "type":"list",
2806
- "member":{"shape":"Player"}
2807
- },
2808
- "PlayerSession":{
2809
- "type":"structure",
2810
- "members":{
2811
- "PlayerSessionId":{"shape":"PlayerSessionId"},
2812
- "PlayerId":{"shape":"NonZeroAndMaxString"},
2813
- "GameSessionId":{"shape":"NonZeroAndMaxString"},
2814
- "FleetId":{"shape":"FleetId"},
2815
- "CreationTime":{"shape":"Timestamp"},
2816
- "TerminationTime":{"shape":"Timestamp"},
2817
- "Status":{"shape":"PlayerSessionStatus"},
2818
- "IpAddress":{"shape":"IpAddress"},
2819
- "DnsName":{"shape":"DnsName"},
2820
- "Port":{"shape":"PortNumber"},
2821
- "PlayerData":{"shape":"PlayerData"}
2822
- }
2823
- },
2824
- "PlayerSessionCreationPolicy":{
2825
- "type":"string",
2826
- "enum":[
2827
- "ACCEPT_ALL",
2828
- "DENY_ALL"
2829
- ]
2830
- },
2831
- "PlayerSessionId":{
2832
- "type":"string",
2833
- "pattern":"^psess-\\S+"
2834
- },
2835
- "PlayerSessionList":{
2836
- "type":"list",
2837
- "member":{"shape":"PlayerSession"}
2838
- },
2839
- "PlayerSessionStatus":{
2840
- "type":"string",
2841
- "enum":[
2842
- "RESERVED",
2843
- "ACTIVE",
2844
- "COMPLETED",
2845
- "TIMEDOUT"
2846
- ]
2847
- },
2848
- "PolicyType":{
2849
- "type":"string",
2850
- "enum":[
2851
- "RuleBased",
2852
- "TargetBased"
2853
- ]
2854
- },
2855
- "PortNumber":{
2856
- "type":"integer",
2857
- "max":60000,
2858
- "min":1
2859
- },
2860
- "PositiveInteger":{
2861
- "type":"integer",
2862
- "min":1
2863
- },
2864
- "PositiveLong":{
2865
- "type":"long",
2866
- "min":1
2867
- },
2868
- "ProtectionPolicy":{
2869
- "type":"string",
2870
- "enum":[
2871
- "NoProtection",
2872
- "FullProtection"
2873
- ]
2874
- },
2875
- "PutScalingPolicyInput":{
2876
- "type":"structure",
2877
- "required":[
2878
- "Name",
2879
- "FleetId",
2880
- "MetricName"
2881
- ],
2882
- "members":{
2883
- "Name":{"shape":"NonZeroAndMaxString"},
2884
- "FleetId":{"shape":"FleetId"},
2885
- "ScalingAdjustment":{"shape":"Integer"},
2886
- "ScalingAdjustmentType":{"shape":"ScalingAdjustmentType"},
2887
- "Threshold":{"shape":"Double"},
2888
- "ComparisonOperator":{"shape":"ComparisonOperatorType"},
2889
- "EvaluationPeriods":{"shape":"PositiveInteger"},
2890
- "MetricName":{"shape":"MetricName"},
2891
- "PolicyType":{"shape":"PolicyType"},
2892
- "TargetConfiguration":{"shape":"TargetConfiguration"}
2893
- }
2894
- },
2895
- "PutScalingPolicyOutput":{
2896
- "type":"structure",
2897
- "members":{
2898
- "Name":{"shape":"NonZeroAndMaxString"}
2899
- }
2900
- },
2901
- "QueueArnsList":{
2902
- "type":"list",
2903
- "member":{"shape":"ArnStringModel"}
2904
- },
2905
- "RequestUploadCredentialsInput":{
2906
- "type":"structure",
2907
- "required":["BuildId"],
2908
- "members":{
2909
- "BuildId":{"shape":"BuildId"}
2910
- }
2911
- },
2912
- "RequestUploadCredentialsOutput":{
2913
- "type":"structure",
2914
- "members":{
2915
- "UploadCredentials":{"shape":"AwsCredentials"},
2916
- "StorageLocation":{"shape":"S3Location"}
2917
- }
2918
- },
2919
- "ResolveAliasInput":{
2920
- "type":"structure",
2921
- "required":["AliasId"],
2922
- "members":{
2923
- "AliasId":{"shape":"AliasId"}
2924
- }
2925
- },
2926
- "ResolveAliasOutput":{
2927
- "type":"structure",
2928
- "members":{
2929
- "FleetId":{"shape":"FleetId"}
2930
- }
2931
- },
2932
- "ResourceCreationLimitPolicy":{
2933
- "type":"structure",
2934
- "members":{
2935
- "NewGameSessionsPerCreator":{"shape":"WholeNumber"},
2936
- "PolicyPeriodInMinutes":{"shape":"WholeNumber"}
2937
- }
2938
- },
2939
- "RoutingStrategy":{
2940
- "type":"structure",
2941
- "members":{
2942
- "Type":{"shape":"RoutingStrategyType"},
2943
- "FleetId":{"shape":"FleetId"},
2944
- "Message":{"shape":"FreeText"}
2945
- }
2946
- },
2947
- "RoutingStrategyType":{
2948
- "type":"string",
2949
- "enum":[
2950
- "SIMPLE",
2951
- "TERMINAL"
2952
- ]
2953
- },
2954
- "RuleSetBody":{
2955
- "type":"string",
2956
- "max":65535,
2957
- "min":1
2958
- },
2959
- "RuleSetLimit":{
2960
- "type":"integer",
2961
- "max":10,
2962
- "min":1
2963
- },
2964
- "RuntimeConfiguration":{
2965
- "type":"structure",
2966
- "members":{
2967
- "ServerProcesses":{"shape":"ServerProcessList"},
2968
- "MaxConcurrentGameSessionActivations":{"shape":"MaxConcurrentGameSessionActivations"},
2969
- "GameSessionActivationTimeoutSeconds":{"shape":"GameSessionActivationTimeoutSeconds"}
2970
- }
2971
- },
2972
- "S3Location":{
2973
- "type":"structure",
2974
- "members":{
2975
- "Bucket":{"shape":"NonEmptyString"},
2976
- "Key":{"shape":"NonEmptyString"},
2977
- "RoleArn":{"shape":"NonEmptyString"},
2978
- "ObjectVersion":{"shape":"NonEmptyString"}
2979
- }
2980
- },
2981
- "ScalingAdjustmentType":{
2982
- "type":"string",
2983
- "enum":[
2984
- "ChangeInCapacity",
2985
- "ExactCapacity",
2986
- "PercentChangeInCapacity"
2987
- ]
2988
- },
2989
- "ScalingPolicy":{
2990
- "type":"structure",
2991
- "members":{
2992
- "FleetId":{"shape":"FleetId"},
2993
- "Name":{"shape":"NonZeroAndMaxString"},
2994
- "Status":{"shape":"ScalingStatusType"},
2995
- "ScalingAdjustment":{"shape":"Integer"},
2996
- "ScalingAdjustmentType":{"shape":"ScalingAdjustmentType"},
2997
- "ComparisonOperator":{"shape":"ComparisonOperatorType"},
2998
- "Threshold":{"shape":"Double"},
2999
- "EvaluationPeriods":{"shape":"PositiveInteger"},
3000
- "MetricName":{"shape":"MetricName"},
3001
- "PolicyType":{"shape":"PolicyType"},
3002
- "TargetConfiguration":{"shape":"TargetConfiguration"}
3003
- }
3004
- },
3005
- "ScalingPolicyList":{
3006
- "type":"list",
3007
- "member":{"shape":"ScalingPolicy"}
3008
- },
3009
- "ScalingStatusType":{
3010
- "type":"string",
3011
- "enum":[
3012
- "ACTIVE",
3013
- "UPDATE_REQUESTED",
3014
- "UPDATING",
3015
- "DELETE_REQUESTED",
3016
- "DELETING",
3017
- "DELETED",
3018
- "ERROR"
3019
- ]
3020
- },
3021
- "Script":{
3022
- "type":"structure",
3023
- "members":{
3024
- "ScriptId":{"shape":"ScriptId"},
3025
- "Name":{"shape":"NonZeroAndMaxString"},
3026
- "Version":{"shape":"NonZeroAndMaxString"},
3027
- "SizeOnDisk":{"shape":"PositiveLong"},
3028
- "CreationTime":{"shape":"Timestamp"},
3029
- "StorageLocation":{"shape":"S3Location"}
3030
- }
3031
- },
3032
- "ScriptId":{
3033
- "type":"string",
3034
- "pattern":"^script-\\S+|^arn:.*script-\\S+"
3035
- },
3036
- "ScriptList":{
3037
- "type":"list",
3038
- "member":{"shape":"Script"}
3039
- },
3040
- "SearchGameSessionsInput":{
3041
- "type":"structure",
3042
- "members":{
3043
- "FleetId":{"shape":"FleetId"},
3044
- "AliasId":{"shape":"AliasId"},
3045
- "FilterExpression":{"shape":"NonZeroAndMaxString"},
3046
- "SortExpression":{"shape":"NonZeroAndMaxString"},
3047
- "Limit":{"shape":"PositiveInteger"},
3048
- "NextToken":{"shape":"NonZeroAndMaxString"}
3049
- }
3050
- },
3051
- "SearchGameSessionsOutput":{
3052
- "type":"structure",
3053
- "members":{
3054
- "GameSessions":{"shape":"GameSessionList"},
3055
- "NextToken":{"shape":"NonZeroAndMaxString"}
3056
- }
3057
- },
3058
- "ServerProcess":{
3059
- "type":"structure",
3060
- "required":[
3061
- "LaunchPath",
3062
- "ConcurrentExecutions"
3063
- ],
3064
- "members":{
3065
- "LaunchPath":{"shape":"NonZeroAndMaxString"},
3066
- "Parameters":{"shape":"NonZeroAndMaxString"},
3067
- "ConcurrentExecutions":{"shape":"PositiveInteger"}
3068
- }
3069
- },
3070
- "ServerProcessList":{
3071
- "type":"list",
3072
- "member":{"shape":"ServerProcess"},
3073
- "max":50,
3074
- "min":1
3075
- },
3076
- "SnsArnStringModel":{
3077
- "type":"string",
3078
- "max":300,
3079
- "min":0,
3080
- "pattern":"[a-zA-Z0-9:_/-]*"
3081
- },
3082
- "StartFleetActionsInput":{
3083
- "type":"structure",
3084
- "required":[
3085
- "FleetId",
3086
- "Actions"
3087
- ],
3088
- "members":{
3089
- "FleetId":{"shape":"FleetId"},
3090
- "Actions":{"shape":"FleetActionList"}
3091
- }
3092
- },
3093
- "StartFleetActionsOutput":{
3094
- "type":"structure",
3095
- "members":{
3096
- }
3097
- },
3098
- "StartGameSessionPlacementInput":{
3099
- "type":"structure",
3100
- "required":[
3101
- "PlacementId",
3102
- "GameSessionQueueName",
3103
- "MaximumPlayerSessionCount"
3104
- ],
3105
- "members":{
3106
- "PlacementId":{"shape":"IdStringModel"},
3107
- "GameSessionQueueName":{"shape":"GameSessionQueueName"},
3108
- "GameProperties":{"shape":"GamePropertyList"},
3109
- "MaximumPlayerSessionCount":{"shape":"WholeNumber"},
3110
- "GameSessionName":{"shape":"NonZeroAndMaxString"},
3111
- "PlayerLatencies":{"shape":"PlayerLatencyList"},
3112
- "DesiredPlayerSessions":{"shape":"DesiredPlayerSessionList"},
3113
- "GameSessionData":{"shape":"GameSessionData"}
3114
- }
3115
- },
3116
- "StartGameSessionPlacementOutput":{
3117
- "type":"structure",
3118
- "members":{
3119
- "GameSessionPlacement":{"shape":"GameSessionPlacement"}
3120
- }
3121
- },
3122
- "StartMatchBackfillInput":{
3123
- "type":"structure",
3124
- "required":[
3125
- "ConfigurationName",
3126
- "GameSessionArn",
3127
- "Players"
3128
- ],
3129
- "members":{
3130
- "TicketId":{"shape":"MatchmakingIdStringModel"},
3131
- "ConfigurationName":{"shape":"MatchmakingIdStringModel"},
3132
- "GameSessionArn":{"shape":"ArnStringModel"},
3133
- "Players":{"shape":"PlayerList"}
3134
- }
3135
- },
3136
- "StartMatchBackfillOutput":{
3137
- "type":"structure",
3138
- "members":{
3139
- "MatchmakingTicket":{"shape":"MatchmakingTicket"}
3140
- }
3141
- },
3142
- "StartMatchmakingInput":{
3143
- "type":"structure",
3144
- "required":[
3145
- "ConfigurationName",
3146
- "Players"
3147
- ],
3148
- "members":{
3149
- "TicketId":{"shape":"MatchmakingIdStringModel"},
3150
- "ConfigurationName":{"shape":"MatchmakingIdStringModel"},
3151
- "Players":{"shape":"PlayerList"}
3152
- }
3153
- },
3154
- "StartMatchmakingOutput":{
3155
- "type":"structure",
3156
- "members":{
3157
- "MatchmakingTicket":{"shape":"MatchmakingTicket"}
3158
- }
3159
- },
3160
- "StopFleetActionsInput":{
3161
- "type":"structure",
3162
- "required":[
3163
- "FleetId",
3164
- "Actions"
3165
- ],
3166
- "members":{
3167
- "FleetId":{"shape":"FleetId"},
3168
- "Actions":{"shape":"FleetActionList"}
3169
- }
3170
- },
3171
- "StopFleetActionsOutput":{
3172
- "type":"structure",
3173
- "members":{
3174
- }
3175
- },
3176
- "StopGameSessionPlacementInput":{
3177
- "type":"structure",
3178
- "required":["PlacementId"],
3179
- "members":{
3180
- "PlacementId":{"shape":"IdStringModel"}
3181
- }
3182
- },
3183
- "StopGameSessionPlacementOutput":{
3184
- "type":"structure",
3185
- "members":{
3186
- "GameSessionPlacement":{"shape":"GameSessionPlacement"}
3187
- }
3188
- },
3189
- "StopMatchmakingInput":{
3190
- "type":"structure",
3191
- "required":["TicketId"],
3192
- "members":{
3193
- "TicketId":{"shape":"MatchmakingIdStringModel"}
3194
- }
3195
- },
3196
- "StopMatchmakingOutput":{
3197
- "type":"structure",
3198
- "members":{
3199
- }
3200
- },
3201
- "StringDoubleMap":{
3202
- "type":"map",
3203
- "key":{"shape":"NonZeroAndMaxString"},
3204
- "value":{"shape":"DoubleObject"}
3205
- },
3206
- "StringList":{
3207
- "type":"list",
3208
- "member":{"shape":"NonZeroAndMaxString"}
3209
- },
3210
- "StringModel":{"type":"string"},
3211
- "TargetConfiguration":{
3212
- "type":"structure",
3213
- "required":["TargetValue"],
3214
- "members":{
3215
- "TargetValue":{"shape":"Double"}
3216
- }
3217
- },
3218
- "TerminalRoutingStrategyException":{
3219
- "type":"structure",
3220
- "members":{
3221
- "Message":{"shape":"NonEmptyString"}
3222
- },
3223
- "exception":true
3224
- },
3225
- "Timestamp":{"type":"timestamp"},
3226
- "UnauthorizedException":{
3227
- "type":"structure",
3228
- "members":{
3229
- "Message":{"shape":"NonEmptyString"}
3230
- },
3231
- "exception":true
3232
- },
3233
- "UnsupportedRegionException":{
3234
- "type":"structure",
3235
- "members":{
3236
- "Message":{"shape":"NonEmptyString"}
3237
- },
3238
- "exception":true
3239
- },
3240
- "UpdateAliasInput":{
3241
- "type":"structure",
3242
- "required":["AliasId"],
3243
- "members":{
3244
- "AliasId":{"shape":"AliasId"},
3245
- "Name":{"shape":"NonBlankAndLengthConstraintString"},
3246
- "Description":{"shape":"NonZeroAndMaxString"},
3247
- "RoutingStrategy":{"shape":"RoutingStrategy"}
3248
- }
3249
- },
3250
- "UpdateAliasOutput":{
3251
- "type":"structure",
3252
- "members":{
3253
- "Alias":{"shape":"Alias"}
3254
- }
3255
- },
3256
- "UpdateBuildInput":{
3257
- "type":"structure",
3258
- "required":["BuildId"],
3259
- "members":{
3260
- "BuildId":{"shape":"BuildId"},
3261
- "Name":{"shape":"NonZeroAndMaxString"},
3262
- "Version":{"shape":"NonZeroAndMaxString"}
3263
- }
3264
- },
3265
- "UpdateBuildOutput":{
3266
- "type":"structure",
3267
- "members":{
3268
- "Build":{"shape":"Build"}
3269
- }
3270
- },
3271
- "UpdateFleetAttributesInput":{
3272
- "type":"structure",
3273
- "required":["FleetId"],
3274
- "members":{
3275
- "FleetId":{"shape":"FleetId"},
3276
- "Name":{"shape":"NonZeroAndMaxString"},
3277
- "Description":{"shape":"NonZeroAndMaxString"},
3278
- "NewGameSessionProtectionPolicy":{"shape":"ProtectionPolicy"},
3279
- "ResourceCreationLimitPolicy":{"shape":"ResourceCreationLimitPolicy"},
3280
- "MetricGroups":{"shape":"MetricGroupList"}
3281
- }
3282
- },
3283
- "UpdateFleetAttributesOutput":{
3284
- "type":"structure",
3285
- "members":{
3286
- "FleetId":{"shape":"FleetId"}
3287
- }
3288
- },
3289
- "UpdateFleetCapacityInput":{
3290
- "type":"structure",
3291
- "required":["FleetId"],
3292
- "members":{
3293
- "FleetId":{"shape":"FleetId"},
3294
- "DesiredInstances":{"shape":"WholeNumber"},
3295
- "MinSize":{"shape":"WholeNumber"},
3296
- "MaxSize":{"shape":"WholeNumber"}
3297
- }
3298
- },
3299
- "UpdateFleetCapacityOutput":{
3300
- "type":"structure",
3301
- "members":{
3302
- "FleetId":{"shape":"FleetId"}
3303
- }
3304
- },
3305
- "UpdateFleetPortSettingsInput":{
3306
- "type":"structure",
3307
- "required":["FleetId"],
3308
- "members":{
3309
- "FleetId":{"shape":"FleetId"},
3310
- "InboundPermissionAuthorizations":{"shape":"IpPermissionsList"},
3311
- "InboundPermissionRevocations":{"shape":"IpPermissionsList"}
3312
- }
3313
- },
3314
- "UpdateFleetPortSettingsOutput":{
3315
- "type":"structure",
3316
- "members":{
3317
- "FleetId":{"shape":"FleetId"}
3318
- }
3319
- },
3320
- "UpdateGameSessionInput":{
3321
- "type":"structure",
3322
- "required":["GameSessionId"],
3323
- "members":{
3324
- "GameSessionId":{"shape":"ArnStringModel"},
3325
- "MaximumPlayerSessionCount":{"shape":"WholeNumber"},
3326
- "Name":{"shape":"NonZeroAndMaxString"},
3327
- "PlayerSessionCreationPolicy":{"shape":"PlayerSessionCreationPolicy"},
3328
- "ProtectionPolicy":{"shape":"ProtectionPolicy"}
3329
- }
3330
- },
3331
- "UpdateGameSessionOutput":{
3332
- "type":"structure",
3333
- "members":{
3334
- "GameSession":{"shape":"GameSession"}
3335
- }
3336
- },
3337
- "UpdateGameSessionQueueInput":{
3338
- "type":"structure",
3339
- "required":["Name"],
3340
- "members":{
3341
- "Name":{"shape":"GameSessionQueueName"},
3342
- "TimeoutInSeconds":{"shape":"WholeNumber"},
3343
- "PlayerLatencyPolicies":{"shape":"PlayerLatencyPolicyList"},
3344
- "Destinations":{"shape":"GameSessionQueueDestinationList"}
3345
- }
3346
- },
3347
- "UpdateGameSessionQueueOutput":{
3348
- "type":"structure",
3349
- "members":{
3350
- "GameSessionQueue":{"shape":"GameSessionQueue"}
3351
- }
3352
- },
3353
- "UpdateMatchmakingConfigurationInput":{
3354
- "type":"structure",
3355
- "required":["Name"],
3356
- "members":{
3357
- "Name":{"shape":"MatchmakingIdStringModel"},
3358
- "Description":{"shape":"NonZeroAndMaxString"},
3359
- "GameSessionQueueArns":{"shape":"QueueArnsList"},
3360
- "RequestTimeoutSeconds":{"shape":"MatchmakingRequestTimeoutInteger"},
3361
- "AcceptanceTimeoutSeconds":{"shape":"MatchmakingAcceptanceTimeoutInteger"},
3362
- "AcceptanceRequired":{"shape":"BooleanModel"},
3363
- "RuleSetName":{"shape":"MatchmakingIdStringModel"},
3364
- "NotificationTarget":{"shape":"SnsArnStringModel"},
3365
- "AdditionalPlayerCount":{"shape":"WholeNumber"},
3366
- "CustomEventData":{"shape":"CustomEventData"},
3367
- "GameProperties":{"shape":"GamePropertyList"},
3368
- "GameSessionData":{"shape":"GameSessionData"},
3369
- "BackfillMode":{"shape":"BackfillMode"}
3370
- }
3371
- },
3372
- "UpdateMatchmakingConfigurationOutput":{
3373
- "type":"structure",
3374
- "members":{
3375
- "Configuration":{"shape":"MatchmakingConfiguration"}
3376
- }
3377
- },
3378
- "UpdateRuntimeConfigurationInput":{
3379
- "type":"structure",
3380
- "required":[
3381
- "FleetId",
3382
- "RuntimeConfiguration"
3383
- ],
3384
- "members":{
3385
- "FleetId":{"shape":"FleetId"},
3386
- "RuntimeConfiguration":{"shape":"RuntimeConfiguration"}
3387
- }
3388
- },
3389
- "UpdateRuntimeConfigurationOutput":{
3390
- "type":"structure",
3391
- "members":{
3392
- "RuntimeConfiguration":{"shape":"RuntimeConfiguration"}
3393
- }
3394
- },
3395
- "UpdateScriptInput":{
3396
- "type":"structure",
3397
- "required":["ScriptId"],
3398
- "members":{
3399
- "ScriptId":{"shape":"ScriptId"},
3400
- "Name":{"shape":"NonZeroAndMaxString"},
3401
- "Version":{"shape":"NonZeroAndMaxString"},
3402
- "StorageLocation":{"shape":"S3Location"},
3403
- "ZipFile":{"shape":"ZipBlob"}
3404
- }
3405
- },
3406
- "UpdateScriptOutput":{
3407
- "type":"structure",
3408
- "members":{
3409
- "Script":{"shape":"Script"}
3410
- }
3411
- },
3412
- "ValidateMatchmakingRuleSetInput":{
3413
- "type":"structure",
3414
- "required":["RuleSetBody"],
3415
- "members":{
3416
- "RuleSetBody":{"shape":"RuleSetBody"}
3417
- }
3418
- },
3419
- "ValidateMatchmakingRuleSetOutput":{
3420
- "type":"structure",
3421
- "members":{
3422
- "Valid":{"shape":"BooleanModel"}
3423
- }
3424
- },
3425
- "VpcPeeringAuthorization":{
3426
- "type":"structure",
3427
- "members":{
3428
- "GameLiftAwsAccountId":{"shape":"NonZeroAndMaxString"},
3429
- "PeerVpcAwsAccountId":{"shape":"NonZeroAndMaxString"},
3430
- "PeerVpcId":{"shape":"NonZeroAndMaxString"},
3431
- "CreationTime":{"shape":"Timestamp"},
3432
- "ExpirationTime":{"shape":"Timestamp"}
3433
- }
3434
- },
3435
- "VpcPeeringAuthorizationList":{
3436
- "type":"list",
3437
- "member":{"shape":"VpcPeeringAuthorization"}
3438
- },
3439
- "VpcPeeringConnection":{
3440
- "type":"structure",
3441
- "members":{
3442
- "FleetId":{"shape":"FleetId"},
3443
- "IpV4CidrBlock":{"shape":"NonZeroAndMaxString"},
3444
- "VpcPeeringConnectionId":{"shape":"NonZeroAndMaxString"},
3445
- "Status":{"shape":"VpcPeeringConnectionStatus"},
3446
- "PeerVpcId":{"shape":"NonZeroAndMaxString"},
3447
- "GameLiftVpcId":{"shape":"NonZeroAndMaxString"}
3448
- }
3449
- },
3450
- "VpcPeeringConnectionList":{
3451
- "type":"list",
3452
- "member":{"shape":"VpcPeeringConnection"}
3453
- },
3454
- "VpcPeeringConnectionStatus":{
3455
- "type":"structure",
3456
- "members":{
3457
- "Code":{"shape":"NonZeroAndMaxString"},
3458
- "Message":{"shape":"NonZeroAndMaxString"}
3459
- }
3460
- },
3461
- "WholeNumber":{
3462
- "type":"integer",
3463
- "min":0
3464
- },
3465
- "ZipBlob":{
3466
- "type":"blob",
3467
- "max":5000000
3468
- }
3469
- }
3470
- }