aws-sdk-core 2.11.406 → 3.77.0

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