aws-sdk-core 2.4.0 → 3.53.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,29 +0,0 @@
1
- {
2
- "pagination": {
3
- "ListEndpointsByPlatformApplication": {
4
- "input_token": "NextToken",
5
- "output_token": "NextToken",
6
- "result_key": "Endpoints"
7
- },
8
- "ListPlatformApplications": {
9
- "input_token": "NextToken",
10
- "output_token": "NextToken",
11
- "result_key": "PlatformApplications"
12
- },
13
- "ListSubscriptions": {
14
- "input_token": "NextToken",
15
- "output_token": "NextToken",
16
- "result_key": "Subscriptions"
17
- },
18
- "ListSubscriptionsByTopic": {
19
- "input_token": "NextToken",
20
- "output_token": "NextToken",
21
- "result_key": "Subscriptions"
22
- },
23
- "ListTopics": {
24
- "input_token": "NextToken",
25
- "output_token": "NextToken",
26
- "result_key": "Topics"
27
- }
28
- }
29
- }
@@ -1,327 +0,0 @@
1
- {
2
- "service": {
3
- "actions": {
4
- "CreatePlatformApplication": {
5
- "request": { "operation": "CreatePlatformApplication" },
6
- "resource": {
7
- "type": "PlatformApplication",
8
- "identifiers": [
9
- { "target": "Arn", "source": "response", "path": "PlatformApplicationArn" }
10
- ]
11
- }
12
- },
13
- "CreateTopic": {
14
- "request": { "operation": "CreateTopic" },
15
- "resource": {
16
- "type": "Topic",
17
- "identifiers": [
18
- { "target": "Arn", "source": "response", "path": "TopicArn" }
19
- ]
20
- }
21
- }
22
- },
23
- "has": {
24
- "PlatformApplication": {
25
- "resource": {
26
- "type": "PlatformApplication",
27
- "identifiers": [
28
- { "target": "Arn", "source": "input" }
29
- ]
30
- }
31
- },
32
- "PlatformEndpoint": {
33
- "resource": {
34
- "type": "PlatformEndpoint",
35
- "identifiers": [
36
- { "target": "Arn", "source": "input" }
37
- ]
38
- }
39
- },
40
- "Subscription": {
41
- "resource": {
42
- "type": "Subscription",
43
- "identifiers": [
44
- { "target": "Arn", "source": "input" }
45
- ]
46
- }
47
- },
48
- "Topic": {
49
- "resource": {
50
- "type": "Topic",
51
- "identifiers": [
52
- { "target": "Arn", "source": "input" }
53
- ]
54
- }
55
- }
56
- },
57
- "hasMany": {
58
- "PlatformApplications": {
59
- "request": { "operation": "ListPlatformApplications" },
60
- "resource": {
61
- "type": "PlatformApplication",
62
- "identifiers": [
63
- { "target": "Arn", "source": "response", "path": "PlatformApplications[].PlatformApplicationArn" }
64
- ]
65
- }
66
- },
67
- "Subscriptions": {
68
- "request": { "operation": "ListSubscriptions" },
69
- "resource": {
70
- "type": "Subscription",
71
- "identifiers": [
72
- { "target": "Arn", "source": "response", "path": "Subscriptions[].SubscriptionArn" }
73
- ]
74
- }
75
- },
76
- "Topics": {
77
- "request": { "operation": "ListTopics" },
78
- "resource": {
79
- "type": "Topic",
80
- "identifiers": [
81
- { "target": "Arn", "source": "response", "path": "Topics[].TopicArn" }
82
- ]
83
- }
84
- }
85
- }
86
- },
87
- "resources": {
88
- "PlatformApplication": {
89
- "identifiers": [
90
- { "name": "Arn" }
91
- ],
92
- "shape": "GetPlatformApplicationAttributesResponse",
93
- "load": {
94
- "request": {
95
- "operation": "GetPlatformApplicationAttributes",
96
- "params": [
97
- { "target": "PlatformApplicationArn", "source": "identifier", "name": "Arn" }
98
- ]
99
- },
100
- "path": "@"
101
- },
102
- "actions": {
103
- "CreatePlatformEndpoint": {
104
- "request": {
105
- "operation": "CreatePlatformEndpoint",
106
- "params": [
107
- { "target": "PlatformApplicationArn", "source": "identifier", "name": "Arn" }
108
- ]
109
- },
110
- "resource": {
111
- "type": "PlatformEndpoint",
112
- "identifiers": [
113
- { "target": "Arn", "source": "response", "path": "EndpointArn" }
114
- ]
115
- }
116
- },
117
- "Delete": {
118
- "request": {
119
- "operation": "DeletePlatformApplication",
120
- "params": [
121
- { "target": "PlatformApplicationArn", "source": "identifier", "name": "Arn" }
122
- ]
123
- }
124
- },
125
- "SetAttributes": {
126
- "request": {
127
- "operation": "SetPlatformApplicationAttributes",
128
- "params": [
129
- { "target": "PlatformApplicationArn", "source": "identifier", "name": "Arn" }
130
- ]
131
- }
132
- }
133
- },
134
- "hasMany": {
135
- "Endpoints": {
136
- "request": {
137
- "operation": "ListEndpointsByPlatformApplication",
138
- "params": [
139
- { "target": "PlatformApplicationArn", "source": "identifier", "name": "Arn" }
140
- ]
141
- },
142
- "resource": {
143
- "type": "PlatformEndpoint",
144
- "identifiers": [
145
- { "target": "Arn", "source": "response", "path": "Endpoints[].EndpointArn" }
146
- ]
147
- }
148
- }
149
- }
150
- },
151
- "PlatformEndpoint": {
152
- "identifiers": [
153
- { "name": "Arn" }
154
- ],
155
- "shape": "GetEndpointAttributesResponse",
156
- "load": {
157
- "request": {
158
- "operation": "GetEndpointAttributes",
159
- "params": [
160
- { "target": "EndpointArn", "source": "identifier", "name": "Arn" }
161
- ]
162
- },
163
- "path": "@"
164
- },
165
- "actions": {
166
- "Delete": {
167
- "request": {
168
- "operation": "DeleteEndpoint",
169
- "params": [
170
- { "target": "EndpointArn", "source": "identifier", "name": "Arn" }
171
- ]
172
- }
173
- },
174
- "Publish": {
175
- "request": {
176
- "operation": "Publish",
177
- "params": [
178
- { "target": "TargetArn", "source": "identifier", "name": "Arn" }
179
- ]
180
- }
181
- },
182
- "SetAttributes": {
183
- "request": {
184
- "operation": "SetEndpointAttributes",
185
- "params": [
186
- { "target": "EndpointArn", "source": "identifier", "name": "Arn" }
187
- ]
188
- }
189
- }
190
- }
191
- },
192
- "Subscription": {
193
- "identifiers": [
194
- { "name": "Arn" }
195
- ],
196
- "shape": "GetSubscriptionAttributesResponse",
197
- "load": {
198
- "request": {
199
- "operation": "GetSubscriptionAttributes",
200
- "params": [
201
- { "target": "SubscriptionArn", "source": "identifier", "name": "Arn" }
202
- ]
203
- },
204
- "path": "@"
205
- },
206
- "actions": {
207
- "Delete": {
208
- "request": {
209
- "operation": "Unsubscribe",
210
- "params": [
211
- { "target": "SubscriptionArn", "source": "identifier", "name": "Arn" }
212
- ]
213
- }
214
- },
215
- "SetAttributes": {
216
- "request": {
217
- "operation": "SetSubscriptionAttributes",
218
- "params": [
219
- { "target": "SubscriptionArn", "source": "identifier", "name": "Arn" }
220
- ]
221
- }
222
- }
223
- }
224
- },
225
- "Topic": {
226
- "identifiers": [
227
- { "name": "Arn" }
228
- ],
229
- "shape": "GetTopicAttributesResponse",
230
- "load": {
231
- "request": {
232
- "operation": "GetTopicAttributes",
233
- "params": [
234
- { "target": "TopicArn", "source": "identifier", "name": "Arn" }
235
- ]
236
- },
237
- "path": "@"
238
- },
239
- "actions": {
240
- "AddPermission": {
241
- "request": {
242
- "operation": "AddPermission",
243
- "params": [
244
- { "target": "TopicArn", "source": "identifier", "name": "Arn" }
245
- ]
246
- }
247
- },
248
- "ConfirmSubscription": {
249
- "request": {
250
- "operation": "ConfirmSubscription",
251
- "params": [
252
- { "target": "TopicArn", "source": "identifier", "name": "Arn" }
253
- ]
254
- },
255
- "resource": {
256
- "type": "Subscription",
257
- "identifiers": [
258
- { "target": "Arn", "source": "response", "path": "SubscriptionArn" }
259
- ]
260
- }
261
- },
262
- "Delete": {
263
- "request": {
264
- "operation": "DeleteTopic",
265
- "params": [
266
- { "target": "TopicArn", "source": "identifier", "name": "Arn" }
267
- ]
268
- }
269
- },
270
- "Publish": {
271
- "request": {
272
- "operation": "Publish",
273
- "params": [
274
- { "target": "TopicArn", "source": "identifier", "name": "Arn" }
275
- ]
276
- }
277
- },
278
- "RemovePermission": {
279
- "request": {
280
- "operation": "RemovePermission",
281
- "params": [
282
- { "target": "TopicArn", "source": "identifier", "name": "Arn" }
283
- ]
284
- }
285
- },
286
- "SetAttributes": {
287
- "request": {
288
- "operation": "SetTopicAttributes",
289
- "params": [
290
- { "target": "TopicArn", "source": "identifier", "name": "Arn" }
291
- ]
292
- }
293
- },
294
- "Subscribe": {
295
- "request": {
296
- "operation": "Subscribe",
297
- "params": [
298
- { "target": "TopicArn", "source": "identifier", "name": "Arn" }
299
- ]
300
- },
301
- "resource": {
302
- "type": "Subscription",
303
- "identifiers": [
304
- { "target": "Arn", "source": "response", "path": "SubscriptionArn" }
305
- ]
306
- }
307
- }
308
- },
309
- "hasMany": {
310
- "Subscriptions": {
311
- "request": {
312
- "operation": "ListSubscriptionsByTopic",
313
- "params": [
314
- { "target": "TopicArn", "source": "identifier", "name": "Arn" }
315
- ]
316
- },
317
- "resource": {
318
- "type": "Subscription",
319
- "identifiers": [
320
- { "target": "Arn", "source": "response", "path": "Subscriptions[].SubscriptionArn" }
321
- ]
322
- }
323
- }
324
- }
325
- }
326
- }
327
- }
@@ -1,950 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2012-11-05",
5
- "endpointPrefix":"sqs",
6
- "protocol":"query",
7
- "serviceAbbreviation":"Amazon SQS",
8
- "serviceFullName":"Amazon Simple Queue Service",
9
- "signatureVersion":"v4",
10
- "xmlNamespace":"http://queue.amazonaws.com/doc/2012-11-05/"
11
- },
12
- "operations":{
13
- "AddPermission":{
14
- "name":"AddPermission",
15
- "http":{
16
- "method":"POST",
17
- "requestUri":"/"
18
- },
19
- "input":{"shape":"AddPermissionRequest"},
20
- "errors":[
21
- {"shape":"OverLimit"}
22
- ]
23
- },
24
- "ChangeMessageVisibility":{
25
- "name":"ChangeMessageVisibility",
26
- "http":{
27
- "method":"POST",
28
- "requestUri":"/"
29
- },
30
- "input":{"shape":"ChangeMessageVisibilityRequest"},
31
- "errors":[
32
- {"shape":"MessageNotInflight"},
33
- {"shape":"ReceiptHandleIsInvalid"}
34
- ]
35
- },
36
- "ChangeMessageVisibilityBatch":{
37
- "name":"ChangeMessageVisibilityBatch",
38
- "http":{
39
- "method":"POST",
40
- "requestUri":"/"
41
- },
42
- "input":{"shape":"ChangeMessageVisibilityBatchRequest"},
43
- "output":{
44
- "shape":"ChangeMessageVisibilityBatchResult",
45
- "resultWrapper":"ChangeMessageVisibilityBatchResult"
46
- },
47
- "errors":[
48
- {"shape":"TooManyEntriesInBatchRequest"},
49
- {"shape":"EmptyBatchRequest"},
50
- {"shape":"BatchEntryIdsNotDistinct"},
51
- {"shape":"InvalidBatchEntryId"}
52
- ]
53
- },
54
- "CreateQueue":{
55
- "name":"CreateQueue",
56
- "http":{
57
- "method":"POST",
58
- "requestUri":"/"
59
- },
60
- "input":{"shape":"CreateQueueRequest"},
61
- "output":{
62
- "shape":"CreateQueueResult",
63
- "resultWrapper":"CreateQueueResult"
64
- },
65
- "errors":[
66
- {"shape":"QueueDeletedRecently"},
67
- {"shape":"QueueNameExists"}
68
- ]
69
- },
70
- "DeleteMessage":{
71
- "name":"DeleteMessage",
72
- "http":{
73
- "method":"POST",
74
- "requestUri":"/"
75
- },
76
- "input":{"shape":"DeleteMessageRequest"},
77
- "errors":[
78
- {"shape":"InvalidIdFormat"},
79
- {"shape":"ReceiptHandleIsInvalid"}
80
- ]
81
- },
82
- "DeleteMessageBatch":{
83
- "name":"DeleteMessageBatch",
84
- "http":{
85
- "method":"POST",
86
- "requestUri":"/"
87
- },
88
- "input":{"shape":"DeleteMessageBatchRequest"},
89
- "output":{
90
- "shape":"DeleteMessageBatchResult",
91
- "resultWrapper":"DeleteMessageBatchResult"
92
- },
93
- "errors":[
94
- {"shape":"TooManyEntriesInBatchRequest"},
95
- {"shape":"EmptyBatchRequest"},
96
- {"shape":"BatchEntryIdsNotDistinct"},
97
- {"shape":"InvalidBatchEntryId"}
98
- ]
99
- },
100
- "DeleteQueue":{
101
- "name":"DeleteQueue",
102
- "http":{
103
- "method":"POST",
104
- "requestUri":"/"
105
- },
106
- "input":{"shape":"DeleteQueueRequest"}
107
- },
108
- "GetQueueAttributes":{
109
- "name":"GetQueueAttributes",
110
- "http":{
111
- "method":"POST",
112
- "requestUri":"/"
113
- },
114
- "input":{"shape":"GetQueueAttributesRequest"},
115
- "output":{
116
- "shape":"GetQueueAttributesResult",
117
- "resultWrapper":"GetQueueAttributesResult"
118
- },
119
- "errors":[
120
- {"shape":"InvalidAttributeName"}
121
- ]
122
- },
123
- "GetQueueUrl":{
124
- "name":"GetQueueUrl",
125
- "http":{
126
- "method":"POST",
127
- "requestUri":"/"
128
- },
129
- "input":{"shape":"GetQueueUrlRequest"},
130
- "output":{
131
- "shape":"GetQueueUrlResult",
132
- "resultWrapper":"GetQueueUrlResult"
133
- },
134
- "errors":[
135
- {"shape":"QueueDoesNotExist"}
136
- ]
137
- },
138
- "ListDeadLetterSourceQueues":{
139
- "name":"ListDeadLetterSourceQueues",
140
- "http":{
141
- "method":"POST",
142
- "requestUri":"/"
143
- },
144
- "input":{"shape":"ListDeadLetterSourceQueuesRequest"},
145
- "output":{
146
- "shape":"ListDeadLetterSourceQueuesResult",
147
- "resultWrapper":"ListDeadLetterSourceQueuesResult"
148
- },
149
- "errors":[
150
- {"shape":"QueueDoesNotExist"}
151
- ]
152
- },
153
- "ListQueues":{
154
- "name":"ListQueues",
155
- "http":{
156
- "method":"POST",
157
- "requestUri":"/"
158
- },
159
- "input":{"shape":"ListQueuesRequest"},
160
- "output":{
161
- "shape":"ListQueuesResult",
162
- "resultWrapper":"ListQueuesResult"
163
- }
164
- },
165
- "PurgeQueue":{
166
- "name":"PurgeQueue",
167
- "http":{
168
- "method":"POST",
169
- "requestUri":"/"
170
- },
171
- "input":{"shape":"PurgeQueueRequest"},
172
- "errors":[
173
- {"shape":"QueueDoesNotExist"},
174
- {"shape":"PurgeQueueInProgress"}
175
- ]
176
- },
177
- "ReceiveMessage":{
178
- "name":"ReceiveMessage",
179
- "http":{
180
- "method":"POST",
181
- "requestUri":"/"
182
- },
183
- "input":{"shape":"ReceiveMessageRequest"},
184
- "output":{
185
- "shape":"ReceiveMessageResult",
186
- "resultWrapper":"ReceiveMessageResult"
187
- },
188
- "errors":[
189
- {"shape":"OverLimit"}
190
- ]
191
- },
192
- "RemovePermission":{
193
- "name":"RemovePermission",
194
- "http":{
195
- "method":"POST",
196
- "requestUri":"/"
197
- },
198
- "input":{"shape":"RemovePermissionRequest"}
199
- },
200
- "SendMessage":{
201
- "name":"SendMessage",
202
- "http":{
203
- "method":"POST",
204
- "requestUri":"/"
205
- },
206
- "input":{"shape":"SendMessageRequest"},
207
- "output":{
208
- "shape":"SendMessageResult",
209
- "resultWrapper":"SendMessageResult"
210
- },
211
- "errors":[
212
- {"shape":"InvalidMessageContents"},
213
- {"shape":"UnsupportedOperation"}
214
- ]
215
- },
216
- "SendMessageBatch":{
217
- "name":"SendMessageBatch",
218
- "http":{
219
- "method":"POST",
220
- "requestUri":"/"
221
- },
222
- "input":{"shape":"SendMessageBatchRequest"},
223
- "output":{
224
- "shape":"SendMessageBatchResult",
225
- "resultWrapper":"SendMessageBatchResult"
226
- },
227
- "errors":[
228
- {"shape":"TooManyEntriesInBatchRequest"},
229
- {"shape":"EmptyBatchRequest"},
230
- {"shape":"BatchEntryIdsNotDistinct"},
231
- {"shape":"BatchRequestTooLong"},
232
- {"shape":"InvalidBatchEntryId"},
233
- {"shape":"UnsupportedOperation"}
234
- ]
235
- },
236
- "SetQueueAttributes":{
237
- "name":"SetQueueAttributes",
238
- "http":{
239
- "method":"POST",
240
- "requestUri":"/"
241
- },
242
- "input":{"shape":"SetQueueAttributesRequest"},
243
- "errors":[
244
- {"shape":"InvalidAttributeName"}
245
- ]
246
- }
247
- },
248
- "shapes":{
249
- "AWSAccountIdList":{
250
- "type":"list",
251
- "member":{
252
- "shape":"String",
253
- "locationName":"AWSAccountId"
254
- },
255
- "flattened":true
256
- },
257
- "ActionNameList":{
258
- "type":"list",
259
- "member":{
260
- "shape":"String",
261
- "locationName":"ActionName"
262
- },
263
- "flattened":true
264
- },
265
- "AddPermissionRequest":{
266
- "type":"structure",
267
- "required":[
268
- "QueueUrl",
269
- "Label",
270
- "AWSAccountIds",
271
- "Actions"
272
- ],
273
- "members":{
274
- "QueueUrl":{"shape":"String"},
275
- "Label":{"shape":"String"},
276
- "AWSAccountIds":{"shape":"AWSAccountIdList"},
277
- "Actions":{"shape":"ActionNameList"}
278
- }
279
- },
280
- "AttributeMap":{
281
- "type":"map",
282
- "key":{
283
- "shape":"QueueAttributeName",
284
- "locationName":"Name"
285
- },
286
- "value":{
287
- "shape":"String",
288
- "locationName":"Value"
289
- },
290
- "flattened":true,
291
- "locationName":"Attribute"
292
- },
293
- "AttributeNameList":{
294
- "type":"list",
295
- "member":{
296
- "shape":"QueueAttributeName",
297
- "locationName":"AttributeName"
298
- },
299
- "flattened":true
300
- },
301
- "BatchEntryIdsNotDistinct":{
302
- "type":"structure",
303
- "members":{
304
- },
305
- "error":{
306
- "code":"AWS.SimpleQueueService.BatchEntryIdsNotDistinct",
307
- "httpStatusCode":400,
308
- "senderFault":true
309
- },
310
- "exception":true
311
- },
312
- "BatchRequestTooLong":{
313
- "type":"structure",
314
- "members":{
315
- },
316
- "error":{
317
- "code":"AWS.SimpleQueueService.BatchRequestTooLong",
318
- "httpStatusCode":400,
319
- "senderFault":true
320
- },
321
- "exception":true
322
- },
323
- "BatchResultErrorEntry":{
324
- "type":"structure",
325
- "required":[
326
- "Id",
327
- "SenderFault",
328
- "Code"
329
- ],
330
- "members":{
331
- "Id":{"shape":"String"},
332
- "SenderFault":{"shape":"Boolean"},
333
- "Code":{"shape":"String"},
334
- "Message":{"shape":"String"}
335
- }
336
- },
337
- "BatchResultErrorEntryList":{
338
- "type":"list",
339
- "member":{
340
- "shape":"BatchResultErrorEntry",
341
- "locationName":"BatchResultErrorEntry"
342
- },
343
- "flattened":true
344
- },
345
- "Binary":{"type":"blob"},
346
- "BinaryList":{
347
- "type":"list",
348
- "member":{
349
- "shape":"Binary",
350
- "locationName":"BinaryListValue"
351
- }
352
- },
353
- "Boolean":{"type":"boolean"},
354
- "ChangeMessageVisibilityBatchRequest":{
355
- "type":"structure",
356
- "required":[
357
- "QueueUrl",
358
- "Entries"
359
- ],
360
- "members":{
361
- "QueueUrl":{"shape":"String"},
362
- "Entries":{"shape":"ChangeMessageVisibilityBatchRequestEntryList"}
363
- }
364
- },
365
- "ChangeMessageVisibilityBatchRequestEntry":{
366
- "type":"structure",
367
- "required":[
368
- "Id",
369
- "ReceiptHandle"
370
- ],
371
- "members":{
372
- "Id":{"shape":"String"},
373
- "ReceiptHandle":{"shape":"String"},
374
- "VisibilityTimeout":{"shape":"Integer"}
375
- }
376
- },
377
- "ChangeMessageVisibilityBatchRequestEntryList":{
378
- "type":"list",
379
- "member":{
380
- "shape":"ChangeMessageVisibilityBatchRequestEntry",
381
- "locationName":"ChangeMessageVisibilityBatchRequestEntry"
382
- },
383
- "flattened":true
384
- },
385
- "ChangeMessageVisibilityBatchResult":{
386
- "type":"structure",
387
- "required":[
388
- "Successful",
389
- "Failed"
390
- ],
391
- "members":{
392
- "Successful":{"shape":"ChangeMessageVisibilityBatchResultEntryList"},
393
- "Failed":{"shape":"BatchResultErrorEntryList"}
394
- }
395
- },
396
- "ChangeMessageVisibilityBatchResultEntry":{
397
- "type":"structure",
398
- "required":["Id"],
399
- "members":{
400
- "Id":{"shape":"String"}
401
- }
402
- },
403
- "ChangeMessageVisibilityBatchResultEntryList":{
404
- "type":"list",
405
- "member":{
406
- "shape":"ChangeMessageVisibilityBatchResultEntry",
407
- "locationName":"ChangeMessageVisibilityBatchResultEntry"
408
- },
409
- "flattened":true
410
- },
411
- "ChangeMessageVisibilityRequest":{
412
- "type":"structure",
413
- "required":[
414
- "QueueUrl",
415
- "ReceiptHandle",
416
- "VisibilityTimeout"
417
- ],
418
- "members":{
419
- "QueueUrl":{"shape":"String"},
420
- "ReceiptHandle":{"shape":"String"},
421
- "VisibilityTimeout":{"shape":"Integer"}
422
- }
423
- },
424
- "CreateQueueRequest":{
425
- "type":"structure",
426
- "required":["QueueName"],
427
- "members":{
428
- "QueueName":{"shape":"String"},
429
- "Attributes":{
430
- "shape":"AttributeMap",
431
- "locationName":"Attribute"
432
- }
433
- }
434
- },
435
- "CreateQueueResult":{
436
- "type":"structure",
437
- "members":{
438
- "QueueUrl":{"shape":"String"}
439
- }
440
- },
441
- "DeleteMessageBatchRequest":{
442
- "type":"structure",
443
- "required":[
444
- "QueueUrl",
445
- "Entries"
446
- ],
447
- "members":{
448
- "QueueUrl":{"shape":"String"},
449
- "Entries":{"shape":"DeleteMessageBatchRequestEntryList"}
450
- }
451
- },
452
- "DeleteMessageBatchRequestEntry":{
453
- "type":"structure",
454
- "required":[
455
- "Id",
456
- "ReceiptHandle"
457
- ],
458
- "members":{
459
- "Id":{"shape":"String"},
460
- "ReceiptHandle":{"shape":"String"}
461
- }
462
- },
463
- "DeleteMessageBatchRequestEntryList":{
464
- "type":"list",
465
- "member":{
466
- "shape":"DeleteMessageBatchRequestEntry",
467
- "locationName":"DeleteMessageBatchRequestEntry"
468
- },
469
- "flattened":true
470
- },
471
- "DeleteMessageBatchResult":{
472
- "type":"structure",
473
- "required":[
474
- "Successful",
475
- "Failed"
476
- ],
477
- "members":{
478
- "Successful":{"shape":"DeleteMessageBatchResultEntryList"},
479
- "Failed":{"shape":"BatchResultErrorEntryList"}
480
- }
481
- },
482
- "DeleteMessageBatchResultEntry":{
483
- "type":"structure",
484
- "required":["Id"],
485
- "members":{
486
- "Id":{"shape":"String"}
487
- }
488
- },
489
- "DeleteMessageBatchResultEntryList":{
490
- "type":"list",
491
- "member":{
492
- "shape":"DeleteMessageBatchResultEntry",
493
- "locationName":"DeleteMessageBatchResultEntry"
494
- },
495
- "flattened":true
496
- },
497
- "DeleteMessageRequest":{
498
- "type":"structure",
499
- "required":[
500
- "QueueUrl",
501
- "ReceiptHandle"
502
- ],
503
- "members":{
504
- "QueueUrl":{"shape":"String"},
505
- "ReceiptHandle":{"shape":"String"}
506
- }
507
- },
508
- "DeleteQueueRequest":{
509
- "type":"structure",
510
- "required":["QueueUrl"],
511
- "members":{
512
- "QueueUrl":{"shape":"String"}
513
- }
514
- },
515
- "EmptyBatchRequest":{
516
- "type":"structure",
517
- "members":{
518
- },
519
- "error":{
520
- "code":"AWS.SimpleQueueService.EmptyBatchRequest",
521
- "httpStatusCode":400,
522
- "senderFault":true
523
- },
524
- "exception":true
525
- },
526
- "GetQueueAttributesRequest":{
527
- "type":"structure",
528
- "required":["QueueUrl"],
529
- "members":{
530
- "QueueUrl":{"shape":"String"},
531
- "AttributeNames":{"shape":"AttributeNameList"}
532
- }
533
- },
534
- "GetQueueAttributesResult":{
535
- "type":"structure",
536
- "members":{
537
- "Attributes":{
538
- "shape":"AttributeMap",
539
- "locationName":"Attribute"
540
- }
541
- }
542
- },
543
- "GetQueueUrlRequest":{
544
- "type":"structure",
545
- "required":["QueueName"],
546
- "members":{
547
- "QueueName":{"shape":"String"},
548
- "QueueOwnerAWSAccountId":{"shape":"String"}
549
- }
550
- },
551
- "GetQueueUrlResult":{
552
- "type":"structure",
553
- "members":{
554
- "QueueUrl":{"shape":"String"}
555
- }
556
- },
557
- "Integer":{"type":"integer"},
558
- "InvalidAttributeName":{
559
- "type":"structure",
560
- "members":{
561
- },
562
- "exception":true
563
- },
564
- "InvalidBatchEntryId":{
565
- "type":"structure",
566
- "members":{
567
- },
568
- "error":{
569
- "code":"AWS.SimpleQueueService.InvalidBatchEntryId",
570
- "httpStatusCode":400,
571
- "senderFault":true
572
- },
573
- "exception":true
574
- },
575
- "InvalidIdFormat":{
576
- "type":"structure",
577
- "members":{
578
- },
579
- "exception":true
580
- },
581
- "InvalidMessageContents":{
582
- "type":"structure",
583
- "members":{
584
- },
585
- "exception":true
586
- },
587
- "ListDeadLetterSourceQueuesRequest":{
588
- "type":"structure",
589
- "required":["QueueUrl"],
590
- "members":{
591
- "QueueUrl":{"shape":"String"}
592
- }
593
- },
594
- "ListDeadLetterSourceQueuesResult":{
595
- "type":"structure",
596
- "required":["queueUrls"],
597
- "members":{
598
- "queueUrls":{"shape":"QueueUrlList"}
599
- }
600
- },
601
- "ListQueuesRequest":{
602
- "type":"structure",
603
- "members":{
604
- "QueueNamePrefix":{"shape":"String"}
605
- }
606
- },
607
- "ListQueuesResult":{
608
- "type":"structure",
609
- "members":{
610
- "QueueUrls":{"shape":"QueueUrlList"}
611
- }
612
- },
613
- "Message":{
614
- "type":"structure",
615
- "members":{
616
- "MessageId":{"shape":"String"},
617
- "ReceiptHandle":{"shape":"String"},
618
- "MD5OfBody":{"shape":"String"},
619
- "Body":{"shape":"String"},
620
- "Attributes":{
621
- "shape":"AttributeMap",
622
- "locationName":"Attribute"
623
- },
624
- "MD5OfMessageAttributes":{"shape":"String"},
625
- "MessageAttributes":{
626
- "shape":"MessageAttributeMap",
627
- "locationName":"MessageAttribute"
628
- }
629
- }
630
- },
631
- "MessageAttributeMap":{
632
- "type":"map",
633
- "key":{
634
- "shape":"String",
635
- "locationName":"Name"
636
- },
637
- "value":{
638
- "shape":"MessageAttributeValue",
639
- "locationName":"Value"
640
- },
641
- "flattened":true
642
- },
643
- "MessageAttributeName":{"type":"string"},
644
- "MessageAttributeNameList":{
645
- "type":"list",
646
- "member":{
647
- "shape":"MessageAttributeName",
648
- "locationName":"MessageAttributeName"
649
- },
650
- "flattened":true
651
- },
652
- "MessageAttributeValue":{
653
- "type":"structure",
654
- "required":["DataType"],
655
- "members":{
656
- "StringValue":{"shape":"String"},
657
- "BinaryValue":{"shape":"Binary"},
658
- "StringListValues":{
659
- "shape":"StringList",
660
- "flattened":true,
661
- "locationName":"StringListValue"
662
- },
663
- "BinaryListValues":{
664
- "shape":"BinaryList",
665
- "flattened":true,
666
- "locationName":"BinaryListValue"
667
- },
668
- "DataType":{"shape":"String"}
669
- }
670
- },
671
- "MessageList":{
672
- "type":"list",
673
- "member":{
674
- "shape":"Message",
675
- "locationName":"Message"
676
- },
677
- "flattened":true
678
- },
679
- "MessageNotInflight":{
680
- "type":"structure",
681
- "members":{
682
- },
683
- "error":{
684
- "code":"AWS.SimpleQueueService.MessageNotInflight",
685
- "httpStatusCode":400,
686
- "senderFault":true
687
- },
688
- "exception":true
689
- },
690
- "OverLimit":{
691
- "type":"structure",
692
- "members":{
693
- },
694
- "error":{
695
- "code":"OverLimit",
696
- "httpStatusCode":403,
697
- "senderFault":true
698
- },
699
- "exception":true
700
- },
701
- "PurgeQueueInProgress":{
702
- "type":"structure",
703
- "members":{
704
- },
705
- "error":{
706
- "code":"AWS.SimpleQueueService.PurgeQueueInProgress",
707
- "httpStatusCode":403,
708
- "senderFault":true
709
- },
710
- "exception":true
711
- },
712
- "PurgeQueueRequest":{
713
- "type":"structure",
714
- "required":["QueueUrl"],
715
- "members":{
716
- "QueueUrl":{"shape":"String"}
717
- }
718
- },
719
- "QueueAttributeName":{
720
- "type":"string",
721
- "enum":[
722
- "Policy",
723
- "VisibilityTimeout",
724
- "MaximumMessageSize",
725
- "MessageRetentionPeriod",
726
- "ApproximateNumberOfMessages",
727
- "ApproximateNumberOfMessagesNotVisible",
728
- "CreatedTimestamp",
729
- "LastModifiedTimestamp",
730
- "QueueArn",
731
- "ApproximateNumberOfMessagesDelayed",
732
- "DelaySeconds",
733
- "ReceiveMessageWaitTimeSeconds",
734
- "RedrivePolicy"
735
- ]
736
- },
737
- "QueueDeletedRecently":{
738
- "type":"structure",
739
- "members":{
740
- },
741
- "error":{
742
- "code":"AWS.SimpleQueueService.QueueDeletedRecently",
743
- "httpStatusCode":400,
744
- "senderFault":true
745
- },
746
- "exception":true
747
- },
748
- "QueueDoesNotExist":{
749
- "type":"structure",
750
- "members":{
751
- },
752
- "error":{
753
- "code":"AWS.SimpleQueueService.NonExistentQueue",
754
- "httpStatusCode":400,
755
- "senderFault":true
756
- },
757
- "exception":true
758
- },
759
- "QueueNameExists":{
760
- "type":"structure",
761
- "members":{
762
- },
763
- "error":{
764
- "code":"QueueAlreadyExists",
765
- "httpStatusCode":400,
766
- "senderFault":true
767
- },
768
- "exception":true
769
- },
770
- "QueueUrlList":{
771
- "type":"list",
772
- "member":{
773
- "shape":"String",
774
- "locationName":"QueueUrl"
775
- },
776
- "flattened":true
777
- },
778
- "ReceiptHandleIsInvalid":{
779
- "type":"structure",
780
- "members":{
781
- },
782
- "exception":true
783
- },
784
- "ReceiveMessageRequest":{
785
- "type":"structure",
786
- "required":["QueueUrl"],
787
- "members":{
788
- "QueueUrl":{"shape":"String"},
789
- "AttributeNames":{"shape":"AttributeNameList"},
790
- "MessageAttributeNames":{"shape":"MessageAttributeNameList"},
791
- "MaxNumberOfMessages":{"shape":"Integer"},
792
- "VisibilityTimeout":{"shape":"Integer"},
793
- "WaitTimeSeconds":{"shape":"Integer"}
794
- }
795
- },
796
- "ReceiveMessageResult":{
797
- "type":"structure",
798
- "members":{
799
- "Messages":{"shape":"MessageList"}
800
- }
801
- },
802
- "RemovePermissionRequest":{
803
- "type":"structure",
804
- "required":[
805
- "QueueUrl",
806
- "Label"
807
- ],
808
- "members":{
809
- "QueueUrl":{"shape":"String"},
810
- "Label":{"shape":"String"}
811
- }
812
- },
813
- "SendMessageBatchRequest":{
814
- "type":"structure",
815
- "required":[
816
- "QueueUrl",
817
- "Entries"
818
- ],
819
- "members":{
820
- "QueueUrl":{"shape":"String"},
821
- "Entries":{"shape":"SendMessageBatchRequestEntryList"}
822
- }
823
- },
824
- "SendMessageBatchRequestEntry":{
825
- "type":"structure",
826
- "required":[
827
- "Id",
828
- "MessageBody"
829
- ],
830
- "members":{
831
- "Id":{"shape":"String"},
832
- "MessageBody":{"shape":"String"},
833
- "DelaySeconds":{"shape":"Integer"},
834
- "MessageAttributes":{
835
- "shape":"MessageAttributeMap",
836
- "locationName":"MessageAttribute"
837
- }
838
- }
839
- },
840
- "SendMessageBatchRequestEntryList":{
841
- "type":"list",
842
- "member":{
843
- "shape":"SendMessageBatchRequestEntry",
844
- "locationName":"SendMessageBatchRequestEntry"
845
- },
846
- "flattened":true
847
- },
848
- "SendMessageBatchResult":{
849
- "type":"structure",
850
- "required":[
851
- "Successful",
852
- "Failed"
853
- ],
854
- "members":{
855
- "Successful":{"shape":"SendMessageBatchResultEntryList"},
856
- "Failed":{"shape":"BatchResultErrorEntryList"}
857
- }
858
- },
859
- "SendMessageBatchResultEntry":{
860
- "type":"structure",
861
- "required":[
862
- "Id",
863
- "MessageId",
864
- "MD5OfMessageBody"
865
- ],
866
- "members":{
867
- "Id":{"shape":"String"},
868
- "MessageId":{"shape":"String"},
869
- "MD5OfMessageBody":{"shape":"String"},
870
- "MD5OfMessageAttributes":{"shape":"String"}
871
- }
872
- },
873
- "SendMessageBatchResultEntryList":{
874
- "type":"list",
875
- "member":{
876
- "shape":"SendMessageBatchResultEntry",
877
- "locationName":"SendMessageBatchResultEntry"
878
- },
879
- "flattened":true
880
- },
881
- "SendMessageRequest":{
882
- "type":"structure",
883
- "required":[
884
- "QueueUrl",
885
- "MessageBody"
886
- ],
887
- "members":{
888
- "QueueUrl":{"shape":"String"},
889
- "MessageBody":{"shape":"String"},
890
- "DelaySeconds":{"shape":"Integer"},
891
- "MessageAttributes":{
892
- "shape":"MessageAttributeMap",
893
- "locationName":"MessageAttribute"
894
- }
895
- }
896
- },
897
- "SendMessageResult":{
898
- "type":"structure",
899
- "members":{
900
- "MD5OfMessageBody":{"shape":"String"},
901
- "MD5OfMessageAttributes":{"shape":"String"},
902
- "MessageId":{"shape":"String"}
903
- }
904
- },
905
- "SetQueueAttributesRequest":{
906
- "type":"structure",
907
- "required":[
908
- "QueueUrl",
909
- "Attributes"
910
- ],
911
- "members":{
912
- "QueueUrl":{"shape":"String"},
913
- "Attributes":{
914
- "shape":"AttributeMap",
915
- "locationName":"Attribute"
916
- }
917
- }
918
- },
919
- "String":{"type":"string"},
920
- "StringList":{
921
- "type":"list",
922
- "member":{
923
- "shape":"String",
924
- "locationName":"StringListValue"
925
- }
926
- },
927
- "TooManyEntriesInBatchRequest":{
928
- "type":"structure",
929
- "members":{
930
- },
931
- "error":{
932
- "code":"AWS.SimpleQueueService.TooManyEntriesInBatchRequest",
933
- "httpStatusCode":400,
934
- "senderFault":true
935
- },
936
- "exception":true
937
- },
938
- "UnsupportedOperation":{
939
- "type":"structure",
940
- "members":{
941
- },
942
- "error":{
943
- "code":"AWS.SimpleQueueService.UnsupportedOperation",
944
- "httpStatusCode":400,
945
- "senderFault":true
946
- },
947
- "exception":true
948
- }
949
- }
950
- }