aws-sdk-core 2.11.436 → 3.89.0

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