aws-sdk-core 2.11.335 → 3.62.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1144) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -547
  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 +147 -10
  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 -1021
  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 -3994
  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 -768
  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 -22
  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 -2304
  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 -2382
  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 -247
  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 -1204
  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 -24837
  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 -2809
  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 -3131
  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/fsx/2018-03-01/api-2.json +0 -1050
  477. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  478. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  479. data/apis/gamelift/2015-10-01/api-2.json +0 -3447
  480. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  481. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  482. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  483. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  484. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  485. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  486. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  487. data/apis/glacier/2012-06-01/smoke.json +0 -18
  488. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  489. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -798
  490. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  491. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  492. data/apis/glue/2017-03-31/api-2.json +0 -6291
  493. data/apis/glue/2017-03-31/examples-1.json +0 -5
  494. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  495. data/apis/glue/2017-03-31/smoke.json +0 -11
  496. data/apis/greengrass/2017-06-07/api-2.json +0 -5103
  497. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  498. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  499. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  500. data/apis/guardduty/2017-11-28/api-2.json +0 -3206
  501. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  502. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  503. data/apis/health/2016-08-04/api-2.json +0 -554
  504. data/apis/health/2016-08-04/examples-1.json +0 -5
  505. data/apis/health/2016-08-04/paginators-1.json +0 -31
  506. data/apis/health/2016-08-04/smoke.json +0 -11
  507. data/apis/iam/2010-05-08/api-2.json +0 -5778
  508. data/apis/iam/2010-05-08/examples-1.json +0 -1572
  509. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  510. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  511. data/apis/iam/2010-05-08/smoke.json +0 -18
  512. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  513. data/apis/importexport/2010-06-01/api-2.json +0 -667
  514. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  515. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  516. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  517. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  518. data/apis/inspector/2016-02-16/smoke.json +0 -18
  519. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  520. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  521. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  522. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  523. data/apis/iot/2015-05-28/api-2.json +0 -9676
  524. data/apis/iot/2015-05-28/examples-1.json +0 -5
  525. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  526. data/apis/iot/2015-05-28/smoke.json +0 -18
  527. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  528. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  529. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  530. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  531. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2222
  532. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  533. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  534. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  535. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  536. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  537. data/apis/iotevents/2018-07-27/api-2.json +0 -1133
  538. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  539. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  540. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  541. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  542. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  543. data/apis/kafka/2018-11-14/api-2.json +0 -1698
  544. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  545. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -417
  546. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  547. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  548. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  549. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  550. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  551. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  552. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  553. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  554. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  555. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  556. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  557. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  558. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  559. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
  560. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  561. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  562. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  563. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  564. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  565. data/apis/kms/2014-11-01/api-2.json +0 -1834
  566. data/apis/kms/2014-11-01/examples-1.json +0 -906
  567. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  568. data/apis/kms/2014-11-01/smoke.json +0 -19
  569. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  570. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  571. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  572. data/apis/lambda/2014-11-11/api-2.json +0 -668
  573. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  574. data/apis/lambda/2015-03-31/api-2.json +0 -2345
  575. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  576. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  577. data/apis/lambda/2015-03-31/smoke.json +0 -18
  578. data/apis/lambda/2015-03-31/waiters-2.json +0 -22
  579. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  580. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  581. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  582. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  583. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  584. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  585. data/apis/lightsail/2016-11-28/api-2.json +0 -4781
  586. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  587. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  588. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  589. data/apis/logs/2014-03-28/api-2.json +0 -1701
  590. data/apis/logs/2014-03-28/examples-1.json +0 -5
  591. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  592. data/apis/logs/2014-03-28/smoke.json +0 -19
  593. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  594. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  595. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  596. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  597. data/apis/macie/2017-12-19/api-2.json +0 -365
  598. data/apis/macie/2017-12-19/examples-1.json +0 -5
  599. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  600. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  601. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  602. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  603. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
  604. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  605. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  606. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1880
  607. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  608. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8224
  609. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  610. data/apis/medialive/2017-10-14/api-2.json +0 -8711
  611. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  612. data/apis/medialive/2017-10-14/waiters-2.json +0 -111
  613. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1494
  614. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  615. data/apis/mediapackage/2017-10-12/api-2.json +0 -2039
  616. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
  617. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  618. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  619. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  620. data/apis/mediastore/2017-09-01/api-2.json +0 -735
  621. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  622. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  623. data/apis/mediatailor/2018-04-23/api-2.json +0 -524
  624. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  625. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -344
  626. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  627. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  628. data/apis/mobile/2017-07-01/api-2.json +0 -551
  629. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  630. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  631. data/apis/monitoring/2010-08-01/api-2.json +0 -1525
  632. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  633. data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
  634. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  635. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  636. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  637. data/apis/mq/2017-11-27/api-2.json +0 -2490
  638. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  639. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  640. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  641. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  642. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  643. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  644. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  645. data/apis/neptune/2014-10-31/smoke.json +0 -18
  646. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  647. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  648. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  649. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  650. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  651. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  652. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  653. data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
  654. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  655. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  656. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  657. data/apis/organizations/2016-11-28/api-2.json +0 -2317
  658. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  659. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  660. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  661. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  662. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  663. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -132
  664. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  665. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  666. data/apis/personalize/2018-05-22/api-2.json +0 -1695
  667. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  668. data/apis/personalize/2018-05-22/paginators-1.json +0 -58
  669. data/apis/pi/2018-02-27/api-2.json +0 -253
  670. data/apis/pi/2018-02-27/examples-1.json +0 -5
  671. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  672. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2080
  673. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  674. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  675. data/apis/pinpoint/2016-12-01/api-2.json +0 -8526
  676. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  677. data/apis/polly/2016-06-10/api-2.json +0 -830
  678. data/apis/polly/2016-06-10/examples-1.json +0 -171
  679. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  680. data/apis/polly/2016-06-10/smoke.json +0 -11
  681. data/apis/pricing/2017-10-15/api-2.json +0 -227
  682. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  683. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  684. data/apis/quicksight/2018-04-01/api-2.json +0 -1223
  685. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  686. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  687. data/apis/ram/2018-01-04/api-2.json +0 -964
  688. data/apis/ram/2018-01-04/examples-1.json +0 -5
  689. data/apis/ram/2018-01-04/paginators-1.json +0 -34
  690. data/apis/rds-data/2018-08-01/api-2.json +0 -787
  691. data/apis/rds-data/2018-08-01/examples-1.json +0 -4
  692. data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
  693. data/apis/rds/2013-01-10/api-2.json +0 -2903
  694. data/apis/rds/2013-01-10/examples-1.json +0 -5
  695. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  696. data/apis/rds/2013-01-10/smoke.json +0 -18
  697. data/apis/rds/2013-02-12/api-2.json +0 -3059
  698. data/apis/rds/2013-02-12/examples-1.json +0 -5
  699. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  700. data/apis/rds/2013-02-12/smoke.json +0 -18
  701. data/apis/rds/2013-09-09/api-2.json +0 -3160
  702. data/apis/rds/2013-09-09/examples-1.json +0 -5
  703. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  704. data/apis/rds/2013-09-09/smoke.json +0 -18
  705. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  706. data/apis/rds/2014-09-01/api-2.json +0 -3273
  707. data/apis/rds/2014-09-01/examples-1.json +0 -5
  708. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  709. data/apis/rds/2014-09-01/smoke.json +0 -18
  710. data/apis/rds/2014-10-31/api-2.json +0 -6575
  711. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  712. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  713. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  714. data/apis/rds/2014-10-31/smoke.json +0 -18
  715. data/apis/rds/2014-10-31/waiters-2.json +0 -175
  716. data/apis/rds/2015-11-12/api-2.json +0 -5509
  717. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  718. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  719. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  720. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  721. data/apis/redshift/2012-12-01/api-2.json +0 -4891
  722. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  723. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  724. data/apis/redshift/2012-12-01/smoke.json +0 -18
  725. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  726. data/apis/rekognition/2016-06-27/api-2.json +0 -2142
  727. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  728. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  729. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  730. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  731. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  732. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  733. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
  734. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  735. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  736. data/apis/robomaker/2018-06-29/api-2.json +0 -2093
  737. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  738. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  739. data/apis/route53/2013-04-01/api-2.json +0 -3780
  740. data/apis/route53/2013-04-01/examples-1.json +0 -762
  741. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  742. data/apis/route53/2013-04-01/smoke.json +0 -18
  743. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  744. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  745. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  746. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  747. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  748. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  749. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  750. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  751. data/apis/runtime.lex/2016-11-28/api-2.json +0 -680
  752. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  753. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  754. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  755. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  756. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  757. data/apis/s3/2006-03-01/api-2.json +0 -6576
  758. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  759. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  760. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  761. data/apis/s3/2006-03-01/smoke.json +0 -11
  762. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  763. data/apis/s3control/2018-08-20/api-2.json +0 -1044
  764. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  765. data/apis/s3control/2018-08-20/paginators-1.json +0 -9
  766. data/apis/sagemaker/2017-07-24/api-2.json +0 -5169
  767. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  768. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  769. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  770. data/apis/sdb/2009-04-15/api-2.json +0 -955
  771. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  772. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  773. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  774. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  775. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  776. data/apis/securityhub/2018-10-26/api-2.json +0 -2095
  777. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  778. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  779. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
  780. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  781. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  782. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  783. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  784. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  785. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  786. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  787. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  788. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  789. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  790. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  791. data/apis/shield/2016-06-02/api-2.json +0 -893
  792. data/apis/shield/2016-06-02/examples-1.json +0 -5
  793. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  794. data/apis/shield/2016-06-02/smoke.json +0 -11
  795. data/apis/signer/2017-08-25/api-2.json +0 -670
  796. data/apis/signer/2017-08-25/examples-1.json +0 -5
  797. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  798. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  799. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  800. data/apis/sms/2016-10-24/api-2.json +0 -1366
  801. data/apis/sms/2016-10-24/examples-1.json +0 -5
  802. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  803. data/apis/sms/2016-10-24/smoke.json +0 -18
  804. data/apis/snowball/2016-06-30/api-2.json +0 -929
  805. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  806. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  807. data/apis/snowball/2016-06-30/smoke.json +0 -11
  808. data/apis/sns/2010-03-31/api-2.json +0 -1468
  809. data/apis/sns/2010-03-31/examples-1.json +0 -5
  810. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  811. data/apis/sns/2010-03-31/resources-1.json +0 -327
  812. data/apis/sns/2010-03-31/smoke.json +0 -19
  813. data/apis/sqs/2012-11-05/api-2.json +0 -1078
  814. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  815. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  816. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  817. data/apis/sqs/2012-11-05/smoke.json +0 -18
  818. data/apis/ssm/2014-11-06/api-2.json +0 -8913
  819. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  820. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  821. data/apis/ssm/2014-11-06/smoke.json +0 -18
  822. data/apis/states/2016-11-23/api-2.json +0 -1372
  823. data/apis/states/2016-11-23/examples-1.json +0 -5
  824. data/apis/states/2016-11-23/paginators-1.json +0 -28
  825. data/apis/states/2016-11-23/smoke.json +0 -11
  826. data/apis/storagegateway/2013-06-30/api-2.json +0 -3160
  827. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  828. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  829. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  830. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  831. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  832. data/apis/sts/2011-06-15/api-2.json +0 -562
  833. data/apis/sts/2011-06-15/examples-1.json +0 -207
  834. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  835. data/apis/sts/2011-06-15/smoke.json +0 -19
  836. data/apis/support/2013-04-15/api-2.json +0 -772
  837. data/apis/support/2013-04-15/examples-1.json +0 -5
  838. data/apis/support/2013-04-15/paginators-1.json +0 -25
  839. data/apis/swf/2012-01-25/api-2.json +0 -2792
  840. data/apis/swf/2012-01-25/examples-1.json +0 -5
  841. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  842. data/apis/textract/2018-06-27/api-2.json +0 -572
  843. data/apis/textract/2018-06-27/examples-1.json +0 -5
  844. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  845. data/apis/transcribe/2017-10-26/api-2.json +0 -504
  846. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  847. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  848. data/apis/transfer/2018-11-05/api-2.json +0 -851
  849. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  850. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  851. data/apis/translate/2017-07-01/api-2.json +0 -408
  852. data/apis/translate/2017-07-01/examples-1.json +0 -5
  853. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  854. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  855. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  856. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  857. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  858. data/apis/waf/2015-08-24/api-2.json +0 -3857
  859. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  860. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  861. data/apis/waf/2015-08-24/smoke.json +0 -21
  862. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  863. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  864. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  865. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  866. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  867. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  868. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  869. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  870. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  871. data/apis/workspaces/2015-04-08/api-2.json +0 -1699
  872. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  873. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  874. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  875. data/apis/xray/2016-04-12/api-2.json +0 -1352
  876. data/apis/xray/2016-04-12/examples-1.json +0 -5
  877. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  878. data/bin/aws.rb +0 -180
  879. data/endpoints.json +0 -4601
  880. data/lib/aws-sdk-core/acm.rb +0 -7
  881. data/lib/aws-sdk-core/acmpca.rb +0 -7
  882. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  883. data/lib/aws-sdk-core/amplify.rb +0 -6
  884. data/lib/aws-sdk-core/api/builder.rb +0 -129
  885. data/lib/aws-sdk-core/api/customizations.rb +0 -299
  886. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  887. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  888. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  889. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  890. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  891. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  892. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  893. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  894. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  895. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  896. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  897. data/lib/aws-sdk-core/apigateway.rb +0 -6
  898. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  899. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  900. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  901. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  902. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  903. data/lib/aws-sdk-core/appmesh.rb +0 -6
  904. data/lib/aws-sdk-core/appstream.rb +0 -7
  905. data/lib/aws-sdk-core/appsync.rb +0 -6
  906. data/lib/aws-sdk-core/athena.rb +0 -6
  907. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  908. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  909. data/lib/aws-sdk-core/backup.rb +0 -6
  910. data/lib/aws-sdk-core/batch.rb +0 -6
  911. data/lib/aws-sdk-core/budgets.rb +0 -6
  912. data/lib/aws-sdk-core/checksums.rb +0 -51
  913. data/lib/aws-sdk-core/chime.rb +0 -6
  914. data/lib/aws-sdk-core/client.rb +0 -62
  915. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  916. data/lib/aws-sdk-core/cloud9.rb +0 -6
  917. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  918. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  919. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  920. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  921. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  922. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  923. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  924. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  925. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  926. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  927. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  928. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  929. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  930. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  931. data/lib/aws-sdk-core/codebuild.rb +0 -6
  932. data/lib/aws-sdk-core/codecommit.rb +0 -6
  933. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  934. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  935. data/lib/aws-sdk-core/codestar.rb +0 -6
  936. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  937. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  938. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  939. data/lib/aws-sdk-core/comprehend.rb +0 -6
  940. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  941. data/lib/aws-sdk-core/configservice.rb +0 -6
  942. data/lib/aws-sdk-core/connect.rb +0 -6
  943. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  944. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  945. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  946. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  947. data/lib/aws-sdk-core/datasync.rb +0 -6
  948. data/lib/aws-sdk-core/dax.rb +0 -6
  949. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  950. data/lib/aws-sdk-core/directconnect.rb +0 -6
  951. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  952. data/lib/aws-sdk-core/dlm.rb +0 -6
  953. data/lib/aws-sdk-core/docdb.rb +0 -7
  954. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  955. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  956. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  957. data/lib/aws-sdk-core/ec2.rb +0 -8
  958. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  959. data/lib/aws-sdk-core/ecr.rb +0 -6
  960. data/lib/aws-sdk-core/ecs.rb +0 -7
  961. data/lib/aws-sdk-core/efs.rb +0 -6
  962. data/lib/aws-sdk-core/eks.rb +0 -7
  963. data/lib/aws-sdk-core/elasticache.rb +0 -7
  964. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  965. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  966. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  967. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  968. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  969. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  970. data/lib/aws-sdk-core/emr.rb +0 -7
  971. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  972. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  973. data/lib/aws-sdk-core/firehose.rb +0 -6
  974. data/lib/aws-sdk-core/fms.rb +0 -6
  975. data/lib/aws-sdk-core/fsx.rb +0 -6
  976. data/lib/aws-sdk-core/gamelift.rb +0 -6
  977. data/lib/aws-sdk-core/glacier.rb +0 -8
  978. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  979. data/lib/aws-sdk-core/glue.rb +0 -6
  980. data/lib/aws-sdk-core/greengrass.rb +0 -4
  981. data/lib/aws-sdk-core/groundstation.rb +0 -6
  982. data/lib/aws-sdk-core/guardduty.rb +0 -6
  983. data/lib/aws-sdk-core/health.rb +0 -6
  984. data/lib/aws-sdk-core/iam.rb +0 -8
  985. data/lib/aws-sdk-core/importexport.rb +0 -5
  986. data/lib/aws-sdk-core/inspector.rb +0 -6
  987. data/lib/aws-sdk-core/iot.rb +0 -6
  988. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  989. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  990. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  991. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  992. data/lib/aws-sdk-core/iotevents.rb +0 -6
  993. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  994. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  995. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  996. data/lib/aws-sdk-core/kafka.rb +0 -5
  997. data/lib/aws-sdk-core/kinesis.rb +0 -7
  998. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  999. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1000. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1001. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1002. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1003. data/lib/aws-sdk-core/kms.rb +0 -6
  1004. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1005. data/lib/aws-sdk-core/lambda.rb +0 -7
  1006. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1007. data/lib/aws-sdk-core/lex.rb +0 -6
  1008. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1009. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1010. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1011. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1012. data/lib/aws-sdk-core/macie.rb +0 -6
  1013. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1014. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1015. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1016. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1017. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1018. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1019. data/lib/aws-sdk-core/medialive.rb +0 -6
  1020. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1021. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1022. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1023. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1024. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1025. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1026. data/lib/aws-sdk-core/mobile.rb +0 -6
  1027. data/lib/aws-sdk-core/mq.rb +0 -5
  1028. data/lib/aws-sdk-core/mturk.rb +0 -6
  1029. data/lib/aws-sdk-core/neptune.rb +0 -7
  1030. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1031. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1032. data/lib/aws-sdk-core/organizations.rb +0 -6
  1033. data/lib/aws-sdk-core/partitions.rb +0 -174
  1034. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1035. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1036. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1037. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1038. data/lib/aws-sdk-core/personalize.rb +0 -6
  1039. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1040. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1041. data/lib/aws-sdk-core/pi.rb +0 -6
  1042. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1043. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1044. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1045. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1046. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1047. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1048. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1049. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1050. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1051. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1052. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1053. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1054. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1055. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1056. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1057. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1058. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1059. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1060. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1061. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1062. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1063. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1064. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1065. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1066. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1067. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1068. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1069. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1070. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1071. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1072. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1073. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1074. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1075. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1076. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1077. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1078. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1079. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1080. data/lib/aws-sdk-core/polly.rb +0 -14
  1081. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1082. data/lib/aws-sdk-core/pricing.rb +0 -6
  1083. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1084. data/lib/aws-sdk-core/ram.rb +0 -6
  1085. data/lib/aws-sdk-core/rds.rb +0 -16
  1086. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1087. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1088. data/lib/aws-sdk-core/redshift.rb +0 -7
  1089. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1090. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1091. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1092. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1093. data/lib/aws-sdk-core/route53.rb +0 -7
  1094. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1095. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1096. data/lib/aws-sdk-core/s3.rb +0 -26
  1097. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1098. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1099. data/lib/aws-sdk-core/s3control.rb +0 -6
  1100. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1101. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1102. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1103. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1104. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1105. data/lib/aws-sdk-core/service.rb +0 -4
  1106. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1107. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1108. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1109. data/lib/aws-sdk-core/ses.rb +0 -7
  1110. data/lib/aws-sdk-core/shield.rb +0 -6
  1111. data/lib/aws-sdk-core/signer.rb +0 -7
  1112. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1113. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1114. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1115. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1116. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1117. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1118. data/lib/aws-sdk-core/sms.rb +0 -6
  1119. data/lib/aws-sdk-core/snowball.rb +0 -6
  1120. data/lib/aws-sdk-core/sns.rb +0 -7
  1121. data/lib/aws-sdk-core/sqs.rb +0 -7
  1122. data/lib/aws-sdk-core/ssm.rb +0 -6
  1123. data/lib/aws-sdk-core/states.rb +0 -6
  1124. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1125. data/lib/aws-sdk-core/sts.rb +0 -6
  1126. data/lib/aws-sdk-core/support.rb +0 -6
  1127. data/lib/aws-sdk-core/swf.rb +0 -6
  1128. data/lib/aws-sdk-core/textract.rb +0 -6
  1129. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1130. data/lib/aws-sdk-core/transfer.rb +0 -6
  1131. data/lib/aws-sdk-core/translate.rb +0 -6
  1132. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1133. data/lib/aws-sdk-core/version.rb +0 -3
  1134. data/lib/aws-sdk-core/waf.rb +0 -6
  1135. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1136. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1137. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1138. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1139. data/lib/aws-sdk-core/worklink.rb +0 -6
  1140. data/lib/aws-sdk-core/workmail.rb +0 -6
  1141. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1142. data/lib/aws-sdk-core/xray.rb +0 -6
  1143. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1144. data/service-models.json +0 -749
@@ -1,16 +0,0 @@
1
- {
2
- "pagination": {
3
- "ListEventSources": {
4
- "input_token": "Marker",
5
- "output_token": "NextMarker",
6
- "limit_key": "MaxItems",
7
- "result_key": "EventSources"
8
- },
9
- "ListFunctions": {
10
- "input_token": "Marker",
11
- "output_token": "NextMarker",
12
- "limit_key": "MaxItems",
13
- "result_key": "Functions"
14
- }
15
- }
16
- }
@@ -1,2345 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2015-03-31",
5
- "endpointPrefix":"lambda",
6
- "protocol":"rest-json",
7
- "serviceFullName":"AWS Lambda",
8
- "serviceId":"Lambda",
9
- "signatureVersion":"v4",
10
- "uid":"lambda-2015-03-31"
11
- },
12
- "operations":{
13
- "AddLayerVersionPermission":{
14
- "name":"AddLayerVersionPermission",
15
- "http":{
16
- "method":"POST",
17
- "requestUri":"/2018-10-31/layers/{LayerName}/versions/{VersionNumber}/policy",
18
- "responseCode":201
19
- },
20
- "input":{"shape":"AddLayerVersionPermissionRequest"},
21
- "output":{"shape":"AddLayerVersionPermissionResponse"},
22
- "errors":[
23
- {"shape":"ServiceException"},
24
- {"shape":"ResourceNotFoundException"},
25
- {"shape":"ResourceConflictException"},
26
- {"shape":"TooManyRequestsException"},
27
- {"shape":"InvalidParameterValueException"},
28
- {"shape":"PolicyLengthExceededException"},
29
- {"shape":"PreconditionFailedException"}
30
- ]
31
- },
32
- "AddPermission":{
33
- "name":"AddPermission",
34
- "http":{
35
- "method":"POST",
36
- "requestUri":"/2015-03-31/functions/{FunctionName}/policy",
37
- "responseCode":201
38
- },
39
- "input":{"shape":"AddPermissionRequest"},
40
- "output":{"shape":"AddPermissionResponse"},
41
- "errors":[
42
- {"shape":"ServiceException"},
43
- {"shape":"ResourceNotFoundException"},
44
- {"shape":"ResourceConflictException"},
45
- {"shape":"InvalidParameterValueException"},
46
- {"shape":"PolicyLengthExceededException"},
47
- {"shape":"TooManyRequestsException"},
48
- {"shape":"PreconditionFailedException"}
49
- ]
50
- },
51
- "CreateAlias":{
52
- "name":"CreateAlias",
53
- "http":{
54
- "method":"POST",
55
- "requestUri":"/2015-03-31/functions/{FunctionName}/aliases",
56
- "responseCode":201
57
- },
58
- "input":{"shape":"CreateAliasRequest"},
59
- "output":{"shape":"AliasConfiguration"},
60
- "errors":[
61
- {"shape":"ServiceException"},
62
- {"shape":"ResourceNotFoundException"},
63
- {"shape":"ResourceConflictException"},
64
- {"shape":"InvalidParameterValueException"},
65
- {"shape":"TooManyRequestsException"}
66
- ]
67
- },
68
- "CreateEventSourceMapping":{
69
- "name":"CreateEventSourceMapping",
70
- "http":{
71
- "method":"POST",
72
- "requestUri":"/2015-03-31/event-source-mappings/",
73
- "responseCode":202
74
- },
75
- "input":{"shape":"CreateEventSourceMappingRequest"},
76
- "output":{"shape":"EventSourceMappingConfiguration"},
77
- "errors":[
78
- {"shape":"ServiceException"},
79
- {"shape":"InvalidParameterValueException"},
80
- {"shape":"ResourceConflictException"},
81
- {"shape":"TooManyRequestsException"},
82
- {"shape":"ResourceNotFoundException"}
83
- ]
84
- },
85
- "CreateFunction":{
86
- "name":"CreateFunction",
87
- "http":{
88
- "method":"POST",
89
- "requestUri":"/2015-03-31/functions",
90
- "responseCode":201
91
- },
92
- "input":{"shape":"CreateFunctionRequest"},
93
- "output":{"shape":"FunctionConfiguration"},
94
- "errors":[
95
- {"shape":"ServiceException"},
96
- {"shape":"InvalidParameterValueException"},
97
- {"shape":"ResourceNotFoundException"},
98
- {"shape":"ResourceConflictException"},
99
- {"shape":"TooManyRequestsException"},
100
- {"shape":"CodeStorageExceededException"}
101
- ]
102
- },
103
- "DeleteAlias":{
104
- "name":"DeleteAlias",
105
- "http":{
106
- "method":"DELETE",
107
- "requestUri":"/2015-03-31/functions/{FunctionName}/aliases/{Name}",
108
- "responseCode":204
109
- },
110
- "input":{"shape":"DeleteAliasRequest"},
111
- "errors":[
112
- {"shape":"ServiceException"},
113
- {"shape":"InvalidParameterValueException"},
114
- {"shape":"TooManyRequestsException"}
115
- ]
116
- },
117
- "DeleteEventSourceMapping":{
118
- "name":"DeleteEventSourceMapping",
119
- "http":{
120
- "method":"DELETE",
121
- "requestUri":"/2015-03-31/event-source-mappings/{UUID}",
122
- "responseCode":202
123
- },
124
- "input":{"shape":"DeleteEventSourceMappingRequest"},
125
- "output":{"shape":"EventSourceMappingConfiguration"},
126
- "errors":[
127
- {"shape":"ServiceException"},
128
- {"shape":"ResourceNotFoundException"},
129
- {"shape":"InvalidParameterValueException"},
130
- {"shape":"TooManyRequestsException"},
131
- {"shape":"ResourceInUseException"}
132
- ]
133
- },
134
- "DeleteFunction":{
135
- "name":"DeleteFunction",
136
- "http":{
137
- "method":"DELETE",
138
- "requestUri":"/2015-03-31/functions/{FunctionName}",
139
- "responseCode":204
140
- },
141
- "input":{"shape":"DeleteFunctionRequest"},
142
- "errors":[
143
- {"shape":"ServiceException"},
144
- {"shape":"ResourceNotFoundException"},
145
- {"shape":"TooManyRequestsException"},
146
- {"shape":"InvalidParameterValueException"},
147
- {"shape":"ResourceConflictException"}
148
- ]
149
- },
150
- "DeleteFunctionConcurrency":{
151
- "name":"DeleteFunctionConcurrency",
152
- "http":{
153
- "method":"DELETE",
154
- "requestUri":"/2017-10-31/functions/{FunctionName}/concurrency",
155
- "responseCode":204
156
- },
157
- "input":{"shape":"DeleteFunctionConcurrencyRequest"},
158
- "errors":[
159
- {"shape":"ServiceException"},
160
- {"shape":"ResourceNotFoundException"},
161
- {"shape":"TooManyRequestsException"},
162
- {"shape":"InvalidParameterValueException"}
163
- ]
164
- },
165
- "DeleteLayerVersion":{
166
- "name":"DeleteLayerVersion",
167
- "http":{
168
- "method":"DELETE",
169
- "requestUri":"/2018-10-31/layers/{LayerName}/versions/{VersionNumber}",
170
- "responseCode":204
171
- },
172
- "input":{"shape":"DeleteLayerVersionRequest"},
173
- "errors":[
174
- {"shape":"ServiceException"},
175
- {"shape":"TooManyRequestsException"}
176
- ]
177
- },
178
- "GetAccountSettings":{
179
- "name":"GetAccountSettings",
180
- "http":{
181
- "method":"GET",
182
- "requestUri":"/2016-08-19/account-settings/",
183
- "responseCode":200
184
- },
185
- "input":{"shape":"GetAccountSettingsRequest"},
186
- "output":{"shape":"GetAccountSettingsResponse"},
187
- "errors":[
188
- {"shape":"TooManyRequestsException"},
189
- {"shape":"ServiceException"}
190
- ]
191
- },
192
- "GetAlias":{
193
- "name":"GetAlias",
194
- "http":{
195
- "method":"GET",
196
- "requestUri":"/2015-03-31/functions/{FunctionName}/aliases/{Name}",
197
- "responseCode":200
198
- },
199
- "input":{"shape":"GetAliasRequest"},
200
- "output":{"shape":"AliasConfiguration"},
201
- "errors":[
202
- {"shape":"ServiceException"},
203
- {"shape":"ResourceNotFoundException"},
204
- {"shape":"InvalidParameterValueException"},
205
- {"shape":"TooManyRequestsException"}
206
- ]
207
- },
208
- "GetEventSourceMapping":{
209
- "name":"GetEventSourceMapping",
210
- "http":{
211
- "method":"GET",
212
- "requestUri":"/2015-03-31/event-source-mappings/{UUID}",
213
- "responseCode":200
214
- },
215
- "input":{"shape":"GetEventSourceMappingRequest"},
216
- "output":{"shape":"EventSourceMappingConfiguration"},
217
- "errors":[
218
- {"shape":"ServiceException"},
219
- {"shape":"ResourceNotFoundException"},
220
- {"shape":"InvalidParameterValueException"},
221
- {"shape":"TooManyRequestsException"}
222
- ]
223
- },
224
- "GetFunction":{
225
- "name":"GetFunction",
226
- "http":{
227
- "method":"GET",
228
- "requestUri":"/2015-03-31/functions/{FunctionName}",
229
- "responseCode":200
230
- },
231
- "input":{"shape":"GetFunctionRequest"},
232
- "output":{"shape":"GetFunctionResponse"},
233
- "errors":[
234
- {"shape":"ServiceException"},
235
- {"shape":"ResourceNotFoundException"},
236
- {"shape":"TooManyRequestsException"},
237
- {"shape":"InvalidParameterValueException"}
238
- ]
239
- },
240
- "GetFunctionConfiguration":{
241
- "name":"GetFunctionConfiguration",
242
- "http":{
243
- "method":"GET",
244
- "requestUri":"/2015-03-31/functions/{FunctionName}/configuration",
245
- "responseCode":200
246
- },
247
- "input":{"shape":"GetFunctionConfigurationRequest"},
248
- "output":{"shape":"FunctionConfiguration"},
249
- "errors":[
250
- {"shape":"ServiceException"},
251
- {"shape":"ResourceNotFoundException"},
252
- {"shape":"TooManyRequestsException"},
253
- {"shape":"InvalidParameterValueException"}
254
- ]
255
- },
256
- "GetLayerVersion":{
257
- "name":"GetLayerVersion",
258
- "http":{
259
- "method":"GET",
260
- "requestUri":"/2018-10-31/layers/{LayerName}/versions/{VersionNumber}",
261
- "responseCode":200
262
- },
263
- "input":{"shape":"GetLayerVersionRequest"},
264
- "output":{"shape":"GetLayerVersionResponse"},
265
- "errors":[
266
- {"shape":"ServiceException"},
267
- {"shape":"InvalidParameterValueException"},
268
- {"shape":"TooManyRequestsException"},
269
- {"shape":"ResourceNotFoundException"}
270
- ]
271
- },
272
- "GetLayerVersionByArn":{
273
- "name":"GetLayerVersionByArn",
274
- "http":{
275
- "method":"GET",
276
- "requestUri":"/2018-10-31/layers?find=LayerVersion",
277
- "responseCode":200
278
- },
279
- "input":{"shape":"GetLayerVersionByArnRequest"},
280
- "output":{"shape":"GetLayerVersionResponse"},
281
- "errors":[
282
- {"shape":"ServiceException"},
283
- {"shape":"InvalidParameterValueException"},
284
- {"shape":"TooManyRequestsException"},
285
- {"shape":"ResourceNotFoundException"}
286
- ]
287
- },
288
- "GetLayerVersionPolicy":{
289
- "name":"GetLayerVersionPolicy",
290
- "http":{
291
- "method":"GET",
292
- "requestUri":"/2018-10-31/layers/{LayerName}/versions/{VersionNumber}/policy",
293
- "responseCode":200
294
- },
295
- "input":{"shape":"GetLayerVersionPolicyRequest"},
296
- "output":{"shape":"GetLayerVersionPolicyResponse"},
297
- "errors":[
298
- {"shape":"ServiceException"},
299
- {"shape":"ResourceNotFoundException"},
300
- {"shape":"TooManyRequestsException"},
301
- {"shape":"InvalidParameterValueException"}
302
- ]
303
- },
304
- "GetPolicy":{
305
- "name":"GetPolicy",
306
- "http":{
307
- "method":"GET",
308
- "requestUri":"/2015-03-31/functions/{FunctionName}/policy",
309
- "responseCode":200
310
- },
311
- "input":{"shape":"GetPolicyRequest"},
312
- "output":{"shape":"GetPolicyResponse"},
313
- "errors":[
314
- {"shape":"ServiceException"},
315
- {"shape":"ResourceNotFoundException"},
316
- {"shape":"TooManyRequestsException"},
317
- {"shape":"InvalidParameterValueException"}
318
- ]
319
- },
320
- "Invoke":{
321
- "name":"Invoke",
322
- "http":{
323
- "method":"POST",
324
- "requestUri":"/2015-03-31/functions/{FunctionName}/invocations"
325
- },
326
- "input":{"shape":"InvocationRequest"},
327
- "output":{"shape":"InvocationResponse"},
328
- "errors":[
329
- {"shape":"ServiceException"},
330
- {"shape":"ResourceNotFoundException"},
331
- {"shape":"InvalidRequestContentException"},
332
- {"shape":"RequestTooLargeException"},
333
- {"shape":"UnsupportedMediaTypeException"},
334
- {"shape":"TooManyRequestsException"},
335
- {"shape":"InvalidParameterValueException"},
336
- {"shape":"EC2UnexpectedException"},
337
- {"shape":"SubnetIPAddressLimitReachedException"},
338
- {"shape":"ENILimitReachedException"},
339
- {"shape":"EC2ThrottledException"},
340
- {"shape":"EC2AccessDeniedException"},
341
- {"shape":"InvalidSubnetIDException"},
342
- {"shape":"InvalidSecurityGroupIDException"},
343
- {"shape":"InvalidZipFileException"},
344
- {"shape":"KMSDisabledException"},
345
- {"shape":"KMSInvalidStateException"},
346
- {"shape":"KMSAccessDeniedException"},
347
- {"shape":"KMSNotFoundException"},
348
- {"shape":"InvalidRuntimeException"}
349
- ]
350
- },
351
- "InvokeAsync":{
352
- "name":"InvokeAsync",
353
- "http":{
354
- "method":"POST",
355
- "requestUri":"/2014-11-13/functions/{FunctionName}/invoke-async/",
356
- "responseCode":202
357
- },
358
- "input":{"shape":"InvokeAsyncRequest"},
359
- "output":{"shape":"InvokeAsyncResponse"},
360
- "errors":[
361
- {"shape":"ServiceException"},
362
- {"shape":"ResourceNotFoundException"},
363
- {"shape":"InvalidRequestContentException"},
364
- {"shape":"InvalidRuntimeException"}
365
- ],
366
- "deprecated":true
367
- },
368
- "ListAliases":{
369
- "name":"ListAliases",
370
- "http":{
371
- "method":"GET",
372
- "requestUri":"/2015-03-31/functions/{FunctionName}/aliases",
373
- "responseCode":200
374
- },
375
- "input":{"shape":"ListAliasesRequest"},
376
- "output":{"shape":"ListAliasesResponse"},
377
- "errors":[
378
- {"shape":"ServiceException"},
379
- {"shape":"ResourceNotFoundException"},
380
- {"shape":"InvalidParameterValueException"},
381
- {"shape":"TooManyRequestsException"}
382
- ]
383
- },
384
- "ListEventSourceMappings":{
385
- "name":"ListEventSourceMappings",
386
- "http":{
387
- "method":"GET",
388
- "requestUri":"/2015-03-31/event-source-mappings/",
389
- "responseCode":200
390
- },
391
- "input":{"shape":"ListEventSourceMappingsRequest"},
392
- "output":{"shape":"ListEventSourceMappingsResponse"},
393
- "errors":[
394
- {"shape":"ServiceException"},
395
- {"shape":"ResourceNotFoundException"},
396
- {"shape":"InvalidParameterValueException"},
397
- {"shape":"TooManyRequestsException"}
398
- ]
399
- },
400
- "ListFunctions":{
401
- "name":"ListFunctions",
402
- "http":{
403
- "method":"GET",
404
- "requestUri":"/2015-03-31/functions/",
405
- "responseCode":200
406
- },
407
- "input":{"shape":"ListFunctionsRequest"},
408
- "output":{"shape":"ListFunctionsResponse"},
409
- "errors":[
410
- {"shape":"ServiceException"},
411
- {"shape":"TooManyRequestsException"},
412
- {"shape":"InvalidParameterValueException"}
413
- ]
414
- },
415
- "ListLayerVersions":{
416
- "name":"ListLayerVersions",
417
- "http":{
418
- "method":"GET",
419
- "requestUri":"/2018-10-31/layers/{LayerName}/versions",
420
- "responseCode":200
421
- },
422
- "input":{"shape":"ListLayerVersionsRequest"},
423
- "output":{"shape":"ListLayerVersionsResponse"},
424
- "errors":[
425
- {"shape":"ServiceException"},
426
- {"shape":"InvalidParameterValueException"},
427
- {"shape":"ResourceNotFoundException"},
428
- {"shape":"TooManyRequestsException"}
429
- ]
430
- },
431
- "ListLayers":{
432
- "name":"ListLayers",
433
- "http":{
434
- "method":"GET",
435
- "requestUri":"/2018-10-31/layers",
436
- "responseCode":200
437
- },
438
- "input":{"shape":"ListLayersRequest"},
439
- "output":{"shape":"ListLayersResponse"},
440
- "errors":[
441
- {"shape":"ServiceException"},
442
- {"shape":"InvalidParameterValueException"},
443
- {"shape":"TooManyRequestsException"}
444
- ]
445
- },
446
- "ListTags":{
447
- "name":"ListTags",
448
- "http":{
449
- "method":"GET",
450
- "requestUri":"/2017-03-31/tags/{ARN}"
451
- },
452
- "input":{"shape":"ListTagsRequest"},
453
- "output":{"shape":"ListTagsResponse"},
454
- "errors":[
455
- {"shape":"ServiceException"},
456
- {"shape":"ResourceNotFoundException"},
457
- {"shape":"InvalidParameterValueException"},
458
- {"shape":"TooManyRequestsException"}
459
- ]
460
- },
461
- "ListVersionsByFunction":{
462
- "name":"ListVersionsByFunction",
463
- "http":{
464
- "method":"GET",
465
- "requestUri":"/2015-03-31/functions/{FunctionName}/versions",
466
- "responseCode":200
467
- },
468
- "input":{"shape":"ListVersionsByFunctionRequest"},
469
- "output":{"shape":"ListVersionsByFunctionResponse"},
470
- "errors":[
471
- {"shape":"ServiceException"},
472
- {"shape":"ResourceNotFoundException"},
473
- {"shape":"InvalidParameterValueException"},
474
- {"shape":"TooManyRequestsException"}
475
- ]
476
- },
477
- "PublishLayerVersion":{
478
- "name":"PublishLayerVersion",
479
- "http":{
480
- "method":"POST",
481
- "requestUri":"/2018-10-31/layers/{LayerName}/versions",
482
- "responseCode":201
483
- },
484
- "input":{"shape":"PublishLayerVersionRequest"},
485
- "output":{"shape":"PublishLayerVersionResponse"},
486
- "errors":[
487
- {"shape":"ServiceException"},
488
- {"shape":"ResourceNotFoundException"},
489
- {"shape":"TooManyRequestsException"},
490
- {"shape":"InvalidParameterValueException"},
491
- {"shape":"CodeStorageExceededException"}
492
- ]
493
- },
494
- "PublishVersion":{
495
- "name":"PublishVersion",
496
- "http":{
497
- "method":"POST",
498
- "requestUri":"/2015-03-31/functions/{FunctionName}/versions",
499
- "responseCode":201
500
- },
501
- "input":{"shape":"PublishVersionRequest"},
502
- "output":{"shape":"FunctionConfiguration"},
503
- "errors":[
504
- {"shape":"ServiceException"},
505
- {"shape":"ResourceNotFoundException"},
506
- {"shape":"InvalidParameterValueException"},
507
- {"shape":"TooManyRequestsException"},
508
- {"shape":"CodeStorageExceededException"},
509
- {"shape":"PreconditionFailedException"}
510
- ]
511
- },
512
- "PutFunctionConcurrency":{
513
- "name":"PutFunctionConcurrency",
514
- "http":{
515
- "method":"PUT",
516
- "requestUri":"/2017-10-31/functions/{FunctionName}/concurrency",
517
- "responseCode":200
518
- },
519
- "input":{"shape":"PutFunctionConcurrencyRequest"},
520
- "output":{"shape":"Concurrency"},
521
- "errors":[
522
- {"shape":"ServiceException"},
523
- {"shape":"InvalidParameterValueException"},
524
- {"shape":"ResourceNotFoundException"},
525
- {"shape":"TooManyRequestsException"}
526
- ]
527
- },
528
- "RemoveLayerVersionPermission":{
529
- "name":"RemoveLayerVersionPermission",
530
- "http":{
531
- "method":"DELETE",
532
- "requestUri":"/2018-10-31/layers/{LayerName}/versions/{VersionNumber}/policy/{StatementId}",
533
- "responseCode":204
534
- },
535
- "input":{"shape":"RemoveLayerVersionPermissionRequest"},
536
- "errors":[
537
- {"shape":"ServiceException"},
538
- {"shape":"ResourceNotFoundException"},
539
- {"shape":"InvalidParameterValueException"},
540
- {"shape":"TooManyRequestsException"},
541
- {"shape":"PreconditionFailedException"}
542
- ]
543
- },
544
- "RemovePermission":{
545
- "name":"RemovePermission",
546
- "http":{
547
- "method":"DELETE",
548
- "requestUri":"/2015-03-31/functions/{FunctionName}/policy/{StatementId}",
549
- "responseCode":204
550
- },
551
- "input":{"shape":"RemovePermissionRequest"},
552
- "errors":[
553
- {"shape":"ServiceException"},
554
- {"shape":"ResourceNotFoundException"},
555
- {"shape":"InvalidParameterValueException"},
556
- {"shape":"TooManyRequestsException"},
557
- {"shape":"PreconditionFailedException"}
558
- ]
559
- },
560
- "TagResource":{
561
- "name":"TagResource",
562
- "http":{
563
- "method":"POST",
564
- "requestUri":"/2017-03-31/tags/{ARN}",
565
- "responseCode":204
566
- },
567
- "input":{"shape":"TagResourceRequest"},
568
- "errors":[
569
- {"shape":"ServiceException"},
570
- {"shape":"ResourceNotFoundException"},
571
- {"shape":"InvalidParameterValueException"},
572
- {"shape":"TooManyRequestsException"}
573
- ]
574
- },
575
- "UntagResource":{
576
- "name":"UntagResource",
577
- "http":{
578
- "method":"DELETE",
579
- "requestUri":"/2017-03-31/tags/{ARN}",
580
- "responseCode":204
581
- },
582
- "input":{"shape":"UntagResourceRequest"},
583
- "errors":[
584
- {"shape":"ServiceException"},
585
- {"shape":"ResourceNotFoundException"},
586
- {"shape":"InvalidParameterValueException"},
587
- {"shape":"TooManyRequestsException"}
588
- ]
589
- },
590
- "UpdateAlias":{
591
- "name":"UpdateAlias",
592
- "http":{
593
- "method":"PUT",
594
- "requestUri":"/2015-03-31/functions/{FunctionName}/aliases/{Name}",
595
- "responseCode":200
596
- },
597
- "input":{"shape":"UpdateAliasRequest"},
598
- "output":{"shape":"AliasConfiguration"},
599
- "errors":[
600
- {"shape":"ServiceException"},
601
- {"shape":"ResourceNotFoundException"},
602
- {"shape":"InvalidParameterValueException"},
603
- {"shape":"TooManyRequestsException"},
604
- {"shape":"PreconditionFailedException"}
605
- ]
606
- },
607
- "UpdateEventSourceMapping":{
608
- "name":"UpdateEventSourceMapping",
609
- "http":{
610
- "method":"PUT",
611
- "requestUri":"/2015-03-31/event-source-mappings/{UUID}",
612
- "responseCode":202
613
- },
614
- "input":{"shape":"UpdateEventSourceMappingRequest"},
615
- "output":{"shape":"EventSourceMappingConfiguration"},
616
- "errors":[
617
- {"shape":"ServiceException"},
618
- {"shape":"ResourceNotFoundException"},
619
- {"shape":"InvalidParameterValueException"},
620
- {"shape":"TooManyRequestsException"},
621
- {"shape":"ResourceConflictException"},
622
- {"shape":"ResourceInUseException"}
623
- ]
624
- },
625
- "UpdateFunctionCode":{
626
- "name":"UpdateFunctionCode",
627
- "http":{
628
- "method":"PUT",
629
- "requestUri":"/2015-03-31/functions/{FunctionName}/code",
630
- "responseCode":200
631
- },
632
- "input":{"shape":"UpdateFunctionCodeRequest"},
633
- "output":{"shape":"FunctionConfiguration"},
634
- "errors":[
635
- {"shape":"ServiceException"},
636
- {"shape":"ResourceNotFoundException"},
637
- {"shape":"InvalidParameterValueException"},
638
- {"shape":"TooManyRequestsException"},
639
- {"shape":"CodeStorageExceededException"},
640
- {"shape":"PreconditionFailedException"}
641
- ]
642
- },
643
- "UpdateFunctionConfiguration":{
644
- "name":"UpdateFunctionConfiguration",
645
- "http":{
646
- "method":"PUT",
647
- "requestUri":"/2015-03-31/functions/{FunctionName}/configuration",
648
- "responseCode":200
649
- },
650
- "input":{"shape":"UpdateFunctionConfigurationRequest"},
651
- "output":{"shape":"FunctionConfiguration"},
652
- "errors":[
653
- {"shape":"ServiceException"},
654
- {"shape":"ResourceNotFoundException"},
655
- {"shape":"InvalidParameterValueException"},
656
- {"shape":"TooManyRequestsException"},
657
- {"shape":"ResourceConflictException"},
658
- {"shape":"PreconditionFailedException"}
659
- ]
660
- }
661
- },
662
- "shapes":{
663
- "AccountLimit":{
664
- "type":"structure",
665
- "members":{
666
- "TotalCodeSize":{"shape":"Long"},
667
- "CodeSizeUnzipped":{"shape":"Long"},
668
- "CodeSizeZipped":{"shape":"Long"},
669
- "ConcurrentExecutions":{"shape":"Integer"},
670
- "UnreservedConcurrentExecutions":{"shape":"UnreservedConcurrentExecutions"}
671
- }
672
- },
673
- "AccountUsage":{
674
- "type":"structure",
675
- "members":{
676
- "TotalCodeSize":{"shape":"Long"},
677
- "FunctionCount":{"shape":"Long"}
678
- }
679
- },
680
- "Action":{
681
- "type":"string",
682
- "pattern":"(lambda:[*]|lambda:[a-zA-Z]+|[*])"
683
- },
684
- "AddLayerVersionPermissionRequest":{
685
- "type":"structure",
686
- "required":[
687
- "LayerName",
688
- "VersionNumber",
689
- "StatementId",
690
- "Action",
691
- "Principal"
692
- ],
693
- "members":{
694
- "LayerName":{
695
- "shape":"LayerName",
696
- "location":"uri",
697
- "locationName":"LayerName"
698
- },
699
- "VersionNumber":{
700
- "shape":"LayerVersionNumber",
701
- "location":"uri",
702
- "locationName":"VersionNumber"
703
- },
704
- "StatementId":{"shape":"StatementId"},
705
- "Action":{"shape":"LayerPermissionAllowedAction"},
706
- "Principal":{"shape":"LayerPermissionAllowedPrincipal"},
707
- "OrganizationId":{"shape":"OrganizationId"},
708
- "RevisionId":{
709
- "shape":"String",
710
- "location":"querystring",
711
- "locationName":"RevisionId"
712
- }
713
- }
714
- },
715
- "AddLayerVersionPermissionResponse":{
716
- "type":"structure",
717
- "members":{
718
- "Statement":{"shape":"String"},
719
- "RevisionId":{"shape":"String"}
720
- }
721
- },
722
- "AddPermissionRequest":{
723
- "type":"structure",
724
- "required":[
725
- "FunctionName",
726
- "StatementId",
727
- "Action",
728
- "Principal"
729
- ],
730
- "members":{
731
- "FunctionName":{
732
- "shape":"FunctionName",
733
- "location":"uri",
734
- "locationName":"FunctionName"
735
- },
736
- "StatementId":{"shape":"StatementId"},
737
- "Action":{"shape":"Action"},
738
- "Principal":{"shape":"Principal"},
739
- "SourceArn":{"shape":"Arn"},
740
- "SourceAccount":{"shape":"SourceOwner"},
741
- "EventSourceToken":{"shape":"EventSourceToken"},
742
- "Qualifier":{
743
- "shape":"Qualifier",
744
- "location":"querystring",
745
- "locationName":"Qualifier"
746
- },
747
- "RevisionId":{"shape":"String"}
748
- }
749
- },
750
- "AddPermissionResponse":{
751
- "type":"structure",
752
- "members":{
753
- "Statement":{"shape":"String"}
754
- }
755
- },
756
- "AdditionalVersion":{
757
- "type":"string",
758
- "max":1024,
759
- "min":1,
760
- "pattern":"[0-9]+"
761
- },
762
- "AdditionalVersionWeights":{
763
- "type":"map",
764
- "key":{"shape":"AdditionalVersion"},
765
- "value":{"shape":"Weight"}
766
- },
767
- "Alias":{
768
- "type":"string",
769
- "max":128,
770
- "min":1,
771
- "pattern":"(?!^[0-9]+$)([a-zA-Z0-9-_]+)"
772
- },
773
- "AliasConfiguration":{
774
- "type":"structure",
775
- "members":{
776
- "AliasArn":{"shape":"FunctionArn"},
777
- "Name":{"shape":"Alias"},
778
- "FunctionVersion":{"shape":"Version"},
779
- "Description":{"shape":"Description"},
780
- "RoutingConfig":{"shape":"AliasRoutingConfiguration"},
781
- "RevisionId":{"shape":"String"}
782
- }
783
- },
784
- "AliasList":{
785
- "type":"list",
786
- "member":{"shape":"AliasConfiguration"}
787
- },
788
- "AliasRoutingConfiguration":{
789
- "type":"structure",
790
- "members":{
791
- "AdditionalVersionWeights":{"shape":"AdditionalVersionWeights"}
792
- }
793
- },
794
- "Arn":{
795
- "type":"string",
796
- "pattern":"arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\\-])+:([a-z]{2}(-gov)?-[a-z]+-\\d{1})?:(\\d{12})?:(.*)"
797
- },
798
- "BatchSize":{
799
- "type":"integer",
800
- "max":10000,
801
- "min":1
802
- },
803
- "Blob":{
804
- "type":"blob",
805
- "sensitive":true
806
- },
807
- "BlobStream":{
808
- "type":"blob",
809
- "streaming":true
810
- },
811
- "Boolean":{"type":"boolean"},
812
- "CodeStorageExceededException":{
813
- "type":"structure",
814
- "members":{
815
- "Type":{"shape":"String"},
816
- "message":{"shape":"String"}
817
- },
818
- "error":{"httpStatusCode":400},
819
- "exception":true
820
- },
821
- "CompatibleRuntimes":{
822
- "type":"list",
823
- "member":{"shape":"Runtime"},
824
- "max":5
825
- },
826
- "Concurrency":{
827
- "type":"structure",
828
- "members":{
829
- "ReservedConcurrentExecutions":{"shape":"ReservedConcurrentExecutions"}
830
- }
831
- },
832
- "CreateAliasRequest":{
833
- "type":"structure",
834
- "required":[
835
- "FunctionName",
836
- "Name",
837
- "FunctionVersion"
838
- ],
839
- "members":{
840
- "FunctionName":{
841
- "shape":"FunctionName",
842
- "location":"uri",
843
- "locationName":"FunctionName"
844
- },
845
- "Name":{"shape":"Alias"},
846
- "FunctionVersion":{"shape":"Version"},
847
- "Description":{"shape":"Description"},
848
- "RoutingConfig":{"shape":"AliasRoutingConfiguration"}
849
- }
850
- },
851
- "CreateEventSourceMappingRequest":{
852
- "type":"structure",
853
- "required":[
854
- "EventSourceArn",
855
- "FunctionName"
856
- ],
857
- "members":{
858
- "EventSourceArn":{"shape":"Arn"},
859
- "FunctionName":{"shape":"FunctionName"},
860
- "Enabled":{"shape":"Enabled"},
861
- "BatchSize":{"shape":"BatchSize"},
862
- "StartingPosition":{"shape":"EventSourcePosition"},
863
- "StartingPositionTimestamp":{"shape":"Date"}
864
- }
865
- },
866
- "CreateFunctionRequest":{
867
- "type":"structure",
868
- "required":[
869
- "FunctionName",
870
- "Runtime",
871
- "Role",
872
- "Handler",
873
- "Code"
874
- ],
875
- "members":{
876
- "FunctionName":{"shape":"FunctionName"},
877
- "Runtime":{"shape":"Runtime"},
878
- "Role":{"shape":"RoleArn"},
879
- "Handler":{"shape":"Handler"},
880
- "Code":{"shape":"FunctionCode"},
881
- "Description":{"shape":"Description"},
882
- "Timeout":{"shape":"Timeout"},
883
- "MemorySize":{"shape":"MemorySize"},
884
- "Publish":{"shape":"Boolean"},
885
- "VpcConfig":{"shape":"VpcConfig"},
886
- "DeadLetterConfig":{"shape":"DeadLetterConfig"},
887
- "Environment":{"shape":"Environment"},
888
- "KMSKeyArn":{"shape":"KMSKeyArn"},
889
- "TracingConfig":{"shape":"TracingConfig"},
890
- "Tags":{"shape":"Tags"},
891
- "Layers":{"shape":"LayerList"}
892
- }
893
- },
894
- "Date":{"type":"timestamp"},
895
- "DeadLetterConfig":{
896
- "type":"structure",
897
- "members":{
898
- "TargetArn":{"shape":"ResourceArn"}
899
- }
900
- },
901
- "DeleteAliasRequest":{
902
- "type":"structure",
903
- "required":[
904
- "FunctionName",
905
- "Name"
906
- ],
907
- "members":{
908
- "FunctionName":{
909
- "shape":"FunctionName",
910
- "location":"uri",
911
- "locationName":"FunctionName"
912
- },
913
- "Name":{
914
- "shape":"Alias",
915
- "location":"uri",
916
- "locationName":"Name"
917
- }
918
- }
919
- },
920
- "DeleteEventSourceMappingRequest":{
921
- "type":"structure",
922
- "required":["UUID"],
923
- "members":{
924
- "UUID":{
925
- "shape":"String",
926
- "location":"uri",
927
- "locationName":"UUID"
928
- }
929
- }
930
- },
931
- "DeleteFunctionConcurrencyRequest":{
932
- "type":"structure",
933
- "required":["FunctionName"],
934
- "members":{
935
- "FunctionName":{
936
- "shape":"FunctionName",
937
- "location":"uri",
938
- "locationName":"FunctionName"
939
- }
940
- }
941
- },
942
- "DeleteFunctionRequest":{
943
- "type":"structure",
944
- "required":["FunctionName"],
945
- "members":{
946
- "FunctionName":{
947
- "shape":"FunctionName",
948
- "location":"uri",
949
- "locationName":"FunctionName"
950
- },
951
- "Qualifier":{
952
- "shape":"Qualifier",
953
- "location":"querystring",
954
- "locationName":"Qualifier"
955
- }
956
- }
957
- },
958
- "DeleteLayerVersionRequest":{
959
- "type":"structure",
960
- "required":[
961
- "LayerName",
962
- "VersionNumber"
963
- ],
964
- "members":{
965
- "LayerName":{
966
- "shape":"LayerName",
967
- "location":"uri",
968
- "locationName":"LayerName"
969
- },
970
- "VersionNumber":{
971
- "shape":"LayerVersionNumber",
972
- "location":"uri",
973
- "locationName":"VersionNumber"
974
- }
975
- }
976
- },
977
- "Description":{
978
- "type":"string",
979
- "max":256,
980
- "min":0
981
- },
982
- "EC2AccessDeniedException":{
983
- "type":"structure",
984
- "members":{
985
- "Type":{"shape":"String"},
986
- "Message":{"shape":"String"}
987
- },
988
- "error":{"httpStatusCode":502},
989
- "exception":true
990
- },
991
- "EC2ThrottledException":{
992
- "type":"structure",
993
- "members":{
994
- "Type":{"shape":"String"},
995
- "Message":{"shape":"String"}
996
- },
997
- "error":{"httpStatusCode":502},
998
- "exception":true
999
- },
1000
- "EC2UnexpectedException":{
1001
- "type":"structure",
1002
- "members":{
1003
- "Type":{"shape":"String"},
1004
- "Message":{"shape":"String"},
1005
- "EC2ErrorCode":{"shape":"String"}
1006
- },
1007
- "error":{"httpStatusCode":502},
1008
- "exception":true
1009
- },
1010
- "ENILimitReachedException":{
1011
- "type":"structure",
1012
- "members":{
1013
- "Type":{"shape":"String"},
1014
- "Message":{"shape":"String"}
1015
- },
1016
- "error":{"httpStatusCode":502},
1017
- "exception":true
1018
- },
1019
- "Enabled":{"type":"boolean"},
1020
- "Environment":{
1021
- "type":"structure",
1022
- "members":{
1023
- "Variables":{"shape":"EnvironmentVariables"}
1024
- }
1025
- },
1026
- "EnvironmentError":{
1027
- "type":"structure",
1028
- "members":{
1029
- "ErrorCode":{"shape":"String"},
1030
- "Message":{"shape":"SensitiveString"}
1031
- }
1032
- },
1033
- "EnvironmentResponse":{
1034
- "type":"structure",
1035
- "members":{
1036
- "Variables":{"shape":"EnvironmentVariables"},
1037
- "Error":{"shape":"EnvironmentError"}
1038
- }
1039
- },
1040
- "EnvironmentVariableName":{
1041
- "type":"string",
1042
- "pattern":"[a-zA-Z]([a-zA-Z0-9_])+",
1043
- "sensitive":true
1044
- },
1045
- "EnvironmentVariableValue":{
1046
- "type":"string",
1047
- "sensitive":true
1048
- },
1049
- "EnvironmentVariables":{
1050
- "type":"map",
1051
- "key":{"shape":"EnvironmentVariableName"},
1052
- "value":{"shape":"EnvironmentVariableValue"},
1053
- "sensitive":true
1054
- },
1055
- "EventSourceMappingConfiguration":{
1056
- "type":"structure",
1057
- "members":{
1058
- "UUID":{"shape":"String"},
1059
- "BatchSize":{"shape":"BatchSize"},
1060
- "EventSourceArn":{"shape":"Arn"},
1061
- "FunctionArn":{"shape":"FunctionArn"},
1062
- "LastModified":{"shape":"Date"},
1063
- "LastProcessingResult":{"shape":"String"},
1064
- "State":{"shape":"String"},
1065
- "StateTransitionReason":{"shape":"String"}
1066
- }
1067
- },
1068
- "EventSourceMappingsList":{
1069
- "type":"list",
1070
- "member":{"shape":"EventSourceMappingConfiguration"}
1071
- },
1072
- "EventSourcePosition":{
1073
- "type":"string",
1074
- "enum":[
1075
- "TRIM_HORIZON",
1076
- "LATEST",
1077
- "AT_TIMESTAMP"
1078
- ]
1079
- },
1080
- "EventSourceToken":{
1081
- "type":"string",
1082
- "max":256,
1083
- "min":0,
1084
- "pattern":"[a-zA-Z0-9._\\-]+"
1085
- },
1086
- "FunctionArn":{
1087
- "type":"string",
1088
- "pattern":"arn:(aws[a-zA-Z-]*)?:lambda:[a-z]{2}(-gov)?-[a-z]+-\\d{1}:\\d{12}:function:[a-zA-Z0-9-_]+(:(\\$LATEST|[a-zA-Z0-9-_]+))?"
1089
- },
1090
- "FunctionCode":{
1091
- "type":"structure",
1092
- "members":{
1093
- "ZipFile":{"shape":"Blob"},
1094
- "S3Bucket":{"shape":"S3Bucket"},
1095
- "S3Key":{"shape":"S3Key"},
1096
- "S3ObjectVersion":{"shape":"S3ObjectVersion"}
1097
- }
1098
- },
1099
- "FunctionCodeLocation":{
1100
- "type":"structure",
1101
- "members":{
1102
- "RepositoryType":{"shape":"String"},
1103
- "Location":{"shape":"String"}
1104
- }
1105
- },
1106
- "FunctionConfiguration":{
1107
- "type":"structure",
1108
- "members":{
1109
- "FunctionName":{"shape":"NamespacedFunctionName"},
1110
- "FunctionArn":{"shape":"NameSpacedFunctionArn"},
1111
- "Runtime":{"shape":"Runtime"},
1112
- "Role":{"shape":"RoleArn"},
1113
- "Handler":{"shape":"Handler"},
1114
- "CodeSize":{"shape":"Long"},
1115
- "Description":{"shape":"Description"},
1116
- "Timeout":{"shape":"Timeout"},
1117
- "MemorySize":{"shape":"MemorySize"},
1118
- "LastModified":{"shape":"Timestamp"},
1119
- "CodeSha256":{"shape":"String"},
1120
- "Version":{"shape":"Version"},
1121
- "VpcConfig":{"shape":"VpcConfigResponse"},
1122
- "DeadLetterConfig":{"shape":"DeadLetterConfig"},
1123
- "Environment":{"shape":"EnvironmentResponse"},
1124
- "KMSKeyArn":{"shape":"KMSKeyArn"},
1125
- "TracingConfig":{"shape":"TracingConfigResponse"},
1126
- "MasterArn":{"shape":"FunctionArn"},
1127
- "RevisionId":{"shape":"String"},
1128
- "Layers":{"shape":"LayersReferenceList"}
1129
- }
1130
- },
1131
- "FunctionList":{
1132
- "type":"list",
1133
- "member":{"shape":"FunctionConfiguration"}
1134
- },
1135
- "FunctionName":{
1136
- "type":"string",
1137
- "max":140,
1138
- "min":1,
1139
- "pattern":"(arn:(aws[a-zA-Z-]*)?:lambda:)?([a-z]{2}(-gov)?-[a-z]+-\\d{1}:)?(\\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\\$LATEST|[a-zA-Z0-9-_]+))?"
1140
- },
1141
- "FunctionVersion":{
1142
- "type":"string",
1143
- "enum":["ALL"]
1144
- },
1145
- "GetAccountSettingsRequest":{
1146
- "type":"structure",
1147
- "members":{
1148
- }
1149
- },
1150
- "GetAccountSettingsResponse":{
1151
- "type":"structure",
1152
- "members":{
1153
- "AccountLimit":{"shape":"AccountLimit"},
1154
- "AccountUsage":{"shape":"AccountUsage"}
1155
- }
1156
- },
1157
- "GetAliasRequest":{
1158
- "type":"structure",
1159
- "required":[
1160
- "FunctionName",
1161
- "Name"
1162
- ],
1163
- "members":{
1164
- "FunctionName":{
1165
- "shape":"FunctionName",
1166
- "location":"uri",
1167
- "locationName":"FunctionName"
1168
- },
1169
- "Name":{
1170
- "shape":"Alias",
1171
- "location":"uri",
1172
- "locationName":"Name"
1173
- }
1174
- }
1175
- },
1176
- "GetEventSourceMappingRequest":{
1177
- "type":"structure",
1178
- "required":["UUID"],
1179
- "members":{
1180
- "UUID":{
1181
- "shape":"String",
1182
- "location":"uri",
1183
- "locationName":"UUID"
1184
- }
1185
- }
1186
- },
1187
- "GetFunctionConfigurationRequest":{
1188
- "type":"structure",
1189
- "required":["FunctionName"],
1190
- "members":{
1191
- "FunctionName":{
1192
- "shape":"NamespacedFunctionName",
1193
- "location":"uri",
1194
- "locationName":"FunctionName"
1195
- },
1196
- "Qualifier":{
1197
- "shape":"Qualifier",
1198
- "location":"querystring",
1199
- "locationName":"Qualifier"
1200
- }
1201
- }
1202
- },
1203
- "GetFunctionRequest":{
1204
- "type":"structure",
1205
- "required":["FunctionName"],
1206
- "members":{
1207
- "FunctionName":{
1208
- "shape":"NamespacedFunctionName",
1209
- "location":"uri",
1210
- "locationName":"FunctionName"
1211
- },
1212
- "Qualifier":{
1213
- "shape":"Qualifier",
1214
- "location":"querystring",
1215
- "locationName":"Qualifier"
1216
- }
1217
- }
1218
- },
1219
- "GetFunctionResponse":{
1220
- "type":"structure",
1221
- "members":{
1222
- "Configuration":{"shape":"FunctionConfiguration"},
1223
- "Code":{"shape":"FunctionCodeLocation"},
1224
- "Tags":{"shape":"Tags"},
1225
- "Concurrency":{"shape":"Concurrency"}
1226
- }
1227
- },
1228
- "GetLayerVersionByArnRequest":{
1229
- "type":"structure",
1230
- "required":["Arn"],
1231
- "members":{
1232
- "Arn":{
1233
- "shape":"LayerVersionArn",
1234
- "location":"querystring",
1235
- "locationName":"Arn"
1236
- }
1237
- }
1238
- },
1239
- "GetLayerVersionPolicyRequest":{
1240
- "type":"structure",
1241
- "required":[
1242
- "LayerName",
1243
- "VersionNumber"
1244
- ],
1245
- "members":{
1246
- "LayerName":{
1247
- "shape":"LayerName",
1248
- "location":"uri",
1249
- "locationName":"LayerName"
1250
- },
1251
- "VersionNumber":{
1252
- "shape":"LayerVersionNumber",
1253
- "location":"uri",
1254
- "locationName":"VersionNumber"
1255
- }
1256
- }
1257
- },
1258
- "GetLayerVersionPolicyResponse":{
1259
- "type":"structure",
1260
- "members":{
1261
- "Policy":{"shape":"String"},
1262
- "RevisionId":{"shape":"String"}
1263
- }
1264
- },
1265
- "GetLayerVersionRequest":{
1266
- "type":"structure",
1267
- "required":[
1268
- "LayerName",
1269
- "VersionNumber"
1270
- ],
1271
- "members":{
1272
- "LayerName":{
1273
- "shape":"LayerName",
1274
- "location":"uri",
1275
- "locationName":"LayerName"
1276
- },
1277
- "VersionNumber":{
1278
- "shape":"LayerVersionNumber",
1279
- "location":"uri",
1280
- "locationName":"VersionNumber"
1281
- }
1282
- }
1283
- },
1284
- "GetLayerVersionResponse":{
1285
- "type":"structure",
1286
- "members":{
1287
- "Content":{"shape":"LayerVersionContentOutput"},
1288
- "LayerArn":{"shape":"LayerArn"},
1289
- "LayerVersionArn":{"shape":"LayerVersionArn"},
1290
- "Description":{"shape":"Description"},
1291
- "CreatedDate":{"shape":"Timestamp"},
1292
- "Version":{"shape":"LayerVersionNumber"},
1293
- "CompatibleRuntimes":{"shape":"CompatibleRuntimes"},
1294
- "LicenseInfo":{"shape":"LicenseInfo"}
1295
- }
1296
- },
1297
- "GetPolicyRequest":{
1298
- "type":"structure",
1299
- "required":["FunctionName"],
1300
- "members":{
1301
- "FunctionName":{
1302
- "shape":"NamespacedFunctionName",
1303
- "location":"uri",
1304
- "locationName":"FunctionName"
1305
- },
1306
- "Qualifier":{
1307
- "shape":"Qualifier",
1308
- "location":"querystring",
1309
- "locationName":"Qualifier"
1310
- }
1311
- }
1312
- },
1313
- "GetPolicyResponse":{
1314
- "type":"structure",
1315
- "members":{
1316
- "Policy":{"shape":"String"},
1317
- "RevisionId":{"shape":"String"}
1318
- }
1319
- },
1320
- "Handler":{
1321
- "type":"string",
1322
- "max":128,
1323
- "pattern":"[^\\s]+"
1324
- },
1325
- "HttpStatus":{"type":"integer"},
1326
- "Integer":{"type":"integer"},
1327
- "InvalidParameterValueException":{
1328
- "type":"structure",
1329
- "members":{
1330
- "Type":{"shape":"String"},
1331
- "message":{"shape":"String"}
1332
- },
1333
- "error":{"httpStatusCode":400},
1334
- "exception":true
1335
- },
1336
- "InvalidRequestContentException":{
1337
- "type":"structure",
1338
- "members":{
1339
- "Type":{"shape":"String"},
1340
- "message":{"shape":"String"}
1341
- },
1342
- "error":{"httpStatusCode":400},
1343
- "exception":true
1344
- },
1345
- "InvalidRuntimeException":{
1346
- "type":"structure",
1347
- "members":{
1348
- "Type":{"shape":"String"},
1349
- "Message":{"shape":"String"}
1350
- },
1351
- "error":{"httpStatusCode":502},
1352
- "exception":true
1353
- },
1354
- "InvalidSecurityGroupIDException":{
1355
- "type":"structure",
1356
- "members":{
1357
- "Type":{"shape":"String"},
1358
- "Message":{"shape":"String"}
1359
- },
1360
- "error":{"httpStatusCode":502},
1361
- "exception":true
1362
- },
1363
- "InvalidSubnetIDException":{
1364
- "type":"structure",
1365
- "members":{
1366
- "Type":{"shape":"String"},
1367
- "Message":{"shape":"String"}
1368
- },
1369
- "error":{"httpStatusCode":502},
1370
- "exception":true
1371
- },
1372
- "InvalidZipFileException":{
1373
- "type":"structure",
1374
- "members":{
1375
- "Type":{"shape":"String"},
1376
- "Message":{"shape":"String"}
1377
- },
1378
- "error":{"httpStatusCode":502},
1379
- "exception":true
1380
- },
1381
- "InvocationRequest":{
1382
- "type":"structure",
1383
- "required":["FunctionName"],
1384
- "members":{
1385
- "FunctionName":{
1386
- "shape":"NamespacedFunctionName",
1387
- "location":"uri",
1388
- "locationName":"FunctionName"
1389
- },
1390
- "InvocationType":{
1391
- "shape":"InvocationType",
1392
- "location":"header",
1393
- "locationName":"X-Amz-Invocation-Type"
1394
- },
1395
- "LogType":{
1396
- "shape":"LogType",
1397
- "location":"header",
1398
- "locationName":"X-Amz-Log-Type"
1399
- },
1400
- "ClientContext":{
1401
- "shape":"String",
1402
- "location":"header",
1403
- "locationName":"X-Amz-Client-Context"
1404
- },
1405
- "Payload":{"shape":"Blob"},
1406
- "Qualifier":{
1407
- "shape":"Qualifier",
1408
- "location":"querystring",
1409
- "locationName":"Qualifier"
1410
- }
1411
- },
1412
- "payload":"Payload"
1413
- },
1414
- "InvocationResponse":{
1415
- "type":"structure",
1416
- "members":{
1417
- "StatusCode":{
1418
- "shape":"Integer",
1419
- "location":"statusCode"
1420
- },
1421
- "FunctionError":{
1422
- "shape":"String",
1423
- "location":"header",
1424
- "locationName":"X-Amz-Function-Error"
1425
- },
1426
- "LogResult":{
1427
- "shape":"String",
1428
- "location":"header",
1429
- "locationName":"X-Amz-Log-Result"
1430
- },
1431
- "Payload":{"shape":"Blob"},
1432
- "ExecutedVersion":{
1433
- "shape":"Version",
1434
- "location":"header",
1435
- "locationName":"X-Amz-Executed-Version"
1436
- }
1437
- },
1438
- "payload":"Payload"
1439
- },
1440
- "InvocationType":{
1441
- "type":"string",
1442
- "enum":[
1443
- "Event",
1444
- "RequestResponse",
1445
- "DryRun"
1446
- ]
1447
- },
1448
- "InvokeAsyncRequest":{
1449
- "type":"structure",
1450
- "required":[
1451
- "FunctionName",
1452
- "InvokeArgs"
1453
- ],
1454
- "members":{
1455
- "FunctionName":{
1456
- "shape":"NamespacedFunctionName",
1457
- "location":"uri",
1458
- "locationName":"FunctionName"
1459
- },
1460
- "InvokeArgs":{"shape":"BlobStream"}
1461
- },
1462
- "deprecated":true,
1463
- "payload":"InvokeArgs"
1464
- },
1465
- "InvokeAsyncResponse":{
1466
- "type":"structure",
1467
- "members":{
1468
- "Status":{
1469
- "shape":"HttpStatus",
1470
- "location":"statusCode"
1471
- }
1472
- },
1473
- "deprecated":true
1474
- },
1475
- "KMSAccessDeniedException":{
1476
- "type":"structure",
1477
- "members":{
1478
- "Type":{"shape":"String"},
1479
- "Message":{"shape":"String"}
1480
- },
1481
- "error":{"httpStatusCode":502},
1482
- "exception":true
1483
- },
1484
- "KMSDisabledException":{
1485
- "type":"structure",
1486
- "members":{
1487
- "Type":{"shape":"String"},
1488
- "Message":{"shape":"String"}
1489
- },
1490
- "error":{"httpStatusCode":502},
1491
- "exception":true
1492
- },
1493
- "KMSInvalidStateException":{
1494
- "type":"structure",
1495
- "members":{
1496
- "Type":{"shape":"String"},
1497
- "Message":{"shape":"String"}
1498
- },
1499
- "error":{"httpStatusCode":502},
1500
- "exception":true
1501
- },
1502
- "KMSKeyArn":{
1503
- "type":"string",
1504
- "pattern":"(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()"
1505
- },
1506
- "KMSNotFoundException":{
1507
- "type":"structure",
1508
- "members":{
1509
- "Type":{"shape":"String"},
1510
- "Message":{"shape":"String"}
1511
- },
1512
- "error":{"httpStatusCode":502},
1513
- "exception":true
1514
- },
1515
- "Layer":{
1516
- "type":"structure",
1517
- "members":{
1518
- "Arn":{"shape":"LayerVersionArn"},
1519
- "CodeSize":{"shape":"Long"}
1520
- }
1521
- },
1522
- "LayerArn":{
1523
- "type":"string",
1524
- "max":140,
1525
- "min":1,
1526
- "pattern":"arn:[a-zA-Z0-9-]+:lambda:[a-zA-Z0-9-]+:\\d{12}:layer:[a-zA-Z0-9-_]+"
1527
- },
1528
- "LayerList":{
1529
- "type":"list",
1530
- "member":{"shape":"LayerVersionArn"}
1531
- },
1532
- "LayerName":{
1533
- "type":"string",
1534
- "max":140,
1535
- "min":1,
1536
- "pattern":"(arn:[a-zA-Z0-9-]+:lambda:[a-zA-Z0-9-]+:\\d{12}:layer:[a-zA-Z0-9-_]+)|[a-zA-Z0-9-_]+"
1537
- },
1538
- "LayerPermissionAllowedAction":{
1539
- "type":"string",
1540
- "pattern":"lambda:GetLayerVersion"
1541
- },
1542
- "LayerPermissionAllowedPrincipal":{
1543
- "type":"string",
1544
- "pattern":"\\d{12}|\\*|arn:(aws[a-zA-Z-]*):iam::\\d{12}:root"
1545
- },
1546
- "LayerVersionArn":{
1547
- "type":"string",
1548
- "max":140,
1549
- "min":1,
1550
- "pattern":"arn:[a-zA-Z0-9-]+:lambda:[a-zA-Z0-9-]+:\\d{12}:layer:[a-zA-Z0-9-_]+:[0-9]+"
1551
- },
1552
- "LayerVersionContentInput":{
1553
- "type":"structure",
1554
- "members":{
1555
- "S3Bucket":{"shape":"S3Bucket"},
1556
- "S3Key":{"shape":"S3Key"},
1557
- "S3ObjectVersion":{"shape":"S3ObjectVersion"},
1558
- "ZipFile":{"shape":"Blob"}
1559
- }
1560
- },
1561
- "LayerVersionContentOutput":{
1562
- "type":"structure",
1563
- "members":{
1564
- "Location":{"shape":"String"},
1565
- "CodeSha256":{"shape":"String"},
1566
- "CodeSize":{"shape":"Long"}
1567
- }
1568
- },
1569
- "LayerVersionNumber":{"type":"long"},
1570
- "LayerVersionsList":{
1571
- "type":"list",
1572
- "member":{"shape":"LayerVersionsListItem"}
1573
- },
1574
- "LayerVersionsListItem":{
1575
- "type":"structure",
1576
- "members":{
1577
- "LayerVersionArn":{"shape":"LayerVersionArn"},
1578
- "Version":{"shape":"LayerVersionNumber"},
1579
- "Description":{"shape":"Description"},
1580
- "CreatedDate":{"shape":"Timestamp"},
1581
- "CompatibleRuntimes":{"shape":"CompatibleRuntimes"},
1582
- "LicenseInfo":{"shape":"LicenseInfo"}
1583
- }
1584
- },
1585
- "LayersList":{
1586
- "type":"list",
1587
- "member":{"shape":"LayersListItem"}
1588
- },
1589
- "LayersListItem":{
1590
- "type":"structure",
1591
- "members":{
1592
- "LayerName":{"shape":"LayerName"},
1593
- "LayerArn":{"shape":"LayerArn"},
1594
- "LatestMatchingVersion":{"shape":"LayerVersionsListItem"}
1595
- }
1596
- },
1597
- "LayersReferenceList":{
1598
- "type":"list",
1599
- "member":{"shape":"Layer"}
1600
- },
1601
- "LicenseInfo":{
1602
- "type":"string",
1603
- "max":512
1604
- },
1605
- "ListAliasesRequest":{
1606
- "type":"structure",
1607
- "required":["FunctionName"],
1608
- "members":{
1609
- "FunctionName":{
1610
- "shape":"FunctionName",
1611
- "location":"uri",
1612
- "locationName":"FunctionName"
1613
- },
1614
- "FunctionVersion":{
1615
- "shape":"Version",
1616
- "location":"querystring",
1617
- "locationName":"FunctionVersion"
1618
- },
1619
- "Marker":{
1620
- "shape":"String",
1621
- "location":"querystring",
1622
- "locationName":"Marker"
1623
- },
1624
- "MaxItems":{
1625
- "shape":"MaxListItems",
1626
- "location":"querystring",
1627
- "locationName":"MaxItems"
1628
- }
1629
- }
1630
- },
1631
- "ListAliasesResponse":{
1632
- "type":"structure",
1633
- "members":{
1634
- "NextMarker":{"shape":"String"},
1635
- "Aliases":{"shape":"AliasList"}
1636
- }
1637
- },
1638
- "ListEventSourceMappingsRequest":{
1639
- "type":"structure",
1640
- "members":{
1641
- "EventSourceArn":{
1642
- "shape":"Arn",
1643
- "location":"querystring",
1644
- "locationName":"EventSourceArn"
1645
- },
1646
- "FunctionName":{
1647
- "shape":"FunctionName",
1648
- "location":"querystring",
1649
- "locationName":"FunctionName"
1650
- },
1651
- "Marker":{
1652
- "shape":"String",
1653
- "location":"querystring",
1654
- "locationName":"Marker"
1655
- },
1656
- "MaxItems":{
1657
- "shape":"MaxListItems",
1658
- "location":"querystring",
1659
- "locationName":"MaxItems"
1660
- }
1661
- }
1662
- },
1663
- "ListEventSourceMappingsResponse":{
1664
- "type":"structure",
1665
- "members":{
1666
- "NextMarker":{"shape":"String"},
1667
- "EventSourceMappings":{"shape":"EventSourceMappingsList"}
1668
- }
1669
- },
1670
- "ListFunctionsRequest":{
1671
- "type":"structure",
1672
- "members":{
1673
- "MasterRegion":{
1674
- "shape":"MasterRegion",
1675
- "location":"querystring",
1676
- "locationName":"MasterRegion"
1677
- },
1678
- "FunctionVersion":{
1679
- "shape":"FunctionVersion",
1680
- "location":"querystring",
1681
- "locationName":"FunctionVersion"
1682
- },
1683
- "Marker":{
1684
- "shape":"String",
1685
- "location":"querystring",
1686
- "locationName":"Marker"
1687
- },
1688
- "MaxItems":{
1689
- "shape":"MaxListItems",
1690
- "location":"querystring",
1691
- "locationName":"MaxItems"
1692
- }
1693
- }
1694
- },
1695
- "ListFunctionsResponse":{
1696
- "type":"structure",
1697
- "members":{
1698
- "NextMarker":{"shape":"String"},
1699
- "Functions":{"shape":"FunctionList"}
1700
- }
1701
- },
1702
- "ListLayerVersionsRequest":{
1703
- "type":"structure",
1704
- "required":["LayerName"],
1705
- "members":{
1706
- "CompatibleRuntime":{
1707
- "shape":"Runtime",
1708
- "location":"querystring",
1709
- "locationName":"CompatibleRuntime"
1710
- },
1711
- "LayerName":{
1712
- "shape":"LayerName",
1713
- "location":"uri",
1714
- "locationName":"LayerName"
1715
- },
1716
- "Marker":{
1717
- "shape":"String",
1718
- "location":"querystring",
1719
- "locationName":"Marker"
1720
- },
1721
- "MaxItems":{
1722
- "shape":"MaxLayerListItems",
1723
- "location":"querystring",
1724
- "locationName":"MaxItems"
1725
- }
1726
- }
1727
- },
1728
- "ListLayerVersionsResponse":{
1729
- "type":"structure",
1730
- "members":{
1731
- "NextMarker":{"shape":"String"},
1732
- "LayerVersions":{"shape":"LayerVersionsList"}
1733
- }
1734
- },
1735
- "ListLayersRequest":{
1736
- "type":"structure",
1737
- "members":{
1738
- "CompatibleRuntime":{
1739
- "shape":"Runtime",
1740
- "location":"querystring",
1741
- "locationName":"CompatibleRuntime"
1742
- },
1743
- "Marker":{
1744
- "shape":"String",
1745
- "location":"querystring",
1746
- "locationName":"Marker"
1747
- },
1748
- "MaxItems":{
1749
- "shape":"MaxLayerListItems",
1750
- "location":"querystring",
1751
- "locationName":"MaxItems"
1752
- }
1753
- }
1754
- },
1755
- "ListLayersResponse":{
1756
- "type":"structure",
1757
- "members":{
1758
- "NextMarker":{"shape":"String"},
1759
- "Layers":{"shape":"LayersList"}
1760
- }
1761
- },
1762
- "ListTagsRequest":{
1763
- "type":"structure",
1764
- "required":["Resource"],
1765
- "members":{
1766
- "Resource":{
1767
- "shape":"FunctionArn",
1768
- "location":"uri",
1769
- "locationName":"ARN"
1770
- }
1771
- }
1772
- },
1773
- "ListTagsResponse":{
1774
- "type":"structure",
1775
- "members":{
1776
- "Tags":{"shape":"Tags"}
1777
- }
1778
- },
1779
- "ListVersionsByFunctionRequest":{
1780
- "type":"structure",
1781
- "required":["FunctionName"],
1782
- "members":{
1783
- "FunctionName":{
1784
- "shape":"NamespacedFunctionName",
1785
- "location":"uri",
1786
- "locationName":"FunctionName"
1787
- },
1788
- "Marker":{
1789
- "shape":"String",
1790
- "location":"querystring",
1791
- "locationName":"Marker"
1792
- },
1793
- "MaxItems":{
1794
- "shape":"MaxListItems",
1795
- "location":"querystring",
1796
- "locationName":"MaxItems"
1797
- }
1798
- }
1799
- },
1800
- "ListVersionsByFunctionResponse":{
1801
- "type":"structure",
1802
- "members":{
1803
- "NextMarker":{"shape":"String"},
1804
- "Versions":{"shape":"FunctionList"}
1805
- }
1806
- },
1807
- "LogType":{
1808
- "type":"string",
1809
- "enum":[
1810
- "None",
1811
- "Tail"
1812
- ]
1813
- },
1814
- "Long":{"type":"long"},
1815
- "MasterRegion":{
1816
- "type":"string",
1817
- "pattern":"ALL|[a-z]{2}(-gov)?-[a-z]+-\\d{1}"
1818
- },
1819
- "MaxLayerListItems":{
1820
- "type":"integer",
1821
- "max":50,
1822
- "min":1
1823
- },
1824
- "MaxListItems":{
1825
- "type":"integer",
1826
- "max":10000,
1827
- "min":1
1828
- },
1829
- "MemorySize":{
1830
- "type":"integer",
1831
- "max":3008,
1832
- "min":128
1833
- },
1834
- "NameSpacedFunctionArn":{
1835
- "type":"string",
1836
- "pattern":"arn:(aws[a-zA-Z-]*)?:lambda:[a-z]{2}(-gov)?-[a-z]+-\\d{1}:\\d{12}:function:[a-zA-Z0-9-_\\.]+(:(\\$LATEST|[a-zA-Z0-9-_]+))?"
1837
- },
1838
- "NamespacedFunctionName":{
1839
- "type":"string",
1840
- "max":170,
1841
- "min":1,
1842
- "pattern":"(arn:(aws[a-zA-Z-]*)?:lambda:)?([a-z]{2}(-gov)?-[a-z]+-\\d{1}:)?(\\d{12}:)?(function:)?([a-zA-Z0-9-_\\.]+)(:(\\$LATEST|[a-zA-Z0-9-_]+))?"
1843
- },
1844
- "NamespacedStatementId":{
1845
- "type":"string",
1846
- "max":100,
1847
- "min":1,
1848
- "pattern":"([a-zA-Z0-9-_.]+)"
1849
- },
1850
- "OrganizationId":{
1851
- "type":"string",
1852
- "pattern":"o-[a-z0-9]{10,32}"
1853
- },
1854
- "PolicyLengthExceededException":{
1855
- "type":"structure",
1856
- "members":{
1857
- "Type":{"shape":"String"},
1858
- "message":{"shape":"String"}
1859
- },
1860
- "error":{"httpStatusCode":400},
1861
- "exception":true
1862
- },
1863
- "PreconditionFailedException":{
1864
- "type":"structure",
1865
- "members":{
1866
- "Type":{"shape":"String"},
1867
- "message":{"shape":"String"}
1868
- },
1869
- "error":{"httpStatusCode":412},
1870
- "exception":true
1871
- },
1872
- "Principal":{
1873
- "type":"string",
1874
- "pattern":".*"
1875
- },
1876
- "PublishLayerVersionRequest":{
1877
- "type":"structure",
1878
- "required":[
1879
- "LayerName",
1880
- "Content"
1881
- ],
1882
- "members":{
1883
- "LayerName":{
1884
- "shape":"LayerName",
1885
- "location":"uri",
1886
- "locationName":"LayerName"
1887
- },
1888
- "Description":{"shape":"Description"},
1889
- "Content":{"shape":"LayerVersionContentInput"},
1890
- "CompatibleRuntimes":{"shape":"CompatibleRuntimes"},
1891
- "LicenseInfo":{"shape":"LicenseInfo"}
1892
- }
1893
- },
1894
- "PublishLayerVersionResponse":{
1895
- "type":"structure",
1896
- "members":{
1897
- "Content":{"shape":"LayerVersionContentOutput"},
1898
- "LayerArn":{"shape":"LayerArn"},
1899
- "LayerVersionArn":{"shape":"LayerVersionArn"},
1900
- "Description":{"shape":"Description"},
1901
- "CreatedDate":{"shape":"Timestamp"},
1902
- "Version":{"shape":"LayerVersionNumber"},
1903
- "CompatibleRuntimes":{"shape":"CompatibleRuntimes"},
1904
- "LicenseInfo":{"shape":"LicenseInfo"}
1905
- }
1906
- },
1907
- "PublishVersionRequest":{
1908
- "type":"structure",
1909
- "required":["FunctionName"],
1910
- "members":{
1911
- "FunctionName":{
1912
- "shape":"FunctionName",
1913
- "location":"uri",
1914
- "locationName":"FunctionName"
1915
- },
1916
- "CodeSha256":{"shape":"String"},
1917
- "Description":{"shape":"Description"},
1918
- "RevisionId":{"shape":"String"}
1919
- }
1920
- },
1921
- "PutFunctionConcurrencyRequest":{
1922
- "type":"structure",
1923
- "required":[
1924
- "FunctionName",
1925
- "ReservedConcurrentExecutions"
1926
- ],
1927
- "members":{
1928
- "FunctionName":{
1929
- "shape":"FunctionName",
1930
- "location":"uri",
1931
- "locationName":"FunctionName"
1932
- },
1933
- "ReservedConcurrentExecutions":{"shape":"ReservedConcurrentExecutions"}
1934
- }
1935
- },
1936
- "Qualifier":{
1937
- "type":"string",
1938
- "max":128,
1939
- "min":1,
1940
- "pattern":"(|[a-zA-Z0-9$_-]+)"
1941
- },
1942
- "RemoveLayerVersionPermissionRequest":{
1943
- "type":"structure",
1944
- "required":[
1945
- "LayerName",
1946
- "VersionNumber",
1947
- "StatementId"
1948
- ],
1949
- "members":{
1950
- "LayerName":{
1951
- "shape":"LayerName",
1952
- "location":"uri",
1953
- "locationName":"LayerName"
1954
- },
1955
- "VersionNumber":{
1956
- "shape":"LayerVersionNumber",
1957
- "location":"uri",
1958
- "locationName":"VersionNumber"
1959
- },
1960
- "StatementId":{
1961
- "shape":"StatementId",
1962
- "location":"uri",
1963
- "locationName":"StatementId"
1964
- },
1965
- "RevisionId":{
1966
- "shape":"String",
1967
- "location":"querystring",
1968
- "locationName":"RevisionId"
1969
- }
1970
- }
1971
- },
1972
- "RemovePermissionRequest":{
1973
- "type":"structure",
1974
- "required":[
1975
- "FunctionName",
1976
- "StatementId"
1977
- ],
1978
- "members":{
1979
- "FunctionName":{
1980
- "shape":"FunctionName",
1981
- "location":"uri",
1982
- "locationName":"FunctionName"
1983
- },
1984
- "StatementId":{
1985
- "shape":"NamespacedStatementId",
1986
- "location":"uri",
1987
- "locationName":"StatementId"
1988
- },
1989
- "Qualifier":{
1990
- "shape":"Qualifier",
1991
- "location":"querystring",
1992
- "locationName":"Qualifier"
1993
- },
1994
- "RevisionId":{
1995
- "shape":"String",
1996
- "location":"querystring",
1997
- "locationName":"RevisionId"
1998
- }
1999
- }
2000
- },
2001
- "RequestTooLargeException":{
2002
- "type":"structure",
2003
- "members":{
2004
- "Type":{"shape":"String"},
2005
- "message":{"shape":"String"}
2006
- },
2007
- "error":{"httpStatusCode":413},
2008
- "exception":true
2009
- },
2010
- "ReservedConcurrentExecutions":{
2011
- "type":"integer",
2012
- "min":0
2013
- },
2014
- "ResourceArn":{
2015
- "type":"string",
2016
- "pattern":"(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()"
2017
- },
2018
- "ResourceConflictException":{
2019
- "type":"structure",
2020
- "members":{
2021
- "Type":{"shape":"String"},
2022
- "message":{"shape":"String"}
2023
- },
2024
- "error":{"httpStatusCode":409},
2025
- "exception":true
2026
- },
2027
- "ResourceInUseException":{
2028
- "type":"structure",
2029
- "members":{
2030
- "Type":{"shape":"String"},
2031
- "Message":{"shape":"String"}
2032
- },
2033
- "error":{"httpStatusCode":400},
2034
- "exception":true
2035
- },
2036
- "ResourceNotFoundException":{
2037
- "type":"structure",
2038
- "members":{
2039
- "Type":{"shape":"String"},
2040
- "Message":{"shape":"String"}
2041
- },
2042
- "error":{"httpStatusCode":404},
2043
- "exception":true
2044
- },
2045
- "RoleArn":{
2046
- "type":"string",
2047
- "pattern":"arn:(aws[a-zA-Z-]*)?:iam::\\d{12}:role/?[a-zA-Z_0-9+=,.@\\-_/]+"
2048
- },
2049
- "Runtime":{
2050
- "type":"string",
2051
- "enum":[
2052
- "nodejs",
2053
- "nodejs4.3",
2054
- "nodejs6.10",
2055
- "nodejs8.10",
2056
- "nodejs10.x",
2057
- "java8",
2058
- "python2.7",
2059
- "python3.6",
2060
- "python3.7",
2061
- "dotnetcore1.0",
2062
- "dotnetcore2.0",
2063
- "dotnetcore2.1",
2064
- "nodejs4.3-edge",
2065
- "go1.x",
2066
- "ruby2.5",
2067
- "provided"
2068
- ]
2069
- },
2070
- "S3Bucket":{
2071
- "type":"string",
2072
- "max":63,
2073
- "min":3,
2074
- "pattern":"^[0-9A-Za-z\\.\\-_]*(?<!\\.)$"
2075
- },
2076
- "S3Key":{
2077
- "type":"string",
2078
- "max":1024,
2079
- "min":1
2080
- },
2081
- "S3ObjectVersion":{
2082
- "type":"string",
2083
- "max":1024,
2084
- "min":1
2085
- },
2086
- "SecurityGroupId":{"type":"string"},
2087
- "SecurityGroupIds":{
2088
- "type":"list",
2089
- "member":{"shape":"SecurityGroupId"},
2090
- "max":5
2091
- },
2092
- "SensitiveString":{
2093
- "type":"string",
2094
- "sensitive":true
2095
- },
2096
- "ServiceException":{
2097
- "type":"structure",
2098
- "members":{
2099
- "Type":{"shape":"String"},
2100
- "Message":{"shape":"String"}
2101
- },
2102
- "error":{"httpStatusCode":500},
2103
- "exception":true
2104
- },
2105
- "SourceOwner":{
2106
- "type":"string",
2107
- "pattern":"\\d{12}"
2108
- },
2109
- "StatementId":{
2110
- "type":"string",
2111
- "max":100,
2112
- "min":1,
2113
- "pattern":"([a-zA-Z0-9-_]+)"
2114
- },
2115
- "String":{"type":"string"},
2116
- "SubnetIPAddressLimitReachedException":{
2117
- "type":"structure",
2118
- "members":{
2119
- "Type":{"shape":"String"},
2120
- "Message":{"shape":"String"}
2121
- },
2122
- "error":{"httpStatusCode":502},
2123
- "exception":true
2124
- },
2125
- "SubnetId":{"type":"string"},
2126
- "SubnetIds":{
2127
- "type":"list",
2128
- "member":{"shape":"SubnetId"},
2129
- "max":16
2130
- },
2131
- "TagKey":{"type":"string"},
2132
- "TagKeyList":{
2133
- "type":"list",
2134
- "member":{"shape":"TagKey"}
2135
- },
2136
- "TagResourceRequest":{
2137
- "type":"structure",
2138
- "required":[
2139
- "Resource",
2140
- "Tags"
2141
- ],
2142
- "members":{
2143
- "Resource":{
2144
- "shape":"FunctionArn",
2145
- "location":"uri",
2146
- "locationName":"ARN"
2147
- },
2148
- "Tags":{"shape":"Tags"}
2149
- }
2150
- },
2151
- "TagValue":{"type":"string"},
2152
- "Tags":{
2153
- "type":"map",
2154
- "key":{"shape":"TagKey"},
2155
- "value":{"shape":"TagValue"}
2156
- },
2157
- "ThrottleReason":{
2158
- "type":"string",
2159
- "enum":[
2160
- "ConcurrentInvocationLimitExceeded",
2161
- "FunctionInvocationRateLimitExceeded",
2162
- "ReservedFunctionConcurrentInvocationLimitExceeded",
2163
- "ReservedFunctionInvocationRateLimitExceeded",
2164
- "CallerRateLimitExceeded"
2165
- ]
2166
- },
2167
- "Timeout":{
2168
- "type":"integer",
2169
- "min":1
2170
- },
2171
- "Timestamp":{"type":"string"},
2172
- "TooManyRequestsException":{
2173
- "type":"structure",
2174
- "members":{
2175
- "retryAfterSeconds":{
2176
- "shape":"String",
2177
- "location":"header",
2178
- "locationName":"Retry-After"
2179
- },
2180
- "Type":{"shape":"String"},
2181
- "message":{"shape":"String"},
2182
- "Reason":{"shape":"ThrottleReason"}
2183
- },
2184
- "error":{"httpStatusCode":429},
2185
- "exception":true
2186
- },
2187
- "TracingConfig":{
2188
- "type":"structure",
2189
- "members":{
2190
- "Mode":{"shape":"TracingMode"}
2191
- }
2192
- },
2193
- "TracingConfigResponse":{
2194
- "type":"structure",
2195
- "members":{
2196
- "Mode":{"shape":"TracingMode"}
2197
- }
2198
- },
2199
- "TracingMode":{
2200
- "type":"string",
2201
- "enum":[
2202
- "Active",
2203
- "PassThrough"
2204
- ]
2205
- },
2206
- "UnreservedConcurrentExecutions":{
2207
- "type":"integer",
2208
- "min":0
2209
- },
2210
- "UnsupportedMediaTypeException":{
2211
- "type":"structure",
2212
- "members":{
2213
- "Type":{"shape":"String"},
2214
- "message":{"shape":"String"}
2215
- },
2216
- "error":{"httpStatusCode":415},
2217
- "exception":true
2218
- },
2219
- "UntagResourceRequest":{
2220
- "type":"structure",
2221
- "required":[
2222
- "Resource",
2223
- "TagKeys"
2224
- ],
2225
- "members":{
2226
- "Resource":{
2227
- "shape":"FunctionArn",
2228
- "location":"uri",
2229
- "locationName":"ARN"
2230
- },
2231
- "TagKeys":{
2232
- "shape":"TagKeyList",
2233
- "location":"querystring",
2234
- "locationName":"tagKeys"
2235
- }
2236
- }
2237
- },
2238
- "UpdateAliasRequest":{
2239
- "type":"structure",
2240
- "required":[
2241
- "FunctionName",
2242
- "Name"
2243
- ],
2244
- "members":{
2245
- "FunctionName":{
2246
- "shape":"FunctionName",
2247
- "location":"uri",
2248
- "locationName":"FunctionName"
2249
- },
2250
- "Name":{
2251
- "shape":"Alias",
2252
- "location":"uri",
2253
- "locationName":"Name"
2254
- },
2255
- "FunctionVersion":{"shape":"Version"},
2256
- "Description":{"shape":"Description"},
2257
- "RoutingConfig":{"shape":"AliasRoutingConfiguration"},
2258
- "RevisionId":{"shape":"String"}
2259
- }
2260
- },
2261
- "UpdateEventSourceMappingRequest":{
2262
- "type":"structure",
2263
- "required":["UUID"],
2264
- "members":{
2265
- "UUID":{
2266
- "shape":"String",
2267
- "location":"uri",
2268
- "locationName":"UUID"
2269
- },
2270
- "FunctionName":{"shape":"FunctionName"},
2271
- "Enabled":{"shape":"Enabled"},
2272
- "BatchSize":{"shape":"BatchSize"}
2273
- }
2274
- },
2275
- "UpdateFunctionCodeRequest":{
2276
- "type":"structure",
2277
- "required":["FunctionName"],
2278
- "members":{
2279
- "FunctionName":{
2280
- "shape":"FunctionName",
2281
- "location":"uri",
2282
- "locationName":"FunctionName"
2283
- },
2284
- "ZipFile":{"shape":"Blob"},
2285
- "S3Bucket":{"shape":"S3Bucket"},
2286
- "S3Key":{"shape":"S3Key"},
2287
- "S3ObjectVersion":{"shape":"S3ObjectVersion"},
2288
- "Publish":{"shape":"Boolean"},
2289
- "DryRun":{"shape":"Boolean"},
2290
- "RevisionId":{"shape":"String"}
2291
- }
2292
- },
2293
- "UpdateFunctionConfigurationRequest":{
2294
- "type":"structure",
2295
- "required":["FunctionName"],
2296
- "members":{
2297
- "FunctionName":{
2298
- "shape":"FunctionName",
2299
- "location":"uri",
2300
- "locationName":"FunctionName"
2301
- },
2302
- "Role":{"shape":"RoleArn"},
2303
- "Handler":{"shape":"Handler"},
2304
- "Description":{"shape":"Description"},
2305
- "Timeout":{"shape":"Timeout"},
2306
- "MemorySize":{"shape":"MemorySize"},
2307
- "VpcConfig":{"shape":"VpcConfig"},
2308
- "Environment":{"shape":"Environment"},
2309
- "Runtime":{"shape":"Runtime"},
2310
- "DeadLetterConfig":{"shape":"DeadLetterConfig"},
2311
- "KMSKeyArn":{"shape":"KMSKeyArn"},
2312
- "TracingConfig":{"shape":"TracingConfig"},
2313
- "RevisionId":{"shape":"String"},
2314
- "Layers":{"shape":"LayerList"}
2315
- }
2316
- },
2317
- "Version":{
2318
- "type":"string",
2319
- "max":1024,
2320
- "min":1,
2321
- "pattern":"(\\$LATEST|[0-9]+)"
2322
- },
2323
- "VpcConfig":{
2324
- "type":"structure",
2325
- "members":{
2326
- "SubnetIds":{"shape":"SubnetIds"},
2327
- "SecurityGroupIds":{"shape":"SecurityGroupIds"}
2328
- }
2329
- },
2330
- "VpcConfigResponse":{
2331
- "type":"structure",
2332
- "members":{
2333
- "SubnetIds":{"shape":"SubnetIds"},
2334
- "SecurityGroupIds":{"shape":"SecurityGroupIds"},
2335
- "VpcId":{"shape":"VpcId"}
2336
- }
2337
- },
2338
- "VpcId":{"type":"string"},
2339
- "Weight":{
2340
- "type":"double",
2341
- "max":1.0,
2342
- "min":0.0
2343
- }
2344
- }
2345
- }