aws-sdk-core 2.4.0 → 3.53.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (487) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +96 -408
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +41 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  16. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +22 -5
  18. data/lib/aws-sdk-core/ecs_credentials.rb +3 -3
  19. data/lib/aws-sdk-core/endpoint_cache.rb +188 -0
  20. data/lib/aws-sdk-core/errors.rb +174 -10
  21. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  22. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  23. data/lib/aws-sdk-core/instance_profile_credentials.rb +21 -12
  24. data/lib/aws-sdk-core/json.rb +4 -5
  25. data/lib/aws-sdk-core/json/builder.rb +4 -2
  26. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  27. data/lib/aws-sdk-core/json/handler.rb +22 -3
  28. data/lib/aws-sdk-core/json/parser.rb +1 -1
  29. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  30. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  31. data/lib/aws-sdk-core/pager.rb +30 -25
  32. data/lib/aws-sdk-core/param_converter.rb +3 -3
  33. data/lib/aws-sdk-core/param_validator.rb +56 -21
  34. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  35. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  36. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  37. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  38. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +256 -0
  39. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  40. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  41. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +160 -0
  42. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  43. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  44. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  45. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +41 -0
  46. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  47. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  48. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  49. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  50. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  51. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  52. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  53. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  54. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  55. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  56. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +28 -16
  57. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  58. data/lib/aws-sdk-core/plugins/retry_errors.rb +97 -23
  59. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  60. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  61. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  62. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  63. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  64. data/lib/aws-sdk-core/process_credentials.rb +76 -0
  65. data/lib/aws-sdk-core/query.rb +5 -0
  66. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  67. data/lib/aws-sdk-core/query/handler.rb +20 -16
  68. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  69. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  70. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  71. data/lib/aws-sdk-core/rest.rb +10 -0
  72. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  73. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  74. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  75. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  76. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  77. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  78. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  79. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  80. data/lib/aws-sdk-core/shared_config.rb +132 -18
  81. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  82. data/lib/aws-sdk-core/structure.rb +21 -11
  83. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  84. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  85. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  88. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  89. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  90. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  91. data/lib/aws-sdk-core/util.rb +66 -0
  92. data/lib/aws-sdk-core/waiters.rb +3 -0
  93. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  94. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  95. data/lib/aws-sdk-core/xml.rb +9 -0
  96. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  97. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  98. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  99. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  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 +1761 -0
  103. data/lib/aws-sdk-sts/client_api.rb +304 -0
  104. data/lib/aws-sdk-sts/customizations.rb +0 -0
  105. data/lib/aws-sdk-sts/errors.rb +142 -0
  106. data/lib/aws-sdk-sts/resource.rb +23 -0
  107. data/lib/aws-sdk-sts/types.rb +1279 -0
  108. data/lib/seahorse.rb +60 -60
  109. data/lib/seahorse/client/async_base.rb +50 -0
  110. data/lib/seahorse/client/async_response.rb +62 -0
  111. data/lib/seahorse/client/base.rb +2 -8
  112. data/lib/seahorse/client/configuration.rb +9 -1
  113. data/lib/seahorse/client/h2/connection.rb +244 -0
  114. data/lib/seahorse/client/h2/handler.rb +151 -0
  115. data/lib/seahorse/client/http/async_response.rb +42 -0
  116. data/lib/seahorse/client/http/response.rb +10 -5
  117. data/lib/seahorse/client/logging/formatter.rb +5 -1
  118. data/lib/seahorse/client/logging/handler.rb +2 -0
  119. data/lib/seahorse/client/net_http/connection_pool.rb +27 -11
  120. data/lib/seahorse/client/net_http/handler.rb +10 -2
  121. data/lib/seahorse/client/net_http/patches.rb +9 -1
  122. data/lib/seahorse/client/networking_error.rb +28 -0
  123. data/lib/seahorse/client/plugin.rb +66 -6
  124. data/lib/seahorse/client/plugin_list.rb +3 -1
  125. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  126. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  127. data/lib/seahorse/client/plugins/h2.rb +64 -0
  128. data/lib/seahorse/client/plugins/logging.rb +17 -19
  129. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  130. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  131. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  132. data/lib/seahorse/client/request_context.rb +5 -0
  133. data/lib/seahorse/client/response.rb +9 -20
  134. data/lib/seahorse/model/api.rb +37 -0
  135. data/lib/seahorse/model/authorizer.rb +21 -0
  136. data/lib/seahorse/model/operation.rb +20 -0
  137. data/lib/seahorse/model/shapes.rb +44 -2
  138. data/lib/seahorse/util.rb +1 -21
  139. metadata +112 -359
  140. data/apis/acm/2015-12-08/api-2.json +0 -495
  141. data/apis/acm/2015-12-08/examples-1.json +0 -5
  142. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  143. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  144. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  145. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  146. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  147. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  148. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  149. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  150. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  151. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  152. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  153. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  154. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  155. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  156. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  157. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  158. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  159. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  160. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  161. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  162. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  163. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  164. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  165. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  166. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  167. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  168. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  169. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  170. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  171. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  172. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  173. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  174. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  175. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  176. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  177. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  178. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  179. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  180. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  181. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  182. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  183. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  184. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  185. data/apis/config/2014-11-12/api-2.json +0 -1303
  186. data/apis/config/2014-11-12/examples-1.json +0 -5
  187. data/apis/config/2014-11-12/paginators-1.json +0 -10
  188. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  189. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  190. data/apis/devicefarm/2015-06-23/api-2.json +0 -2030
  191. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  192. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  193. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  194. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  195. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  196. data/apis/discovery/2015-11-01/api-2.json +0 -556
  197. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  198. data/apis/dms/2016-01-01/api-2.json +0 -1469
  199. data/apis/dms/2016-01-01/examples-1.json +0 -5
  200. data/apis/ds/2015-04-16/api-2.json +0 -1674
  201. data/apis/ds/2015-04-16/examples-1.json +0 -5
  202. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  203. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  204. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  205. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  206. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  207. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  208. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  209. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  210. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  211. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  212. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  213. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  214. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  215. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  216. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  217. data/apis/ecr/2015-09-21/api-2.json +0 -849
  218. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  219. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  220. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  221. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  222. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  223. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  224. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  225. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  226. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  227. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  228. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  229. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  230. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  231. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  232. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  233. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  234. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  235. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  236. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  237. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  238. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  239. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  240. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  241. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  242. data/apis/email/2010-12-01/api-2.json +0 -1791
  243. data/apis/email/2010-12-01/examples-1.json +0 -5
  244. data/apis/email/2010-12-01/paginators-1.json +0 -13
  245. data/apis/email/2010-12-01/waiters-2.json +0 -18
  246. data/apis/es/2015-01-01/api-2.json +0 -764
  247. data/apis/events/2015-10-07/api-2.json +0 -643
  248. data/apis/events/2015-10-07/examples-1.json +0 -5
  249. data/apis/firehose/2015-08-04/api-2.json +0 -719
  250. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  251. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  252. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  253. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  254. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  255. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  256. data/apis/iam/2010-05-08/api-2.json +0 -4514
  257. data/apis/iam/2010-05-08/examples-1.json +0 -5
  258. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  259. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  260. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  261. data/apis/importexport/2010-06-01/api-2.json +0 -666
  262. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  263. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  264. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  265. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  266. data/apis/iot/2015-05-28/api-2.json +0 -3800
  267. data/apis/iot/2015-05-28/examples-1.json +0 -5
  268. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  269. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  270. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  271. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  272. data/apis/kms/2014-11-01/api-2.json +0 -1209
  273. data/apis/kms/2014-11-01/examples-1.json +0 -5
  274. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  275. data/apis/lambda/2014-11-11/api-2.json +0 -667
  276. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  277. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  278. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  279. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  280. data/apis/logs/2014-03-28/api-2.json +0 -1138
  281. data/apis/logs/2014-03-28/examples-1.json +0 -5
  282. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  283. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  284. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  285. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  286. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  287. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  288. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  289. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  290. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  291. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  292. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  293. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  294. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  295. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  296. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  297. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  298. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  299. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  300. data/apis/rds/2014-10-31/api-2.json +0 -4757
  301. data/apis/rds/2014-10-31/examples-1.json +0 -5
  302. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  303. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  304. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  305. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  306. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  307. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  308. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  309. data/apis/route53/2013-04-01/api-2.json +0 -3245
  310. data/apis/route53/2013-04-01/examples-1.json +0 -5
  311. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  312. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  313. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  314. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  315. data/apis/s3/2006-03-01/api-2.json +0 -4517
  316. data/apis/s3/2006-03-01/examples-1.json +0 -5
  317. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  318. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  319. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  320. data/apis/sdb/2009-04-15/api-2.json +0 -954
  321. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  322. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  323. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  324. data/apis/sns/2010-03-31/api-2.json +0 -1139
  325. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  326. data/apis/sns/2010-03-31/resources-1.json +0 -327
  327. data/apis/sqs/2012-11-05/api-2.json +0 -950
  328. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  329. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  330. data/apis/ssm/2014-11-06/api-2.json +0 -1796
  331. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  332. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  333. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  334. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  335. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  336. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  337. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  338. data/apis/sts/2011-06-15/api-2.json +0 -521
  339. data/apis/sts/2011-06-15/examples-1.json +0 -5
  340. data/apis/support/2013-04-15/api-2.json +0 -869
  341. data/apis/support/2013-04-15/paginators-1.json +0 -25
  342. data/apis/swf/2012-01-25/api-2.json +0 -2838
  343. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  344. data/apis/waf/2015-08-24/api-2.json +0 -1959
  345. data/apis/waf/2015-08-24/examples-1.json +0 -5
  346. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  347. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  348. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  349. data/bin/aws.rb +0 -180
  350. data/endpoints.json +0 -1460
  351. data/lib/aws-sdk-core/acm.rb +0 -6
  352. data/lib/aws-sdk-core/api/builder.rb +0 -106
  353. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  354. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  355. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  356. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  357. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  358. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  359. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  360. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  361. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  362. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  363. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  364. data/lib/aws-sdk-core/apigateway.rb +0 -6
  365. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  366. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  367. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  368. data/lib/aws-sdk-core/checksums.rb +0 -51
  369. data/lib/aws-sdk-core/client.rb +0 -57
  370. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  371. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  372. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  373. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  374. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  375. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  376. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  377. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  378. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  379. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  380. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  381. data/lib/aws-sdk-core/codecommit.rb +0 -6
  382. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  383. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  384. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  385. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  386. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  387. data/lib/aws-sdk-core/configservice.rb +0 -6
  388. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  389. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  390. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  391. data/lib/aws-sdk-core/directconnect.rb +0 -6
  392. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  393. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  394. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  395. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  396. data/lib/aws-sdk-core/ec2.rb +0 -8
  397. data/lib/aws-sdk-core/ecr.rb +0 -5
  398. data/lib/aws-sdk-core/ecs.rb +0 -7
  399. data/lib/aws-sdk-core/efs.rb +0 -5
  400. data/lib/aws-sdk-core/elasticache.rb +0 -7
  401. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  402. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  403. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  404. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  405. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  406. data/lib/aws-sdk-core/emr.rb +0 -7
  407. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  408. data/lib/aws-sdk-core/firehose.rb +0 -4
  409. data/lib/aws-sdk-core/gamelift.rb +0 -5
  410. data/lib/aws-sdk-core/glacier.rb +0 -7
  411. data/lib/aws-sdk-core/iam.rb +0 -8
  412. data/lib/aws-sdk-core/importexport.rb +0 -5
  413. data/lib/aws-sdk-core/inspector.rb +0 -5
  414. data/lib/aws-sdk-core/iot.rb +0 -5
  415. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  416. data/lib/aws-sdk-core/kinesis.rb +0 -7
  417. data/lib/aws-sdk-core/kms.rb +0 -6
  418. data/lib/aws-sdk-core/lambda.rb +0 -6
  419. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  420. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  421. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  422. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  423. data/lib/aws-sdk-core/opsworks.rb +0 -8
  424. data/lib/aws-sdk-core/partitions.rb +0 -174
  425. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  426. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  427. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  428. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  429. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  430. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  431. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  432. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  433. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  434. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  435. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  436. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  437. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  438. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  439. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  440. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  441. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  442. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  443. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  444. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  445. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  446. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  447. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  448. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  449. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  450. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  451. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  452. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  453. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  454. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  455. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  456. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  457. data/lib/aws-sdk-core/rds.rb +0 -8
  458. data/lib/aws-sdk-core/redshift.rb +0 -7
  459. data/lib/aws-sdk-core/route53.rb +0 -7
  460. data/lib/aws-sdk-core/route53domains.rb +0 -5
  461. data/lib/aws-sdk-core/s3.rb +0 -26
  462. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  463. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  464. data/lib/aws-sdk-core/service.rb +0 -4
  465. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  466. data/lib/aws-sdk-core/ses.rb +0 -7
  467. data/lib/aws-sdk-core/signers/base.rb +0 -31
  468. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  469. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  470. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  471. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  472. data/lib/aws-sdk-core/simpledb.rb +0 -5
  473. data/lib/aws-sdk-core/sns.rb +0 -6
  474. data/lib/aws-sdk-core/sqs.rb +0 -6
  475. data/lib/aws-sdk-core/ssm.rb +0 -6
  476. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  477. data/lib/aws-sdk-core/sts.rb +0 -5
  478. data/lib/aws-sdk-core/support.rb +0 -5
  479. data/lib/aws-sdk-core/swf.rb +0 -5
  480. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  481. data/lib/aws-sdk-core/version.rb +0 -3
  482. data/lib/aws-sdk-core/waf.rb +0 -5
  483. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  484. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  485. data/lib/aws-sdk-core/workspaces.rb +0 -6
  486. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  487. data/service-models.json +0 -285
@@ -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,1342 +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
- "signatureVersion":"v4"
9
- },
10
- "operations":{
11
- "AddPermission":{
12
- "name":"AddPermission",
13
- "http":{
14
- "method":"POST",
15
- "requestUri":"/2015-03-31/functions/{FunctionName}/policy",
16
- "responseCode":201
17
- },
18
- "input":{"shape":"AddPermissionRequest"},
19
- "output":{"shape":"AddPermissionResponse"},
20
- "errors":[
21
- {"shape":"ServiceException"},
22
- {"shape":"ResourceNotFoundException"},
23
- {"shape":"ResourceConflictException"},
24
- {"shape":"InvalidParameterValueException"},
25
- {"shape":"PolicyLengthExceededException"},
26
- {"shape":"TooManyRequestsException"}
27
- ]
28
- },
29
- "CreateAlias":{
30
- "name":"CreateAlias",
31
- "http":{
32
- "method":"POST",
33
- "requestUri":"/2015-03-31/functions/{FunctionName}/aliases",
34
- "responseCode":201
35
- },
36
- "input":{"shape":"CreateAliasRequest"},
37
- "output":{"shape":"AliasConfiguration"},
38
- "errors":[
39
- {"shape":"ServiceException"},
40
- {"shape":"ResourceNotFoundException"},
41
- {"shape":"ResourceConflictException"},
42
- {"shape":"InvalidParameterValueException"},
43
- {"shape":"TooManyRequestsException"}
44
- ]
45
- },
46
- "CreateEventSourceMapping":{
47
- "name":"CreateEventSourceMapping",
48
- "http":{
49
- "method":"POST",
50
- "requestUri":"/2015-03-31/event-source-mappings/",
51
- "responseCode":202
52
- },
53
- "input":{"shape":"CreateEventSourceMappingRequest"},
54
- "output":{"shape":"EventSourceMappingConfiguration"},
55
- "errors":[
56
- {"shape":"ServiceException"},
57
- {"shape":"InvalidParameterValueException"},
58
- {"shape":"ResourceConflictException"},
59
- {"shape":"TooManyRequestsException"},
60
- {"shape":"ResourceNotFoundException"}
61
- ]
62
- },
63
- "CreateFunction":{
64
- "name":"CreateFunction",
65
- "http":{
66
- "method":"POST",
67
- "requestUri":"/2015-03-31/functions",
68
- "responseCode":201
69
- },
70
- "input":{"shape":"CreateFunctionRequest"},
71
- "output":{"shape":"FunctionConfiguration"},
72
- "errors":[
73
- {"shape":"ServiceException"},
74
- {"shape":"InvalidParameterValueException"},
75
- {"shape":"ResourceNotFoundException"},
76
- {"shape":"ResourceConflictException"},
77
- {"shape":"TooManyRequestsException"},
78
- {"shape":"CodeStorageExceededException"}
79
- ]
80
- },
81
- "DeleteAlias":{
82
- "name":"DeleteAlias",
83
- "http":{
84
- "method":"DELETE",
85
- "requestUri":"/2015-03-31/functions/{FunctionName}/aliases/{Name}",
86
- "responseCode":204
87
- },
88
- "input":{"shape":"DeleteAliasRequest"},
89
- "errors":[
90
- {"shape":"ServiceException"},
91
- {"shape":"InvalidParameterValueException"},
92
- {"shape":"TooManyRequestsException"}
93
- ]
94
- },
95
- "DeleteEventSourceMapping":{
96
- "name":"DeleteEventSourceMapping",
97
- "http":{
98
- "method":"DELETE",
99
- "requestUri":"/2015-03-31/event-source-mappings/{UUID}",
100
- "responseCode":202
101
- },
102
- "input":{"shape":"DeleteEventSourceMappingRequest"},
103
- "output":{"shape":"EventSourceMappingConfiguration"},
104
- "errors":[
105
- {"shape":"ServiceException"},
106
- {"shape":"ResourceNotFoundException"},
107
- {"shape":"InvalidParameterValueException"},
108
- {"shape":"TooManyRequestsException"}
109
- ]
110
- },
111
- "DeleteFunction":{
112
- "name":"DeleteFunction",
113
- "http":{
114
- "method":"DELETE",
115
- "requestUri":"/2015-03-31/functions/{FunctionName}",
116
- "responseCode":204
117
- },
118
- "input":{"shape":"DeleteFunctionRequest"},
119
- "errors":[
120
- {"shape":"ServiceException"},
121
- {"shape":"ResourceNotFoundException"},
122
- {"shape":"TooManyRequestsException"},
123
- {"shape":"InvalidParameterValueException"},
124
- {"shape":"ResourceConflictException"}
125
- ]
126
- },
127
- "GetAlias":{
128
- "name":"GetAlias",
129
- "http":{
130
- "method":"GET",
131
- "requestUri":"/2015-03-31/functions/{FunctionName}/aliases/{Name}",
132
- "responseCode":200
133
- },
134
- "input":{"shape":"GetAliasRequest"},
135
- "output":{"shape":"AliasConfiguration"},
136
- "errors":[
137
- {"shape":"ServiceException"},
138
- {"shape":"ResourceNotFoundException"},
139
- {"shape":"InvalidParameterValueException"},
140
- {"shape":"TooManyRequestsException"}
141
- ]
142
- },
143
- "GetEventSourceMapping":{
144
- "name":"GetEventSourceMapping",
145
- "http":{
146
- "method":"GET",
147
- "requestUri":"/2015-03-31/event-source-mappings/{UUID}",
148
- "responseCode":200
149
- },
150
- "input":{"shape":"GetEventSourceMappingRequest"},
151
- "output":{"shape":"EventSourceMappingConfiguration"},
152
- "errors":[
153
- {"shape":"ServiceException"},
154
- {"shape":"ResourceNotFoundException"},
155
- {"shape":"InvalidParameterValueException"},
156
- {"shape":"TooManyRequestsException"}
157
- ]
158
- },
159
- "GetFunction":{
160
- "name":"GetFunction",
161
- "http":{
162
- "method":"GET",
163
- "requestUri":"/2015-03-31/functions/{FunctionName}",
164
- "responseCode":200
165
- },
166
- "input":{"shape":"GetFunctionRequest"},
167
- "output":{"shape":"GetFunctionResponse"},
168
- "errors":[
169
- {"shape":"ServiceException"},
170
- {"shape":"ResourceNotFoundException"},
171
- {"shape":"TooManyRequestsException"},
172
- {"shape":"InvalidParameterValueException"}
173
- ]
174
- },
175
- "GetFunctionConfiguration":{
176
- "name":"GetFunctionConfiguration",
177
- "http":{
178
- "method":"GET",
179
- "requestUri":"/2015-03-31/functions/{FunctionName}/configuration",
180
- "responseCode":200
181
- },
182
- "input":{"shape":"GetFunctionConfigurationRequest"},
183
- "output":{"shape":"FunctionConfiguration"},
184
- "errors":[
185
- {"shape":"ServiceException"},
186
- {"shape":"ResourceNotFoundException"},
187
- {"shape":"TooManyRequestsException"},
188
- {"shape":"InvalidParameterValueException"}
189
- ]
190
- },
191
- "GetPolicy":{
192
- "name":"GetPolicy",
193
- "http":{
194
- "method":"GET",
195
- "requestUri":"/2015-03-31/functions/{FunctionName}/policy",
196
- "responseCode":200
197
- },
198
- "input":{"shape":"GetPolicyRequest"},
199
- "output":{"shape":"GetPolicyResponse"},
200
- "errors":[
201
- {"shape":"ServiceException"},
202
- {"shape":"ResourceNotFoundException"},
203
- {"shape":"TooManyRequestsException"},
204
- {"shape":"InvalidParameterValueException"}
205
- ]
206
- },
207
- "Invoke":{
208
- "name":"Invoke",
209
- "http":{
210
- "method":"POST",
211
- "requestUri":"/2015-03-31/functions/{FunctionName}/invocations"
212
- },
213
- "input":{"shape":"InvocationRequest"},
214
- "output":{"shape":"InvocationResponse"},
215
- "errors":[
216
- {"shape":"ServiceException"},
217
- {"shape":"ResourceNotFoundException"},
218
- {"shape":"InvalidRequestContentException"},
219
- {"shape":"RequestTooLargeException"},
220
- {"shape":"UnsupportedMediaTypeException"},
221
- {"shape":"TooManyRequestsException"},
222
- {"shape":"InvalidParameterValueException"},
223
- {"shape":"EC2UnexpectedException"},
224
- {"shape":"SubnetIPAddressLimitReachedException"},
225
- {"shape":"ENILimitReachedException"},
226
- {"shape":"EC2ThrottledException"},
227
- {"shape":"EC2AccessDeniedException"},
228
- {"shape":"InvalidSubnetIDException"},
229
- {"shape":"InvalidSecurityGroupIDException"}
230
- ]
231
- },
232
- "InvokeAsync":{
233
- "name":"InvokeAsync",
234
- "http":{
235
- "method":"POST",
236
- "requestUri":"/2014-11-13/functions/{FunctionName}/invoke-async/",
237
- "responseCode":202
238
- },
239
- "input":{"shape":"InvokeAsyncRequest"},
240
- "output":{"shape":"InvokeAsyncResponse"},
241
- "errors":[
242
- {"shape":"ServiceException"},
243
- {"shape":"ResourceNotFoundException"},
244
- {"shape":"InvalidRequestContentException"}
245
- ],
246
- "deprecated":true
247
- },
248
- "ListAliases":{
249
- "name":"ListAliases",
250
- "http":{
251
- "method":"GET",
252
- "requestUri":"/2015-03-31/functions/{FunctionName}/aliases",
253
- "responseCode":200
254
- },
255
- "input":{"shape":"ListAliasesRequest"},
256
- "output":{"shape":"ListAliasesResponse"},
257
- "errors":[
258
- {"shape":"ServiceException"},
259
- {"shape":"ResourceNotFoundException"},
260
- {"shape":"InvalidParameterValueException"},
261
- {"shape":"TooManyRequestsException"}
262
- ]
263
- },
264
- "ListEventSourceMappings":{
265
- "name":"ListEventSourceMappings",
266
- "http":{
267
- "method":"GET",
268
- "requestUri":"/2015-03-31/event-source-mappings/",
269
- "responseCode":200
270
- },
271
- "input":{"shape":"ListEventSourceMappingsRequest"},
272
- "output":{"shape":"ListEventSourceMappingsResponse"},
273
- "errors":[
274
- {"shape":"ServiceException"},
275
- {"shape":"ResourceNotFoundException"},
276
- {"shape":"InvalidParameterValueException"},
277
- {"shape":"TooManyRequestsException"}
278
- ]
279
- },
280
- "ListFunctions":{
281
- "name":"ListFunctions",
282
- "http":{
283
- "method":"GET",
284
- "requestUri":"/2015-03-31/functions/",
285
- "responseCode":200
286
- },
287
- "input":{"shape":"ListFunctionsRequest"},
288
- "output":{"shape":"ListFunctionsResponse"},
289
- "errors":[
290
- {"shape":"ServiceException"},
291
- {"shape":"TooManyRequestsException"}
292
- ]
293
- },
294
- "ListVersionsByFunction":{
295
- "name":"ListVersionsByFunction",
296
- "http":{
297
- "method":"GET",
298
- "requestUri":"/2015-03-31/functions/{FunctionName}/versions",
299
- "responseCode":200
300
- },
301
- "input":{"shape":"ListVersionsByFunctionRequest"},
302
- "output":{"shape":"ListVersionsByFunctionResponse"},
303
- "errors":[
304
- {"shape":"ServiceException"},
305
- {"shape":"ResourceNotFoundException"},
306
- {"shape":"InvalidParameterValueException"},
307
- {"shape":"TooManyRequestsException"}
308
- ]
309
- },
310
- "PublishVersion":{
311
- "name":"PublishVersion",
312
- "http":{
313
- "method":"POST",
314
- "requestUri":"/2015-03-31/functions/{FunctionName}/versions",
315
- "responseCode":201
316
- },
317
- "input":{"shape":"PublishVersionRequest"},
318
- "output":{"shape":"FunctionConfiguration"},
319
- "errors":[
320
- {"shape":"ServiceException"},
321
- {"shape":"ResourceNotFoundException"},
322
- {"shape":"InvalidParameterValueException"},
323
- {"shape":"TooManyRequestsException"},
324
- {"shape":"CodeStorageExceededException"}
325
- ]
326
- },
327
- "RemovePermission":{
328
- "name":"RemovePermission",
329
- "http":{
330
- "method":"DELETE",
331
- "requestUri":"/2015-03-31/functions/{FunctionName}/policy/{StatementId}",
332
- "responseCode":204
333
- },
334
- "input":{"shape":"RemovePermissionRequest"},
335
- "errors":[
336
- {"shape":"ServiceException"},
337
- {"shape":"ResourceNotFoundException"},
338
- {"shape":"InvalidParameterValueException"},
339
- {"shape":"TooManyRequestsException"}
340
- ]
341
- },
342
- "UpdateAlias":{
343
- "name":"UpdateAlias",
344
- "http":{
345
- "method":"PUT",
346
- "requestUri":"/2015-03-31/functions/{FunctionName}/aliases/{Name}",
347
- "responseCode":200
348
- },
349
- "input":{"shape":"UpdateAliasRequest"},
350
- "output":{"shape":"AliasConfiguration"},
351
- "errors":[
352
- {"shape":"ServiceException"},
353
- {"shape":"ResourceNotFoundException"},
354
- {"shape":"InvalidParameterValueException"},
355
- {"shape":"TooManyRequestsException"}
356
- ]
357
- },
358
- "UpdateEventSourceMapping":{
359
- "name":"UpdateEventSourceMapping",
360
- "http":{
361
- "method":"PUT",
362
- "requestUri":"/2015-03-31/event-source-mappings/{UUID}",
363
- "responseCode":202
364
- },
365
- "input":{"shape":"UpdateEventSourceMappingRequest"},
366
- "output":{"shape":"EventSourceMappingConfiguration"},
367
- "errors":[
368
- {"shape":"ServiceException"},
369
- {"shape":"ResourceNotFoundException"},
370
- {"shape":"InvalidParameterValueException"},
371
- {"shape":"TooManyRequestsException"},
372
- {"shape":"ResourceConflictException"}
373
- ]
374
- },
375
- "UpdateFunctionCode":{
376
- "name":"UpdateFunctionCode",
377
- "http":{
378
- "method":"PUT",
379
- "requestUri":"/2015-03-31/functions/{FunctionName}/code",
380
- "responseCode":200
381
- },
382
- "input":{"shape":"UpdateFunctionCodeRequest"},
383
- "output":{"shape":"FunctionConfiguration"},
384
- "errors":[
385
- {"shape":"ServiceException"},
386
- {"shape":"ResourceNotFoundException"},
387
- {"shape":"InvalidParameterValueException"},
388
- {"shape":"TooManyRequestsException"},
389
- {"shape":"CodeStorageExceededException"}
390
- ]
391
- },
392
- "UpdateFunctionConfiguration":{
393
- "name":"UpdateFunctionConfiguration",
394
- "http":{
395
- "method":"PUT",
396
- "requestUri":"/2015-03-31/functions/{FunctionName}/configuration",
397
- "responseCode":200
398
- },
399
- "input":{"shape":"UpdateFunctionConfigurationRequest"},
400
- "output":{"shape":"FunctionConfiguration"},
401
- "errors":[
402
- {"shape":"ServiceException"},
403
- {"shape":"ResourceNotFoundException"},
404
- {"shape":"InvalidParameterValueException"},
405
- {"shape":"TooManyRequestsException"}
406
- ]
407
- }
408
- },
409
- "shapes":{
410
- "Action":{
411
- "type":"string",
412
- "pattern":"(lambda:[*]|lambda:[a-zA-Z]+|[*])"
413
- },
414
- "AddPermissionRequest":{
415
- "type":"structure",
416
- "required":[
417
- "FunctionName",
418
- "StatementId",
419
- "Action",
420
- "Principal"
421
- ],
422
- "members":{
423
- "FunctionName":{
424
- "shape":"FunctionName",
425
- "location":"uri",
426
- "locationName":"FunctionName"
427
- },
428
- "StatementId":{"shape":"StatementId"},
429
- "Action":{"shape":"Action"},
430
- "Principal":{"shape":"Principal"},
431
- "SourceArn":{"shape":"Arn"},
432
- "SourceAccount":{"shape":"SourceOwner"},
433
- "EventSourceToken":{"shape":"EventSourceToken"},
434
- "Qualifier":{
435
- "shape":"Qualifier",
436
- "location":"querystring",
437
- "locationName":"Qualifier"
438
- }
439
- }
440
- },
441
- "AddPermissionResponse":{
442
- "type":"structure",
443
- "members":{
444
- "Statement":{"shape":"String"}
445
- }
446
- },
447
- "Alias":{
448
- "type":"string",
449
- "max":128,
450
- "min":1,
451
- "pattern":"(?!^[0-9]+$)([a-zA-Z0-9-_]+)"
452
- },
453
- "AliasConfiguration":{
454
- "type":"structure",
455
- "members":{
456
- "AliasArn":{"shape":"FunctionArn"},
457
- "Name":{"shape":"Alias"},
458
- "FunctionVersion":{"shape":"Version"},
459
- "Description":{"shape":"Description"}
460
- }
461
- },
462
- "AliasList":{
463
- "type":"list",
464
- "member":{"shape":"AliasConfiguration"}
465
- },
466
- "Arn":{
467
- "type":"string",
468
- "pattern":"arn:aws:([a-zA-Z0-9\\-])+:([a-z]{2}-[a-z]+-\\d{1})?:(\\d{12})?:(.*)"
469
- },
470
- "BatchSize":{
471
- "type":"integer",
472
- "max":10000,
473
- "min":1
474
- },
475
- "Blob":{"type":"blob"},
476
- "BlobStream":{
477
- "type":"blob",
478
- "streaming":true
479
- },
480
- "Boolean":{"type":"boolean"},
481
- "CodeStorageExceededException":{
482
- "type":"structure",
483
- "members":{
484
- "Type":{"shape":"String"},
485
- "message":{"shape":"String"}
486
- },
487
- "error":{"httpStatusCode":400},
488
- "exception":true
489
- },
490
- "CreateAliasRequest":{
491
- "type":"structure",
492
- "required":[
493
- "FunctionName",
494
- "Name",
495
- "FunctionVersion"
496
- ],
497
- "members":{
498
- "FunctionName":{
499
- "shape":"FunctionName",
500
- "location":"uri",
501
- "locationName":"FunctionName"
502
- },
503
- "Name":{"shape":"Alias"},
504
- "FunctionVersion":{"shape":"Version"},
505
- "Description":{"shape":"Description"}
506
- }
507
- },
508
- "CreateEventSourceMappingRequest":{
509
- "type":"structure",
510
- "required":[
511
- "EventSourceArn",
512
- "FunctionName",
513
- "StartingPosition"
514
- ],
515
- "members":{
516
- "EventSourceArn":{"shape":"Arn"},
517
- "FunctionName":{"shape":"FunctionName"},
518
- "Enabled":{"shape":"Enabled"},
519
- "BatchSize":{"shape":"BatchSize"},
520
- "StartingPosition":{"shape":"EventSourcePosition"}
521
- }
522
- },
523
- "CreateFunctionRequest":{
524
- "type":"structure",
525
- "required":[
526
- "FunctionName",
527
- "Runtime",
528
- "Role",
529
- "Handler",
530
- "Code"
531
- ],
532
- "members":{
533
- "FunctionName":{"shape":"FunctionName"},
534
- "Runtime":{"shape":"Runtime"},
535
- "Role":{"shape":"RoleArn"},
536
- "Handler":{"shape":"Handler"},
537
- "Code":{"shape":"FunctionCode"},
538
- "Description":{"shape":"Description"},
539
- "Timeout":{"shape":"Timeout"},
540
- "MemorySize":{"shape":"MemorySize"},
541
- "Publish":{"shape":"Boolean"},
542
- "VpcConfig":{"shape":"VpcConfig"}
543
- }
544
- },
545
- "Date":{"type":"timestamp"},
546
- "DeleteAliasRequest":{
547
- "type":"structure",
548
- "required":[
549
- "FunctionName",
550
- "Name"
551
- ],
552
- "members":{
553
- "FunctionName":{
554
- "shape":"FunctionName",
555
- "location":"uri",
556
- "locationName":"FunctionName"
557
- },
558
- "Name":{
559
- "shape":"Alias",
560
- "location":"uri",
561
- "locationName":"Name"
562
- }
563
- }
564
- },
565
- "DeleteEventSourceMappingRequest":{
566
- "type":"structure",
567
- "required":["UUID"],
568
- "members":{
569
- "UUID":{
570
- "shape":"String",
571
- "location":"uri",
572
- "locationName":"UUID"
573
- }
574
- }
575
- },
576
- "DeleteFunctionRequest":{
577
- "type":"structure",
578
- "required":["FunctionName"],
579
- "members":{
580
- "FunctionName":{
581
- "shape":"FunctionName",
582
- "location":"uri",
583
- "locationName":"FunctionName"
584
- },
585
- "Qualifier":{
586
- "shape":"Qualifier",
587
- "location":"querystring",
588
- "locationName":"Qualifier"
589
- }
590
- }
591
- },
592
- "Description":{
593
- "type":"string",
594
- "max":256,
595
- "min":0
596
- },
597
- "EC2AccessDeniedException":{
598
- "type":"structure",
599
- "members":{
600
- "Type":{"shape":"String"},
601
- "Message":{"shape":"String"}
602
- },
603
- "error":{"httpStatusCode":502},
604
- "exception":true
605
- },
606
- "EC2ThrottledException":{
607
- "type":"structure",
608
- "members":{
609
- "Type":{"shape":"String"},
610
- "Message":{"shape":"String"}
611
- },
612
- "error":{"httpStatusCode":502},
613
- "exception":true
614
- },
615
- "EC2UnexpectedException":{
616
- "type":"structure",
617
- "members":{
618
- "Type":{"shape":"String"},
619
- "Message":{"shape":"String"},
620
- "EC2ErrorCode":{"shape":"String"}
621
- },
622
- "error":{"httpStatusCode":502},
623
- "exception":true
624
- },
625
- "ENILimitReachedException":{
626
- "type":"structure",
627
- "members":{
628
- "Type":{"shape":"String"},
629
- "Message":{"shape":"String"}
630
- },
631
- "error":{"httpStatusCode":502},
632
- "exception":true
633
- },
634
- "Enabled":{"type":"boolean"},
635
- "EventSourceMappingConfiguration":{
636
- "type":"structure",
637
- "members":{
638
- "UUID":{"shape":"String"},
639
- "BatchSize":{"shape":"BatchSize"},
640
- "EventSourceArn":{"shape":"Arn"},
641
- "FunctionArn":{"shape":"FunctionArn"},
642
- "LastModified":{"shape":"Date"},
643
- "LastProcessingResult":{"shape":"String"},
644
- "State":{"shape":"String"},
645
- "StateTransitionReason":{"shape":"String"}
646
- }
647
- },
648
- "EventSourceMappingsList":{
649
- "type":"list",
650
- "member":{"shape":"EventSourceMappingConfiguration"}
651
- },
652
- "EventSourcePosition":{
653
- "type":"string",
654
- "enum":[
655
- "TRIM_HORIZON",
656
- "LATEST"
657
- ]
658
- },
659
- "EventSourceToken":{
660
- "type":"string",
661
- "max":256,
662
- "min":0,
663
- "pattern":"[a-zA-Z0-9._\\-]+"
664
- },
665
- "FunctionArn":{
666
- "type":"string",
667
- "pattern":"arn:aws:lambda:[a-z]{2}-[a-z]+-\\d{1}:\\d{12}:function:[a-zA-Z0-9-_]+(:(\\$LATEST|[a-zA-Z0-9-_]+))?"
668
- },
669
- "FunctionCode":{
670
- "type":"structure",
671
- "members":{
672
- "ZipFile":{"shape":"Blob"},
673
- "S3Bucket":{"shape":"S3Bucket"},
674
- "S3Key":{"shape":"S3Key"},
675
- "S3ObjectVersion":{"shape":"S3ObjectVersion"}
676
- }
677
- },
678
- "FunctionCodeLocation":{
679
- "type":"structure",
680
- "members":{
681
- "RepositoryType":{"shape":"String"},
682
- "Location":{"shape":"String"}
683
- }
684
- },
685
- "FunctionConfiguration":{
686
- "type":"structure",
687
- "members":{
688
- "FunctionName":{"shape":"FunctionName"},
689
- "FunctionArn":{"shape":"FunctionArn"},
690
- "Runtime":{"shape":"Runtime"},
691
- "Role":{"shape":"RoleArn"},
692
- "Handler":{"shape":"Handler"},
693
- "CodeSize":{"shape":"Long"},
694
- "Description":{"shape":"Description"},
695
- "Timeout":{"shape":"Timeout"},
696
- "MemorySize":{"shape":"MemorySize"},
697
- "LastModified":{"shape":"Timestamp"},
698
- "CodeSha256":{"shape":"String"},
699
- "Version":{"shape":"Version"},
700
- "VpcConfig":{"shape":"VpcConfigResponse"}
701
- }
702
- },
703
- "FunctionList":{
704
- "type":"list",
705
- "member":{"shape":"FunctionConfiguration"}
706
- },
707
- "FunctionName":{
708
- "type":"string",
709
- "max":140,
710
- "min":1,
711
- "pattern":"(arn:aws:lambda:)?([a-z]{2}-[a-z]+-\\d{1}:)?(\\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\\$LATEST|[a-zA-Z0-9-_]+))?"
712
- },
713
- "GetAliasRequest":{
714
- "type":"structure",
715
- "required":[
716
- "FunctionName",
717
- "Name"
718
- ],
719
- "members":{
720
- "FunctionName":{
721
- "shape":"FunctionName",
722
- "location":"uri",
723
- "locationName":"FunctionName"
724
- },
725
- "Name":{
726
- "shape":"Alias",
727
- "location":"uri",
728
- "locationName":"Name"
729
- }
730
- }
731
- },
732
- "GetEventSourceMappingRequest":{
733
- "type":"structure",
734
- "required":["UUID"],
735
- "members":{
736
- "UUID":{
737
- "shape":"String",
738
- "location":"uri",
739
- "locationName":"UUID"
740
- }
741
- }
742
- },
743
- "GetFunctionConfigurationRequest":{
744
- "type":"structure",
745
- "required":["FunctionName"],
746
- "members":{
747
- "FunctionName":{
748
- "shape":"FunctionName",
749
- "location":"uri",
750
- "locationName":"FunctionName"
751
- },
752
- "Qualifier":{
753
- "shape":"Qualifier",
754
- "location":"querystring",
755
- "locationName":"Qualifier"
756
- }
757
- }
758
- },
759
- "GetFunctionRequest":{
760
- "type":"structure",
761
- "required":["FunctionName"],
762
- "members":{
763
- "FunctionName":{
764
- "shape":"FunctionName",
765
- "location":"uri",
766
- "locationName":"FunctionName"
767
- },
768
- "Qualifier":{
769
- "shape":"Qualifier",
770
- "location":"querystring",
771
- "locationName":"Qualifier"
772
- }
773
- }
774
- },
775
- "GetFunctionResponse":{
776
- "type":"structure",
777
- "members":{
778
- "Configuration":{"shape":"FunctionConfiguration"},
779
- "Code":{"shape":"FunctionCodeLocation"}
780
- }
781
- },
782
- "GetPolicyRequest":{
783
- "type":"structure",
784
- "required":["FunctionName"],
785
- "members":{
786
- "FunctionName":{
787
- "shape":"FunctionName",
788
- "location":"uri",
789
- "locationName":"FunctionName"
790
- },
791
- "Qualifier":{
792
- "shape":"Qualifier",
793
- "location":"querystring",
794
- "locationName":"Qualifier"
795
- }
796
- }
797
- },
798
- "GetPolicyResponse":{
799
- "type":"structure",
800
- "members":{
801
- "Policy":{"shape":"String"}
802
- }
803
- },
804
- "Handler":{
805
- "type":"string",
806
- "max":128,
807
- "pattern":"[^\\s]+"
808
- },
809
- "HttpStatus":{"type":"integer"},
810
- "Integer":{"type":"integer"},
811
- "InvalidParameterValueException":{
812
- "type":"structure",
813
- "members":{
814
- "Type":{"shape":"String"},
815
- "message":{"shape":"String"}
816
- },
817
- "error":{"httpStatusCode":400},
818
- "exception":true
819
- },
820
- "InvalidRequestContentException":{
821
- "type":"structure",
822
- "members":{
823
- "Type":{"shape":"String"},
824
- "message":{"shape":"String"}
825
- },
826
- "error":{"httpStatusCode":400},
827
- "exception":true
828
- },
829
- "InvalidSecurityGroupIDException":{
830
- "type":"structure",
831
- "members":{
832
- "Type":{"shape":"String"},
833
- "Message":{"shape":"String"}
834
- },
835
- "error":{"httpStatusCode":502},
836
- "exception":true
837
- },
838
- "InvalidSubnetIDException":{
839
- "type":"structure",
840
- "members":{
841
- "Type":{"shape":"String"},
842
- "Message":{"shape":"String"}
843
- },
844
- "error":{"httpStatusCode":502},
845
- "exception":true
846
- },
847
- "InvocationRequest":{
848
- "type":"structure",
849
- "required":["FunctionName"],
850
- "members":{
851
- "FunctionName":{
852
- "shape":"FunctionName",
853
- "location":"uri",
854
- "locationName":"FunctionName"
855
- },
856
- "InvocationType":{
857
- "shape":"InvocationType",
858
- "location":"header",
859
- "locationName":"X-Amz-Invocation-Type"
860
- },
861
- "LogType":{
862
- "shape":"LogType",
863
- "location":"header",
864
- "locationName":"X-Amz-Log-Type"
865
- },
866
- "ClientContext":{
867
- "shape":"String",
868
- "location":"header",
869
- "locationName":"X-Amz-Client-Context"
870
- },
871
- "Payload":{"shape":"Blob"},
872
- "Qualifier":{
873
- "shape":"Qualifier",
874
- "location":"querystring",
875
- "locationName":"Qualifier"
876
- }
877
- },
878
- "payload":"Payload"
879
- },
880
- "InvocationResponse":{
881
- "type":"structure",
882
- "members":{
883
- "StatusCode":{
884
- "shape":"Integer",
885
- "location":"statusCode"
886
- },
887
- "FunctionError":{
888
- "shape":"String",
889
- "location":"header",
890
- "locationName":"X-Amz-Function-Error"
891
- },
892
- "LogResult":{
893
- "shape":"String",
894
- "location":"header",
895
- "locationName":"X-Amz-Log-Result"
896
- },
897
- "Payload":{"shape":"Blob"}
898
- },
899
- "payload":"Payload"
900
- },
901
- "InvocationType":{
902
- "type":"string",
903
- "enum":[
904
- "Event",
905
- "RequestResponse",
906
- "DryRun"
907
- ]
908
- },
909
- "InvokeAsyncRequest":{
910
- "type":"structure",
911
- "required":[
912
- "FunctionName",
913
- "InvokeArgs"
914
- ],
915
- "members":{
916
- "FunctionName":{
917
- "shape":"FunctionName",
918
- "location":"uri",
919
- "locationName":"FunctionName"
920
- },
921
- "InvokeArgs":{"shape":"BlobStream"}
922
- },
923
- "deprecated":true,
924
- "payload":"InvokeArgs"
925
- },
926
- "InvokeAsyncResponse":{
927
- "type":"structure",
928
- "members":{
929
- "Status":{
930
- "shape":"HttpStatus",
931
- "location":"statusCode"
932
- }
933
- },
934
- "deprecated":true
935
- },
936
- "ListAliasesRequest":{
937
- "type":"structure",
938
- "required":["FunctionName"],
939
- "members":{
940
- "FunctionName":{
941
- "shape":"FunctionName",
942
- "location":"uri",
943
- "locationName":"FunctionName"
944
- },
945
- "FunctionVersion":{
946
- "shape":"Version",
947
- "location":"querystring",
948
- "locationName":"FunctionVersion"
949
- },
950
- "Marker":{
951
- "shape":"String",
952
- "location":"querystring",
953
- "locationName":"Marker"
954
- },
955
- "MaxItems":{
956
- "shape":"MaxListItems",
957
- "location":"querystring",
958
- "locationName":"MaxItems"
959
- }
960
- }
961
- },
962
- "ListAliasesResponse":{
963
- "type":"structure",
964
- "members":{
965
- "NextMarker":{"shape":"String"},
966
- "Aliases":{"shape":"AliasList"}
967
- }
968
- },
969
- "ListEventSourceMappingsRequest":{
970
- "type":"structure",
971
- "members":{
972
- "EventSourceArn":{
973
- "shape":"Arn",
974
- "location":"querystring",
975
- "locationName":"EventSourceArn"
976
- },
977
- "FunctionName":{
978
- "shape":"FunctionName",
979
- "location":"querystring",
980
- "locationName":"FunctionName"
981
- },
982
- "Marker":{
983
- "shape":"String",
984
- "location":"querystring",
985
- "locationName":"Marker"
986
- },
987
- "MaxItems":{
988
- "shape":"MaxListItems",
989
- "location":"querystring",
990
- "locationName":"MaxItems"
991
- }
992
- }
993
- },
994
- "ListEventSourceMappingsResponse":{
995
- "type":"structure",
996
- "members":{
997
- "NextMarker":{"shape":"String"},
998
- "EventSourceMappings":{"shape":"EventSourceMappingsList"}
999
- }
1000
- },
1001
- "ListFunctionsRequest":{
1002
- "type":"structure",
1003
- "members":{
1004
- "Marker":{
1005
- "shape":"String",
1006
- "location":"querystring",
1007
- "locationName":"Marker"
1008
- },
1009
- "MaxItems":{
1010
- "shape":"MaxListItems",
1011
- "location":"querystring",
1012
- "locationName":"MaxItems"
1013
- }
1014
- }
1015
- },
1016
- "ListFunctionsResponse":{
1017
- "type":"structure",
1018
- "members":{
1019
- "NextMarker":{"shape":"String"},
1020
- "Functions":{"shape":"FunctionList"}
1021
- }
1022
- },
1023
- "ListVersionsByFunctionRequest":{
1024
- "type":"structure",
1025
- "required":["FunctionName"],
1026
- "members":{
1027
- "FunctionName":{
1028
- "shape":"FunctionName",
1029
- "location":"uri",
1030
- "locationName":"FunctionName"
1031
- },
1032
- "Marker":{
1033
- "shape":"String",
1034
- "location":"querystring",
1035
- "locationName":"Marker"
1036
- },
1037
- "MaxItems":{
1038
- "shape":"MaxListItems",
1039
- "location":"querystring",
1040
- "locationName":"MaxItems"
1041
- }
1042
- }
1043
- },
1044
- "ListVersionsByFunctionResponse":{
1045
- "type":"structure",
1046
- "members":{
1047
- "NextMarker":{"shape":"String"},
1048
- "Versions":{"shape":"FunctionList"}
1049
- }
1050
- },
1051
- "LogType":{
1052
- "type":"string",
1053
- "enum":[
1054
- "None",
1055
- "Tail"
1056
- ]
1057
- },
1058
- "Long":{"type":"long"},
1059
- "MaxListItems":{
1060
- "type":"integer",
1061
- "max":10000,
1062
- "min":1
1063
- },
1064
- "MemorySize":{
1065
- "type":"integer",
1066
- "max":1536,
1067
- "min":128
1068
- },
1069
- "PolicyLengthExceededException":{
1070
- "type":"structure",
1071
- "members":{
1072
- "Type":{"shape":"String"},
1073
- "message":{"shape":"String"}
1074
- },
1075
- "error":{"httpStatusCode":400},
1076
- "exception":true
1077
- },
1078
- "Principal":{
1079
- "type":"string",
1080
- "pattern":".*"
1081
- },
1082
- "PublishVersionRequest":{
1083
- "type":"structure",
1084
- "required":["FunctionName"],
1085
- "members":{
1086
- "FunctionName":{
1087
- "shape":"FunctionName",
1088
- "location":"uri",
1089
- "locationName":"FunctionName"
1090
- },
1091
- "CodeSha256":{"shape":"String"},
1092
- "Description":{"shape":"Description"}
1093
- }
1094
- },
1095
- "Qualifier":{
1096
- "type":"string",
1097
- "max":128,
1098
- "min":1,
1099
- "pattern":"(|[a-zA-Z0-9$_-]+)"
1100
- },
1101
- "RemovePermissionRequest":{
1102
- "type":"structure",
1103
- "required":[
1104
- "FunctionName",
1105
- "StatementId"
1106
- ],
1107
- "members":{
1108
- "FunctionName":{
1109
- "shape":"FunctionName",
1110
- "location":"uri",
1111
- "locationName":"FunctionName"
1112
- },
1113
- "StatementId":{
1114
- "shape":"StatementId",
1115
- "location":"uri",
1116
- "locationName":"StatementId"
1117
- },
1118
- "Qualifier":{
1119
- "shape":"Qualifier",
1120
- "location":"querystring",
1121
- "locationName":"Qualifier"
1122
- }
1123
- }
1124
- },
1125
- "RequestTooLargeException":{
1126
- "type":"structure",
1127
- "members":{
1128
- "Type":{"shape":"String"},
1129
- "message":{"shape":"String"}
1130
- },
1131
- "error":{"httpStatusCode":413},
1132
- "exception":true
1133
- },
1134
- "ResourceConflictException":{
1135
- "type":"structure",
1136
- "members":{
1137
- "Type":{"shape":"String"},
1138
- "message":{"shape":"String"}
1139
- },
1140
- "error":{"httpStatusCode":409},
1141
- "exception":true
1142
- },
1143
- "ResourceNotFoundException":{
1144
- "type":"structure",
1145
- "members":{
1146
- "Type":{"shape":"String"},
1147
- "Message":{"shape":"String"}
1148
- },
1149
- "error":{"httpStatusCode":404},
1150
- "exception":true
1151
- },
1152
- "RoleArn":{
1153
- "type":"string",
1154
- "pattern":"arn:aws:iam::\\d{12}:role/?[a-zA-Z_0-9+=,.@\\-_/]+"
1155
- },
1156
- "Runtime":{
1157
- "type":"string",
1158
- "enum":[
1159
- "nodejs",
1160
- "nodejs4.3",
1161
- "java8",
1162
- "python2.7"
1163
- ]
1164
- },
1165
- "S3Bucket":{
1166
- "type":"string",
1167
- "max":63,
1168
- "min":3,
1169
- "pattern":"^[0-9A-Za-z\\.\\-_]*(?<!\\.)$"
1170
- },
1171
- "S3Key":{
1172
- "type":"string",
1173
- "max":1024,
1174
- "min":1
1175
- },
1176
- "S3ObjectVersion":{
1177
- "type":"string",
1178
- "max":1024,
1179
- "min":1
1180
- },
1181
- "SecurityGroupId":{"type":"string"},
1182
- "SecurityGroupIds":{
1183
- "type":"list",
1184
- "member":{"shape":"SecurityGroupId"},
1185
- "max":5
1186
- },
1187
- "ServiceException":{
1188
- "type":"structure",
1189
- "members":{
1190
- "Type":{"shape":"String"},
1191
- "Message":{"shape":"String"}
1192
- },
1193
- "error":{"httpStatusCode":500},
1194
- "exception":true
1195
- },
1196
- "SourceOwner":{
1197
- "type":"string",
1198
- "pattern":"\\d{12}"
1199
- },
1200
- "StatementId":{
1201
- "type":"string",
1202
- "max":100,
1203
- "min":1,
1204
- "pattern":"([a-zA-Z0-9-_]+)"
1205
- },
1206
- "String":{"type":"string"},
1207
- "SubnetIPAddressLimitReachedException":{
1208
- "type":"structure",
1209
- "members":{
1210
- "Type":{"shape":"String"},
1211
- "Message":{"shape":"String"}
1212
- },
1213
- "error":{"httpStatusCode":502},
1214
- "exception":true
1215
- },
1216
- "SubnetId":{"type":"string"},
1217
- "SubnetIds":{
1218
- "type":"list",
1219
- "member":{"shape":"SubnetId"},
1220
- "max":16
1221
- },
1222
- "Timeout":{
1223
- "type":"integer",
1224
- "min":1
1225
- },
1226
- "Timestamp":{"type":"string"},
1227
- "TooManyRequestsException":{
1228
- "type":"structure",
1229
- "members":{
1230
- "retryAfterSeconds":{
1231
- "shape":"String",
1232
- "location":"header",
1233
- "locationName":"Retry-After"
1234
- },
1235
- "Type":{"shape":"String"},
1236
- "message":{"shape":"String"}
1237
- },
1238
- "error":{"httpStatusCode":429},
1239
- "exception":true
1240
- },
1241
- "UnsupportedMediaTypeException":{
1242
- "type":"structure",
1243
- "members":{
1244
- "Type":{"shape":"String"},
1245
- "message":{"shape":"String"}
1246
- },
1247
- "error":{"httpStatusCode":415},
1248
- "exception":true
1249
- },
1250
- "UpdateAliasRequest":{
1251
- "type":"structure",
1252
- "required":[
1253
- "FunctionName",
1254
- "Name"
1255
- ],
1256
- "members":{
1257
- "FunctionName":{
1258
- "shape":"FunctionName",
1259
- "location":"uri",
1260
- "locationName":"FunctionName"
1261
- },
1262
- "Name":{
1263
- "shape":"Alias",
1264
- "location":"uri",
1265
- "locationName":"Name"
1266
- },
1267
- "FunctionVersion":{"shape":"Version"},
1268
- "Description":{"shape":"Description"}
1269
- }
1270
- },
1271
- "UpdateEventSourceMappingRequest":{
1272
- "type":"structure",
1273
- "required":["UUID"],
1274
- "members":{
1275
- "UUID":{
1276
- "shape":"String",
1277
- "location":"uri",
1278
- "locationName":"UUID"
1279
- },
1280
- "FunctionName":{"shape":"FunctionName"},
1281
- "Enabled":{"shape":"Enabled"},
1282
- "BatchSize":{"shape":"BatchSize"}
1283
- }
1284
- },
1285
- "UpdateFunctionCodeRequest":{
1286
- "type":"structure",
1287
- "required":["FunctionName"],
1288
- "members":{
1289
- "FunctionName":{
1290
- "shape":"FunctionName",
1291
- "location":"uri",
1292
- "locationName":"FunctionName"
1293
- },
1294
- "ZipFile":{"shape":"Blob"},
1295
- "S3Bucket":{"shape":"S3Bucket"},
1296
- "S3Key":{"shape":"S3Key"},
1297
- "S3ObjectVersion":{"shape":"S3ObjectVersion"},
1298
- "Publish":{"shape":"Boolean"}
1299
- }
1300
- },
1301
- "UpdateFunctionConfigurationRequest":{
1302
- "type":"structure",
1303
- "required":["FunctionName"],
1304
- "members":{
1305
- "FunctionName":{
1306
- "shape":"FunctionName",
1307
- "location":"uri",
1308
- "locationName":"FunctionName"
1309
- },
1310
- "Role":{"shape":"RoleArn"},
1311
- "Handler":{"shape":"Handler"},
1312
- "Description":{"shape":"Description"},
1313
- "Timeout":{"shape":"Timeout"},
1314
- "MemorySize":{"shape":"MemorySize"},
1315
- "VpcConfig":{"shape":"VpcConfig"},
1316
- "Runtime":{"shape":"Runtime"}
1317
- }
1318
- },
1319
- "Version":{
1320
- "type":"string",
1321
- "max":1024,
1322
- "min":1,
1323
- "pattern":"(\\$LATEST|[0-9]+)"
1324
- },
1325
- "VpcConfig":{
1326
- "type":"structure",
1327
- "members":{
1328
- "SubnetIds":{"shape":"SubnetIds"},
1329
- "SecurityGroupIds":{"shape":"SecurityGroupIds"}
1330
- }
1331
- },
1332
- "VpcConfigResponse":{
1333
- "type":"structure",
1334
- "members":{
1335
- "SubnetIds":{"shape":"SubnetIds"},
1336
- "SecurityGroupIds":{"shape":"SecurityGroupIds"},
1337
- "VpcId":{"shape":"VpcId"}
1338
- }
1339
- },
1340
- "VpcId":{"type":"string"}
1341
- }
1342
- }