aws-sdk-core 2.11.344 → 3.65.0

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