aws-sdk-core 2.8.4 → 3.129.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (714) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1287 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/ca-bundle.crt +3615 -3541
  6. data/lib/aws-defaults/default_configuration.rb +153 -0
  7. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  8. data/lib/aws-defaults.rb +3 -0
  9. data/lib/aws-sdk-core/arn.rb +92 -0
  10. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  11. data/lib/aws-sdk-core/assume_role_credentials.rb +20 -0
  12. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +109 -0
  13. data/lib/aws-sdk-core/async_client_stubs.rb +82 -0
  14. data/lib/aws-sdk-core/binary/decode_handler.rb +58 -0
  15. data/lib/aws-sdk-core/binary/encode_handler.rb +34 -0
  16. data/lib/aws-sdk-core/binary/event_builder.rb +124 -0
  17. data/lib/aws-sdk-core/binary/event_parser.rb +136 -0
  18. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +64 -0
  19. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +55 -0
  20. data/lib/aws-sdk-core/binary.rb +8 -0
  21. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +51 -0
  22. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +199 -0
  23. data/lib/aws-sdk-core/client_stubs.rb +69 -12
  24. data/lib/aws-sdk-core/credential_provider.rb +2 -29
  25. data/lib/aws-sdk-core/credential_provider_chain.rb +111 -32
  26. data/lib/aws-sdk-core/credentials.rb +2 -0
  27. data/lib/aws-sdk-core/deprecations.rb +17 -11
  28. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  29. data/lib/aws-sdk-core/ec2_metadata.rb +238 -0
  30. data/lib/aws-sdk-core/ecs_credentials.rb +20 -11
  31. data/lib/aws-sdk-core/endpoint_cache.rb +193 -0
  32. data/lib/aws-sdk-core/errors.rb +227 -18
  33. data/lib/aws-sdk-core/event_emitter.rb +64 -0
  34. data/lib/aws-sdk-core/ini_parser.rb +3 -0
  35. data/lib/aws-sdk-core/instance_profile_credentials.rb +237 -45
  36. data/lib/aws-sdk-core/json/builder.rb +6 -2
  37. data/lib/aws-sdk-core/json/error_handler.rb +21 -2
  38. data/lib/aws-sdk-core/json/handler.rb +24 -3
  39. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  40. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  41. data/lib/aws-sdk-core/json/parser.rb +11 -1
  42. data/lib/aws-sdk-core/json.rb +15 -33
  43. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  44. data/lib/aws-sdk-core/log/handler.rb +2 -0
  45. data/lib/aws-sdk-core/log/param_filter.rb +41 -15
  46. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  47. data/lib/aws-sdk-core/pageable_response.rb +112 -47
  48. data/lib/aws-sdk-core/pager.rb +35 -25
  49. data/lib/aws-sdk-core/param_converter.rb +5 -3
  50. data/lib/aws-sdk-core/param_validator.rb +109 -26
  51. data/lib/aws-sdk-core/plugins/api_key.rb +56 -0
  52. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +32 -0
  53. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +36 -0
  54. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +39 -0
  55. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  56. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +283 -0
  57. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +86 -0
  58. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +81 -0
  59. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  60. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +168 -0
  61. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +65 -0
  62. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +32 -0
  63. data/lib/aws-sdk-core/plugins/global_configuration.rb +21 -10
  64. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  65. data/lib/aws-sdk-core/plugins/http_checksum.rb +64 -0
  66. data/lib/aws-sdk-core/plugins/idempotency_token.rb +3 -2
  67. data/lib/aws-sdk-core/plugins/invocation_id.rb +35 -0
  68. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +31 -0
  69. data/lib/aws-sdk-core/plugins/logging.rb +20 -18
  70. data/lib/aws-sdk-core/plugins/param_converter.rb +11 -5
  71. data/lib/aws-sdk-core/plugins/param_validator.rb +10 -5
  72. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +29 -0
  73. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +4 -1
  74. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +15 -12
  75. data/lib/aws-sdk-core/plugins/protocols/query.rb +4 -2
  76. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  77. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  78. data/lib/aws-sdk-core/plugins/recursion_detection.rb +27 -0
  79. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +96 -28
  80. data/lib/aws-sdk-core/plugins/response_paging.rb +8 -19
  81. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  82. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  83. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +146 -0
  84. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  85. data/lib/aws-sdk-core/plugins/retry_errors.rb +342 -82
  86. data/lib/aws-sdk-core/plugins/signature_v2.rb +53 -0
  87. data/lib/aws-sdk-core/plugins/signature_v4.rb +144 -0
  88. data/lib/aws-sdk-core/plugins/stub_responses.rb +44 -18
  89. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  90. data/lib/aws-sdk-core/plugins/user_agent.rb +25 -10
  91. data/lib/aws-sdk-core/process_credentials.rb +81 -0
  92. data/lib/aws-sdk-core/query/ec2_param_builder.rb +11 -3
  93. data/lib/aws-sdk-core/query/handler.rb +22 -16
  94. data/lib/aws-sdk-core/query/param.rb +2 -0
  95. data/lib/aws-sdk-core/query/param_builder.rb +12 -4
  96. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  97. data/lib/aws-sdk-core/query.rb +7 -0
  98. data/lib/aws-sdk-core/refreshing_credentials.rb +16 -3
  99. data/lib/aws-sdk-core/resources/collection.rb +123 -0
  100. data/lib/aws-sdk-core/rest/handler.rb +3 -0
  101. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  102. data/lib/aws-sdk-core/rest/request/builder.rb +4 -1
  103. data/lib/aws-sdk-core/rest/request/endpoint.rb +13 -6
  104. data/lib/aws-sdk-core/rest/request/headers.rb +38 -5
  105. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +17 -2
  106. data/lib/aws-sdk-core/rest/response/body.rb +16 -1
  107. data/lib/aws-sdk-core/rest/response/headers.rb +13 -1
  108. data/lib/aws-sdk-core/rest/response/parser.rb +20 -14
  109. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  110. data/lib/aws-sdk-core/rest.rb +12 -0
  111. data/lib/aws-sdk-core/shared_config.rb +205 -69
  112. data/lib/aws-sdk-core/shared_credentials.rb +11 -1
  113. data/lib/aws-sdk-core/sso_credentials.rb +136 -0
  114. data/lib/aws-sdk-core/structure.rb +33 -13
  115. data/lib/aws-sdk-core/stubbing/data_applicator.rb +3 -1
  116. data/lib/aws-sdk-core/stubbing/empty_stub.rb +12 -3
  117. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +10 -0
  118. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +3 -1
  119. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  120. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  121. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +120 -2
  122. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +8 -2
  123. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +11 -7
  124. data/lib/aws-sdk-core/stubbing/stub_data.rb +18 -3
  125. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  126. data/lib/aws-sdk-core/type_builder.rb +2 -0
  127. data/lib/aws-sdk-core/util.rb +72 -0
  128. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  129. data/lib/aws-sdk-core/waiters/poller.rb +7 -9
  130. data/lib/aws-sdk-core/waiters/waiter.rb +5 -2
  131. data/lib/aws-sdk-core/waiters.rb +5 -0
  132. data/lib/aws-sdk-core/xml/builder.rb +15 -7
  133. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  134. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  135. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  136. data/lib/aws-sdk-core/xml/error_handler.rb +30 -6
  137. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  138. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  139. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +2 -0
  140. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +7 -1
  141. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  142. data/lib/aws-sdk-core/xml/parser/frame.rb +31 -6
  143. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  144. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  145. data/lib/aws-sdk-core/xml/parser.rb +8 -11
  146. data/lib/aws-sdk-core/xml.rb +11 -0
  147. data/lib/aws-sdk-core.rb +112 -440
  148. data/lib/aws-sdk-sso/client.rb +570 -0
  149. data/lib/aws-sdk-sso/client_api.rb +190 -0
  150. data/lib/aws-sdk-sso/customizations.rb +1 -0
  151. data/lib/aws-sdk-sso/errors.rb +102 -0
  152. data/lib/aws-sdk-sso/resource.rb +26 -0
  153. data/lib/aws-sdk-sso/types.rb +352 -0
  154. data/lib/aws-sdk-sso.rb +55 -0
  155. data/lib/aws-sdk-sts/client.rb +2315 -0
  156. data/lib/aws-sdk-sts/client_api.rb +344 -0
  157. data/lib/aws-sdk-sts/customizations.rb +4 -0
  158. data/lib/aws-sdk-sts/errors.rb +166 -0
  159. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  160. data/lib/aws-sdk-sts/presigner.rb +75 -0
  161. data/lib/aws-sdk-sts/resource.rb +26 -0
  162. data/lib/aws-sdk-sts/types.rb +1673 -0
  163. data/lib/aws-sdk-sts.rb +55 -0
  164. data/lib/seahorse/client/async_base.rb +52 -0
  165. data/lib/seahorse/client/async_response.rb +64 -0
  166. data/lib/seahorse/client/base.rb +8 -9
  167. data/lib/seahorse/client/block_io.rb +6 -2
  168. data/lib/seahorse/client/configuration.rb +16 -2
  169. data/lib/seahorse/client/events.rb +3 -1
  170. data/lib/seahorse/client/h2/connection.rb +250 -0
  171. data/lib/seahorse/client/h2/handler.rb +152 -0
  172. data/lib/seahorse/client/handler.rb +2 -0
  173. data/lib/seahorse/client/handler_builder.rb +2 -0
  174. data/lib/seahorse/client/handler_list.rb +2 -0
  175. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  176. data/lib/seahorse/client/http/async_response.rb +44 -0
  177. data/lib/seahorse/client/http/headers.rb +2 -0
  178. data/lib/seahorse/client/http/request.rb +5 -3
  179. data/lib/seahorse/client/http/response.rb +18 -11
  180. data/lib/seahorse/client/logging/formatter.rb +9 -1
  181. data/lib/seahorse/client/logging/handler.rb +4 -0
  182. data/lib/seahorse/client/managed_file.rb +2 -0
  183. data/lib/seahorse/client/net_http/connection_pool.rb +46 -27
  184. data/lib/seahorse/client/net_http/handler.rb +29 -7
  185. data/lib/seahorse/client/net_http/patches.rb +18 -79
  186. data/lib/seahorse/client/networking_error.rb +30 -0
  187. data/lib/seahorse/client/plugin.rb +69 -6
  188. data/lib/seahorse/client/plugin_list.rb +2 -0
  189. data/lib/seahorse/client/plugins/content_length.rb +14 -3
  190. data/lib/seahorse/client/plugins/endpoint.rb +16 -10
  191. data/lib/seahorse/client/plugins/h2.rb +69 -0
  192. data/lib/seahorse/client/plugins/logging.rb +19 -19
  193. data/lib/seahorse/client/plugins/net_http.rb +58 -14
  194. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  195. data/lib/seahorse/client/plugins/raise_response_errors.rb +6 -4
  196. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  197. data/lib/seahorse/client/plugins/response_target.rb +28 -10
  198. data/lib/seahorse/client/request.rb +2 -0
  199. data/lib/seahorse/client/request_context.rb +7 -0
  200. data/lib/seahorse/client/response.rb +5 -5
  201. data/lib/seahorse/model/api.rb +43 -0
  202. data/lib/seahorse/model/authorizer.rb +23 -0
  203. data/lib/seahorse/model/operation.rb +28 -0
  204. data/lib/seahorse/model/shapes.rb +71 -2
  205. data/lib/seahorse/util.rb +9 -22
  206. data/lib/seahorse/version.rb +2 -0
  207. data/lib/seahorse.rb +63 -60
  208. metadata +132 -520
  209. data/apis/acm/2015-12-08/api-2.json +0 -595
  210. data/apis/acm/2015-12-08/examples-1.json +0 -5
  211. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  212. data/apis/apigateway/2015-07-09/api-2.json +0 -4523
  213. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  214. data/apis/apigateway/2015-07-09/paginators-1.json +0 -70
  215. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -511
  216. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  217. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  218. data/apis/appstream/2016-12-01/api-2.json +0 -820
  219. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  220. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  221. data/apis/autoscaling/2011-01-01/api-2.json +0 -2172
  222. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1395
  223. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  224. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  225. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  226. data/apis/batch/2016-08-10/api-2.json +0 -885
  227. data/apis/batch/2016-08-10/examples-1.json +0 -589
  228. data/apis/budgets/2016-10-20/api-2.json +0 -697
  229. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  230. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  231. data/apis/clouddirectory/2016-05-10/api-2.json +0 -3033
  232. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  233. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -84
  234. data/apis/cloudformation/2010-05-15/api-2.json +0 -1428
  235. data/apis/cloudformation/2010-05-15/examples-1.json +0 -158
  236. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  237. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  238. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -157
  239. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  240. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  241. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  242. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  243. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  244. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  245. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  246. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  247. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  248. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  249. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  250. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  251. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  252. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  253. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  254. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  255. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  256. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  257. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  258. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  259. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  260. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  261. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  262. data/apis/cloudhsm/2014-05-30/api-2.json +0 -878
  263. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  264. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  265. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  266. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  267. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  268. data/apis/cloudtrail/2013-11-01/api-2.json +0 -907
  269. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  270. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  271. data/apis/codebuild/2016-10-06/api-2.json +0 -702
  272. data/apis/codebuild/2016-10-06/examples-1.json +0 -5
  273. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  274. data/apis/codecommit/2015-04-13/api-2.json +0 -1112
  275. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  276. data/apis/codecommit/2015-04-13/paginators-1.json +0 -19
  277. data/apis/codedeploy/2014-10-06/api-2.json +0 -2300
  278. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  279. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -4
  280. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  281. data/apis/codepipeline/2015-07-09/api-2.json +0 -1714
  282. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  283. data/apis/cognito-identity/2014-06-30/api-2.json +0 -943
  284. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  285. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  286. data/apis/cognito-idp/2016-04-18/api-2.json +0 -3325
  287. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  288. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  289. data/apis/config/2014-11-12/api-2.json +0 -1417
  290. data/apis/config/2014-11-12/examples-1.json +0 -5
  291. data/apis/config/2014-11-12/paginators-1.json +0 -10
  292. data/apis/cur/2017-01-06/api-2.json +0 -226
  293. data/apis/cur/2017-01-06/examples-1.json +0 -5
  294. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  295. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  296. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  297. data/apis/devicefarm/2015-06-23/api-2.json +0 -2031
  298. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  299. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  300. data/apis/directconnect/2012-10-25/api-2.json +0 -1347
  301. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  302. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  303. data/apis/discovery/2015-11-01/api-2.json +0 -867
  304. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  305. data/apis/dms/2016-01-01/api-2.json +0 -1505
  306. data/apis/dms/2016-01-01/examples-1.json +0 -5
  307. data/apis/ds/2015-04-16/api-2.json +0 -1972
  308. data/apis/ds/2015-04-16/examples-1.json +0 -5
  309. data/apis/dynamodb/2011-12-05/api-2.json +0 -802
  310. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  311. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  312. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  313. data/apis/dynamodb/2012-08-10/api-2.json +0 -1405
  314. data/apis/dynamodb/2012-08-10/examples-1.json +0 -628
  315. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  316. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  317. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  318. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  319. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  320. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  321. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  322. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  323. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  324. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  325. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  326. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  327. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  328. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  329. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  330. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  331. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  332. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  333. data/apis/ec2/2016-11-15/api-2.json +0 -15373
  334. data/apis/ec2/2016-11-15/examples-1.json +0 -3740
  335. data/apis/ec2/2016-11-15/paginators-1.json +0 -144
  336. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  337. data/apis/ec2/2016-11-15/waiters-2.json +0 -611
  338. data/apis/ecr/2015-09-21/api-2.json +0 -947
  339. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  340. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  341. data/apis/ecs/2014-11-13/api-2.json +0 -1625
  342. data/apis/ecs/2014-11-13/examples-1.json +0 -883
  343. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  344. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  345. data/apis/elasticache/2015-02-02/api-2.json +0 -2474
  346. data/apis/elasticache/2015-02-02/examples-1.json +0 -2968
  347. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  348. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  349. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2332
  350. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  351. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  352. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -714
  353. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -222
  354. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1590
  355. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  356. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  357. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  358. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -1823
  359. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  360. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  361. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1794
  362. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  363. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  364. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  365. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1483
  366. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  367. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  368. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  369. data/apis/email/2010-12-01/api-2.json +0 -2212
  370. data/apis/email/2010-12-01/examples-1.json +0 -953
  371. data/apis/email/2010-12-01/paginators-1.json +0 -13
  372. data/apis/email/2010-12-01/waiters-2.json +0 -18
  373. data/apis/es/2015-01-01/api-2.json +0 -862
  374. data/apis/es/2015-01-01/examples-1.json +0 -5
  375. data/apis/es/2015-01-01/paginators-1.json +0 -14
  376. data/apis/events/2015-10-07/api-2.json +0 -644
  377. data/apis/events/2015-10-07/examples-1.json +0 -5
  378. data/apis/firehose/2015-08-04/api-2.json +0 -866
  379. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  380. data/apis/gamelift/2015-10-01/api-2.json +0 -2256
  381. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  382. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  383. data/apis/glacier/2012-06-01/api-2.json +0 -1734
  384. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  385. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  386. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  387. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  388. data/apis/health/2016-08-04/api-2.json +0 -547
  389. data/apis/health/2016-08-04/examples-1.json +0 -5
  390. data/apis/health/2016-08-04/paginators-1.json +0 -31
  391. data/apis/iam/2010-05-08/api-2.json +0 -4730
  392. data/apis/iam/2010-05-08/examples-1.json +0 -1191
  393. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  394. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  395. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  396. data/apis/importexport/2010-06-01/api-2.json +0 -667
  397. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  398. data/apis/inspector/2016-02-16/api-2.json +0 -1965
  399. data/apis/inspector/2016-02-16/examples-1.json +0 -1140
  400. data/apis/iot/2015-05-28/api-2.json +0 -4347
  401. data/apis/iot/2015-05-28/examples-1.json +0 -5
  402. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  403. data/apis/kinesis/2013-12-02/api-2.json +0 -890
  404. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  405. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  406. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  407. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1049
  408. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  409. data/apis/kms/2014-11-01/api-2.json +0 -1492
  410. data/apis/kms/2014-11-01/examples-1.json +0 -862
  411. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  412. data/apis/lambda/2014-11-11/api-2.json +0 -668
  413. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  414. data/apis/lambda/2015-03-31/api-2.json +0 -1514
  415. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  416. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  417. data/apis/lightsail/2016-11-28/api-2.json +0 -2137
  418. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  419. data/apis/logs/2014-03-28/api-2.json +0 -1246
  420. data/apis/logs/2014-03-28/examples-1.json +0 -5
  421. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  422. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  423. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  424. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  425. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  426. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -170
  427. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  428. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -263
  429. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  430. data/apis/monitoring/2010-08-01/api-2.json +0 -811
  431. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  432. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  433. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  434. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  435. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1665
  436. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  437. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  438. data/apis/opsworks/2013-02-18/api-2.json +0 -2607
  439. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  440. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  441. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  442. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  443. data/apis/opsworkscm/2016-11-01/api-2.json +0 -730
  444. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  445. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  446. data/apis/organizations/2016-11-28/api-2.json +0 -1989
  447. data/apis/organizations/2016-11-28/examples-1.json +0 -1398
  448. data/apis/organizations/2016-11-28/paginators-1.json +0 -4
  449. data/apis/pinpoint/2016-12-01/api-2.json +0 -2753
  450. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  451. data/apis/polly/2016-06-10/api-2.json +0 -504
  452. data/apis/polly/2016-06-10/examples-1.json +0 -171
  453. data/apis/rds/2013-01-10/api-2.json +0 -2902
  454. data/apis/rds/2013-01-10/examples-1.json +0 -5
  455. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  456. data/apis/rds/2013-02-12/api-2.json +0 -3058
  457. data/apis/rds/2013-02-12/examples-1.json +0 -5
  458. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  459. data/apis/rds/2013-09-09/api-2.json +0 -3159
  460. data/apis/rds/2013-09-09/examples-1.json +0 -5
  461. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  462. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  463. data/apis/rds/2014-09-01/api-2.json +0 -3272
  464. data/apis/rds/2014-09-01/examples-1.json +0 -5
  465. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  466. data/apis/rds/2014-10-31/api-2.json +0 -5098
  467. data/apis/rds/2014-10-31/examples-1.json +0 -1861
  468. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  469. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  470. data/apis/rds/2014-10-31/waiters-2.json +0 -90
  471. data/apis/redshift/2012-12-01/api-2.json +0 -3775
  472. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  473. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  474. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  475. data/apis/rekognition/2016-06-27/api-2.json +0 -844
  476. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  477. data/apis/rekognition/2016-06-27/paginators-1.json +0 -16
  478. data/apis/route53/2013-04-01/api-2.json +0 -3312
  479. data/apis/route53/2013-04-01/examples-1.json +0 -762
  480. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  481. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  482. data/apis/route53domains/2014-05-15/api-2.json +0 -1323
  483. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  484. data/apis/runtime.lex/2016-11-28/api-2.json +0 -243
  485. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  486. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  487. data/apis/s3/2006-03-01/api-2.json +0 -5368
  488. data/apis/s3/2006-03-01/examples-1.json +0 -5
  489. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  490. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  491. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  492. data/apis/sdb/2009-04-15/api-2.json +0 -955
  493. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  494. data/apis/servicecatalog/2015-12-10/api-2.json +0 -1955
  495. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  496. data/apis/shield/2016-06-02/api-2.json +0 -494
  497. data/apis/shield/2016-06-02/examples-1.json +0 -5
  498. data/apis/sms/2016-10-24/api-2.json +0 -612
  499. data/apis/sms/2016-10-24/examples-1.json +0 -5
  500. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  501. data/apis/snowball/2016-06-30/api-2.json +0 -834
  502. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  503. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  504. data/apis/sns/2010-03-31/api-2.json +0 -1145
  505. data/apis/sns/2010-03-31/examples-1.json +0 -5
  506. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  507. data/apis/sns/2010-03-31/resources-1.json +0 -327
  508. data/apis/sqs/2012-11-05/api-2.json +0 -986
  509. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  510. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  511. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  512. data/apis/ssm/2014-11-06/api-2.json +0 -5296
  513. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  514. data/apis/ssm/2014-11-06/paginators-1.json +0 -40
  515. data/apis/states/2016-11-23/api-2.json +0 -1021
  516. data/apis/states/2016-11-23/examples-1.json +0 -5
  517. data/apis/states/2016-11-23/paginators-1.json +0 -28
  518. data/apis/storagegateway/2013-06-30/api-2.json +0 -2551
  519. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  520. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  521. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  522. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  523. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  524. data/apis/sts/2011-06-15/api-2.json +0 -522
  525. data/apis/sts/2011-06-15/examples-1.json +0 -206
  526. data/apis/support/2013-04-15/api-2.json +0 -772
  527. data/apis/support/2013-04-15/examples-1.json +0 -5
  528. data/apis/support/2013-04-15/paginators-1.json +0 -25
  529. data/apis/swf/2012-01-25/api-2.json +0 -2839
  530. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  531. data/apis/waf/2015-08-24/api-2.json +0 -1959
  532. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  533. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  534. data/apis/waf-regional/2016-11-28/api-2.json +0 -2090
  535. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  536. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  537. data/apis/workdocs/2016-05-01/api-2.json +0 -1781
  538. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  539. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  540. data/apis/workspaces/2015-04-08/api-2.json +0 -840
  541. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  542. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  543. data/apis/xray/2016-04-12/api-2.json +0 -491
  544. data/apis/xray/2016-04-12/examples-1.json +0 -5
  545. data/bin/aws.rb +0 -180
  546. data/endpoints.json +0 -1935
  547. data/lib/aws-sdk-core/acm.rb +0 -6
  548. data/lib/aws-sdk-core/api/builder.rb +0 -106
  549. data/lib/aws-sdk-core/api/customizations.rb +0 -261
  550. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  551. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  552. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  553. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  554. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  555. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  556. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  557. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  558. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  559. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  560. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  561. data/lib/aws-sdk-core/apigateway.rb +0 -6
  562. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  563. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  564. data/lib/aws-sdk-core/appstream.rb +0 -6
  565. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  566. data/lib/aws-sdk-core/batch.rb +0 -5
  567. data/lib/aws-sdk-core/budgets.rb +0 -6
  568. data/lib/aws-sdk-core/checksums.rb +0 -51
  569. data/lib/aws-sdk-core/client.rb +0 -59
  570. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  571. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  572. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  573. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  574. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  575. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  576. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  577. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  578. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  579. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  580. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  581. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  582. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  583. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  584. data/lib/aws-sdk-core/codebuild.rb +0 -6
  585. data/lib/aws-sdk-core/codecommit.rb +0 -6
  586. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  587. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  588. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  589. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  590. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  591. data/lib/aws-sdk-core/configservice.rb +0 -6
  592. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  593. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  594. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  595. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  596. data/lib/aws-sdk-core/directconnect.rb +0 -6
  597. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  598. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  599. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  600. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  601. data/lib/aws-sdk-core/ec2.rb +0 -8
  602. data/lib/aws-sdk-core/ecr.rb +0 -6
  603. data/lib/aws-sdk-core/ecs.rb +0 -7
  604. data/lib/aws-sdk-core/efs.rb +0 -5
  605. data/lib/aws-sdk-core/elasticache.rb +0 -7
  606. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  607. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  608. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -6
  609. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  610. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  611. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  612. data/lib/aws-sdk-core/emr.rb +0 -7
  613. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  614. data/lib/aws-sdk-core/firehose.rb +0 -5
  615. data/lib/aws-sdk-core/gamelift.rb +0 -6
  616. data/lib/aws-sdk-core/glacier.rb +0 -8
  617. data/lib/aws-sdk-core/health.rb +0 -6
  618. data/lib/aws-sdk-core/iam.rb +0 -8
  619. data/lib/aws-sdk-core/importexport.rb +0 -5
  620. data/lib/aws-sdk-core/inspector.rb +0 -5
  621. data/lib/aws-sdk-core/iot.rb +0 -5
  622. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  623. data/lib/aws-sdk-core/kinesis.rb +0 -7
  624. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -5
  625. data/lib/aws-sdk-core/kms.rb +0 -6
  626. data/lib/aws-sdk-core/lambda.rb +0 -6
  627. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  628. data/lib/aws-sdk-core/lex.rb +0 -6
  629. data/lib/aws-sdk-core/lightsail.rb +0 -5
  630. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  631. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  632. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  633. data/lib/aws-sdk-core/mturk.rb +0 -6
  634. data/lib/aws-sdk-core/opsworks.rb +0 -8
  635. data/lib/aws-sdk-core/opsworkscm.rb +0 -6
  636. data/lib/aws-sdk-core/organizations.rb +0 -6
  637. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  638. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  639. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  640. data/lib/aws-sdk-core/partitions/service.rb +0 -74
  641. data/lib/aws-sdk-core/partitions.rb +0 -174
  642. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  643. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  644. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  645. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  646. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  647. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  648. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  649. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  650. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  651. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  652. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  653. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  654. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  655. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  656. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -142
  657. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  658. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  659. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  660. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  661. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  662. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  663. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  664. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  665. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  666. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  667. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  668. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  669. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  670. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  671. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  672. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  673. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  674. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  675. data/lib/aws-sdk-core/polly.rb +0 -13
  676. data/lib/aws-sdk-core/rds.rb +0 -8
  677. data/lib/aws-sdk-core/redshift.rb +0 -7
  678. data/lib/aws-sdk-core/rekognition.rb +0 -6
  679. data/lib/aws-sdk-core/route53.rb +0 -7
  680. data/lib/aws-sdk-core/route53domains.rb +0 -5
  681. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  682. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  683. data/lib/aws-sdk-core/s3.rb +0 -26
  684. data/lib/aws-sdk-core/service.rb +0 -4
  685. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  686. data/lib/aws-sdk-core/ses.rb +0 -7
  687. data/lib/aws-sdk-core/shield.rb +0 -5
  688. data/lib/aws-sdk-core/signers/base.rb +0 -31
  689. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  690. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  691. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  692. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  693. data/lib/aws-sdk-core/simpledb.rb +0 -5
  694. data/lib/aws-sdk-core/sms.rb +0 -6
  695. data/lib/aws-sdk-core/snowball.rb +0 -6
  696. data/lib/aws-sdk-core/sns.rb +0 -7
  697. data/lib/aws-sdk-core/sqs.rb +0 -7
  698. data/lib/aws-sdk-core/ssm.rb +0 -6
  699. data/lib/aws-sdk-core/states.rb +0 -6
  700. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  701. data/lib/aws-sdk-core/sts.rb +0 -5
  702. data/lib/aws-sdk-core/support.rb +0 -6
  703. data/lib/aws-sdk-core/swf.rb +0 -5
  704. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  705. data/lib/aws-sdk-core/version.rb +0 -3
  706. data/lib/aws-sdk-core/waf.rb +0 -6
  707. data/lib/aws-sdk-core/wafregional.rb +0 -6
  708. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  709. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  710. data/lib/aws-sdk-core/workdocs.rb +0 -6
  711. data/lib/aws-sdk-core/workspaces.rb +0 -6
  712. data/lib/aws-sdk-core/xray.rb +0 -5
  713. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  714. data/service-models.json +0 -381
@@ -1,2474 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2015-02-02",
5
- "endpointPrefix":"elasticache",
6
- "protocol":"query",
7
- "serviceFullName":"Amazon ElastiCache",
8
- "signatureVersion":"v4",
9
- "uid":"elasticache-2015-02-02",
10
- "xmlNamespace":"http://elasticache.amazonaws.com/doc/2015-02-02/"
11
- },
12
- "operations":{
13
- "AddTagsToResource":{
14
- "name":"AddTagsToResource",
15
- "http":{
16
- "method":"POST",
17
- "requestUri":"/"
18
- },
19
- "input":{"shape":"AddTagsToResourceMessage"},
20
- "output":{
21
- "shape":"TagListMessage",
22
- "resultWrapper":"AddTagsToResourceResult"
23
- },
24
- "errors":[
25
- {"shape":"CacheClusterNotFoundFault"},
26
- {"shape":"SnapshotNotFoundFault"},
27
- {"shape":"TagQuotaPerResourceExceeded"},
28
- {"shape":"InvalidARNFault"}
29
- ]
30
- },
31
- "AuthorizeCacheSecurityGroupIngress":{
32
- "name":"AuthorizeCacheSecurityGroupIngress",
33
- "http":{
34
- "method":"POST",
35
- "requestUri":"/"
36
- },
37
- "input":{"shape":"AuthorizeCacheSecurityGroupIngressMessage"},
38
- "output":{
39
- "shape":"AuthorizeCacheSecurityGroupIngressResult",
40
- "resultWrapper":"AuthorizeCacheSecurityGroupIngressResult"
41
- },
42
- "errors":[
43
- {"shape":"CacheSecurityGroupNotFoundFault"},
44
- {"shape":"InvalidCacheSecurityGroupStateFault"},
45
- {"shape":"AuthorizationAlreadyExistsFault"},
46
- {"shape":"InvalidParameterValueException"},
47
- {"shape":"InvalidParameterCombinationException"}
48
- ]
49
- },
50
- "CopySnapshot":{
51
- "name":"CopySnapshot",
52
- "http":{
53
- "method":"POST",
54
- "requestUri":"/"
55
- },
56
- "input":{"shape":"CopySnapshotMessage"},
57
- "output":{
58
- "shape":"CopySnapshotResult",
59
- "resultWrapper":"CopySnapshotResult"
60
- },
61
- "errors":[
62
- {"shape":"SnapshotAlreadyExistsFault"},
63
- {"shape":"SnapshotNotFoundFault"},
64
- {"shape":"SnapshotQuotaExceededFault"},
65
- {"shape":"InvalidSnapshotStateFault"},
66
- {"shape":"InvalidParameterValueException"},
67
- {"shape":"InvalidParameterCombinationException"}
68
- ]
69
- },
70
- "CreateCacheCluster":{
71
- "name":"CreateCacheCluster",
72
- "http":{
73
- "method":"POST",
74
- "requestUri":"/"
75
- },
76
- "input":{"shape":"CreateCacheClusterMessage"},
77
- "output":{
78
- "shape":"CreateCacheClusterResult",
79
- "resultWrapper":"CreateCacheClusterResult"
80
- },
81
- "errors":[
82
- {"shape":"ReplicationGroupNotFoundFault"},
83
- {"shape":"InvalidReplicationGroupStateFault"},
84
- {"shape":"CacheClusterAlreadyExistsFault"},
85
- {"shape":"InsufficientCacheClusterCapacityFault"},
86
- {"shape":"CacheSecurityGroupNotFoundFault"},
87
- {"shape":"CacheSubnetGroupNotFoundFault"},
88
- {"shape":"ClusterQuotaForCustomerExceededFault"},
89
- {"shape":"NodeQuotaForClusterExceededFault"},
90
- {"shape":"NodeQuotaForCustomerExceededFault"},
91
- {"shape":"CacheParameterGroupNotFoundFault"},
92
- {"shape":"InvalidVPCNetworkStateFault"},
93
- {"shape":"TagQuotaPerResourceExceeded"},
94
- {"shape":"InvalidParameterValueException"},
95
- {"shape":"InvalidParameterCombinationException"}
96
- ]
97
- },
98
- "CreateCacheParameterGroup":{
99
- "name":"CreateCacheParameterGroup",
100
- "http":{
101
- "method":"POST",
102
- "requestUri":"/"
103
- },
104
- "input":{"shape":"CreateCacheParameterGroupMessage"},
105
- "output":{
106
- "shape":"CreateCacheParameterGroupResult",
107
- "resultWrapper":"CreateCacheParameterGroupResult"
108
- },
109
- "errors":[
110
- {"shape":"CacheParameterGroupQuotaExceededFault"},
111
- {"shape":"CacheParameterGroupAlreadyExistsFault"},
112
- {"shape":"InvalidCacheParameterGroupStateFault"},
113
- {"shape":"InvalidParameterValueException"},
114
- {"shape":"InvalidParameterCombinationException"}
115
- ]
116
- },
117
- "CreateCacheSecurityGroup":{
118
- "name":"CreateCacheSecurityGroup",
119
- "http":{
120
- "method":"POST",
121
- "requestUri":"/"
122
- },
123
- "input":{"shape":"CreateCacheSecurityGroupMessage"},
124
- "output":{
125
- "shape":"CreateCacheSecurityGroupResult",
126
- "resultWrapper":"CreateCacheSecurityGroupResult"
127
- },
128
- "errors":[
129
- {"shape":"CacheSecurityGroupAlreadyExistsFault"},
130
- {"shape":"CacheSecurityGroupQuotaExceededFault"},
131
- {"shape":"InvalidParameterValueException"},
132
- {"shape":"InvalidParameterCombinationException"}
133
- ]
134
- },
135
- "CreateCacheSubnetGroup":{
136
- "name":"CreateCacheSubnetGroup",
137
- "http":{
138
- "method":"POST",
139
- "requestUri":"/"
140
- },
141
- "input":{"shape":"CreateCacheSubnetGroupMessage"},
142
- "output":{
143
- "shape":"CreateCacheSubnetGroupResult",
144
- "resultWrapper":"CreateCacheSubnetGroupResult"
145
- },
146
- "errors":[
147
- {"shape":"CacheSubnetGroupAlreadyExistsFault"},
148
- {"shape":"CacheSubnetGroupQuotaExceededFault"},
149
- {"shape":"CacheSubnetQuotaExceededFault"},
150
- {"shape":"InvalidSubnet"}
151
- ]
152
- },
153
- "CreateReplicationGroup":{
154
- "name":"CreateReplicationGroup",
155
- "http":{
156
- "method":"POST",
157
- "requestUri":"/"
158
- },
159
- "input":{"shape":"CreateReplicationGroupMessage"},
160
- "output":{
161
- "shape":"CreateReplicationGroupResult",
162
- "resultWrapper":"CreateReplicationGroupResult"
163
- },
164
- "errors":[
165
- {"shape":"CacheClusterNotFoundFault"},
166
- {"shape":"InvalidCacheClusterStateFault"},
167
- {"shape":"ReplicationGroupAlreadyExistsFault"},
168
- {"shape":"InsufficientCacheClusterCapacityFault"},
169
- {"shape":"CacheSecurityGroupNotFoundFault"},
170
- {"shape":"CacheSubnetGroupNotFoundFault"},
171
- {"shape":"ClusterQuotaForCustomerExceededFault"},
172
- {"shape":"NodeQuotaForClusterExceededFault"},
173
- {"shape":"NodeQuotaForCustomerExceededFault"},
174
- {"shape":"CacheParameterGroupNotFoundFault"},
175
- {"shape":"InvalidVPCNetworkStateFault"},
176
- {"shape":"TagQuotaPerResourceExceeded"},
177
- {"shape":"NodeGroupsPerReplicationGroupQuotaExceededFault"},
178
- {"shape":"InvalidParameterValueException"},
179
- {"shape":"InvalidParameterCombinationException"}
180
- ]
181
- },
182
- "CreateSnapshot":{
183
- "name":"CreateSnapshot",
184
- "http":{
185
- "method":"POST",
186
- "requestUri":"/"
187
- },
188
- "input":{"shape":"CreateSnapshotMessage"},
189
- "output":{
190
- "shape":"CreateSnapshotResult",
191
- "resultWrapper":"CreateSnapshotResult"
192
- },
193
- "errors":[
194
- {"shape":"SnapshotAlreadyExistsFault"},
195
- {"shape":"CacheClusterNotFoundFault"},
196
- {"shape":"ReplicationGroupNotFoundFault"},
197
- {"shape":"InvalidCacheClusterStateFault"},
198
- {"shape":"InvalidReplicationGroupStateFault"},
199
- {"shape":"SnapshotQuotaExceededFault"},
200
- {"shape":"SnapshotFeatureNotSupportedFault"},
201
- {"shape":"InvalidParameterCombinationException"},
202
- {"shape":"InvalidParameterValueException"}
203
- ]
204
- },
205
- "DeleteCacheCluster":{
206
- "name":"DeleteCacheCluster",
207
- "http":{
208
- "method":"POST",
209
- "requestUri":"/"
210
- },
211
- "input":{"shape":"DeleteCacheClusterMessage"},
212
- "output":{
213
- "shape":"DeleteCacheClusterResult",
214
- "resultWrapper":"DeleteCacheClusterResult"
215
- },
216
- "errors":[
217
- {"shape":"CacheClusterNotFoundFault"},
218
- {"shape":"InvalidCacheClusterStateFault"},
219
- {"shape":"SnapshotAlreadyExistsFault"},
220
- {"shape":"SnapshotFeatureNotSupportedFault"},
221
- {"shape":"SnapshotQuotaExceededFault"},
222
- {"shape":"InvalidParameterValueException"},
223
- {"shape":"InvalidParameterCombinationException"}
224
- ]
225
- },
226
- "DeleteCacheParameterGroup":{
227
- "name":"DeleteCacheParameterGroup",
228
- "http":{
229
- "method":"POST",
230
- "requestUri":"/"
231
- },
232
- "input":{"shape":"DeleteCacheParameterGroupMessage"},
233
- "errors":[
234
- {"shape":"InvalidCacheParameterGroupStateFault"},
235
- {"shape":"CacheParameterGroupNotFoundFault"},
236
- {"shape":"InvalidParameterValueException"},
237
- {"shape":"InvalidParameterCombinationException"}
238
- ]
239
- },
240
- "DeleteCacheSecurityGroup":{
241
- "name":"DeleteCacheSecurityGroup",
242
- "http":{
243
- "method":"POST",
244
- "requestUri":"/"
245
- },
246
- "input":{"shape":"DeleteCacheSecurityGroupMessage"},
247
- "errors":[
248
- {"shape":"InvalidCacheSecurityGroupStateFault"},
249
- {"shape":"CacheSecurityGroupNotFoundFault"},
250
- {"shape":"InvalidParameterValueException"},
251
- {"shape":"InvalidParameterCombinationException"}
252
- ]
253
- },
254
- "DeleteCacheSubnetGroup":{
255
- "name":"DeleteCacheSubnetGroup",
256
- "http":{
257
- "method":"POST",
258
- "requestUri":"/"
259
- },
260
- "input":{"shape":"DeleteCacheSubnetGroupMessage"},
261
- "errors":[
262
- {"shape":"CacheSubnetGroupInUse"},
263
- {"shape":"CacheSubnetGroupNotFoundFault"}
264
- ]
265
- },
266
- "DeleteReplicationGroup":{
267
- "name":"DeleteReplicationGroup",
268
- "http":{
269
- "method":"POST",
270
- "requestUri":"/"
271
- },
272
- "input":{"shape":"DeleteReplicationGroupMessage"},
273
- "output":{
274
- "shape":"DeleteReplicationGroupResult",
275
- "resultWrapper":"DeleteReplicationGroupResult"
276
- },
277
- "errors":[
278
- {"shape":"ReplicationGroupNotFoundFault"},
279
- {"shape":"InvalidReplicationGroupStateFault"},
280
- {"shape":"SnapshotAlreadyExistsFault"},
281
- {"shape":"SnapshotFeatureNotSupportedFault"},
282
- {"shape":"SnapshotQuotaExceededFault"},
283
- {"shape":"InvalidParameterValueException"},
284
- {"shape":"InvalidParameterCombinationException"}
285
- ]
286
- },
287
- "DeleteSnapshot":{
288
- "name":"DeleteSnapshot",
289
- "http":{
290
- "method":"POST",
291
- "requestUri":"/"
292
- },
293
- "input":{"shape":"DeleteSnapshotMessage"},
294
- "output":{
295
- "shape":"DeleteSnapshotResult",
296
- "resultWrapper":"DeleteSnapshotResult"
297
- },
298
- "errors":[
299
- {"shape":"SnapshotNotFoundFault"},
300
- {"shape":"InvalidSnapshotStateFault"},
301
- {"shape":"InvalidParameterValueException"},
302
- {"shape":"InvalidParameterCombinationException"}
303
- ]
304
- },
305
- "DescribeCacheClusters":{
306
- "name":"DescribeCacheClusters",
307
- "http":{
308
- "method":"POST",
309
- "requestUri":"/"
310
- },
311
- "input":{"shape":"DescribeCacheClustersMessage"},
312
- "output":{
313
- "shape":"CacheClusterMessage",
314
- "resultWrapper":"DescribeCacheClustersResult"
315
- },
316
- "errors":[
317
- {"shape":"CacheClusterNotFoundFault"},
318
- {"shape":"InvalidParameterValueException"},
319
- {"shape":"InvalidParameterCombinationException"}
320
- ]
321
- },
322
- "DescribeCacheEngineVersions":{
323
- "name":"DescribeCacheEngineVersions",
324
- "http":{
325
- "method":"POST",
326
- "requestUri":"/"
327
- },
328
- "input":{"shape":"DescribeCacheEngineVersionsMessage"},
329
- "output":{
330
- "shape":"CacheEngineVersionMessage",
331
- "resultWrapper":"DescribeCacheEngineVersionsResult"
332
- }
333
- },
334
- "DescribeCacheParameterGroups":{
335
- "name":"DescribeCacheParameterGroups",
336
- "http":{
337
- "method":"POST",
338
- "requestUri":"/"
339
- },
340
- "input":{"shape":"DescribeCacheParameterGroupsMessage"},
341
- "output":{
342
- "shape":"CacheParameterGroupsMessage",
343
- "resultWrapper":"DescribeCacheParameterGroupsResult"
344
- },
345
- "errors":[
346
- {"shape":"CacheParameterGroupNotFoundFault"},
347
- {"shape":"InvalidParameterValueException"},
348
- {"shape":"InvalidParameterCombinationException"}
349
- ]
350
- },
351
- "DescribeCacheParameters":{
352
- "name":"DescribeCacheParameters",
353
- "http":{
354
- "method":"POST",
355
- "requestUri":"/"
356
- },
357
- "input":{"shape":"DescribeCacheParametersMessage"},
358
- "output":{
359
- "shape":"CacheParameterGroupDetails",
360
- "resultWrapper":"DescribeCacheParametersResult"
361
- },
362
- "errors":[
363
- {"shape":"CacheParameterGroupNotFoundFault"},
364
- {"shape":"InvalidParameterValueException"},
365
- {"shape":"InvalidParameterCombinationException"}
366
- ]
367
- },
368
- "DescribeCacheSecurityGroups":{
369
- "name":"DescribeCacheSecurityGroups",
370
- "http":{
371
- "method":"POST",
372
- "requestUri":"/"
373
- },
374
- "input":{"shape":"DescribeCacheSecurityGroupsMessage"},
375
- "output":{
376
- "shape":"CacheSecurityGroupMessage",
377
- "resultWrapper":"DescribeCacheSecurityGroupsResult"
378
- },
379
- "errors":[
380
- {"shape":"CacheSecurityGroupNotFoundFault"},
381
- {"shape":"InvalidParameterValueException"},
382
- {"shape":"InvalidParameterCombinationException"}
383
- ]
384
- },
385
- "DescribeCacheSubnetGroups":{
386
- "name":"DescribeCacheSubnetGroups",
387
- "http":{
388
- "method":"POST",
389
- "requestUri":"/"
390
- },
391
- "input":{"shape":"DescribeCacheSubnetGroupsMessage"},
392
- "output":{
393
- "shape":"CacheSubnetGroupMessage",
394
- "resultWrapper":"DescribeCacheSubnetGroupsResult"
395
- },
396
- "errors":[
397
- {"shape":"CacheSubnetGroupNotFoundFault"}
398
- ]
399
- },
400
- "DescribeEngineDefaultParameters":{
401
- "name":"DescribeEngineDefaultParameters",
402
- "http":{
403
- "method":"POST",
404
- "requestUri":"/"
405
- },
406
- "input":{"shape":"DescribeEngineDefaultParametersMessage"},
407
- "output":{
408
- "shape":"DescribeEngineDefaultParametersResult",
409
- "resultWrapper":"DescribeEngineDefaultParametersResult"
410
- },
411
- "errors":[
412
- {"shape":"InvalidParameterValueException"},
413
- {"shape":"InvalidParameterCombinationException"}
414
- ]
415
- },
416
- "DescribeEvents":{
417
- "name":"DescribeEvents",
418
- "http":{
419
- "method":"POST",
420
- "requestUri":"/"
421
- },
422
- "input":{"shape":"DescribeEventsMessage"},
423
- "output":{
424
- "shape":"EventsMessage",
425
- "resultWrapper":"DescribeEventsResult"
426
- },
427
- "errors":[
428
- {"shape":"InvalidParameterValueException"},
429
- {"shape":"InvalidParameterCombinationException"}
430
- ]
431
- },
432
- "DescribeReplicationGroups":{
433
- "name":"DescribeReplicationGroups",
434
- "http":{
435
- "method":"POST",
436
- "requestUri":"/"
437
- },
438
- "input":{"shape":"DescribeReplicationGroupsMessage"},
439
- "output":{
440
- "shape":"ReplicationGroupMessage",
441
- "resultWrapper":"DescribeReplicationGroupsResult"
442
- },
443
- "errors":[
444
- {"shape":"ReplicationGroupNotFoundFault"},
445
- {"shape":"InvalidParameterValueException"},
446
- {"shape":"InvalidParameterCombinationException"}
447
- ]
448
- },
449
- "DescribeReservedCacheNodes":{
450
- "name":"DescribeReservedCacheNodes",
451
- "http":{
452
- "method":"POST",
453
- "requestUri":"/"
454
- },
455
- "input":{"shape":"DescribeReservedCacheNodesMessage"},
456
- "output":{
457
- "shape":"ReservedCacheNodeMessage",
458
- "resultWrapper":"DescribeReservedCacheNodesResult"
459
- },
460
- "errors":[
461
- {"shape":"ReservedCacheNodeNotFoundFault"},
462
- {"shape":"InvalidParameterValueException"},
463
- {"shape":"InvalidParameterCombinationException"}
464
- ]
465
- },
466
- "DescribeReservedCacheNodesOfferings":{
467
- "name":"DescribeReservedCacheNodesOfferings",
468
- "http":{
469
- "method":"POST",
470
- "requestUri":"/"
471
- },
472
- "input":{"shape":"DescribeReservedCacheNodesOfferingsMessage"},
473
- "output":{
474
- "shape":"ReservedCacheNodesOfferingMessage",
475
- "resultWrapper":"DescribeReservedCacheNodesOfferingsResult"
476
- },
477
- "errors":[
478
- {"shape":"ReservedCacheNodesOfferingNotFoundFault"},
479
- {"shape":"InvalidParameterValueException"},
480
- {"shape":"InvalidParameterCombinationException"}
481
- ]
482
- },
483
- "DescribeSnapshots":{
484
- "name":"DescribeSnapshots",
485
- "http":{
486
- "method":"POST",
487
- "requestUri":"/"
488
- },
489
- "input":{"shape":"DescribeSnapshotsMessage"},
490
- "output":{
491
- "shape":"DescribeSnapshotsListMessage",
492
- "resultWrapper":"DescribeSnapshotsResult"
493
- },
494
- "errors":[
495
- {"shape":"CacheClusterNotFoundFault"},
496
- {"shape":"SnapshotNotFoundFault"},
497
- {"shape":"InvalidParameterValueException"},
498
- {"shape":"InvalidParameterCombinationException"}
499
- ]
500
- },
501
- "ListAllowedNodeTypeModifications":{
502
- "name":"ListAllowedNodeTypeModifications",
503
- "http":{
504
- "method":"POST",
505
- "requestUri":"/"
506
- },
507
- "input":{"shape":"ListAllowedNodeTypeModificationsMessage"},
508
- "output":{
509
- "shape":"AllowedNodeTypeModificationsMessage",
510
- "resultWrapper":"ListAllowedNodeTypeModificationsResult"
511
- },
512
- "errors":[
513
- {"shape":"CacheClusterNotFoundFault"},
514
- {"shape":"ReplicationGroupNotFoundFault"},
515
- {"shape":"InvalidParameterCombinationException"},
516
- {"shape":"InvalidParameterValueException"}
517
- ]
518
- },
519
- "ListTagsForResource":{
520
- "name":"ListTagsForResource",
521
- "http":{
522
- "method":"POST",
523
- "requestUri":"/"
524
- },
525
- "input":{"shape":"ListTagsForResourceMessage"},
526
- "output":{
527
- "shape":"TagListMessage",
528
- "resultWrapper":"ListTagsForResourceResult"
529
- },
530
- "errors":[
531
- {"shape":"CacheClusterNotFoundFault"},
532
- {"shape":"SnapshotNotFoundFault"},
533
- {"shape":"InvalidARNFault"}
534
- ]
535
- },
536
- "ModifyCacheCluster":{
537
- "name":"ModifyCacheCluster",
538
- "http":{
539
- "method":"POST",
540
- "requestUri":"/"
541
- },
542
- "input":{"shape":"ModifyCacheClusterMessage"},
543
- "output":{
544
- "shape":"ModifyCacheClusterResult",
545
- "resultWrapper":"ModifyCacheClusterResult"
546
- },
547
- "errors":[
548
- {"shape":"InvalidCacheClusterStateFault"},
549
- {"shape":"InvalidCacheSecurityGroupStateFault"},
550
- {"shape":"InsufficientCacheClusterCapacityFault"},
551
- {"shape":"CacheClusterNotFoundFault"},
552
- {"shape":"NodeQuotaForClusterExceededFault"},
553
- {"shape":"NodeQuotaForCustomerExceededFault"},
554
- {"shape":"CacheSecurityGroupNotFoundFault"},
555
- {"shape":"CacheParameterGroupNotFoundFault"},
556
- {"shape":"InvalidVPCNetworkStateFault"},
557
- {"shape":"InvalidParameterValueException"},
558
- {"shape":"InvalidParameterCombinationException"}
559
- ]
560
- },
561
- "ModifyCacheParameterGroup":{
562
- "name":"ModifyCacheParameterGroup",
563
- "http":{
564
- "method":"POST",
565
- "requestUri":"/"
566
- },
567
- "input":{"shape":"ModifyCacheParameterGroupMessage"},
568
- "output":{
569
- "shape":"CacheParameterGroupNameMessage",
570
- "resultWrapper":"ModifyCacheParameterGroupResult"
571
- },
572
- "errors":[
573
- {"shape":"CacheParameterGroupNotFoundFault"},
574
- {"shape":"InvalidCacheParameterGroupStateFault"},
575
- {"shape":"InvalidParameterValueException"},
576
- {"shape":"InvalidParameterCombinationException"}
577
- ]
578
- },
579
- "ModifyCacheSubnetGroup":{
580
- "name":"ModifyCacheSubnetGroup",
581
- "http":{
582
- "method":"POST",
583
- "requestUri":"/"
584
- },
585
- "input":{"shape":"ModifyCacheSubnetGroupMessage"},
586
- "output":{
587
- "shape":"ModifyCacheSubnetGroupResult",
588
- "resultWrapper":"ModifyCacheSubnetGroupResult"
589
- },
590
- "errors":[
591
- {"shape":"CacheSubnetGroupNotFoundFault"},
592
- {"shape":"CacheSubnetQuotaExceededFault"},
593
- {"shape":"SubnetInUse"},
594
- {"shape":"InvalidSubnet"}
595
- ]
596
- },
597
- "ModifyReplicationGroup":{
598
- "name":"ModifyReplicationGroup",
599
- "http":{
600
- "method":"POST",
601
- "requestUri":"/"
602
- },
603
- "input":{"shape":"ModifyReplicationGroupMessage"},
604
- "output":{
605
- "shape":"ModifyReplicationGroupResult",
606
- "resultWrapper":"ModifyReplicationGroupResult"
607
- },
608
- "errors":[
609
- {"shape":"ReplicationGroupNotFoundFault"},
610
- {"shape":"InvalidReplicationGroupStateFault"},
611
- {"shape":"InvalidCacheClusterStateFault"},
612
- {"shape":"InvalidCacheSecurityGroupStateFault"},
613
- {"shape":"InsufficientCacheClusterCapacityFault"},
614
- {"shape":"CacheClusterNotFoundFault"},
615
- {"shape":"NodeQuotaForClusterExceededFault"},
616
- {"shape":"NodeQuotaForCustomerExceededFault"},
617
- {"shape":"CacheSecurityGroupNotFoundFault"},
618
- {"shape":"CacheParameterGroupNotFoundFault"},
619
- {"shape":"InvalidVPCNetworkStateFault"},
620
- {"shape":"InvalidParameterValueException"},
621
- {"shape":"InvalidParameterCombinationException"}
622
- ]
623
- },
624
- "PurchaseReservedCacheNodesOffering":{
625
- "name":"PurchaseReservedCacheNodesOffering",
626
- "http":{
627
- "method":"POST",
628
- "requestUri":"/"
629
- },
630
- "input":{"shape":"PurchaseReservedCacheNodesOfferingMessage"},
631
- "output":{
632
- "shape":"PurchaseReservedCacheNodesOfferingResult",
633
- "resultWrapper":"PurchaseReservedCacheNodesOfferingResult"
634
- },
635
- "errors":[
636
- {"shape":"ReservedCacheNodesOfferingNotFoundFault"},
637
- {"shape":"ReservedCacheNodeAlreadyExistsFault"},
638
- {"shape":"ReservedCacheNodeQuotaExceededFault"},
639
- {"shape":"InvalidParameterValueException"},
640
- {"shape":"InvalidParameterCombinationException"}
641
- ]
642
- },
643
- "RebootCacheCluster":{
644
- "name":"RebootCacheCluster",
645
- "http":{
646
- "method":"POST",
647
- "requestUri":"/"
648
- },
649
- "input":{"shape":"RebootCacheClusterMessage"},
650
- "output":{
651
- "shape":"RebootCacheClusterResult",
652
- "resultWrapper":"RebootCacheClusterResult"
653
- },
654
- "errors":[
655
- {"shape":"InvalidCacheClusterStateFault"},
656
- {"shape":"CacheClusterNotFoundFault"}
657
- ]
658
- },
659
- "RemoveTagsFromResource":{
660
- "name":"RemoveTagsFromResource",
661
- "http":{
662
- "method":"POST",
663
- "requestUri":"/"
664
- },
665
- "input":{"shape":"RemoveTagsFromResourceMessage"},
666
- "output":{
667
- "shape":"TagListMessage",
668
- "resultWrapper":"RemoveTagsFromResourceResult"
669
- },
670
- "errors":[
671
- {"shape":"CacheClusterNotFoundFault"},
672
- {"shape":"SnapshotNotFoundFault"},
673
- {"shape":"InvalidARNFault"},
674
- {"shape":"TagNotFoundFault"}
675
- ]
676
- },
677
- "ResetCacheParameterGroup":{
678
- "name":"ResetCacheParameterGroup",
679
- "http":{
680
- "method":"POST",
681
- "requestUri":"/"
682
- },
683
- "input":{"shape":"ResetCacheParameterGroupMessage"},
684
- "output":{
685
- "shape":"CacheParameterGroupNameMessage",
686
- "resultWrapper":"ResetCacheParameterGroupResult"
687
- },
688
- "errors":[
689
- {"shape":"InvalidCacheParameterGroupStateFault"},
690
- {"shape":"CacheParameterGroupNotFoundFault"},
691
- {"shape":"InvalidParameterValueException"},
692
- {"shape":"InvalidParameterCombinationException"}
693
- ]
694
- },
695
- "RevokeCacheSecurityGroupIngress":{
696
- "name":"RevokeCacheSecurityGroupIngress",
697
- "http":{
698
- "method":"POST",
699
- "requestUri":"/"
700
- },
701
- "input":{"shape":"RevokeCacheSecurityGroupIngressMessage"},
702
- "output":{
703
- "shape":"RevokeCacheSecurityGroupIngressResult",
704
- "resultWrapper":"RevokeCacheSecurityGroupIngressResult"
705
- },
706
- "errors":[
707
- {"shape":"CacheSecurityGroupNotFoundFault"},
708
- {"shape":"AuthorizationNotFoundFault"},
709
- {"shape":"InvalidCacheSecurityGroupStateFault"},
710
- {"shape":"InvalidParameterValueException"},
711
- {"shape":"InvalidParameterCombinationException"}
712
- ]
713
- }
714
- },
715
- "shapes":{
716
- "AZMode":{
717
- "type":"string",
718
- "enum":[
719
- "single-az",
720
- "cross-az"
721
- ]
722
- },
723
- "AddTagsToResourceMessage":{
724
- "type":"structure",
725
- "required":[
726
- "ResourceName",
727
- "Tags"
728
- ],
729
- "members":{
730
- "ResourceName":{"shape":"String"},
731
- "Tags":{"shape":"TagList"}
732
- }
733
- },
734
- "AllowedNodeTypeModificationsMessage":{
735
- "type":"structure",
736
- "members":{
737
- "ScaleUpModifications":{"shape":"NodeTypeList"}
738
- }
739
- },
740
- "AuthorizationAlreadyExistsFault":{
741
- "type":"structure",
742
- "members":{
743
- },
744
- "error":{
745
- "code":"AuthorizationAlreadyExists",
746
- "httpStatusCode":400,
747
- "senderFault":true
748
- },
749
- "exception":true
750
- },
751
- "AuthorizationNotFoundFault":{
752
- "type":"structure",
753
- "members":{
754
- },
755
- "error":{
756
- "code":"AuthorizationNotFound",
757
- "httpStatusCode":404,
758
- "senderFault":true
759
- },
760
- "exception":true
761
- },
762
- "AuthorizeCacheSecurityGroupIngressMessage":{
763
- "type":"structure",
764
- "required":[
765
- "CacheSecurityGroupName",
766
- "EC2SecurityGroupName",
767
- "EC2SecurityGroupOwnerId"
768
- ],
769
- "members":{
770
- "CacheSecurityGroupName":{"shape":"String"},
771
- "EC2SecurityGroupName":{"shape":"String"},
772
- "EC2SecurityGroupOwnerId":{"shape":"String"}
773
- }
774
- },
775
- "AuthorizeCacheSecurityGroupIngressResult":{
776
- "type":"structure",
777
- "members":{
778
- "CacheSecurityGroup":{"shape":"CacheSecurityGroup"}
779
- }
780
- },
781
- "AutomaticFailoverStatus":{
782
- "type":"string",
783
- "enum":[
784
- "enabled",
785
- "disabled",
786
- "enabling",
787
- "disabling"
788
- ]
789
- },
790
- "AvailabilityZone":{
791
- "type":"structure",
792
- "members":{
793
- "Name":{"shape":"String"}
794
- },
795
- "wrapper":true
796
- },
797
- "AvailabilityZonesList":{
798
- "type":"list",
799
- "member":{
800
- "shape":"String",
801
- "locationName":"AvailabilityZone"
802
- }
803
- },
804
- "AwsQueryErrorMessage":{"type":"string"},
805
- "Boolean":{"type":"boolean"},
806
- "BooleanOptional":{"type":"boolean"},
807
- "CacheCluster":{
808
- "type":"structure",
809
- "members":{
810
- "CacheClusterId":{"shape":"String"},
811
- "ConfigurationEndpoint":{"shape":"Endpoint"},
812
- "ClientDownloadLandingPage":{"shape":"String"},
813
- "CacheNodeType":{"shape":"String"},
814
- "Engine":{"shape":"String"},
815
- "EngineVersion":{"shape":"String"},
816
- "CacheClusterStatus":{"shape":"String"},
817
- "NumCacheNodes":{"shape":"IntegerOptional"},
818
- "PreferredAvailabilityZone":{"shape":"String"},
819
- "CacheClusterCreateTime":{"shape":"TStamp"},
820
- "PreferredMaintenanceWindow":{"shape":"String"},
821
- "PendingModifiedValues":{"shape":"PendingModifiedValues"},
822
- "NotificationConfiguration":{"shape":"NotificationConfiguration"},
823
- "CacheSecurityGroups":{"shape":"CacheSecurityGroupMembershipList"},
824
- "CacheParameterGroup":{"shape":"CacheParameterGroupStatus"},
825
- "CacheSubnetGroupName":{"shape":"String"},
826
- "CacheNodes":{"shape":"CacheNodeList"},
827
- "AutoMinorVersionUpgrade":{"shape":"Boolean"},
828
- "SecurityGroups":{"shape":"SecurityGroupMembershipList"},
829
- "ReplicationGroupId":{"shape":"String"},
830
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
831
- "SnapshotWindow":{"shape":"String"}
832
- },
833
- "wrapper":true
834
- },
835
- "CacheClusterAlreadyExistsFault":{
836
- "type":"structure",
837
- "members":{
838
- },
839
- "error":{
840
- "code":"CacheClusterAlreadyExists",
841
- "httpStatusCode":400,
842
- "senderFault":true
843
- },
844
- "exception":true
845
- },
846
- "CacheClusterList":{
847
- "type":"list",
848
- "member":{
849
- "shape":"CacheCluster",
850
- "locationName":"CacheCluster"
851
- }
852
- },
853
- "CacheClusterMessage":{
854
- "type":"structure",
855
- "members":{
856
- "Marker":{"shape":"String"},
857
- "CacheClusters":{"shape":"CacheClusterList"}
858
- }
859
- },
860
- "CacheClusterNotFoundFault":{
861
- "type":"structure",
862
- "members":{
863
- },
864
- "error":{
865
- "code":"CacheClusterNotFound",
866
- "httpStatusCode":404,
867
- "senderFault":true
868
- },
869
- "exception":true
870
- },
871
- "CacheEngineVersion":{
872
- "type":"structure",
873
- "members":{
874
- "Engine":{"shape":"String"},
875
- "EngineVersion":{"shape":"String"},
876
- "CacheParameterGroupFamily":{"shape":"String"},
877
- "CacheEngineDescription":{"shape":"String"},
878
- "CacheEngineVersionDescription":{"shape":"String"}
879
- }
880
- },
881
- "CacheEngineVersionList":{
882
- "type":"list",
883
- "member":{
884
- "shape":"CacheEngineVersion",
885
- "locationName":"CacheEngineVersion"
886
- }
887
- },
888
- "CacheEngineVersionMessage":{
889
- "type":"structure",
890
- "members":{
891
- "Marker":{"shape":"String"},
892
- "CacheEngineVersions":{"shape":"CacheEngineVersionList"}
893
- }
894
- },
895
- "CacheNode":{
896
- "type":"structure",
897
- "members":{
898
- "CacheNodeId":{"shape":"String"},
899
- "CacheNodeStatus":{"shape":"String"},
900
- "CacheNodeCreateTime":{"shape":"TStamp"},
901
- "Endpoint":{"shape":"Endpoint"},
902
- "ParameterGroupStatus":{"shape":"String"},
903
- "SourceCacheNodeId":{"shape":"String"},
904
- "CustomerAvailabilityZone":{"shape":"String"}
905
- }
906
- },
907
- "CacheNodeIdsList":{
908
- "type":"list",
909
- "member":{
910
- "shape":"String",
911
- "locationName":"CacheNodeId"
912
- }
913
- },
914
- "CacheNodeList":{
915
- "type":"list",
916
- "member":{
917
- "shape":"CacheNode",
918
- "locationName":"CacheNode"
919
- }
920
- },
921
- "CacheNodeTypeSpecificParameter":{
922
- "type":"structure",
923
- "members":{
924
- "ParameterName":{"shape":"String"},
925
- "Description":{"shape":"String"},
926
- "Source":{"shape":"String"},
927
- "DataType":{"shape":"String"},
928
- "AllowedValues":{"shape":"String"},
929
- "IsModifiable":{"shape":"Boolean"},
930
- "MinimumEngineVersion":{"shape":"String"},
931
- "CacheNodeTypeSpecificValues":{"shape":"CacheNodeTypeSpecificValueList"},
932
- "ChangeType":{"shape":"ChangeType"}
933
- }
934
- },
935
- "CacheNodeTypeSpecificParametersList":{
936
- "type":"list",
937
- "member":{
938
- "shape":"CacheNodeTypeSpecificParameter",
939
- "locationName":"CacheNodeTypeSpecificParameter"
940
- }
941
- },
942
- "CacheNodeTypeSpecificValue":{
943
- "type":"structure",
944
- "members":{
945
- "CacheNodeType":{"shape":"String"},
946
- "Value":{"shape":"String"}
947
- }
948
- },
949
- "CacheNodeTypeSpecificValueList":{
950
- "type":"list",
951
- "member":{
952
- "shape":"CacheNodeTypeSpecificValue",
953
- "locationName":"CacheNodeTypeSpecificValue"
954
- }
955
- },
956
- "CacheParameterGroup":{
957
- "type":"structure",
958
- "members":{
959
- "CacheParameterGroupName":{"shape":"String"},
960
- "CacheParameterGroupFamily":{"shape":"String"},
961
- "Description":{"shape":"String"}
962
- },
963
- "wrapper":true
964
- },
965
- "CacheParameterGroupAlreadyExistsFault":{
966
- "type":"structure",
967
- "members":{
968
- },
969
- "error":{
970
- "code":"CacheParameterGroupAlreadyExists",
971
- "httpStatusCode":400,
972
- "senderFault":true
973
- },
974
- "exception":true
975
- },
976
- "CacheParameterGroupDetails":{
977
- "type":"structure",
978
- "members":{
979
- "Marker":{"shape":"String"},
980
- "Parameters":{"shape":"ParametersList"},
981
- "CacheNodeTypeSpecificParameters":{"shape":"CacheNodeTypeSpecificParametersList"}
982
- }
983
- },
984
- "CacheParameterGroupList":{
985
- "type":"list",
986
- "member":{
987
- "shape":"CacheParameterGroup",
988
- "locationName":"CacheParameterGroup"
989
- }
990
- },
991
- "CacheParameterGroupNameMessage":{
992
- "type":"structure",
993
- "members":{
994
- "CacheParameterGroupName":{"shape":"String"}
995
- }
996
- },
997
- "CacheParameterGroupNotFoundFault":{
998
- "type":"structure",
999
- "members":{
1000
- },
1001
- "error":{
1002
- "code":"CacheParameterGroupNotFound",
1003
- "httpStatusCode":404,
1004
- "senderFault":true
1005
- },
1006
- "exception":true
1007
- },
1008
- "CacheParameterGroupQuotaExceededFault":{
1009
- "type":"structure",
1010
- "members":{
1011
- },
1012
- "error":{
1013
- "code":"CacheParameterGroupQuotaExceeded",
1014
- "httpStatusCode":400,
1015
- "senderFault":true
1016
- },
1017
- "exception":true
1018
- },
1019
- "CacheParameterGroupStatus":{
1020
- "type":"structure",
1021
- "members":{
1022
- "CacheParameterGroupName":{"shape":"String"},
1023
- "ParameterApplyStatus":{"shape":"String"},
1024
- "CacheNodeIdsToReboot":{"shape":"CacheNodeIdsList"}
1025
- }
1026
- },
1027
- "CacheParameterGroupsMessage":{
1028
- "type":"structure",
1029
- "members":{
1030
- "Marker":{"shape":"String"},
1031
- "CacheParameterGroups":{"shape":"CacheParameterGroupList"}
1032
- }
1033
- },
1034
- "CacheSecurityGroup":{
1035
- "type":"structure",
1036
- "members":{
1037
- "OwnerId":{"shape":"String"},
1038
- "CacheSecurityGroupName":{"shape":"String"},
1039
- "Description":{"shape":"String"},
1040
- "EC2SecurityGroups":{"shape":"EC2SecurityGroupList"}
1041
- },
1042
- "wrapper":true
1043
- },
1044
- "CacheSecurityGroupAlreadyExistsFault":{
1045
- "type":"structure",
1046
- "members":{
1047
- },
1048
- "error":{
1049
- "code":"CacheSecurityGroupAlreadyExists",
1050
- "httpStatusCode":400,
1051
- "senderFault":true
1052
- },
1053
- "exception":true
1054
- },
1055
- "CacheSecurityGroupMembership":{
1056
- "type":"structure",
1057
- "members":{
1058
- "CacheSecurityGroupName":{"shape":"String"},
1059
- "Status":{"shape":"String"}
1060
- }
1061
- },
1062
- "CacheSecurityGroupMembershipList":{
1063
- "type":"list",
1064
- "member":{
1065
- "shape":"CacheSecurityGroupMembership",
1066
- "locationName":"CacheSecurityGroup"
1067
- }
1068
- },
1069
- "CacheSecurityGroupMessage":{
1070
- "type":"structure",
1071
- "members":{
1072
- "Marker":{"shape":"String"},
1073
- "CacheSecurityGroups":{"shape":"CacheSecurityGroups"}
1074
- }
1075
- },
1076
- "CacheSecurityGroupNameList":{
1077
- "type":"list",
1078
- "member":{
1079
- "shape":"String",
1080
- "locationName":"CacheSecurityGroupName"
1081
- }
1082
- },
1083
- "CacheSecurityGroupNotFoundFault":{
1084
- "type":"structure",
1085
- "members":{
1086
- },
1087
- "error":{
1088
- "code":"CacheSecurityGroupNotFound",
1089
- "httpStatusCode":404,
1090
- "senderFault":true
1091
- },
1092
- "exception":true
1093
- },
1094
- "CacheSecurityGroupQuotaExceededFault":{
1095
- "type":"structure",
1096
- "members":{
1097
- },
1098
- "error":{
1099
- "code":"QuotaExceeded.CacheSecurityGroup",
1100
- "httpStatusCode":400,
1101
- "senderFault":true
1102
- },
1103
- "exception":true
1104
- },
1105
- "CacheSecurityGroups":{
1106
- "type":"list",
1107
- "member":{
1108
- "shape":"CacheSecurityGroup",
1109
- "locationName":"CacheSecurityGroup"
1110
- }
1111
- },
1112
- "CacheSubnetGroup":{
1113
- "type":"structure",
1114
- "members":{
1115
- "CacheSubnetGroupName":{"shape":"String"},
1116
- "CacheSubnetGroupDescription":{"shape":"String"},
1117
- "VpcId":{"shape":"String"},
1118
- "Subnets":{"shape":"SubnetList"}
1119
- },
1120
- "wrapper":true
1121
- },
1122
- "CacheSubnetGroupAlreadyExistsFault":{
1123
- "type":"structure",
1124
- "members":{
1125
- },
1126
- "error":{
1127
- "code":"CacheSubnetGroupAlreadyExists",
1128
- "httpStatusCode":400,
1129
- "senderFault":true
1130
- },
1131
- "exception":true
1132
- },
1133
- "CacheSubnetGroupInUse":{
1134
- "type":"structure",
1135
- "members":{
1136
- },
1137
- "error":{
1138
- "code":"CacheSubnetGroupInUse",
1139
- "httpStatusCode":400,
1140
- "senderFault":true
1141
- },
1142
- "exception":true
1143
- },
1144
- "CacheSubnetGroupMessage":{
1145
- "type":"structure",
1146
- "members":{
1147
- "Marker":{"shape":"String"},
1148
- "CacheSubnetGroups":{"shape":"CacheSubnetGroups"}
1149
- }
1150
- },
1151
- "CacheSubnetGroupNotFoundFault":{
1152
- "type":"structure",
1153
- "members":{
1154
- },
1155
- "error":{
1156
- "code":"CacheSubnetGroupNotFoundFault",
1157
- "httpStatusCode":400,
1158
- "senderFault":true
1159
- },
1160
- "exception":true
1161
- },
1162
- "CacheSubnetGroupQuotaExceededFault":{
1163
- "type":"structure",
1164
- "members":{
1165
- },
1166
- "error":{
1167
- "code":"CacheSubnetGroupQuotaExceeded",
1168
- "httpStatusCode":400,
1169
- "senderFault":true
1170
- },
1171
- "exception":true
1172
- },
1173
- "CacheSubnetGroups":{
1174
- "type":"list",
1175
- "member":{
1176
- "shape":"CacheSubnetGroup",
1177
- "locationName":"CacheSubnetGroup"
1178
- }
1179
- },
1180
- "CacheSubnetQuotaExceededFault":{
1181
- "type":"structure",
1182
- "members":{
1183
- },
1184
- "error":{
1185
- "code":"CacheSubnetQuotaExceededFault",
1186
- "httpStatusCode":400,
1187
- "senderFault":true
1188
- },
1189
- "exception":true
1190
- },
1191
- "ChangeType":{
1192
- "type":"string",
1193
- "enum":[
1194
- "immediate",
1195
- "requires-reboot"
1196
- ]
1197
- },
1198
- "ClusterIdList":{
1199
- "type":"list",
1200
- "member":{
1201
- "shape":"String",
1202
- "locationName":"ClusterId"
1203
- }
1204
- },
1205
- "ClusterQuotaForCustomerExceededFault":{
1206
- "type":"structure",
1207
- "members":{
1208
- },
1209
- "error":{
1210
- "code":"ClusterQuotaForCustomerExceeded",
1211
- "httpStatusCode":400,
1212
- "senderFault":true
1213
- },
1214
- "exception":true
1215
- },
1216
- "CopySnapshotMessage":{
1217
- "type":"structure",
1218
- "required":[
1219
- "SourceSnapshotName",
1220
- "TargetSnapshotName"
1221
- ],
1222
- "members":{
1223
- "SourceSnapshotName":{"shape":"String"},
1224
- "TargetSnapshotName":{"shape":"String"},
1225
- "TargetBucket":{"shape":"String"}
1226
- }
1227
- },
1228
- "CopySnapshotResult":{
1229
- "type":"structure",
1230
- "members":{
1231
- "Snapshot":{"shape":"Snapshot"}
1232
- }
1233
- },
1234
- "CreateCacheClusterMessage":{
1235
- "type":"structure",
1236
- "required":["CacheClusterId"],
1237
- "members":{
1238
- "CacheClusterId":{"shape":"String"},
1239
- "ReplicationGroupId":{"shape":"String"},
1240
- "AZMode":{"shape":"AZMode"},
1241
- "PreferredAvailabilityZone":{"shape":"String"},
1242
- "PreferredAvailabilityZones":{"shape":"PreferredAvailabilityZoneList"},
1243
- "NumCacheNodes":{"shape":"IntegerOptional"},
1244
- "CacheNodeType":{"shape":"String"},
1245
- "Engine":{"shape":"String"},
1246
- "EngineVersion":{"shape":"String"},
1247
- "CacheParameterGroupName":{"shape":"String"},
1248
- "CacheSubnetGroupName":{"shape":"String"},
1249
- "CacheSecurityGroupNames":{"shape":"CacheSecurityGroupNameList"},
1250
- "SecurityGroupIds":{"shape":"SecurityGroupIdsList"},
1251
- "Tags":{"shape":"TagList"},
1252
- "SnapshotArns":{"shape":"SnapshotArnsList"},
1253
- "SnapshotName":{"shape":"String"},
1254
- "PreferredMaintenanceWindow":{"shape":"String"},
1255
- "Port":{"shape":"IntegerOptional"},
1256
- "NotificationTopicArn":{"shape":"String"},
1257
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
1258
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
1259
- "SnapshotWindow":{"shape":"String"},
1260
- "AuthToken":{"shape":"String"}
1261
- }
1262
- },
1263
- "CreateCacheClusterResult":{
1264
- "type":"structure",
1265
- "members":{
1266
- "CacheCluster":{"shape":"CacheCluster"}
1267
- }
1268
- },
1269
- "CreateCacheParameterGroupMessage":{
1270
- "type":"structure",
1271
- "required":[
1272
- "CacheParameterGroupName",
1273
- "CacheParameterGroupFamily",
1274
- "Description"
1275
- ],
1276
- "members":{
1277
- "CacheParameterGroupName":{"shape":"String"},
1278
- "CacheParameterGroupFamily":{"shape":"String"},
1279
- "Description":{"shape":"String"}
1280
- }
1281
- },
1282
- "CreateCacheParameterGroupResult":{
1283
- "type":"structure",
1284
- "members":{
1285
- "CacheParameterGroup":{"shape":"CacheParameterGroup"}
1286
- }
1287
- },
1288
- "CreateCacheSecurityGroupMessage":{
1289
- "type":"structure",
1290
- "required":[
1291
- "CacheSecurityGroupName",
1292
- "Description"
1293
- ],
1294
- "members":{
1295
- "CacheSecurityGroupName":{"shape":"String"},
1296
- "Description":{"shape":"String"}
1297
- }
1298
- },
1299
- "CreateCacheSecurityGroupResult":{
1300
- "type":"structure",
1301
- "members":{
1302
- "CacheSecurityGroup":{"shape":"CacheSecurityGroup"}
1303
- }
1304
- },
1305
- "CreateCacheSubnetGroupMessage":{
1306
- "type":"structure",
1307
- "required":[
1308
- "CacheSubnetGroupName",
1309
- "CacheSubnetGroupDescription",
1310
- "SubnetIds"
1311
- ],
1312
- "members":{
1313
- "CacheSubnetGroupName":{"shape":"String"},
1314
- "CacheSubnetGroupDescription":{"shape":"String"},
1315
- "SubnetIds":{"shape":"SubnetIdentifierList"}
1316
- }
1317
- },
1318
- "CreateCacheSubnetGroupResult":{
1319
- "type":"structure",
1320
- "members":{
1321
- "CacheSubnetGroup":{"shape":"CacheSubnetGroup"}
1322
- }
1323
- },
1324
- "CreateReplicationGroupMessage":{
1325
- "type":"structure",
1326
- "required":[
1327
- "ReplicationGroupId",
1328
- "ReplicationGroupDescription"
1329
- ],
1330
- "members":{
1331
- "ReplicationGroupId":{"shape":"String"},
1332
- "ReplicationGroupDescription":{"shape":"String"},
1333
- "PrimaryClusterId":{"shape":"String"},
1334
- "AutomaticFailoverEnabled":{"shape":"BooleanOptional"},
1335
- "NumCacheClusters":{"shape":"IntegerOptional"},
1336
- "PreferredCacheClusterAZs":{"shape":"AvailabilityZonesList"},
1337
- "NumNodeGroups":{"shape":"IntegerOptional"},
1338
- "ReplicasPerNodeGroup":{"shape":"IntegerOptional"},
1339
- "NodeGroupConfiguration":{"shape":"NodeGroupConfigurationList"},
1340
- "CacheNodeType":{"shape":"String"},
1341
- "Engine":{"shape":"String"},
1342
- "EngineVersion":{"shape":"String"},
1343
- "CacheParameterGroupName":{"shape":"String"},
1344
- "CacheSubnetGroupName":{"shape":"String"},
1345
- "CacheSecurityGroupNames":{"shape":"CacheSecurityGroupNameList"},
1346
- "SecurityGroupIds":{"shape":"SecurityGroupIdsList"},
1347
- "Tags":{"shape":"TagList"},
1348
- "SnapshotArns":{"shape":"SnapshotArnsList"},
1349
- "SnapshotName":{"shape":"String"},
1350
- "PreferredMaintenanceWindow":{"shape":"String"},
1351
- "Port":{"shape":"IntegerOptional"},
1352
- "NotificationTopicArn":{"shape":"String"},
1353
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
1354
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
1355
- "SnapshotWindow":{"shape":"String"},
1356
- "AuthToken":{"shape":"String"}
1357
- }
1358
- },
1359
- "CreateReplicationGroupResult":{
1360
- "type":"structure",
1361
- "members":{
1362
- "ReplicationGroup":{"shape":"ReplicationGroup"}
1363
- }
1364
- },
1365
- "CreateSnapshotMessage":{
1366
- "type":"structure",
1367
- "required":["SnapshotName"],
1368
- "members":{
1369
- "ReplicationGroupId":{"shape":"String"},
1370
- "CacheClusterId":{"shape":"String"},
1371
- "SnapshotName":{"shape":"String"}
1372
- }
1373
- },
1374
- "CreateSnapshotResult":{
1375
- "type":"structure",
1376
- "members":{
1377
- "Snapshot":{"shape":"Snapshot"}
1378
- }
1379
- },
1380
- "DeleteCacheClusterMessage":{
1381
- "type":"structure",
1382
- "required":["CacheClusterId"],
1383
- "members":{
1384
- "CacheClusterId":{"shape":"String"},
1385
- "FinalSnapshotIdentifier":{"shape":"String"}
1386
- }
1387
- },
1388
- "DeleteCacheClusterResult":{
1389
- "type":"structure",
1390
- "members":{
1391
- "CacheCluster":{"shape":"CacheCluster"}
1392
- }
1393
- },
1394
- "DeleteCacheParameterGroupMessage":{
1395
- "type":"structure",
1396
- "required":["CacheParameterGroupName"],
1397
- "members":{
1398
- "CacheParameterGroupName":{"shape":"String"}
1399
- }
1400
- },
1401
- "DeleteCacheSecurityGroupMessage":{
1402
- "type":"structure",
1403
- "required":["CacheSecurityGroupName"],
1404
- "members":{
1405
- "CacheSecurityGroupName":{"shape":"String"}
1406
- }
1407
- },
1408
- "DeleteCacheSubnetGroupMessage":{
1409
- "type":"structure",
1410
- "required":["CacheSubnetGroupName"],
1411
- "members":{
1412
- "CacheSubnetGroupName":{"shape":"String"}
1413
- }
1414
- },
1415
- "DeleteReplicationGroupMessage":{
1416
- "type":"structure",
1417
- "required":["ReplicationGroupId"],
1418
- "members":{
1419
- "ReplicationGroupId":{"shape":"String"},
1420
- "RetainPrimaryCluster":{"shape":"BooleanOptional"},
1421
- "FinalSnapshotIdentifier":{"shape":"String"}
1422
- }
1423
- },
1424
- "DeleteReplicationGroupResult":{
1425
- "type":"structure",
1426
- "members":{
1427
- "ReplicationGroup":{"shape":"ReplicationGroup"}
1428
- }
1429
- },
1430
- "DeleteSnapshotMessage":{
1431
- "type":"structure",
1432
- "required":["SnapshotName"],
1433
- "members":{
1434
- "SnapshotName":{"shape":"String"}
1435
- }
1436
- },
1437
- "DeleteSnapshotResult":{
1438
- "type":"structure",
1439
- "members":{
1440
- "Snapshot":{"shape":"Snapshot"}
1441
- }
1442
- },
1443
- "DescribeCacheClustersMessage":{
1444
- "type":"structure",
1445
- "members":{
1446
- "CacheClusterId":{"shape":"String"},
1447
- "MaxRecords":{"shape":"IntegerOptional"},
1448
- "Marker":{"shape":"String"},
1449
- "ShowCacheNodeInfo":{"shape":"BooleanOptional"}
1450
- }
1451
- },
1452
- "DescribeCacheEngineVersionsMessage":{
1453
- "type":"structure",
1454
- "members":{
1455
- "Engine":{"shape":"String"},
1456
- "EngineVersion":{"shape":"String"},
1457
- "CacheParameterGroupFamily":{"shape":"String"},
1458
- "MaxRecords":{"shape":"IntegerOptional"},
1459
- "Marker":{"shape":"String"},
1460
- "DefaultOnly":{"shape":"Boolean"}
1461
- }
1462
- },
1463
- "DescribeCacheParameterGroupsMessage":{
1464
- "type":"structure",
1465
- "members":{
1466
- "CacheParameterGroupName":{"shape":"String"},
1467
- "MaxRecords":{"shape":"IntegerOptional"},
1468
- "Marker":{"shape":"String"}
1469
- }
1470
- },
1471
- "DescribeCacheParametersMessage":{
1472
- "type":"structure",
1473
- "required":["CacheParameterGroupName"],
1474
- "members":{
1475
- "CacheParameterGroupName":{"shape":"String"},
1476
- "Source":{"shape":"String"},
1477
- "MaxRecords":{"shape":"IntegerOptional"},
1478
- "Marker":{"shape":"String"}
1479
- }
1480
- },
1481
- "DescribeCacheSecurityGroupsMessage":{
1482
- "type":"structure",
1483
- "members":{
1484
- "CacheSecurityGroupName":{"shape":"String"},
1485
- "MaxRecords":{"shape":"IntegerOptional"},
1486
- "Marker":{"shape":"String"}
1487
- }
1488
- },
1489
- "DescribeCacheSubnetGroupsMessage":{
1490
- "type":"structure",
1491
- "members":{
1492
- "CacheSubnetGroupName":{"shape":"String"},
1493
- "MaxRecords":{"shape":"IntegerOptional"},
1494
- "Marker":{"shape":"String"}
1495
- }
1496
- },
1497
- "DescribeEngineDefaultParametersMessage":{
1498
- "type":"structure",
1499
- "required":["CacheParameterGroupFamily"],
1500
- "members":{
1501
- "CacheParameterGroupFamily":{"shape":"String"},
1502
- "MaxRecords":{"shape":"IntegerOptional"},
1503
- "Marker":{"shape":"String"}
1504
- }
1505
- },
1506
- "DescribeEngineDefaultParametersResult":{
1507
- "type":"structure",
1508
- "members":{
1509
- "EngineDefaults":{"shape":"EngineDefaults"}
1510
- }
1511
- },
1512
- "DescribeEventsMessage":{
1513
- "type":"structure",
1514
- "members":{
1515
- "SourceIdentifier":{"shape":"String"},
1516
- "SourceType":{"shape":"SourceType"},
1517
- "StartTime":{"shape":"TStamp"},
1518
- "EndTime":{"shape":"TStamp"},
1519
- "Duration":{"shape":"IntegerOptional"},
1520
- "MaxRecords":{"shape":"IntegerOptional"},
1521
- "Marker":{"shape":"String"}
1522
- }
1523
- },
1524
- "DescribeReplicationGroupsMessage":{
1525
- "type":"structure",
1526
- "members":{
1527
- "ReplicationGroupId":{"shape":"String"},
1528
- "MaxRecords":{"shape":"IntegerOptional"},
1529
- "Marker":{"shape":"String"}
1530
- }
1531
- },
1532
- "DescribeReservedCacheNodesMessage":{
1533
- "type":"structure",
1534
- "members":{
1535
- "ReservedCacheNodeId":{"shape":"String"},
1536
- "ReservedCacheNodesOfferingId":{"shape":"String"},
1537
- "CacheNodeType":{"shape":"String"},
1538
- "Duration":{"shape":"String"},
1539
- "ProductDescription":{"shape":"String"},
1540
- "OfferingType":{"shape":"String"},
1541
- "MaxRecords":{"shape":"IntegerOptional"},
1542
- "Marker":{"shape":"String"}
1543
- }
1544
- },
1545
- "DescribeReservedCacheNodesOfferingsMessage":{
1546
- "type":"structure",
1547
- "members":{
1548
- "ReservedCacheNodesOfferingId":{"shape":"String"},
1549
- "CacheNodeType":{"shape":"String"},
1550
- "Duration":{"shape":"String"},
1551
- "ProductDescription":{"shape":"String"},
1552
- "OfferingType":{"shape":"String"},
1553
- "MaxRecords":{"shape":"IntegerOptional"},
1554
- "Marker":{"shape":"String"}
1555
- }
1556
- },
1557
- "DescribeSnapshotsListMessage":{
1558
- "type":"structure",
1559
- "members":{
1560
- "Marker":{"shape":"String"},
1561
- "Snapshots":{"shape":"SnapshotList"}
1562
- }
1563
- },
1564
- "DescribeSnapshotsMessage":{
1565
- "type":"structure",
1566
- "members":{
1567
- "ReplicationGroupId":{"shape":"String"},
1568
- "CacheClusterId":{"shape":"String"},
1569
- "SnapshotName":{"shape":"String"},
1570
- "SnapshotSource":{"shape":"String"},
1571
- "Marker":{"shape":"String"},
1572
- "MaxRecords":{"shape":"IntegerOptional"},
1573
- "ShowNodeGroupConfig":{"shape":"BooleanOptional"}
1574
- }
1575
- },
1576
- "Double":{"type":"double"},
1577
- "EC2SecurityGroup":{
1578
- "type":"structure",
1579
- "members":{
1580
- "Status":{"shape":"String"},
1581
- "EC2SecurityGroupName":{"shape":"String"},
1582
- "EC2SecurityGroupOwnerId":{"shape":"String"}
1583
- }
1584
- },
1585
- "EC2SecurityGroupList":{
1586
- "type":"list",
1587
- "member":{
1588
- "shape":"EC2SecurityGroup",
1589
- "locationName":"EC2SecurityGroup"
1590
- }
1591
- },
1592
- "Endpoint":{
1593
- "type":"structure",
1594
- "members":{
1595
- "Address":{"shape":"String"},
1596
- "Port":{"shape":"Integer"}
1597
- }
1598
- },
1599
- "EngineDefaults":{
1600
- "type":"structure",
1601
- "members":{
1602
- "CacheParameterGroupFamily":{"shape":"String"},
1603
- "Marker":{"shape":"String"},
1604
- "Parameters":{"shape":"ParametersList"},
1605
- "CacheNodeTypeSpecificParameters":{"shape":"CacheNodeTypeSpecificParametersList"}
1606
- },
1607
- "wrapper":true
1608
- },
1609
- "Event":{
1610
- "type":"structure",
1611
- "members":{
1612
- "SourceIdentifier":{"shape":"String"},
1613
- "SourceType":{"shape":"SourceType"},
1614
- "Message":{"shape":"String"},
1615
- "Date":{"shape":"TStamp"}
1616
- }
1617
- },
1618
- "EventList":{
1619
- "type":"list",
1620
- "member":{
1621
- "shape":"Event",
1622
- "locationName":"Event"
1623
- }
1624
- },
1625
- "EventsMessage":{
1626
- "type":"structure",
1627
- "members":{
1628
- "Marker":{"shape":"String"},
1629
- "Events":{"shape":"EventList"}
1630
- }
1631
- },
1632
- "InsufficientCacheClusterCapacityFault":{
1633
- "type":"structure",
1634
- "members":{
1635
- },
1636
- "error":{
1637
- "code":"InsufficientCacheClusterCapacity",
1638
- "httpStatusCode":400,
1639
- "senderFault":true
1640
- },
1641
- "exception":true
1642
- },
1643
- "Integer":{"type":"integer"},
1644
- "IntegerOptional":{"type":"integer"},
1645
- "InvalidARNFault":{
1646
- "type":"structure",
1647
- "members":{
1648
- },
1649
- "error":{
1650
- "code":"InvalidARN",
1651
- "httpStatusCode":400,
1652
- "senderFault":true
1653
- },
1654
- "exception":true
1655
- },
1656
- "InvalidCacheClusterStateFault":{
1657
- "type":"structure",
1658
- "members":{
1659
- },
1660
- "error":{
1661
- "code":"InvalidCacheClusterState",
1662
- "httpStatusCode":400,
1663
- "senderFault":true
1664
- },
1665
- "exception":true
1666
- },
1667
- "InvalidCacheParameterGroupStateFault":{
1668
- "type":"structure",
1669
- "members":{
1670
- },
1671
- "error":{
1672
- "code":"InvalidCacheParameterGroupState",
1673
- "httpStatusCode":400,
1674
- "senderFault":true
1675
- },
1676
- "exception":true
1677
- },
1678
- "InvalidCacheSecurityGroupStateFault":{
1679
- "type":"structure",
1680
- "members":{
1681
- },
1682
- "error":{
1683
- "code":"InvalidCacheSecurityGroupState",
1684
- "httpStatusCode":400,
1685
- "senderFault":true
1686
- },
1687
- "exception":true
1688
- },
1689
- "InvalidParameterCombinationException":{
1690
- "type":"structure",
1691
- "members":{
1692
- "message":{"shape":"AwsQueryErrorMessage"}
1693
- },
1694
- "error":{
1695
- "code":"InvalidParameterCombination",
1696
- "httpStatusCode":400,
1697
- "senderFault":true
1698
- },
1699
- "exception":true
1700
- },
1701
- "InvalidParameterValueException":{
1702
- "type":"structure",
1703
- "members":{
1704
- "message":{"shape":"AwsQueryErrorMessage"}
1705
- },
1706
- "error":{
1707
- "code":"InvalidParameterValue",
1708
- "httpStatusCode":400,
1709
- "senderFault":true
1710
- },
1711
- "exception":true
1712
- },
1713
- "InvalidReplicationGroupStateFault":{
1714
- "type":"structure",
1715
- "members":{
1716
- },
1717
- "error":{
1718
- "code":"InvalidReplicationGroupState",
1719
- "httpStatusCode":400,
1720
- "senderFault":true
1721
- },
1722
- "exception":true
1723
- },
1724
- "InvalidSnapshotStateFault":{
1725
- "type":"structure",
1726
- "members":{
1727
- },
1728
- "error":{
1729
- "code":"InvalidSnapshotState",
1730
- "httpStatusCode":400,
1731
- "senderFault":true
1732
- },
1733
- "exception":true
1734
- },
1735
- "InvalidSubnet":{
1736
- "type":"structure",
1737
- "members":{
1738
- },
1739
- "error":{
1740
- "code":"InvalidSubnet",
1741
- "httpStatusCode":400,
1742
- "senderFault":true
1743
- },
1744
- "exception":true
1745
- },
1746
- "InvalidVPCNetworkStateFault":{
1747
- "type":"structure",
1748
- "members":{
1749
- },
1750
- "error":{
1751
- "code":"InvalidVPCNetworkStateFault",
1752
- "httpStatusCode":400,
1753
- "senderFault":true
1754
- },
1755
- "exception":true
1756
- },
1757
- "KeyList":{
1758
- "type":"list",
1759
- "member":{"shape":"String"}
1760
- },
1761
- "ListAllowedNodeTypeModificationsMessage":{
1762
- "type":"structure",
1763
- "members":{
1764
- "CacheClusterId":{"shape":"String"},
1765
- "ReplicationGroupId":{"shape":"String"}
1766
- }
1767
- },
1768
- "ListTagsForResourceMessage":{
1769
- "type":"structure",
1770
- "required":["ResourceName"],
1771
- "members":{
1772
- "ResourceName":{"shape":"String"}
1773
- }
1774
- },
1775
- "ModifyCacheClusterMessage":{
1776
- "type":"structure",
1777
- "required":["CacheClusterId"],
1778
- "members":{
1779
- "CacheClusterId":{"shape":"String"},
1780
- "NumCacheNodes":{"shape":"IntegerOptional"},
1781
- "CacheNodeIdsToRemove":{"shape":"CacheNodeIdsList"},
1782
- "AZMode":{"shape":"AZMode"},
1783
- "NewAvailabilityZones":{"shape":"PreferredAvailabilityZoneList"},
1784
- "CacheSecurityGroupNames":{"shape":"CacheSecurityGroupNameList"},
1785
- "SecurityGroupIds":{"shape":"SecurityGroupIdsList"},
1786
- "PreferredMaintenanceWindow":{"shape":"String"},
1787
- "NotificationTopicArn":{"shape":"String"},
1788
- "CacheParameterGroupName":{"shape":"String"},
1789
- "NotificationTopicStatus":{"shape":"String"},
1790
- "ApplyImmediately":{"shape":"Boolean"},
1791
- "EngineVersion":{"shape":"String"},
1792
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
1793
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
1794
- "SnapshotWindow":{"shape":"String"},
1795
- "CacheNodeType":{"shape":"String"}
1796
- }
1797
- },
1798
- "ModifyCacheClusterResult":{
1799
- "type":"structure",
1800
- "members":{
1801
- "CacheCluster":{"shape":"CacheCluster"}
1802
- }
1803
- },
1804
- "ModifyCacheParameterGroupMessage":{
1805
- "type":"structure",
1806
- "required":[
1807
- "CacheParameterGroupName",
1808
- "ParameterNameValues"
1809
- ],
1810
- "members":{
1811
- "CacheParameterGroupName":{"shape":"String"},
1812
- "ParameterNameValues":{"shape":"ParameterNameValueList"}
1813
- }
1814
- },
1815
- "ModifyCacheSubnetGroupMessage":{
1816
- "type":"structure",
1817
- "required":["CacheSubnetGroupName"],
1818
- "members":{
1819
- "CacheSubnetGroupName":{"shape":"String"},
1820
- "CacheSubnetGroupDescription":{"shape":"String"},
1821
- "SubnetIds":{"shape":"SubnetIdentifierList"}
1822
- }
1823
- },
1824
- "ModifyCacheSubnetGroupResult":{
1825
- "type":"structure",
1826
- "members":{
1827
- "CacheSubnetGroup":{"shape":"CacheSubnetGroup"}
1828
- }
1829
- },
1830
- "ModifyReplicationGroupMessage":{
1831
- "type":"structure",
1832
- "required":["ReplicationGroupId"],
1833
- "members":{
1834
- "ReplicationGroupId":{"shape":"String"},
1835
- "ReplicationGroupDescription":{"shape":"String"},
1836
- "PrimaryClusterId":{"shape":"String"},
1837
- "SnapshottingClusterId":{"shape":"String"},
1838
- "AutomaticFailoverEnabled":{"shape":"BooleanOptional"},
1839
- "CacheSecurityGroupNames":{"shape":"CacheSecurityGroupNameList"},
1840
- "SecurityGroupIds":{"shape":"SecurityGroupIdsList"},
1841
- "PreferredMaintenanceWindow":{"shape":"String"},
1842
- "NotificationTopicArn":{"shape":"String"},
1843
- "CacheParameterGroupName":{"shape":"String"},
1844
- "NotificationTopicStatus":{"shape":"String"},
1845
- "ApplyImmediately":{"shape":"Boolean"},
1846
- "EngineVersion":{"shape":"String"},
1847
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
1848
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
1849
- "SnapshotWindow":{"shape":"String"},
1850
- "CacheNodeType":{"shape":"String"}
1851
- }
1852
- },
1853
- "ModifyReplicationGroupResult":{
1854
- "type":"structure",
1855
- "members":{
1856
- "ReplicationGroup":{"shape":"ReplicationGroup"}
1857
- }
1858
- },
1859
- "NodeGroup":{
1860
- "type":"structure",
1861
- "members":{
1862
- "NodeGroupId":{"shape":"String"},
1863
- "Status":{"shape":"String"},
1864
- "PrimaryEndpoint":{"shape":"Endpoint"},
1865
- "Slots":{"shape":"String"},
1866
- "NodeGroupMembers":{"shape":"NodeGroupMemberList"}
1867
- }
1868
- },
1869
- "NodeGroupConfiguration":{
1870
- "type":"structure",
1871
- "members":{
1872
- "Slots":{"shape":"String"},
1873
- "ReplicaCount":{"shape":"IntegerOptional"},
1874
- "PrimaryAvailabilityZone":{"shape":"String"},
1875
- "ReplicaAvailabilityZones":{"shape":"AvailabilityZonesList"}
1876
- }
1877
- },
1878
- "NodeGroupConfigurationList":{
1879
- "type":"list",
1880
- "member":{
1881
- "shape":"NodeGroupConfiguration",
1882
- "locationName":"NodeGroupConfiguration"
1883
- }
1884
- },
1885
- "NodeGroupList":{
1886
- "type":"list",
1887
- "member":{
1888
- "shape":"NodeGroup",
1889
- "locationName":"NodeGroup"
1890
- }
1891
- },
1892
- "NodeGroupMember":{
1893
- "type":"structure",
1894
- "members":{
1895
- "CacheClusterId":{"shape":"String"},
1896
- "CacheNodeId":{"shape":"String"},
1897
- "ReadEndpoint":{"shape":"Endpoint"},
1898
- "PreferredAvailabilityZone":{"shape":"String"},
1899
- "CurrentRole":{"shape":"String"}
1900
- }
1901
- },
1902
- "NodeGroupMemberList":{
1903
- "type":"list",
1904
- "member":{
1905
- "shape":"NodeGroupMember",
1906
- "locationName":"NodeGroupMember"
1907
- }
1908
- },
1909
- "NodeGroupsPerReplicationGroupQuotaExceededFault":{
1910
- "type":"structure",
1911
- "members":{
1912
- },
1913
- "error":{
1914
- "code":"NodeGroupsPerReplicationGroupQuotaExceeded",
1915
- "httpStatusCode":400,
1916
- "senderFault":true
1917
- },
1918
- "exception":true
1919
- },
1920
- "NodeQuotaForClusterExceededFault":{
1921
- "type":"structure",
1922
- "members":{
1923
- },
1924
- "error":{
1925
- "code":"NodeQuotaForClusterExceeded",
1926
- "httpStatusCode":400,
1927
- "senderFault":true
1928
- },
1929
- "exception":true
1930
- },
1931
- "NodeQuotaForCustomerExceededFault":{
1932
- "type":"structure",
1933
- "members":{
1934
- },
1935
- "error":{
1936
- "code":"NodeQuotaForCustomerExceeded",
1937
- "httpStatusCode":400,
1938
- "senderFault":true
1939
- },
1940
- "exception":true
1941
- },
1942
- "NodeSnapshot":{
1943
- "type":"structure",
1944
- "members":{
1945
- "CacheClusterId":{"shape":"String"},
1946
- "NodeGroupId":{"shape":"String"},
1947
- "CacheNodeId":{"shape":"String"},
1948
- "NodeGroupConfiguration":{"shape":"NodeGroupConfiguration"},
1949
- "CacheSize":{"shape":"String"},
1950
- "CacheNodeCreateTime":{"shape":"TStamp"},
1951
- "SnapshotCreateTime":{"shape":"TStamp"}
1952
- },
1953
- "wrapper":true
1954
- },
1955
- "NodeSnapshotList":{
1956
- "type":"list",
1957
- "member":{
1958
- "shape":"NodeSnapshot",
1959
- "locationName":"NodeSnapshot"
1960
- }
1961
- },
1962
- "NodeTypeList":{
1963
- "type":"list",
1964
- "member":{"shape":"String"}
1965
- },
1966
- "NotificationConfiguration":{
1967
- "type":"structure",
1968
- "members":{
1969
- "TopicArn":{"shape":"String"},
1970
- "TopicStatus":{"shape":"String"}
1971
- }
1972
- },
1973
- "Parameter":{
1974
- "type":"structure",
1975
- "members":{
1976
- "ParameterName":{"shape":"String"},
1977
- "ParameterValue":{"shape":"String"},
1978
- "Description":{"shape":"String"},
1979
- "Source":{"shape":"String"},
1980
- "DataType":{"shape":"String"},
1981
- "AllowedValues":{"shape":"String"},
1982
- "IsModifiable":{"shape":"Boolean"},
1983
- "MinimumEngineVersion":{"shape":"String"},
1984
- "ChangeType":{"shape":"ChangeType"}
1985
- }
1986
- },
1987
- "ParameterNameValue":{
1988
- "type":"structure",
1989
- "members":{
1990
- "ParameterName":{"shape":"String"},
1991
- "ParameterValue":{"shape":"String"}
1992
- }
1993
- },
1994
- "ParameterNameValueList":{
1995
- "type":"list",
1996
- "member":{
1997
- "shape":"ParameterNameValue",
1998
- "locationName":"ParameterNameValue"
1999
- }
2000
- },
2001
- "ParametersList":{
2002
- "type":"list",
2003
- "member":{
2004
- "shape":"Parameter",
2005
- "locationName":"Parameter"
2006
- }
2007
- },
2008
- "PendingAutomaticFailoverStatus":{
2009
- "type":"string",
2010
- "enum":[
2011
- "enabled",
2012
- "disabled"
2013
- ]
2014
- },
2015
- "PendingModifiedValues":{
2016
- "type":"structure",
2017
- "members":{
2018
- "NumCacheNodes":{"shape":"IntegerOptional"},
2019
- "CacheNodeIdsToRemove":{"shape":"CacheNodeIdsList"},
2020
- "EngineVersion":{"shape":"String"},
2021
- "CacheNodeType":{"shape":"String"}
2022
- }
2023
- },
2024
- "PreferredAvailabilityZoneList":{
2025
- "type":"list",
2026
- "member":{
2027
- "shape":"String",
2028
- "locationName":"PreferredAvailabilityZone"
2029
- }
2030
- },
2031
- "PurchaseReservedCacheNodesOfferingMessage":{
2032
- "type":"structure",
2033
- "required":["ReservedCacheNodesOfferingId"],
2034
- "members":{
2035
- "ReservedCacheNodesOfferingId":{"shape":"String"},
2036
- "ReservedCacheNodeId":{"shape":"String"},
2037
- "CacheNodeCount":{"shape":"IntegerOptional"}
2038
- }
2039
- },
2040
- "PurchaseReservedCacheNodesOfferingResult":{
2041
- "type":"structure",
2042
- "members":{
2043
- "ReservedCacheNode":{"shape":"ReservedCacheNode"}
2044
- }
2045
- },
2046
- "RebootCacheClusterMessage":{
2047
- "type":"structure",
2048
- "required":[
2049
- "CacheClusterId",
2050
- "CacheNodeIdsToReboot"
2051
- ],
2052
- "members":{
2053
- "CacheClusterId":{"shape":"String"},
2054
- "CacheNodeIdsToReboot":{"shape":"CacheNodeIdsList"}
2055
- }
2056
- },
2057
- "RebootCacheClusterResult":{
2058
- "type":"structure",
2059
- "members":{
2060
- "CacheCluster":{"shape":"CacheCluster"}
2061
- }
2062
- },
2063
- "RecurringCharge":{
2064
- "type":"structure",
2065
- "members":{
2066
- "RecurringChargeAmount":{"shape":"Double"},
2067
- "RecurringChargeFrequency":{"shape":"String"}
2068
- },
2069
- "wrapper":true
2070
- },
2071
- "RecurringChargeList":{
2072
- "type":"list",
2073
- "member":{
2074
- "shape":"RecurringCharge",
2075
- "locationName":"RecurringCharge"
2076
- }
2077
- },
2078
- "RemoveTagsFromResourceMessage":{
2079
- "type":"structure",
2080
- "required":[
2081
- "ResourceName",
2082
- "TagKeys"
2083
- ],
2084
- "members":{
2085
- "ResourceName":{"shape":"String"},
2086
- "TagKeys":{"shape":"KeyList"}
2087
- }
2088
- },
2089
- "ReplicationGroup":{
2090
- "type":"structure",
2091
- "members":{
2092
- "ReplicationGroupId":{"shape":"String"},
2093
- "Description":{"shape":"String"},
2094
- "Status":{"shape":"String"},
2095
- "PendingModifiedValues":{"shape":"ReplicationGroupPendingModifiedValues"},
2096
- "MemberClusters":{"shape":"ClusterIdList"},
2097
- "NodeGroups":{"shape":"NodeGroupList"},
2098
- "SnapshottingClusterId":{"shape":"String"},
2099
- "AutomaticFailover":{"shape":"AutomaticFailoverStatus"},
2100
- "ConfigurationEndpoint":{"shape":"Endpoint"},
2101
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
2102
- "SnapshotWindow":{"shape":"String"}
2103
- },
2104
- "wrapper":true
2105
- },
2106
- "ReplicationGroupAlreadyExistsFault":{
2107
- "type":"structure",
2108
- "members":{
2109
- },
2110
- "error":{
2111
- "code":"ReplicationGroupAlreadyExists",
2112
- "httpStatusCode":400,
2113
- "senderFault":true
2114
- },
2115
- "exception":true
2116
- },
2117
- "ReplicationGroupList":{
2118
- "type":"list",
2119
- "member":{
2120
- "shape":"ReplicationGroup",
2121
- "locationName":"ReplicationGroup"
2122
- }
2123
- },
2124
- "ReplicationGroupMessage":{
2125
- "type":"structure",
2126
- "members":{
2127
- "Marker":{"shape":"String"},
2128
- "ReplicationGroups":{"shape":"ReplicationGroupList"}
2129
- }
2130
- },
2131
- "ReplicationGroupNotFoundFault":{
2132
- "type":"structure",
2133
- "members":{
2134
- },
2135
- "error":{
2136
- "code":"ReplicationGroupNotFoundFault",
2137
- "httpStatusCode":404,
2138
- "senderFault":true
2139
- },
2140
- "exception":true
2141
- },
2142
- "ReplicationGroupPendingModifiedValues":{
2143
- "type":"structure",
2144
- "members":{
2145
- "PrimaryClusterId":{"shape":"String"},
2146
- "AutomaticFailoverStatus":{"shape":"PendingAutomaticFailoverStatus"}
2147
- }
2148
- },
2149
- "ReservedCacheNode":{
2150
- "type":"structure",
2151
- "members":{
2152
- "ReservedCacheNodeId":{"shape":"String"},
2153
- "ReservedCacheNodesOfferingId":{"shape":"String"},
2154
- "CacheNodeType":{"shape":"String"},
2155
- "StartTime":{"shape":"TStamp"},
2156
- "Duration":{"shape":"Integer"},
2157
- "FixedPrice":{"shape":"Double"},
2158
- "UsagePrice":{"shape":"Double"},
2159
- "CacheNodeCount":{"shape":"Integer"},
2160
- "ProductDescription":{"shape":"String"},
2161
- "OfferingType":{"shape":"String"},
2162
- "State":{"shape":"String"},
2163
- "RecurringCharges":{"shape":"RecurringChargeList"}
2164
- },
2165
- "wrapper":true
2166
- },
2167
- "ReservedCacheNodeAlreadyExistsFault":{
2168
- "type":"structure",
2169
- "members":{
2170
- },
2171
- "error":{
2172
- "code":"ReservedCacheNodeAlreadyExists",
2173
- "httpStatusCode":404,
2174
- "senderFault":true
2175
- },
2176
- "exception":true
2177
- },
2178
- "ReservedCacheNodeList":{
2179
- "type":"list",
2180
- "member":{
2181
- "shape":"ReservedCacheNode",
2182
- "locationName":"ReservedCacheNode"
2183
- }
2184
- },
2185
- "ReservedCacheNodeMessage":{
2186
- "type":"structure",
2187
- "members":{
2188
- "Marker":{"shape":"String"},
2189
- "ReservedCacheNodes":{"shape":"ReservedCacheNodeList"}
2190
- }
2191
- },
2192
- "ReservedCacheNodeNotFoundFault":{
2193
- "type":"structure",
2194
- "members":{
2195
- },
2196
- "error":{
2197
- "code":"ReservedCacheNodeNotFound",
2198
- "httpStatusCode":404,
2199
- "senderFault":true
2200
- },
2201
- "exception":true
2202
- },
2203
- "ReservedCacheNodeQuotaExceededFault":{
2204
- "type":"structure",
2205
- "members":{
2206
- },
2207
- "error":{
2208
- "code":"ReservedCacheNodeQuotaExceeded",
2209
- "httpStatusCode":400,
2210
- "senderFault":true
2211
- },
2212
- "exception":true
2213
- },
2214
- "ReservedCacheNodesOffering":{
2215
- "type":"structure",
2216
- "members":{
2217
- "ReservedCacheNodesOfferingId":{"shape":"String"},
2218
- "CacheNodeType":{"shape":"String"},
2219
- "Duration":{"shape":"Integer"},
2220
- "FixedPrice":{"shape":"Double"},
2221
- "UsagePrice":{"shape":"Double"},
2222
- "ProductDescription":{"shape":"String"},
2223
- "OfferingType":{"shape":"String"},
2224
- "RecurringCharges":{"shape":"RecurringChargeList"}
2225
- },
2226
- "wrapper":true
2227
- },
2228
- "ReservedCacheNodesOfferingList":{
2229
- "type":"list",
2230
- "member":{
2231
- "shape":"ReservedCacheNodesOffering",
2232
- "locationName":"ReservedCacheNodesOffering"
2233
- }
2234
- },
2235
- "ReservedCacheNodesOfferingMessage":{
2236
- "type":"structure",
2237
- "members":{
2238
- "Marker":{"shape":"String"},
2239
- "ReservedCacheNodesOfferings":{"shape":"ReservedCacheNodesOfferingList"}
2240
- }
2241
- },
2242
- "ReservedCacheNodesOfferingNotFoundFault":{
2243
- "type":"structure",
2244
- "members":{
2245
- },
2246
- "error":{
2247
- "code":"ReservedCacheNodesOfferingNotFound",
2248
- "httpStatusCode":404,
2249
- "senderFault":true
2250
- },
2251
- "exception":true
2252
- },
2253
- "ResetCacheParameterGroupMessage":{
2254
- "type":"structure",
2255
- "required":["CacheParameterGroupName"],
2256
- "members":{
2257
- "CacheParameterGroupName":{"shape":"String"},
2258
- "ResetAllParameters":{"shape":"Boolean"},
2259
- "ParameterNameValues":{"shape":"ParameterNameValueList"}
2260
- }
2261
- },
2262
- "RevokeCacheSecurityGroupIngressMessage":{
2263
- "type":"structure",
2264
- "required":[
2265
- "CacheSecurityGroupName",
2266
- "EC2SecurityGroupName",
2267
- "EC2SecurityGroupOwnerId"
2268
- ],
2269
- "members":{
2270
- "CacheSecurityGroupName":{"shape":"String"},
2271
- "EC2SecurityGroupName":{"shape":"String"},
2272
- "EC2SecurityGroupOwnerId":{"shape":"String"}
2273
- }
2274
- },
2275
- "RevokeCacheSecurityGroupIngressResult":{
2276
- "type":"structure",
2277
- "members":{
2278
- "CacheSecurityGroup":{"shape":"CacheSecurityGroup"}
2279
- }
2280
- },
2281
- "SecurityGroupIdsList":{
2282
- "type":"list",
2283
- "member":{
2284
- "shape":"String",
2285
- "locationName":"SecurityGroupId"
2286
- }
2287
- },
2288
- "SecurityGroupMembership":{
2289
- "type":"structure",
2290
- "members":{
2291
- "SecurityGroupId":{"shape":"String"},
2292
- "Status":{"shape":"String"}
2293
- }
2294
- },
2295
- "SecurityGroupMembershipList":{
2296
- "type":"list",
2297
- "member":{"shape":"SecurityGroupMembership"}
2298
- },
2299
- "Snapshot":{
2300
- "type":"structure",
2301
- "members":{
2302
- "SnapshotName":{"shape":"String"},
2303
- "ReplicationGroupId":{"shape":"String"},
2304
- "ReplicationGroupDescription":{"shape":"String"},
2305
- "CacheClusterId":{"shape":"String"},
2306
- "SnapshotStatus":{"shape":"String"},
2307
- "SnapshotSource":{"shape":"String"},
2308
- "CacheNodeType":{"shape":"String"},
2309
- "Engine":{"shape":"String"},
2310
- "EngineVersion":{"shape":"String"},
2311
- "NumCacheNodes":{"shape":"IntegerOptional"},
2312
- "PreferredAvailabilityZone":{"shape":"String"},
2313
- "CacheClusterCreateTime":{"shape":"TStamp"},
2314
- "PreferredMaintenanceWindow":{"shape":"String"},
2315
- "TopicArn":{"shape":"String"},
2316
- "Port":{"shape":"IntegerOptional"},
2317
- "CacheParameterGroupName":{"shape":"String"},
2318
- "CacheSubnetGroupName":{"shape":"String"},
2319
- "VpcId":{"shape":"String"},
2320
- "AutoMinorVersionUpgrade":{"shape":"Boolean"},
2321
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
2322
- "SnapshotWindow":{"shape":"String"},
2323
- "NumNodeGroups":{"shape":"IntegerOptional"},
2324
- "AutomaticFailover":{"shape":"AutomaticFailoverStatus"},
2325
- "NodeSnapshots":{"shape":"NodeSnapshotList"}
2326
- },
2327
- "wrapper":true
2328
- },
2329
- "SnapshotAlreadyExistsFault":{
2330
- "type":"structure",
2331
- "members":{
2332
- },
2333
- "error":{
2334
- "code":"SnapshotAlreadyExistsFault",
2335
- "httpStatusCode":400,
2336
- "senderFault":true
2337
- },
2338
- "exception":true
2339
- },
2340
- "SnapshotArnsList":{
2341
- "type":"list",
2342
- "member":{
2343
- "shape":"String",
2344
- "locationName":"SnapshotArn"
2345
- }
2346
- },
2347
- "SnapshotFeatureNotSupportedFault":{
2348
- "type":"structure",
2349
- "members":{
2350
- },
2351
- "error":{
2352
- "code":"SnapshotFeatureNotSupportedFault",
2353
- "httpStatusCode":400,
2354
- "senderFault":true
2355
- },
2356
- "exception":true
2357
- },
2358
- "SnapshotList":{
2359
- "type":"list",
2360
- "member":{
2361
- "shape":"Snapshot",
2362
- "locationName":"Snapshot"
2363
- }
2364
- },
2365
- "SnapshotNotFoundFault":{
2366
- "type":"structure",
2367
- "members":{
2368
- },
2369
- "error":{
2370
- "code":"SnapshotNotFoundFault",
2371
- "httpStatusCode":404,
2372
- "senderFault":true
2373
- },
2374
- "exception":true
2375
- },
2376
- "SnapshotQuotaExceededFault":{
2377
- "type":"structure",
2378
- "members":{
2379
- },
2380
- "error":{
2381
- "code":"SnapshotQuotaExceededFault",
2382
- "httpStatusCode":400,
2383
- "senderFault":true
2384
- },
2385
- "exception":true
2386
- },
2387
- "SourceType":{
2388
- "type":"string",
2389
- "enum":[
2390
- "cache-cluster",
2391
- "cache-parameter-group",
2392
- "cache-security-group",
2393
- "cache-subnet-group",
2394
- "replication-group"
2395
- ]
2396
- },
2397
- "String":{"type":"string"},
2398
- "Subnet":{
2399
- "type":"structure",
2400
- "members":{
2401
- "SubnetIdentifier":{"shape":"String"},
2402
- "SubnetAvailabilityZone":{"shape":"AvailabilityZone"}
2403
- }
2404
- },
2405
- "SubnetIdentifierList":{
2406
- "type":"list",
2407
- "member":{
2408
- "shape":"String",
2409
- "locationName":"SubnetIdentifier"
2410
- }
2411
- },
2412
- "SubnetInUse":{
2413
- "type":"structure",
2414
- "members":{
2415
- },
2416
- "error":{
2417
- "code":"SubnetInUse",
2418
- "httpStatusCode":400,
2419
- "senderFault":true
2420
- },
2421
- "exception":true
2422
- },
2423
- "SubnetList":{
2424
- "type":"list",
2425
- "member":{
2426
- "shape":"Subnet",
2427
- "locationName":"Subnet"
2428
- }
2429
- },
2430
- "TStamp":{"type":"timestamp"},
2431
- "Tag":{
2432
- "type":"structure",
2433
- "members":{
2434
- "Key":{"shape":"String"},
2435
- "Value":{"shape":"String"}
2436
- }
2437
- },
2438
- "TagList":{
2439
- "type":"list",
2440
- "member":{
2441
- "shape":"Tag",
2442
- "locationName":"Tag"
2443
- }
2444
- },
2445
- "TagListMessage":{
2446
- "type":"structure",
2447
- "members":{
2448
- "TagList":{"shape":"TagList"}
2449
- }
2450
- },
2451
- "TagNotFoundFault":{
2452
- "type":"structure",
2453
- "members":{
2454
- },
2455
- "error":{
2456
- "code":"TagNotFound",
2457
- "httpStatusCode":404,
2458
- "senderFault":true
2459
- },
2460
- "exception":true
2461
- },
2462
- "TagQuotaPerResourceExceeded":{
2463
- "type":"structure",
2464
- "members":{
2465
- },
2466
- "error":{
2467
- "code":"TagQuotaPerResourceExceeded",
2468
- "httpStatusCode":400,
2469
- "senderFault":true
2470
- },
2471
- "exception":true
2472
- }
2473
- }
2474
- }