aws-sdk-core 2.11.343 → 3.64.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1152) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -549
  4. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +11 -8
  16. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +34 -1
  18. data/lib/aws-sdk-core/errors.rb +123 -22
  19. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  20. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  21. data/lib/aws-sdk-core/instance_profile_credentials.rb +1 -1
  22. data/lib/aws-sdk-core/json.rb +9 -10
  23. data/lib/aws-sdk-core/json/builder.rb +4 -2
  24. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  25. data/lib/aws-sdk-core/json/handler.rb +22 -3
  26. data/lib/aws-sdk-core/json/parser.rb +1 -1
  27. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  28. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  29. data/lib/aws-sdk-core/pager.rb +30 -25
  30. data/lib/aws-sdk-core/param_converter.rb +3 -3
  31. data/lib/aws-sdk-core/param_validator.rb +56 -21
  32. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  33. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  34. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  35. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  36. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  37. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  38. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  39. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
  40. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  41. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  42. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  43. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  44. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  45. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  46. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  47. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  48. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  49. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  50. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  51. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  52. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -15
  53. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  54. data/lib/aws-sdk-core/plugins/retry_errors.rb +79 -24
  55. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  56. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  57. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  58. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  59. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  60. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  61. data/lib/aws-sdk-core/query.rb +5 -0
  62. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  63. data/lib/aws-sdk-core/query/handler.rb +20 -16
  64. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  65. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  66. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  67. data/lib/aws-sdk-core/rest.rb +10 -0
  68. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  69. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  70. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  71. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  72. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  73. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  74. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  75. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  76. data/lib/aws-sdk-core/shared_config.rb +149 -10
  77. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  78. data/lib/aws-sdk-core/structure.rb +22 -13
  79. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  80. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  81. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  82. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  83. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  84. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  85. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  86. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  87. data/lib/aws-sdk-core/util.rb +66 -0
  88. data/lib/aws-sdk-core/waiters.rb +3 -0
  89. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  90. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  91. data/lib/aws-sdk-core/xml.rb +9 -0
  92. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  93. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  94. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  95. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  96. data/lib/aws-sdk-sts.rb +45 -0
  97. data/lib/aws-sdk-sts/client.rb +1833 -0
  98. data/lib/aws-sdk-sts/client_api.rb +320 -0
  99. data/lib/aws-sdk-sts/customizations.rb +0 -0
  100. data/lib/aws-sdk-sts/errors.rb +142 -0
  101. data/lib/aws-sdk-sts/resource.rb +23 -0
  102. data/lib/aws-sdk-sts/types.rb +1312 -0
  103. data/lib/seahorse.rb +60 -60
  104. data/lib/seahorse/client/async_base.rb +50 -0
  105. data/lib/seahorse/client/async_response.rb +62 -0
  106. data/lib/seahorse/client/base.rb +2 -8
  107. data/lib/seahorse/client/configuration.rb +4 -2
  108. data/lib/seahorse/client/h2/connection.rb +244 -0
  109. data/lib/seahorse/client/h2/handler.rb +151 -0
  110. data/lib/seahorse/client/http/async_response.rb +42 -0
  111. data/lib/seahorse/client/http/response.rb +10 -5
  112. data/lib/seahorse/client/logging/formatter.rb +2 -0
  113. data/lib/seahorse/client/logging/handler.rb +2 -0
  114. data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
  115. data/lib/seahorse/client/net_http/handler.rb +5 -0
  116. data/lib/seahorse/client/net_http/patches.rb +9 -1
  117. data/lib/seahorse/client/networking_error.rb +28 -0
  118. data/lib/seahorse/client/plugin.rb +66 -6
  119. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  120. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  121. data/lib/seahorse/client/plugins/h2.rb +64 -0
  122. data/lib/seahorse/client/plugins/logging.rb +17 -19
  123. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  124. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  125. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  126. data/lib/seahorse/client/request_context.rb +5 -0
  127. data/lib/seahorse/model/api.rb +33 -0
  128. data/lib/seahorse/model/authorizer.rb +21 -0
  129. data/lib/seahorse/model/operation.rb +11 -0
  130. data/lib/seahorse/model/shapes.rb +44 -2
  131. data/lib/seahorse/util.rb +1 -22
  132. metadata +91 -1029
  133. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  134. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  135. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  136. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  137. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  138. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  139. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  140. data/apis/acm/2015-12-08/api-2.json +0 -843
  141. data/apis/acm/2015-12-08/examples-1.json +0 -5
  142. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  143. data/apis/acm/2015-12-08/smoke.json +0 -18
  144. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  145. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4003
  146. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  147. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  148. data/apis/amplify/2017-07-25/api-2.json +0 -1972
  149. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  150. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  151. data/apis/apigateway/2015-07-09/api-2.json +0 -5382
  152. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  153. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  154. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  155. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -96
  156. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  157. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
  158. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  159. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -768
  160. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  161. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  162. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  163. data/apis/application-insights/2018-11-25/api-2.json +0 -721
  164. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  165. data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
  166. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  167. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  168. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  169. data/apis/appmesh/2019-01-25/api-2.json +0 -3202
  170. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  171. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  172. data/apis/appstream/2016-12-01/api-2.json +0 -2330
  173. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  174. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  175. data/apis/appstream/2016-12-01/smoke.json +0 -11
  176. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  177. data/apis/appsync/2017-07-25/api-2.json +0 -2003
  178. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  179. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  180. data/apis/athena/2017-05-18/api-2.json +0 -984
  181. data/apis/athena/2017-05-18/examples-1.json +0 -5
  182. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  183. data/apis/athena/2017-05-18/smoke.json +0 -11
  184. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  185. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  186. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  187. data/apis/autoscaling/2011-01-01/api-2.json +0 -2455
  188. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  189. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  190. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  191. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  192. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  193. data/apis/backup/2018-11-15/api-2.json +0 -2150
  194. data/apis/backup/2018-11-15/examples-1.json +0 -5
  195. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  196. data/apis/batch/2016-08-10/api-2.json +0 -1128
  197. data/apis/batch/2016-08-10/examples-1.json +0 -589
  198. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  199. data/apis/batch/2016-08-10/smoke.json +0 -11
  200. data/apis/budgets/2016-10-20/api-2.json +0 -807
  201. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  202. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  203. data/apis/ce/2017-10-25/api-2.json +0 -1035
  204. data/apis/ce/2017-10-25/examples-1.json +0 -5
  205. data/apis/ce/2017-10-25/paginators-1.json +0 -4
  206. data/apis/chime/2018-05-01/api-2.json +0 -2902
  207. data/apis/chime/2018-05-01/examples-1.json +0 -5
  208. data/apis/chime/2018-05-01/paginators-1.json +0 -29
  209. data/apis/cloud9/2017-09-23/api-2.json +0 -547
  210. data/apis/cloud9/2017-09-23/examples-1.json +0 -308
  211. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  212. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  213. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  214. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  215. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  216. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  217. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  218. data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
  219. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  220. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  221. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  222. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
  223. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  224. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  225. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  226. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  227. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  228. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  229. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  230. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  231. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  232. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  233. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  234. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  235. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  236. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  237. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  238. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  239. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  240. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  241. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  242. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  243. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  244. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  245. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  246. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  247. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  248. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  249. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  250. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  251. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  252. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  253. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  254. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  255. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  256. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  257. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  258. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  259. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  260. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  261. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  262. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  263. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  264. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  265. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  266. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  267. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  268. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  269. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  270. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  271. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  272. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  273. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  274. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  275. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  276. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  277. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  278. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  279. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  280. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  281. data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
  282. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  283. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  284. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  285. data/apis/codebuild/2016-10-06/api-2.json +0 -1276
  286. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  287. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  288. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  289. data/apis/codecommit/2015-04-13/api-2.json +0 -4248
  290. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  291. data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
  292. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  293. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  294. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  295. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  296. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  297. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  298. data/apis/codepipeline/2015-07-09/api-2.json +0 -2382
  299. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  300. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  301. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  302. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  303. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  304. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  305. data/apis/codestar/2017-04-19/smoke.json +0 -11
  306. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1053
  307. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  308. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  309. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5349
  310. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  311. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -52
  312. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  313. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  314. data/apis/comprehend/2017-11-27/api-2.json +0 -2361
  315. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  316. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  317. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
  318. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  319. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  320. data/apis/config/2014-11-12/api-2.json +0 -3270
  321. data/apis/config/2014-11-12/examples-1.json +0 -5
  322. data/apis/config/2014-11-12/paginators-1.json +0 -16
  323. data/apis/config/2014-11-12/smoke.json +0 -19
  324. data/apis/connect/2017-08-08/api-2.json +0 -1379
  325. data/apis/connect/2017-08-08/examples-1.json +0 -5
  326. data/apis/connect/2017-08-08/paginators-1.json +0 -14
  327. data/apis/cur/2017-01-06/api-2.json +0 -277
  328. data/apis/cur/2017-01-06/examples-1.json +0 -102
  329. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  330. data/apis/cur/2017-01-06/smoke.json +0 -11
  331. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  332. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  333. data/apis/datasync/2018-11-09/api-2.json +0 -1305
  334. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  335. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  336. data/apis/dax/2017-04-19/api-2.json +0 -1140
  337. data/apis/dax/2017-04-19/examples-1.json +0 -5
  338. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  339. data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
  340. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  341. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  342. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  343. data/apis/directconnect/2012-10-25/api-2.json +0 -2066
  344. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  345. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  346. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  347. data/apis/discovery/2015-11-01/api-2.json +0 -1334
  348. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  349. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  350. data/apis/discovery/2015-11-01/smoke.json +0 -11
  351. data/apis/dlm/2018-01-12/api-2.json +0 -444
  352. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  353. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  354. data/apis/dms/2016-01-01/api-2.json +0 -2259
  355. data/apis/dms/2016-01-01/examples-1.json +0 -1053
  356. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  357. data/apis/dms/2016-01-01/smoke.json +0 -18
  358. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  359. data/apis/docdb/2014-10-31/api-2.json +0 -2482
  360. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  361. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  362. data/apis/docdb/2014-10-31/smoke.json +0 -18
  363. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  364. data/apis/ds/2015-04-16/api-2.json +0 -2634
  365. data/apis/ds/2015-04-16/examples-1.json +0 -5
  366. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  367. data/apis/ds/2015-04-16/smoke.json +0 -20
  368. data/apis/dynamodb/2011-12-05/api-2.json +0 -803
  369. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  370. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  371. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  372. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  373. data/apis/dynamodb/2012-08-10/api-2.json +0 -2802
  374. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  375. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  376. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  377. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  378. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  379. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  380. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  381. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  382. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  383. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  384. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  385. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  386. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  387. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  388. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  389. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  390. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  391. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  392. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  393. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  394. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  395. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  396. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  397. data/apis/ec2/2016-11-15/api-2.json +0 -25018
  398. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  399. data/apis/ec2/2016-11-15/paginators-1.json +0 -450
  400. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  401. data/apis/ec2/2016-11-15/smoke.json +0 -20
  402. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  403. data/apis/ecr/2015-09-21/api-2.json +0 -1383
  404. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  405. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  406. data/apis/ecr/2015-09-21/smoke.json +0 -18
  407. data/apis/ecs/2014-11-13/api-2.json +0 -2809
  408. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  409. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  410. data/apis/ecs/2014-11-13/smoke.json +0 -18
  411. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  412. data/apis/eks/2017-11-01/api-2.json +0 -597
  413. data/apis/eks/2017-11-01/examples-1.json +0 -114
  414. data/apis/eks/2017-11-01/paginators-1.json +0 -4
  415. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  416. data/apis/elasticache/2015-02-02/api-2.json +0 -3132
  417. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  418. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  419. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  420. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  421. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  422. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  423. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  424. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  425. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -896
  426. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  427. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  428. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  429. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  430. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  431. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  432. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  433. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  434. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2299
  435. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  436. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  437. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  438. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  439. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2187
  440. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  441. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  442. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  443. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  444. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  445. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  446. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  447. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  448. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  449. data/apis/email/2010-12-01/api-2.json +0 -3182
  450. data/apis/email/2010-12-01/examples-1.json +0 -1021
  451. data/apis/email/2010-12-01/paginators-1.json +0 -18
  452. data/apis/email/2010-12-01/smoke.json +0 -18
  453. data/apis/email/2010-12-01/waiters-2.json +0 -18
  454. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  455. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  456. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  457. data/apis/es/2015-01-01/api-2.json +0 -1543
  458. data/apis/es/2015-01-01/examples-1.json +0 -5
  459. data/apis/es/2015-01-01/paginators-1.json +0 -29
  460. data/apis/es/2015-01-01/smoke.json +0 -18
  461. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  462. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  463. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  464. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  465. data/apis/events/2015-10-07/api-2.json +0 -1462
  466. data/apis/events/2015-10-07/examples-1.json +0 -5
  467. data/apis/events/2015-10-07/paginators-1.json +0 -4
  468. data/apis/events/2015-10-07/smoke.json +0 -18
  469. data/apis/firehose/2015-08-04/api-2.json +0 -1376
  470. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  471. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  472. data/apis/firehose/2015-08-04/smoke.json +0 -18
  473. data/apis/fms/2018-01-01/api-2.json +0 -692
  474. data/apis/fms/2018-01-01/examples-1.json +0 -5
  475. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  476. data/apis/forecast/2018-06-26/api-2.json +0 -1373
  477. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  478. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  479. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  480. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  481. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  482. data/apis/fsx/2018-03-01/api-2.json +0 -1050
  483. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  484. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  485. data/apis/gamelift/2015-10-01/api-2.json +0 -3447
  486. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  487. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  488. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  489. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  490. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  491. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  492. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  493. data/apis/glacier/2012-06-01/smoke.json +0 -18
  494. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  495. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -817
  496. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  497. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  498. data/apis/glue/2017-03-31/api-2.json +0 -6291
  499. data/apis/glue/2017-03-31/examples-1.json +0 -5
  500. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  501. data/apis/glue/2017-03-31/smoke.json +0 -11
  502. data/apis/greengrass/2017-06-07/api-2.json +0 -5103
  503. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  504. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  505. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  506. data/apis/guardduty/2017-11-28/api-2.json +0 -3206
  507. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  508. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  509. data/apis/health/2016-08-04/api-2.json +0 -554
  510. data/apis/health/2016-08-04/examples-1.json +0 -5
  511. data/apis/health/2016-08-04/paginators-1.json +0 -31
  512. data/apis/health/2016-08-04/smoke.json +0 -11
  513. data/apis/iam/2010-05-08/api-2.json +0 -5778
  514. data/apis/iam/2010-05-08/examples-1.json +0 -1572
  515. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  516. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  517. data/apis/iam/2010-05-08/smoke.json +0 -18
  518. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  519. data/apis/importexport/2010-06-01/api-2.json +0 -667
  520. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  521. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  522. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  523. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  524. data/apis/inspector/2016-02-16/smoke.json +0 -18
  525. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  526. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  527. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  528. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  529. data/apis/iot/2015-05-28/api-2.json +0 -9676
  530. data/apis/iot/2015-05-28/examples-1.json +0 -5
  531. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  532. data/apis/iot/2015-05-28/smoke.json +0 -18
  533. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  534. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  535. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  536. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  537. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2222
  538. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  539. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  540. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  541. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  542. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  543. data/apis/iotevents/2018-07-27/api-2.json +0 -1133
  544. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  545. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  546. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  547. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  548. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  549. data/apis/kafka/2018-11-14/api-2.json +0 -1698
  550. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  551. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -417
  552. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  553. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  554. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  555. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  556. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  557. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  558. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  559. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  560. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  561. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  562. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  563. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  564. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  565. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
  566. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  567. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  568. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  569. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  570. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  571. data/apis/kms/2014-11-01/api-2.json +0 -1834
  572. data/apis/kms/2014-11-01/examples-1.json +0 -906
  573. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  574. data/apis/kms/2014-11-01/smoke.json +0 -19
  575. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  576. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  577. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  578. data/apis/lambda/2014-11-11/api-2.json +0 -668
  579. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  580. data/apis/lambda/2015-03-31/api-2.json +0 -2345
  581. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  582. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  583. data/apis/lambda/2015-03-31/smoke.json +0 -18
  584. data/apis/lambda/2015-03-31/waiters-2.json +0 -22
  585. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  586. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  587. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  588. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  589. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  590. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  591. data/apis/lightsail/2016-11-28/api-2.json +0 -4781
  592. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  593. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  594. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  595. data/apis/logs/2014-03-28/api-2.json +0 -1701
  596. data/apis/logs/2014-03-28/examples-1.json +0 -5
  597. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  598. data/apis/logs/2014-03-28/smoke.json +0 -19
  599. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  600. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  601. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  602. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  603. data/apis/macie/2017-12-19/api-2.json +0 -365
  604. data/apis/macie/2017-12-19/examples-1.json +0 -5
  605. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  606. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  607. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  608. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  609. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
  610. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  611. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  612. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1880
  613. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  614. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8239
  615. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  616. data/apis/medialive/2017-10-14/api-2.json +0 -8711
  617. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  618. data/apis/medialive/2017-10-14/waiters-2.json +0 -111
  619. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1498
  620. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  621. data/apis/mediapackage/2017-10-12/api-2.json +0 -2039
  622. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
  623. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  624. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  625. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  626. data/apis/mediastore/2017-09-01/api-2.json +0 -735
  627. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  628. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  629. data/apis/mediatailor/2018-04-23/api-2.json +0 -524
  630. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  631. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -344
  632. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  633. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  634. data/apis/mobile/2017-07-01/api-2.json +0 -551
  635. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  636. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  637. data/apis/monitoring/2010-08-01/api-2.json +0 -1525
  638. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  639. data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
  640. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  641. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  642. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  643. data/apis/mq/2017-11-27/api-2.json +0 -2490
  644. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  645. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  646. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  647. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  648. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  649. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  650. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  651. data/apis/neptune/2014-10-31/smoke.json +0 -18
  652. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  653. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  654. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  655. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  656. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  657. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  658. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  659. data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
  660. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  661. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  662. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  663. data/apis/organizations/2016-11-28/api-2.json +0 -2317
  664. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  665. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  666. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  667. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  668. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  669. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
  670. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  671. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  672. data/apis/personalize/2018-05-22/api-2.json +0 -1695
  673. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  674. data/apis/personalize/2018-05-22/paginators-1.json +0 -58
  675. data/apis/pi/2018-02-27/api-2.json +0 -253
  676. data/apis/pi/2018-02-27/examples-1.json +0 -5
  677. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  678. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2080
  679. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  680. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  681. data/apis/pinpoint/2016-12-01/api-2.json +0 -8526
  682. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  683. data/apis/polly/2016-06-10/api-2.json +0 -830
  684. data/apis/polly/2016-06-10/examples-1.json +0 -171
  685. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  686. data/apis/polly/2016-06-10/smoke.json +0 -11
  687. data/apis/pricing/2017-10-15/api-2.json +0 -227
  688. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  689. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  690. data/apis/quicksight/2018-04-01/api-2.json +0 -1223
  691. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  692. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  693. data/apis/ram/2018-01-04/api-2.json +0 -964
  694. data/apis/ram/2018-01-04/examples-1.json +0 -5
  695. data/apis/ram/2018-01-04/paginators-1.json +0 -34
  696. data/apis/rds-data/2018-08-01/api-2.json +0 -787
  697. data/apis/rds-data/2018-08-01/examples-1.json +0 -4
  698. data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
  699. data/apis/rds/2013-01-10/api-2.json +0 -2903
  700. data/apis/rds/2013-01-10/examples-1.json +0 -5
  701. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  702. data/apis/rds/2013-01-10/smoke.json +0 -18
  703. data/apis/rds/2013-02-12/api-2.json +0 -3059
  704. data/apis/rds/2013-02-12/examples-1.json +0 -5
  705. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  706. data/apis/rds/2013-02-12/smoke.json +0 -18
  707. data/apis/rds/2013-09-09/api-2.json +0 -3160
  708. data/apis/rds/2013-09-09/examples-1.json +0 -5
  709. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  710. data/apis/rds/2013-09-09/smoke.json +0 -18
  711. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  712. data/apis/rds/2014-09-01/api-2.json +0 -3273
  713. data/apis/rds/2014-09-01/examples-1.json +0 -5
  714. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  715. data/apis/rds/2014-09-01/smoke.json +0 -18
  716. data/apis/rds/2014-10-31/api-2.json +0 -6576
  717. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  718. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  719. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  720. data/apis/rds/2014-10-31/smoke.json +0 -18
  721. data/apis/rds/2014-10-31/waiters-2.json +0 -175
  722. data/apis/rds/2015-11-12/api-2.json +0 -5509
  723. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  724. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  725. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  726. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  727. data/apis/redshift/2012-12-01/api-2.json +0 -4891
  728. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  729. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  730. data/apis/redshift/2012-12-01/smoke.json +0 -18
  731. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  732. data/apis/rekognition/2016-06-27/api-2.json +0 -2142
  733. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  734. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  735. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  736. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  737. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  738. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  739. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
  740. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  741. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  742. data/apis/robomaker/2018-06-29/api-2.json +0 -2093
  743. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  744. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  745. data/apis/route53/2013-04-01/api-2.json +0 -3780
  746. data/apis/route53/2013-04-01/examples-1.json +0 -762
  747. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  748. data/apis/route53/2013-04-01/smoke.json +0 -18
  749. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  750. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  751. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  752. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  753. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  754. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  755. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  756. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  757. data/apis/runtime.lex/2016-11-28/api-2.json +0 -680
  758. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  759. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  760. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  761. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  762. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  763. data/apis/s3/2006-03-01/api-2.json +0 -6576
  764. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  765. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  766. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  767. data/apis/s3/2006-03-01/smoke.json +0 -11
  768. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  769. data/apis/s3control/2018-08-20/api-2.json +0 -1044
  770. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  771. data/apis/s3control/2018-08-20/paginators-1.json +0 -9
  772. data/apis/sagemaker/2017-07-24/api-2.json +0 -5245
  773. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  774. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  775. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  776. data/apis/sdb/2009-04-15/api-2.json +0 -955
  777. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  778. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  779. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  780. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  781. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  782. data/apis/securityhub/2018-10-26/api-2.json +0 -2105
  783. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  784. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  785. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
  786. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  787. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  788. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  789. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  790. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  791. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  792. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  793. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  794. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  795. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  796. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  797. data/apis/shield/2016-06-02/api-2.json +0 -893
  798. data/apis/shield/2016-06-02/examples-1.json +0 -5
  799. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  800. data/apis/shield/2016-06-02/smoke.json +0 -11
  801. data/apis/signer/2017-08-25/api-2.json +0 -670
  802. data/apis/signer/2017-08-25/examples-1.json +0 -5
  803. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  804. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  805. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  806. data/apis/sms/2016-10-24/api-2.json +0 -1366
  807. data/apis/sms/2016-10-24/examples-1.json +0 -5
  808. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  809. data/apis/sms/2016-10-24/smoke.json +0 -18
  810. data/apis/snowball/2016-06-30/api-2.json +0 -929
  811. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  812. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  813. data/apis/snowball/2016-06-30/smoke.json +0 -11
  814. data/apis/sns/2010-03-31/api-2.json +0 -1468
  815. data/apis/sns/2010-03-31/examples-1.json +0 -5
  816. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  817. data/apis/sns/2010-03-31/resources-1.json +0 -327
  818. data/apis/sns/2010-03-31/smoke.json +0 -19
  819. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  820. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  821. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  822. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  823. data/apis/sqs/2012-11-05/smoke.json +0 -18
  824. data/apis/ssm/2014-11-06/api-2.json +0 -8914
  825. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  826. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  827. data/apis/ssm/2014-11-06/smoke.json +0 -18
  828. data/apis/states/2016-11-23/api-2.json +0 -1372
  829. data/apis/states/2016-11-23/examples-1.json +0 -5
  830. data/apis/states/2016-11-23/paginators-1.json +0 -28
  831. data/apis/states/2016-11-23/smoke.json +0 -11
  832. data/apis/storagegateway/2013-06-30/api-2.json +0 -3160
  833. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  834. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  835. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  836. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  837. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  838. data/apis/sts/2011-06-15/api-2.json +0 -562
  839. data/apis/sts/2011-06-15/examples-1.json +0 -207
  840. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  841. data/apis/sts/2011-06-15/smoke.json +0 -19
  842. data/apis/support/2013-04-15/api-2.json +0 -772
  843. data/apis/support/2013-04-15/examples-1.json +0 -5
  844. data/apis/support/2013-04-15/paginators-1.json +0 -25
  845. data/apis/swf/2012-01-25/api-2.json +0 -2792
  846. data/apis/swf/2012-01-25/examples-1.json +0 -5
  847. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  848. data/apis/textract/2018-06-27/api-2.json +0 -572
  849. data/apis/textract/2018-06-27/examples-1.json +0 -5
  850. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  851. data/apis/transcribe/2017-10-26/api-2.json +0 -506
  852. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  853. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  854. data/apis/transfer/2018-11-05/api-2.json +0 -857
  855. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  856. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  857. data/apis/translate/2017-07-01/api-2.json +0 -408
  858. data/apis/translate/2017-07-01/examples-1.json +0 -5
  859. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  860. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  861. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  862. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  863. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  864. data/apis/waf/2015-08-24/api-2.json +0 -3857
  865. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  866. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  867. data/apis/waf/2015-08-24/smoke.json +0 -21
  868. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  869. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  870. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  871. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  872. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  873. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  874. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  875. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  876. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  877. data/apis/workspaces/2015-04-08/api-2.json +0 -1699
  878. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  879. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  880. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  881. data/apis/xray/2016-04-12/api-2.json +0 -1352
  882. data/apis/xray/2016-04-12/examples-1.json +0 -5
  883. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  884. data/bin/aws.rb +0 -180
  885. data/endpoints.json +0 -4633
  886. data/lib/aws-sdk-core/acm.rb +0 -7
  887. data/lib/aws-sdk-core/acmpca.rb +0 -7
  888. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  889. data/lib/aws-sdk-core/amplify.rb +0 -6
  890. data/lib/aws-sdk-core/api/builder.rb +0 -129
  891. data/lib/aws-sdk-core/api/customizations.rb +0 -299
  892. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  893. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  894. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  895. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  896. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  897. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  898. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  899. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  900. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  901. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  902. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  903. data/lib/aws-sdk-core/apigateway.rb +0 -6
  904. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  905. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  906. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  907. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  908. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  909. data/lib/aws-sdk-core/appmesh.rb +0 -6
  910. data/lib/aws-sdk-core/appstream.rb +0 -7
  911. data/lib/aws-sdk-core/appsync.rb +0 -6
  912. data/lib/aws-sdk-core/athena.rb +0 -6
  913. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  914. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  915. data/lib/aws-sdk-core/backup.rb +0 -6
  916. data/lib/aws-sdk-core/batch.rb +0 -6
  917. data/lib/aws-sdk-core/budgets.rb +0 -6
  918. data/lib/aws-sdk-core/checksums.rb +0 -51
  919. data/lib/aws-sdk-core/chime.rb +0 -6
  920. data/lib/aws-sdk-core/client.rb +0 -62
  921. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  922. data/lib/aws-sdk-core/cloud9.rb +0 -6
  923. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  924. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  925. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  926. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  927. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  928. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  929. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  930. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  931. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  932. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  933. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  934. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  935. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  936. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  937. data/lib/aws-sdk-core/codebuild.rb +0 -6
  938. data/lib/aws-sdk-core/codecommit.rb +0 -6
  939. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  940. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  941. data/lib/aws-sdk-core/codestar.rb +0 -6
  942. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  943. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  944. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  945. data/lib/aws-sdk-core/comprehend.rb +0 -6
  946. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  947. data/lib/aws-sdk-core/configservice.rb +0 -6
  948. data/lib/aws-sdk-core/connect.rb +0 -6
  949. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  950. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  951. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  952. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  953. data/lib/aws-sdk-core/datasync.rb +0 -6
  954. data/lib/aws-sdk-core/dax.rb +0 -6
  955. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  956. data/lib/aws-sdk-core/directconnect.rb +0 -6
  957. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  958. data/lib/aws-sdk-core/dlm.rb +0 -6
  959. data/lib/aws-sdk-core/docdb.rb +0 -7
  960. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  961. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  962. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  963. data/lib/aws-sdk-core/ec2.rb +0 -8
  964. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  965. data/lib/aws-sdk-core/ecr.rb +0 -6
  966. data/lib/aws-sdk-core/ecs.rb +0 -7
  967. data/lib/aws-sdk-core/efs.rb +0 -6
  968. data/lib/aws-sdk-core/eks.rb +0 -7
  969. data/lib/aws-sdk-core/elasticache.rb +0 -7
  970. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  971. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  972. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  973. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  974. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  975. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  976. data/lib/aws-sdk-core/emr.rb +0 -7
  977. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  978. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  979. data/lib/aws-sdk-core/firehose.rb +0 -6
  980. data/lib/aws-sdk-core/fms.rb +0 -6
  981. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  982. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  983. data/lib/aws-sdk-core/fsx.rb +0 -6
  984. data/lib/aws-sdk-core/gamelift.rb +0 -6
  985. data/lib/aws-sdk-core/glacier.rb +0 -8
  986. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  987. data/lib/aws-sdk-core/glue.rb +0 -6
  988. data/lib/aws-sdk-core/greengrass.rb +0 -4
  989. data/lib/aws-sdk-core/groundstation.rb +0 -6
  990. data/lib/aws-sdk-core/guardduty.rb +0 -6
  991. data/lib/aws-sdk-core/health.rb +0 -6
  992. data/lib/aws-sdk-core/iam.rb +0 -8
  993. data/lib/aws-sdk-core/importexport.rb +0 -5
  994. data/lib/aws-sdk-core/inspector.rb +0 -6
  995. data/lib/aws-sdk-core/iot.rb +0 -6
  996. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  997. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  998. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  999. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1000. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1001. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1002. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1003. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1004. data/lib/aws-sdk-core/kafka.rb +0 -5
  1005. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1006. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1007. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1008. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1009. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1010. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1011. data/lib/aws-sdk-core/kms.rb +0 -6
  1012. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1013. data/lib/aws-sdk-core/lambda.rb +0 -7
  1014. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1015. data/lib/aws-sdk-core/lex.rb +0 -6
  1016. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1017. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1018. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1019. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1020. data/lib/aws-sdk-core/macie.rb +0 -6
  1021. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1022. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1023. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1024. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1025. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1026. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1027. data/lib/aws-sdk-core/medialive.rb +0 -6
  1028. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1029. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1030. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1031. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1032. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1033. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1034. data/lib/aws-sdk-core/mobile.rb +0 -6
  1035. data/lib/aws-sdk-core/mq.rb +0 -5
  1036. data/lib/aws-sdk-core/mturk.rb +0 -6
  1037. data/lib/aws-sdk-core/neptune.rb +0 -7
  1038. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1039. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1040. data/lib/aws-sdk-core/organizations.rb +0 -6
  1041. data/lib/aws-sdk-core/partitions.rb +0 -174
  1042. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1043. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1044. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1045. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1046. data/lib/aws-sdk-core/personalize.rb +0 -6
  1047. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1048. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1049. data/lib/aws-sdk-core/pi.rb +0 -6
  1050. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1051. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1052. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1053. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1054. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1055. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1056. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1057. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1058. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1059. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1060. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1061. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1062. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1063. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1064. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1065. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1066. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1067. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1068. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1069. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1070. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1071. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1072. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1073. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1074. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1075. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1076. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1077. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1078. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1079. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1080. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1081. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1082. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1083. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1084. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1085. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1086. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1087. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1088. data/lib/aws-sdk-core/polly.rb +0 -14
  1089. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1090. data/lib/aws-sdk-core/pricing.rb +0 -6
  1091. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1092. data/lib/aws-sdk-core/ram.rb +0 -6
  1093. data/lib/aws-sdk-core/rds.rb +0 -16
  1094. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1095. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1096. data/lib/aws-sdk-core/redshift.rb +0 -7
  1097. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1098. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1099. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1100. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1101. data/lib/aws-sdk-core/route53.rb +0 -7
  1102. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1103. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1104. data/lib/aws-sdk-core/s3.rb +0 -26
  1105. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1106. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1107. data/lib/aws-sdk-core/s3control.rb +0 -6
  1108. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1109. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1110. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1111. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1112. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1113. data/lib/aws-sdk-core/service.rb +0 -4
  1114. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1115. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1116. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1117. data/lib/aws-sdk-core/ses.rb +0 -7
  1118. data/lib/aws-sdk-core/shield.rb +0 -6
  1119. data/lib/aws-sdk-core/signer.rb +0 -7
  1120. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1121. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1122. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1123. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1124. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1125. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1126. data/lib/aws-sdk-core/sms.rb +0 -6
  1127. data/lib/aws-sdk-core/snowball.rb +0 -6
  1128. data/lib/aws-sdk-core/sns.rb +0 -7
  1129. data/lib/aws-sdk-core/sqs.rb +0 -7
  1130. data/lib/aws-sdk-core/ssm.rb +0 -6
  1131. data/lib/aws-sdk-core/states.rb +0 -6
  1132. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1133. data/lib/aws-sdk-core/sts.rb +0 -6
  1134. data/lib/aws-sdk-core/support.rb +0 -6
  1135. data/lib/aws-sdk-core/swf.rb +0 -6
  1136. data/lib/aws-sdk-core/textract.rb +0 -6
  1137. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1138. data/lib/aws-sdk-core/transfer.rb +0 -6
  1139. data/lib/aws-sdk-core/translate.rb +0 -6
  1140. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1141. data/lib/aws-sdk-core/version.rb +0 -3
  1142. data/lib/aws-sdk-core/waf.rb +0 -6
  1143. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1144. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1145. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1146. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1147. data/lib/aws-sdk-core/worklink.rb +0 -6
  1148. data/lib/aws-sdk-core/workmail.rb +0 -6
  1149. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1150. data/lib/aws-sdk-core/xray.rb +0 -6
  1151. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1152. data/service-models.json +0 -757
@@ -1,114 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- "CreateCluster": [
5
- {
6
- "input": {
7
- "version": "1.10",
8
- "name": "prod",
9
- "clientRequestToken": "1d2129a1-3d38-460a-9756-e5b91fddb951",
10
- "resourcesVpcConfig": {
11
- "securityGroupIds": [
12
- "sg-6979fe18"
13
- ],
14
- "subnetIds": [
15
- "subnet-6782e71e",
16
- "subnet-e7e761ac"
17
- ]
18
- },
19
- "roleArn": "arn:aws:iam::012345678910:role/eks-service-role-AWSServiceRoleForAmazonEKS-J7ONKE3BQ4PI"
20
- },
21
- "output": {
22
- },
23
- "comments": {
24
- "input": {
25
- },
26
- "output": {
27
- }
28
- },
29
- "description": "The following example creates an Amazon EKS cluster called prod.",
30
- "id": "to-create-a-new-cluster-1527868185648",
31
- "title": "To create a new cluster"
32
- }
33
- ],
34
- "DeleteCluster": [
35
- {
36
- "input": {
37
- "name": "devel"
38
- },
39
- "output": {
40
- },
41
- "comments": {
42
- "input": {
43
- },
44
- "output": {
45
- }
46
- },
47
- "description": "This example command deletes a cluster named `devel` in your default region.",
48
- "id": "to-delete-a-cluster-1527868641252",
49
- "title": "To delete a cluster"
50
- }
51
- ],
52
- "DescribeCluster": [
53
- {
54
- "input": {
55
- "name": "devel"
56
- },
57
- "output": {
58
- "cluster": {
59
- "version": "1.10",
60
- "name": "devel",
61
- "arn": "arn:aws:eks:us-west-2:012345678910:cluster/devel",
62
- "certificateAuthority": {
63
- "data": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUN5RENDQWJDZ0F3SUJBZ0lCQURBTkJna3Foa2lHOXcwQkFRc0ZBREFWTVJNd0VRWURWUVFERXdwcmRXSmwKY201bGRHVnpNQjRYRFRFNE1EVXpNVEl6TVRFek1Wb1hEVEk0TURVeU9ESXpNVEV6TVZvd0ZURVRNQkVHQTFVRQpBeE1LYTNWaVpYSnVaWFJsY3pDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTTZWCjVUaG4rdFcySm9Xa2hQMzRlVUZMNitaRXJOZGIvWVdrTmtDdWNGS2RaaXl2TjlMVmdvUmV2MjlFVFZlN1ZGbSsKUTJ3ZURyRXJiQyt0dVlibkFuN1ZLYmE3ay9hb1BHekZMdmVnb0t6b0M1N2NUdGVwZzRIazRlK2tIWHNaME10MApyb3NzcjhFM1ROeExETnNJTThGL1cwdjhsTGNCbWRPcjQyV2VuTjFHZXJnaDNSZ2wzR3JIazBnNTU0SjFWenJZCm9hTi8zODFUczlOTFF2QTBXb0xIcjBFRlZpTFdSZEoyZ3lXaC9ybDVyOFNDOHZaQXg1YW1BU0hVd01aTFpWRC8KTDBpOW4wRVM0MkpVdzQyQmxHOEdpd3NhTkJWV3lUTHZKclNhRXlDSHFtVVZaUTFDZkFXUjl0L3JleVVOVXM3TApWV1FqM3BFbk9RMitMSWJrc0RzQ0F3RUFBYU1qTUNFd0RnWURWUjBQQVFIL0JBUURBZ0trTUE4R0ExVWRFd0VCCi93UUZNQU1CQWY4d0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFNZ3RsQ1dIQ2U2YzVHMXl2YlFTS0Q4K2hUalkKSm1NSG56L2EvRGt0WG9YUjFVQzIrZUgzT1BZWmVjRVZZZHVaSlZCckNNQ2VWR0ZkeWdBYlNLc1FxWDg0S2RXbAp1MU5QaERDSmEyRHliN2pVMUV6VThTQjFGZUZ5ZFE3a0hNS1E1blpBRVFQOTY4S01hSGUrSm0yQ2x1UFJWbEJVCjF4WlhTS1gzTVZ0K1Q0SU1EV2d6c3JRSjVuQkRjdEtLcUZtM3pKdVVubHo5ZEpVckdscEltMjVJWXJDckxYUFgKWkUwRUtRNWEzMHhkVWNrTHRGQkQrOEtBdFdqSS9yZUZPNzM1YnBMdVoyOTBaNm42QlF3elRrS0p4cnhVc3QvOAppNGsxcnlsaUdWMm5SSjBUYjNORkczNHgrYWdzYTRoSTFPbU90TFM0TmgvRXJxT3lIUXNDc2hEQUtKUT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo="
64
- },
65
- "createdAt": 1527807879.988,
66
- "endpoint": "https://A0DCCD80A04F01705DD065655C30CC3D.yl4.us-west-2.eks.amazonaws.com",
67
- "resourcesVpcConfig": {
68
- "securityGroupIds": [
69
- "sg-6979fe18"
70
- ],
71
- "subnetIds": [
72
- "subnet-6782e71e",
73
- "subnet-e7e761ac"
74
- ],
75
- "vpcId": "vpc-950809ec"
76
- },
77
- "roleArn": "arn:aws:iam::012345678910:role/eks-service-role-AWSServiceRoleForAmazonEKS-J7ONKE3BQ4PI",
78
- "status": "ACTIVE"
79
- }
80
- },
81
- "comments": {
82
- "input": {
83
- },
84
- "output": {
85
- }
86
- },
87
- "description": "This example command provides a description of the specified cluster in your default region.",
88
- "id": "to-describe-a-cluster-1527868708512",
89
- "title": "To describe a cluster"
90
- }
91
- ],
92
- "ListClusters": [
93
- {
94
- "input": {
95
- },
96
- "output": {
97
- "clusters": [
98
- "devel",
99
- "prod"
100
- ]
101
- },
102
- "comments": {
103
- "input": {
104
- },
105
- "output": {
106
- }
107
- },
108
- "description": "This example command lists all of your available clusters in your default region.",
109
- "id": "to-list-your-available-clusters-1527868801040",
110
- "title": "To list your available clusters"
111
- }
112
- ]
113
- }
114
- }
@@ -1,4 +0,0 @@
1
- {
2
- "pagination": {
3
- }
4
- }
@@ -1,54 +0,0 @@
1
- {
2
- "version": 2,
3
- "waiters": {
4
- "ClusterActive": {
5
- "delay": 30,
6
- "operation": "DescribeCluster",
7
- "maxAttempts": 40,
8
- "acceptors": [
9
- {
10
- "expected": "DELETING",
11
- "matcher": "path",
12
- "state": "failure",
13
- "argument": "cluster.status"
14
- },
15
- {
16
- "expected": "FAILED",
17
- "matcher": "path",
18
- "state": "failure",
19
- "argument": "cluster.status"
20
- },
21
- {
22
- "expected": "ACTIVE",
23
- "matcher": "path",
24
- "state": "success",
25
- "argument": "cluster.status"
26
- }
27
- ]
28
- },
29
- "ClusterDeleted": {
30
- "delay": 30,
31
- "operation": "DescribeCluster",
32
- "maxAttempts": 40,
33
- "acceptors": [
34
- {
35
- "expected": "ACTIVE",
36
- "matcher": "path",
37
- "state": "failure",
38
- "argument": "cluster.status"
39
- },
40
- {
41
- "expected": "CREATING",
42
- "matcher": "path",
43
- "state": "failure",
44
- "argument": "cluster.status"
45
- },
46
- {
47
- "expected": "ResourceNotFoundException",
48
- "matcher": "error",
49
- "state": "success"
50
- }
51
- ]
52
- }
53
- }
54
- }
@@ -1,3132 +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
- "serviceId":"ElastiCache",
9
- "signatureVersion":"v4",
10
- "uid":"elasticache-2015-02-02",
11
- "xmlNamespace":"http://elasticache.amazonaws.com/doc/2015-02-02/"
12
- },
13
- "operations":{
14
- "AddTagsToResource":{
15
- "name":"AddTagsToResource",
16
- "http":{
17
- "method":"POST",
18
- "requestUri":"/"
19
- },
20
- "input":{"shape":"AddTagsToResourceMessage"},
21
- "output":{
22
- "shape":"TagListMessage",
23
- "resultWrapper":"AddTagsToResourceResult"
24
- },
25
- "errors":[
26
- {"shape":"CacheClusterNotFoundFault"},
27
- {"shape":"SnapshotNotFoundFault"},
28
- {"shape":"TagQuotaPerResourceExceeded"},
29
- {"shape":"InvalidARNFault"}
30
- ]
31
- },
32
- "AuthorizeCacheSecurityGroupIngress":{
33
- "name":"AuthorizeCacheSecurityGroupIngress",
34
- "http":{
35
- "method":"POST",
36
- "requestUri":"/"
37
- },
38
- "input":{"shape":"AuthorizeCacheSecurityGroupIngressMessage"},
39
- "output":{
40
- "shape":"AuthorizeCacheSecurityGroupIngressResult",
41
- "resultWrapper":"AuthorizeCacheSecurityGroupIngressResult"
42
- },
43
- "errors":[
44
- {"shape":"CacheSecurityGroupNotFoundFault"},
45
- {"shape":"InvalidCacheSecurityGroupStateFault"},
46
- {"shape":"AuthorizationAlreadyExistsFault"},
47
- {"shape":"InvalidParameterValueException"},
48
- {"shape":"InvalidParameterCombinationException"}
49
- ]
50
- },
51
- "BatchApplyUpdateAction":{
52
- "name":"BatchApplyUpdateAction",
53
- "http":{
54
- "method":"POST",
55
- "requestUri":"/"
56
- },
57
- "input":{"shape":"BatchApplyUpdateActionMessage"},
58
- "output":{
59
- "shape":"UpdateActionResultsMessage",
60
- "resultWrapper":"BatchApplyUpdateActionResult"
61
- },
62
- "errors":[
63
- {"shape":"ServiceUpdateNotFoundFault"},
64
- {"shape":"InvalidParameterValueException"}
65
- ]
66
- },
67
- "BatchStopUpdateAction":{
68
- "name":"BatchStopUpdateAction",
69
- "http":{
70
- "method":"POST",
71
- "requestUri":"/"
72
- },
73
- "input":{"shape":"BatchStopUpdateActionMessage"},
74
- "output":{
75
- "shape":"UpdateActionResultsMessage",
76
- "resultWrapper":"BatchStopUpdateActionResult"
77
- },
78
- "errors":[
79
- {"shape":"ServiceUpdateNotFoundFault"},
80
- {"shape":"InvalidParameterValueException"}
81
- ]
82
- },
83
- "CopySnapshot":{
84
- "name":"CopySnapshot",
85
- "http":{
86
- "method":"POST",
87
- "requestUri":"/"
88
- },
89
- "input":{"shape":"CopySnapshotMessage"},
90
- "output":{
91
- "shape":"CopySnapshotResult",
92
- "resultWrapper":"CopySnapshotResult"
93
- },
94
- "errors":[
95
- {"shape":"SnapshotAlreadyExistsFault"},
96
- {"shape":"SnapshotNotFoundFault"},
97
- {"shape":"SnapshotQuotaExceededFault"},
98
- {"shape":"InvalidSnapshotStateFault"},
99
- {"shape":"InvalidParameterValueException"},
100
- {"shape":"InvalidParameterCombinationException"}
101
- ]
102
- },
103
- "CreateCacheCluster":{
104
- "name":"CreateCacheCluster",
105
- "http":{
106
- "method":"POST",
107
- "requestUri":"/"
108
- },
109
- "input":{"shape":"CreateCacheClusterMessage"},
110
- "output":{
111
- "shape":"CreateCacheClusterResult",
112
- "resultWrapper":"CreateCacheClusterResult"
113
- },
114
- "errors":[
115
- {"shape":"ReplicationGroupNotFoundFault"},
116
- {"shape":"InvalidReplicationGroupStateFault"},
117
- {"shape":"CacheClusterAlreadyExistsFault"},
118
- {"shape":"InsufficientCacheClusterCapacityFault"},
119
- {"shape":"CacheSecurityGroupNotFoundFault"},
120
- {"shape":"CacheSubnetGroupNotFoundFault"},
121
- {"shape":"ClusterQuotaForCustomerExceededFault"},
122
- {"shape":"NodeQuotaForClusterExceededFault"},
123
- {"shape":"NodeQuotaForCustomerExceededFault"},
124
- {"shape":"CacheParameterGroupNotFoundFault"},
125
- {"shape":"InvalidVPCNetworkStateFault"},
126
- {"shape":"TagQuotaPerResourceExceeded"},
127
- {"shape":"InvalidParameterValueException"},
128
- {"shape":"InvalidParameterCombinationException"}
129
- ]
130
- },
131
- "CreateCacheParameterGroup":{
132
- "name":"CreateCacheParameterGroup",
133
- "http":{
134
- "method":"POST",
135
- "requestUri":"/"
136
- },
137
- "input":{"shape":"CreateCacheParameterGroupMessage"},
138
- "output":{
139
- "shape":"CreateCacheParameterGroupResult",
140
- "resultWrapper":"CreateCacheParameterGroupResult"
141
- },
142
- "errors":[
143
- {"shape":"CacheParameterGroupQuotaExceededFault"},
144
- {"shape":"CacheParameterGroupAlreadyExistsFault"},
145
- {"shape":"InvalidCacheParameterGroupStateFault"},
146
- {"shape":"InvalidParameterValueException"},
147
- {"shape":"InvalidParameterCombinationException"}
148
- ]
149
- },
150
- "CreateCacheSecurityGroup":{
151
- "name":"CreateCacheSecurityGroup",
152
- "http":{
153
- "method":"POST",
154
- "requestUri":"/"
155
- },
156
- "input":{"shape":"CreateCacheSecurityGroupMessage"},
157
- "output":{
158
- "shape":"CreateCacheSecurityGroupResult",
159
- "resultWrapper":"CreateCacheSecurityGroupResult"
160
- },
161
- "errors":[
162
- {"shape":"CacheSecurityGroupAlreadyExistsFault"},
163
- {"shape":"CacheSecurityGroupQuotaExceededFault"},
164
- {"shape":"InvalidParameterValueException"},
165
- {"shape":"InvalidParameterCombinationException"}
166
- ]
167
- },
168
- "CreateCacheSubnetGroup":{
169
- "name":"CreateCacheSubnetGroup",
170
- "http":{
171
- "method":"POST",
172
- "requestUri":"/"
173
- },
174
- "input":{"shape":"CreateCacheSubnetGroupMessage"},
175
- "output":{
176
- "shape":"CreateCacheSubnetGroupResult",
177
- "resultWrapper":"CreateCacheSubnetGroupResult"
178
- },
179
- "errors":[
180
- {"shape":"CacheSubnetGroupAlreadyExistsFault"},
181
- {"shape":"CacheSubnetGroupQuotaExceededFault"},
182
- {"shape":"CacheSubnetQuotaExceededFault"},
183
- {"shape":"InvalidSubnet"}
184
- ]
185
- },
186
- "CreateReplicationGroup":{
187
- "name":"CreateReplicationGroup",
188
- "http":{
189
- "method":"POST",
190
- "requestUri":"/"
191
- },
192
- "input":{"shape":"CreateReplicationGroupMessage"},
193
- "output":{
194
- "shape":"CreateReplicationGroupResult",
195
- "resultWrapper":"CreateReplicationGroupResult"
196
- },
197
- "errors":[
198
- {"shape":"CacheClusterNotFoundFault"},
199
- {"shape":"InvalidCacheClusterStateFault"},
200
- {"shape":"ReplicationGroupAlreadyExistsFault"},
201
- {"shape":"InsufficientCacheClusterCapacityFault"},
202
- {"shape":"CacheSecurityGroupNotFoundFault"},
203
- {"shape":"CacheSubnetGroupNotFoundFault"},
204
- {"shape":"ClusterQuotaForCustomerExceededFault"},
205
- {"shape":"NodeQuotaForClusterExceededFault"},
206
- {"shape":"NodeQuotaForCustomerExceededFault"},
207
- {"shape":"CacheParameterGroupNotFoundFault"},
208
- {"shape":"InvalidVPCNetworkStateFault"},
209
- {"shape":"TagQuotaPerResourceExceeded"},
210
- {"shape":"NodeGroupsPerReplicationGroupQuotaExceededFault"},
211
- {"shape":"InvalidParameterValueException"},
212
- {"shape":"InvalidParameterCombinationException"}
213
- ]
214
- },
215
- "CreateSnapshot":{
216
- "name":"CreateSnapshot",
217
- "http":{
218
- "method":"POST",
219
- "requestUri":"/"
220
- },
221
- "input":{"shape":"CreateSnapshotMessage"},
222
- "output":{
223
- "shape":"CreateSnapshotResult",
224
- "resultWrapper":"CreateSnapshotResult"
225
- },
226
- "errors":[
227
- {"shape":"SnapshotAlreadyExistsFault"},
228
- {"shape":"CacheClusterNotFoundFault"},
229
- {"shape":"ReplicationGroupNotFoundFault"},
230
- {"shape":"InvalidCacheClusterStateFault"},
231
- {"shape":"InvalidReplicationGroupStateFault"},
232
- {"shape":"SnapshotQuotaExceededFault"},
233
- {"shape":"SnapshotFeatureNotSupportedFault"},
234
- {"shape":"InvalidParameterCombinationException"},
235
- {"shape":"InvalidParameterValueException"}
236
- ]
237
- },
238
- "DecreaseReplicaCount":{
239
- "name":"DecreaseReplicaCount",
240
- "http":{
241
- "method":"POST",
242
- "requestUri":"/"
243
- },
244
- "input":{"shape":"DecreaseReplicaCountMessage"},
245
- "output":{
246
- "shape":"DecreaseReplicaCountResult",
247
- "resultWrapper":"DecreaseReplicaCountResult"
248
- },
249
- "errors":[
250
- {"shape":"ReplicationGroupNotFoundFault"},
251
- {"shape":"InvalidReplicationGroupStateFault"},
252
- {"shape":"InvalidCacheClusterStateFault"},
253
- {"shape":"InvalidVPCNetworkStateFault"},
254
- {"shape":"InsufficientCacheClusterCapacityFault"},
255
- {"shape":"ClusterQuotaForCustomerExceededFault"},
256
- {"shape":"NodeGroupsPerReplicationGroupQuotaExceededFault"},
257
- {"shape":"NodeQuotaForCustomerExceededFault"},
258
- {"shape":"ServiceLinkedRoleNotFoundFault"},
259
- {"shape":"NoOperationFault"},
260
- {"shape":"InvalidParameterValueException"},
261
- {"shape":"InvalidParameterCombinationException"}
262
- ]
263
- },
264
- "DeleteCacheCluster":{
265
- "name":"DeleteCacheCluster",
266
- "http":{
267
- "method":"POST",
268
- "requestUri":"/"
269
- },
270
- "input":{"shape":"DeleteCacheClusterMessage"},
271
- "output":{
272
- "shape":"DeleteCacheClusterResult",
273
- "resultWrapper":"DeleteCacheClusterResult"
274
- },
275
- "errors":[
276
- {"shape":"CacheClusterNotFoundFault"},
277
- {"shape":"InvalidCacheClusterStateFault"},
278
- {"shape":"SnapshotAlreadyExistsFault"},
279
- {"shape":"SnapshotFeatureNotSupportedFault"},
280
- {"shape":"SnapshotQuotaExceededFault"},
281
- {"shape":"InvalidParameterValueException"},
282
- {"shape":"InvalidParameterCombinationException"}
283
- ]
284
- },
285
- "DeleteCacheParameterGroup":{
286
- "name":"DeleteCacheParameterGroup",
287
- "http":{
288
- "method":"POST",
289
- "requestUri":"/"
290
- },
291
- "input":{"shape":"DeleteCacheParameterGroupMessage"},
292
- "errors":[
293
- {"shape":"InvalidCacheParameterGroupStateFault"},
294
- {"shape":"CacheParameterGroupNotFoundFault"},
295
- {"shape":"InvalidParameterValueException"},
296
- {"shape":"InvalidParameterCombinationException"}
297
- ]
298
- },
299
- "DeleteCacheSecurityGroup":{
300
- "name":"DeleteCacheSecurityGroup",
301
- "http":{
302
- "method":"POST",
303
- "requestUri":"/"
304
- },
305
- "input":{"shape":"DeleteCacheSecurityGroupMessage"},
306
- "errors":[
307
- {"shape":"InvalidCacheSecurityGroupStateFault"},
308
- {"shape":"CacheSecurityGroupNotFoundFault"},
309
- {"shape":"InvalidParameterValueException"},
310
- {"shape":"InvalidParameterCombinationException"}
311
- ]
312
- },
313
- "DeleteCacheSubnetGroup":{
314
- "name":"DeleteCacheSubnetGroup",
315
- "http":{
316
- "method":"POST",
317
- "requestUri":"/"
318
- },
319
- "input":{"shape":"DeleteCacheSubnetGroupMessage"},
320
- "errors":[
321
- {"shape":"CacheSubnetGroupInUse"},
322
- {"shape":"CacheSubnetGroupNotFoundFault"}
323
- ]
324
- },
325
- "DeleteReplicationGroup":{
326
- "name":"DeleteReplicationGroup",
327
- "http":{
328
- "method":"POST",
329
- "requestUri":"/"
330
- },
331
- "input":{"shape":"DeleteReplicationGroupMessage"},
332
- "output":{
333
- "shape":"DeleteReplicationGroupResult",
334
- "resultWrapper":"DeleteReplicationGroupResult"
335
- },
336
- "errors":[
337
- {"shape":"ReplicationGroupNotFoundFault"},
338
- {"shape":"InvalidReplicationGroupStateFault"},
339
- {"shape":"SnapshotAlreadyExistsFault"},
340
- {"shape":"SnapshotFeatureNotSupportedFault"},
341
- {"shape":"SnapshotQuotaExceededFault"},
342
- {"shape":"InvalidParameterValueException"},
343
- {"shape":"InvalidParameterCombinationException"}
344
- ]
345
- },
346
- "DeleteSnapshot":{
347
- "name":"DeleteSnapshot",
348
- "http":{
349
- "method":"POST",
350
- "requestUri":"/"
351
- },
352
- "input":{"shape":"DeleteSnapshotMessage"},
353
- "output":{
354
- "shape":"DeleteSnapshotResult",
355
- "resultWrapper":"DeleteSnapshotResult"
356
- },
357
- "errors":[
358
- {"shape":"SnapshotNotFoundFault"},
359
- {"shape":"InvalidSnapshotStateFault"},
360
- {"shape":"InvalidParameterValueException"},
361
- {"shape":"InvalidParameterCombinationException"}
362
- ]
363
- },
364
- "DescribeCacheClusters":{
365
- "name":"DescribeCacheClusters",
366
- "http":{
367
- "method":"POST",
368
- "requestUri":"/"
369
- },
370
- "input":{"shape":"DescribeCacheClustersMessage"},
371
- "output":{
372
- "shape":"CacheClusterMessage",
373
- "resultWrapper":"DescribeCacheClustersResult"
374
- },
375
- "errors":[
376
- {"shape":"CacheClusterNotFoundFault"},
377
- {"shape":"InvalidParameterValueException"},
378
- {"shape":"InvalidParameterCombinationException"}
379
- ]
380
- },
381
- "DescribeCacheEngineVersions":{
382
- "name":"DescribeCacheEngineVersions",
383
- "http":{
384
- "method":"POST",
385
- "requestUri":"/"
386
- },
387
- "input":{"shape":"DescribeCacheEngineVersionsMessage"},
388
- "output":{
389
- "shape":"CacheEngineVersionMessage",
390
- "resultWrapper":"DescribeCacheEngineVersionsResult"
391
- }
392
- },
393
- "DescribeCacheParameterGroups":{
394
- "name":"DescribeCacheParameterGroups",
395
- "http":{
396
- "method":"POST",
397
- "requestUri":"/"
398
- },
399
- "input":{"shape":"DescribeCacheParameterGroupsMessage"},
400
- "output":{
401
- "shape":"CacheParameterGroupsMessage",
402
- "resultWrapper":"DescribeCacheParameterGroupsResult"
403
- },
404
- "errors":[
405
- {"shape":"CacheParameterGroupNotFoundFault"},
406
- {"shape":"InvalidParameterValueException"},
407
- {"shape":"InvalidParameterCombinationException"}
408
- ]
409
- },
410
- "DescribeCacheParameters":{
411
- "name":"DescribeCacheParameters",
412
- "http":{
413
- "method":"POST",
414
- "requestUri":"/"
415
- },
416
- "input":{"shape":"DescribeCacheParametersMessage"},
417
- "output":{
418
- "shape":"CacheParameterGroupDetails",
419
- "resultWrapper":"DescribeCacheParametersResult"
420
- },
421
- "errors":[
422
- {"shape":"CacheParameterGroupNotFoundFault"},
423
- {"shape":"InvalidParameterValueException"},
424
- {"shape":"InvalidParameterCombinationException"}
425
- ]
426
- },
427
- "DescribeCacheSecurityGroups":{
428
- "name":"DescribeCacheSecurityGroups",
429
- "http":{
430
- "method":"POST",
431
- "requestUri":"/"
432
- },
433
- "input":{"shape":"DescribeCacheSecurityGroupsMessage"},
434
- "output":{
435
- "shape":"CacheSecurityGroupMessage",
436
- "resultWrapper":"DescribeCacheSecurityGroupsResult"
437
- },
438
- "errors":[
439
- {"shape":"CacheSecurityGroupNotFoundFault"},
440
- {"shape":"InvalidParameterValueException"},
441
- {"shape":"InvalidParameterCombinationException"}
442
- ]
443
- },
444
- "DescribeCacheSubnetGroups":{
445
- "name":"DescribeCacheSubnetGroups",
446
- "http":{
447
- "method":"POST",
448
- "requestUri":"/"
449
- },
450
- "input":{"shape":"DescribeCacheSubnetGroupsMessage"},
451
- "output":{
452
- "shape":"CacheSubnetGroupMessage",
453
- "resultWrapper":"DescribeCacheSubnetGroupsResult"
454
- },
455
- "errors":[
456
- {"shape":"CacheSubnetGroupNotFoundFault"}
457
- ]
458
- },
459
- "DescribeEngineDefaultParameters":{
460
- "name":"DescribeEngineDefaultParameters",
461
- "http":{
462
- "method":"POST",
463
- "requestUri":"/"
464
- },
465
- "input":{"shape":"DescribeEngineDefaultParametersMessage"},
466
- "output":{
467
- "shape":"DescribeEngineDefaultParametersResult",
468
- "resultWrapper":"DescribeEngineDefaultParametersResult"
469
- },
470
- "errors":[
471
- {"shape":"InvalidParameterValueException"},
472
- {"shape":"InvalidParameterCombinationException"}
473
- ]
474
- },
475
- "DescribeEvents":{
476
- "name":"DescribeEvents",
477
- "http":{
478
- "method":"POST",
479
- "requestUri":"/"
480
- },
481
- "input":{"shape":"DescribeEventsMessage"},
482
- "output":{
483
- "shape":"EventsMessage",
484
- "resultWrapper":"DescribeEventsResult"
485
- },
486
- "errors":[
487
- {"shape":"InvalidParameterValueException"},
488
- {"shape":"InvalidParameterCombinationException"}
489
- ]
490
- },
491
- "DescribeReplicationGroups":{
492
- "name":"DescribeReplicationGroups",
493
- "http":{
494
- "method":"POST",
495
- "requestUri":"/"
496
- },
497
- "input":{"shape":"DescribeReplicationGroupsMessage"},
498
- "output":{
499
- "shape":"ReplicationGroupMessage",
500
- "resultWrapper":"DescribeReplicationGroupsResult"
501
- },
502
- "errors":[
503
- {"shape":"ReplicationGroupNotFoundFault"},
504
- {"shape":"InvalidParameterValueException"},
505
- {"shape":"InvalidParameterCombinationException"}
506
- ]
507
- },
508
- "DescribeReservedCacheNodes":{
509
- "name":"DescribeReservedCacheNodes",
510
- "http":{
511
- "method":"POST",
512
- "requestUri":"/"
513
- },
514
- "input":{"shape":"DescribeReservedCacheNodesMessage"},
515
- "output":{
516
- "shape":"ReservedCacheNodeMessage",
517
- "resultWrapper":"DescribeReservedCacheNodesResult"
518
- },
519
- "errors":[
520
- {"shape":"ReservedCacheNodeNotFoundFault"},
521
- {"shape":"InvalidParameterValueException"},
522
- {"shape":"InvalidParameterCombinationException"}
523
- ]
524
- },
525
- "DescribeReservedCacheNodesOfferings":{
526
- "name":"DescribeReservedCacheNodesOfferings",
527
- "http":{
528
- "method":"POST",
529
- "requestUri":"/"
530
- },
531
- "input":{"shape":"DescribeReservedCacheNodesOfferingsMessage"},
532
- "output":{
533
- "shape":"ReservedCacheNodesOfferingMessage",
534
- "resultWrapper":"DescribeReservedCacheNodesOfferingsResult"
535
- },
536
- "errors":[
537
- {"shape":"ReservedCacheNodesOfferingNotFoundFault"},
538
- {"shape":"InvalidParameterValueException"},
539
- {"shape":"InvalidParameterCombinationException"}
540
- ]
541
- },
542
- "DescribeServiceUpdates":{
543
- "name":"DescribeServiceUpdates",
544
- "http":{
545
- "method":"POST",
546
- "requestUri":"/"
547
- },
548
- "input":{"shape":"DescribeServiceUpdatesMessage"},
549
- "output":{
550
- "shape":"ServiceUpdatesMessage",
551
- "resultWrapper":"DescribeServiceUpdatesResult"
552
- },
553
- "errors":[
554
- {"shape":"ServiceUpdateNotFoundFault"},
555
- {"shape":"InvalidParameterValueException"},
556
- {"shape":"InvalidParameterCombinationException"}
557
- ]
558
- },
559
- "DescribeSnapshots":{
560
- "name":"DescribeSnapshots",
561
- "http":{
562
- "method":"POST",
563
- "requestUri":"/"
564
- },
565
- "input":{"shape":"DescribeSnapshotsMessage"},
566
- "output":{
567
- "shape":"DescribeSnapshotsListMessage",
568
- "resultWrapper":"DescribeSnapshotsResult"
569
- },
570
- "errors":[
571
- {"shape":"CacheClusterNotFoundFault"},
572
- {"shape":"SnapshotNotFoundFault"},
573
- {"shape":"InvalidParameterValueException"},
574
- {"shape":"InvalidParameterCombinationException"}
575
- ]
576
- },
577
- "DescribeUpdateActions":{
578
- "name":"DescribeUpdateActions",
579
- "http":{
580
- "method":"POST",
581
- "requestUri":"/"
582
- },
583
- "input":{"shape":"DescribeUpdateActionsMessage"},
584
- "output":{
585
- "shape":"UpdateActionsMessage",
586
- "resultWrapper":"DescribeUpdateActionsResult"
587
- },
588
- "errors":[
589
- {"shape":"InvalidParameterValueException"},
590
- {"shape":"InvalidParameterCombinationException"}
591
- ]
592
- },
593
- "IncreaseReplicaCount":{
594
- "name":"IncreaseReplicaCount",
595
- "http":{
596
- "method":"POST",
597
- "requestUri":"/"
598
- },
599
- "input":{"shape":"IncreaseReplicaCountMessage"},
600
- "output":{
601
- "shape":"IncreaseReplicaCountResult",
602
- "resultWrapper":"IncreaseReplicaCountResult"
603
- },
604
- "errors":[
605
- {"shape":"ReplicationGroupNotFoundFault"},
606
- {"shape":"InvalidReplicationGroupStateFault"},
607
- {"shape":"InvalidCacheClusterStateFault"},
608
- {"shape":"InvalidVPCNetworkStateFault"},
609
- {"shape":"InsufficientCacheClusterCapacityFault"},
610
- {"shape":"ClusterQuotaForCustomerExceededFault"},
611
- {"shape":"NodeGroupsPerReplicationGroupQuotaExceededFault"},
612
- {"shape":"NodeQuotaForCustomerExceededFault"},
613
- {"shape":"NoOperationFault"},
614
- {"shape":"InvalidParameterValueException"},
615
- {"shape":"InvalidParameterCombinationException"}
616
- ]
617
- },
618
- "ListAllowedNodeTypeModifications":{
619
- "name":"ListAllowedNodeTypeModifications",
620
- "http":{
621
- "method":"POST",
622
- "requestUri":"/"
623
- },
624
- "input":{"shape":"ListAllowedNodeTypeModificationsMessage"},
625
- "output":{
626
- "shape":"AllowedNodeTypeModificationsMessage",
627
- "resultWrapper":"ListAllowedNodeTypeModificationsResult"
628
- },
629
- "errors":[
630
- {"shape":"CacheClusterNotFoundFault"},
631
- {"shape":"ReplicationGroupNotFoundFault"},
632
- {"shape":"InvalidParameterCombinationException"},
633
- {"shape":"InvalidParameterValueException"}
634
- ]
635
- },
636
- "ListTagsForResource":{
637
- "name":"ListTagsForResource",
638
- "http":{
639
- "method":"POST",
640
- "requestUri":"/"
641
- },
642
- "input":{"shape":"ListTagsForResourceMessage"},
643
- "output":{
644
- "shape":"TagListMessage",
645
- "resultWrapper":"ListTagsForResourceResult"
646
- },
647
- "errors":[
648
- {"shape":"CacheClusterNotFoundFault"},
649
- {"shape":"SnapshotNotFoundFault"},
650
- {"shape":"InvalidARNFault"}
651
- ]
652
- },
653
- "ModifyCacheCluster":{
654
- "name":"ModifyCacheCluster",
655
- "http":{
656
- "method":"POST",
657
- "requestUri":"/"
658
- },
659
- "input":{"shape":"ModifyCacheClusterMessage"},
660
- "output":{
661
- "shape":"ModifyCacheClusterResult",
662
- "resultWrapper":"ModifyCacheClusterResult"
663
- },
664
- "errors":[
665
- {"shape":"InvalidCacheClusterStateFault"},
666
- {"shape":"InvalidCacheSecurityGroupStateFault"},
667
- {"shape":"InsufficientCacheClusterCapacityFault"},
668
- {"shape":"CacheClusterNotFoundFault"},
669
- {"shape":"NodeQuotaForClusterExceededFault"},
670
- {"shape":"NodeQuotaForCustomerExceededFault"},
671
- {"shape":"CacheSecurityGroupNotFoundFault"},
672
- {"shape":"CacheParameterGroupNotFoundFault"},
673
- {"shape":"InvalidVPCNetworkStateFault"},
674
- {"shape":"InvalidParameterValueException"},
675
- {"shape":"InvalidParameterCombinationException"}
676
- ]
677
- },
678
- "ModifyCacheParameterGroup":{
679
- "name":"ModifyCacheParameterGroup",
680
- "http":{
681
- "method":"POST",
682
- "requestUri":"/"
683
- },
684
- "input":{"shape":"ModifyCacheParameterGroupMessage"},
685
- "output":{
686
- "shape":"CacheParameterGroupNameMessage",
687
- "resultWrapper":"ModifyCacheParameterGroupResult"
688
- },
689
- "errors":[
690
- {"shape":"CacheParameterGroupNotFoundFault"},
691
- {"shape":"InvalidCacheParameterGroupStateFault"},
692
- {"shape":"InvalidParameterValueException"},
693
- {"shape":"InvalidParameterCombinationException"}
694
- ]
695
- },
696
- "ModifyCacheSubnetGroup":{
697
- "name":"ModifyCacheSubnetGroup",
698
- "http":{
699
- "method":"POST",
700
- "requestUri":"/"
701
- },
702
- "input":{"shape":"ModifyCacheSubnetGroupMessage"},
703
- "output":{
704
- "shape":"ModifyCacheSubnetGroupResult",
705
- "resultWrapper":"ModifyCacheSubnetGroupResult"
706
- },
707
- "errors":[
708
- {"shape":"CacheSubnetGroupNotFoundFault"},
709
- {"shape":"CacheSubnetQuotaExceededFault"},
710
- {"shape":"SubnetInUse"},
711
- {"shape":"InvalidSubnet"}
712
- ]
713
- },
714
- "ModifyReplicationGroup":{
715
- "name":"ModifyReplicationGroup",
716
- "http":{
717
- "method":"POST",
718
- "requestUri":"/"
719
- },
720
- "input":{"shape":"ModifyReplicationGroupMessage"},
721
- "output":{
722
- "shape":"ModifyReplicationGroupResult",
723
- "resultWrapper":"ModifyReplicationGroupResult"
724
- },
725
- "errors":[
726
- {"shape":"ReplicationGroupNotFoundFault"},
727
- {"shape":"InvalidReplicationGroupStateFault"},
728
- {"shape":"InvalidCacheClusterStateFault"},
729
- {"shape":"InvalidCacheSecurityGroupStateFault"},
730
- {"shape":"InsufficientCacheClusterCapacityFault"},
731
- {"shape":"CacheClusterNotFoundFault"},
732
- {"shape":"NodeQuotaForClusterExceededFault"},
733
- {"shape":"NodeQuotaForCustomerExceededFault"},
734
- {"shape":"CacheSecurityGroupNotFoundFault"},
735
- {"shape":"CacheParameterGroupNotFoundFault"},
736
- {"shape":"InvalidVPCNetworkStateFault"},
737
- {"shape":"InvalidParameterValueException"},
738
- {"shape":"InvalidParameterCombinationException"}
739
- ]
740
- },
741
- "ModifyReplicationGroupShardConfiguration":{
742
- "name":"ModifyReplicationGroupShardConfiguration",
743
- "http":{
744
- "method":"POST",
745
- "requestUri":"/"
746
- },
747
- "input":{"shape":"ModifyReplicationGroupShardConfigurationMessage"},
748
- "output":{
749
- "shape":"ModifyReplicationGroupShardConfigurationResult",
750
- "resultWrapper":"ModifyReplicationGroupShardConfigurationResult"
751
- },
752
- "errors":[
753
- {"shape":"ReplicationGroupNotFoundFault"},
754
- {"shape":"InvalidReplicationGroupStateFault"},
755
- {"shape":"InvalidCacheClusterStateFault"},
756
- {"shape":"InvalidVPCNetworkStateFault"},
757
- {"shape":"InsufficientCacheClusterCapacityFault"},
758
- {"shape":"NodeGroupsPerReplicationGroupQuotaExceededFault"},
759
- {"shape":"NodeQuotaForCustomerExceededFault"},
760
- {"shape":"InvalidParameterValueException"},
761
- {"shape":"InvalidParameterCombinationException"}
762
- ]
763
- },
764
- "PurchaseReservedCacheNodesOffering":{
765
- "name":"PurchaseReservedCacheNodesOffering",
766
- "http":{
767
- "method":"POST",
768
- "requestUri":"/"
769
- },
770
- "input":{"shape":"PurchaseReservedCacheNodesOfferingMessage"},
771
- "output":{
772
- "shape":"PurchaseReservedCacheNodesOfferingResult",
773
- "resultWrapper":"PurchaseReservedCacheNodesOfferingResult"
774
- },
775
- "errors":[
776
- {"shape":"ReservedCacheNodesOfferingNotFoundFault"},
777
- {"shape":"ReservedCacheNodeAlreadyExistsFault"},
778
- {"shape":"ReservedCacheNodeQuotaExceededFault"},
779
- {"shape":"InvalidParameterValueException"},
780
- {"shape":"InvalidParameterCombinationException"}
781
- ]
782
- },
783
- "RebootCacheCluster":{
784
- "name":"RebootCacheCluster",
785
- "http":{
786
- "method":"POST",
787
- "requestUri":"/"
788
- },
789
- "input":{"shape":"RebootCacheClusterMessage"},
790
- "output":{
791
- "shape":"RebootCacheClusterResult",
792
- "resultWrapper":"RebootCacheClusterResult"
793
- },
794
- "errors":[
795
- {"shape":"InvalidCacheClusterStateFault"},
796
- {"shape":"CacheClusterNotFoundFault"}
797
- ]
798
- },
799
- "RemoveTagsFromResource":{
800
- "name":"RemoveTagsFromResource",
801
- "http":{
802
- "method":"POST",
803
- "requestUri":"/"
804
- },
805
- "input":{"shape":"RemoveTagsFromResourceMessage"},
806
- "output":{
807
- "shape":"TagListMessage",
808
- "resultWrapper":"RemoveTagsFromResourceResult"
809
- },
810
- "errors":[
811
- {"shape":"CacheClusterNotFoundFault"},
812
- {"shape":"SnapshotNotFoundFault"},
813
- {"shape":"InvalidARNFault"},
814
- {"shape":"TagNotFoundFault"}
815
- ]
816
- },
817
- "ResetCacheParameterGroup":{
818
- "name":"ResetCacheParameterGroup",
819
- "http":{
820
- "method":"POST",
821
- "requestUri":"/"
822
- },
823
- "input":{"shape":"ResetCacheParameterGroupMessage"},
824
- "output":{
825
- "shape":"CacheParameterGroupNameMessage",
826
- "resultWrapper":"ResetCacheParameterGroupResult"
827
- },
828
- "errors":[
829
- {"shape":"InvalidCacheParameterGroupStateFault"},
830
- {"shape":"CacheParameterGroupNotFoundFault"},
831
- {"shape":"InvalidParameterValueException"},
832
- {"shape":"InvalidParameterCombinationException"}
833
- ]
834
- },
835
- "RevokeCacheSecurityGroupIngress":{
836
- "name":"RevokeCacheSecurityGroupIngress",
837
- "http":{
838
- "method":"POST",
839
- "requestUri":"/"
840
- },
841
- "input":{"shape":"RevokeCacheSecurityGroupIngressMessage"},
842
- "output":{
843
- "shape":"RevokeCacheSecurityGroupIngressResult",
844
- "resultWrapper":"RevokeCacheSecurityGroupIngressResult"
845
- },
846
- "errors":[
847
- {"shape":"CacheSecurityGroupNotFoundFault"},
848
- {"shape":"AuthorizationNotFoundFault"},
849
- {"shape":"InvalidCacheSecurityGroupStateFault"},
850
- {"shape":"InvalidParameterValueException"},
851
- {"shape":"InvalidParameterCombinationException"}
852
- ]
853
- },
854
- "TestFailover":{
855
- "name":"TestFailover",
856
- "http":{
857
- "method":"POST",
858
- "requestUri":"/"
859
- },
860
- "input":{"shape":"TestFailoverMessage"},
861
- "output":{
862
- "shape":"TestFailoverResult",
863
- "resultWrapper":"TestFailoverResult"
864
- },
865
- "errors":[
866
- {"shape":"APICallRateForCustomerExceededFault"},
867
- {"shape":"InvalidCacheClusterStateFault"},
868
- {"shape":"InvalidReplicationGroupStateFault"},
869
- {"shape":"NodeGroupNotFoundFault"},
870
- {"shape":"ReplicationGroupNotFoundFault"},
871
- {"shape":"TestFailoverNotAvailableFault"},
872
- {"shape":"InvalidParameterValueException"},
873
- {"shape":"InvalidParameterCombinationException"}
874
- ]
875
- }
876
- },
877
- "shapes":{
878
- "APICallRateForCustomerExceededFault":{
879
- "type":"structure",
880
- "members":{
881
- },
882
- "error":{
883
- "code":"APICallRateForCustomerExceeded",
884
- "httpStatusCode":400,
885
- "senderFault":true
886
- },
887
- "exception":true
888
- },
889
- "AZMode":{
890
- "type":"string",
891
- "enum":[
892
- "single-az",
893
- "cross-az"
894
- ]
895
- },
896
- "AddTagsToResourceMessage":{
897
- "type":"structure",
898
- "required":[
899
- "ResourceName",
900
- "Tags"
901
- ],
902
- "members":{
903
- "ResourceName":{"shape":"String"},
904
- "Tags":{"shape":"TagList"}
905
- }
906
- },
907
- "AllowedNodeGroupId":{
908
- "type":"string",
909
- "max":4,
910
- "min":1,
911
- "pattern":"\\d+"
912
- },
913
- "AllowedNodeTypeModificationsMessage":{
914
- "type":"structure",
915
- "members":{
916
- "ScaleUpModifications":{"shape":"NodeTypeList"},
917
- "ScaleDownModifications":{"shape":"NodeTypeList"}
918
- }
919
- },
920
- "AuthorizationAlreadyExistsFault":{
921
- "type":"structure",
922
- "members":{
923
- },
924
- "error":{
925
- "code":"AuthorizationAlreadyExists",
926
- "httpStatusCode":400,
927
- "senderFault":true
928
- },
929
- "exception":true
930
- },
931
- "AuthorizationNotFoundFault":{
932
- "type":"structure",
933
- "members":{
934
- },
935
- "error":{
936
- "code":"AuthorizationNotFound",
937
- "httpStatusCode":404,
938
- "senderFault":true
939
- },
940
- "exception":true
941
- },
942
- "AuthorizeCacheSecurityGroupIngressMessage":{
943
- "type":"structure",
944
- "required":[
945
- "CacheSecurityGroupName",
946
- "EC2SecurityGroupName",
947
- "EC2SecurityGroupOwnerId"
948
- ],
949
- "members":{
950
- "CacheSecurityGroupName":{"shape":"String"},
951
- "EC2SecurityGroupName":{"shape":"String"},
952
- "EC2SecurityGroupOwnerId":{"shape":"String"}
953
- }
954
- },
955
- "AuthorizeCacheSecurityGroupIngressResult":{
956
- "type":"structure",
957
- "members":{
958
- "CacheSecurityGroup":{"shape":"CacheSecurityGroup"}
959
- }
960
- },
961
- "AutomaticFailoverStatus":{
962
- "type":"string",
963
- "enum":[
964
- "enabled",
965
- "disabled",
966
- "enabling",
967
- "disabling"
968
- ]
969
- },
970
- "AvailabilityZone":{
971
- "type":"structure",
972
- "members":{
973
- "Name":{"shape":"String"}
974
- },
975
- "wrapper":true
976
- },
977
- "AvailabilityZonesList":{
978
- "type":"list",
979
- "member":{
980
- "shape":"String",
981
- "locationName":"AvailabilityZone"
982
- }
983
- },
984
- "AwsQueryErrorMessage":{"type":"string"},
985
- "BatchApplyUpdateActionMessage":{
986
- "type":"structure",
987
- "required":[
988
- "ReplicationGroupIds",
989
- "ServiceUpdateName"
990
- ],
991
- "members":{
992
- "ReplicationGroupIds":{"shape":"ReplicationGroupIdList"},
993
- "ServiceUpdateName":{"shape":"String"}
994
- }
995
- },
996
- "BatchStopUpdateActionMessage":{
997
- "type":"structure",
998
- "required":[
999
- "ReplicationGroupIds",
1000
- "ServiceUpdateName"
1001
- ],
1002
- "members":{
1003
- "ReplicationGroupIds":{"shape":"ReplicationGroupIdList"},
1004
- "ServiceUpdateName":{"shape":"String"}
1005
- }
1006
- },
1007
- "Boolean":{"type":"boolean"},
1008
- "BooleanOptional":{"type":"boolean"},
1009
- "CacheCluster":{
1010
- "type":"structure",
1011
- "members":{
1012
- "CacheClusterId":{"shape":"String"},
1013
- "ConfigurationEndpoint":{"shape":"Endpoint"},
1014
- "ClientDownloadLandingPage":{"shape":"String"},
1015
- "CacheNodeType":{"shape":"String"},
1016
- "Engine":{"shape":"String"},
1017
- "EngineVersion":{"shape":"String"},
1018
- "CacheClusterStatus":{"shape":"String"},
1019
- "NumCacheNodes":{"shape":"IntegerOptional"},
1020
- "PreferredAvailabilityZone":{"shape":"String"},
1021
- "CacheClusterCreateTime":{"shape":"TStamp"},
1022
- "PreferredMaintenanceWindow":{"shape":"String"},
1023
- "PendingModifiedValues":{"shape":"PendingModifiedValues"},
1024
- "NotificationConfiguration":{"shape":"NotificationConfiguration"},
1025
- "CacheSecurityGroups":{"shape":"CacheSecurityGroupMembershipList"},
1026
- "CacheParameterGroup":{"shape":"CacheParameterGroupStatus"},
1027
- "CacheSubnetGroupName":{"shape":"String"},
1028
- "CacheNodes":{"shape":"CacheNodeList"},
1029
- "AutoMinorVersionUpgrade":{"shape":"Boolean"},
1030
- "SecurityGroups":{"shape":"SecurityGroupMembershipList"},
1031
- "ReplicationGroupId":{"shape":"String"},
1032
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
1033
- "SnapshotWindow":{"shape":"String"},
1034
- "AuthTokenEnabled":{"shape":"BooleanOptional"},
1035
- "TransitEncryptionEnabled":{"shape":"BooleanOptional"},
1036
- "AtRestEncryptionEnabled":{"shape":"BooleanOptional"}
1037
- },
1038
- "wrapper":true
1039
- },
1040
- "CacheClusterAlreadyExistsFault":{
1041
- "type":"structure",
1042
- "members":{
1043
- },
1044
- "error":{
1045
- "code":"CacheClusterAlreadyExists",
1046
- "httpStatusCode":400,
1047
- "senderFault":true
1048
- },
1049
- "exception":true
1050
- },
1051
- "CacheClusterList":{
1052
- "type":"list",
1053
- "member":{
1054
- "shape":"CacheCluster",
1055
- "locationName":"CacheCluster"
1056
- }
1057
- },
1058
- "CacheClusterMessage":{
1059
- "type":"structure",
1060
- "members":{
1061
- "Marker":{"shape":"String"},
1062
- "CacheClusters":{"shape":"CacheClusterList"}
1063
- }
1064
- },
1065
- "CacheClusterNotFoundFault":{
1066
- "type":"structure",
1067
- "members":{
1068
- },
1069
- "error":{
1070
- "code":"CacheClusterNotFound",
1071
- "httpStatusCode":404,
1072
- "senderFault":true
1073
- },
1074
- "exception":true
1075
- },
1076
- "CacheEngineVersion":{
1077
- "type":"structure",
1078
- "members":{
1079
- "Engine":{"shape":"String"},
1080
- "EngineVersion":{"shape":"String"},
1081
- "CacheParameterGroupFamily":{"shape":"String"},
1082
- "CacheEngineDescription":{"shape":"String"},
1083
- "CacheEngineVersionDescription":{"shape":"String"}
1084
- }
1085
- },
1086
- "CacheEngineVersionList":{
1087
- "type":"list",
1088
- "member":{
1089
- "shape":"CacheEngineVersion",
1090
- "locationName":"CacheEngineVersion"
1091
- }
1092
- },
1093
- "CacheEngineVersionMessage":{
1094
- "type":"structure",
1095
- "members":{
1096
- "Marker":{"shape":"String"},
1097
- "CacheEngineVersions":{"shape":"CacheEngineVersionList"}
1098
- }
1099
- },
1100
- "CacheNode":{
1101
- "type":"structure",
1102
- "members":{
1103
- "CacheNodeId":{"shape":"String"},
1104
- "CacheNodeStatus":{"shape":"String"},
1105
- "CacheNodeCreateTime":{"shape":"TStamp"},
1106
- "Endpoint":{"shape":"Endpoint"},
1107
- "ParameterGroupStatus":{"shape":"String"},
1108
- "SourceCacheNodeId":{"shape":"String"},
1109
- "CustomerAvailabilityZone":{"shape":"String"}
1110
- }
1111
- },
1112
- "CacheNodeIdsList":{
1113
- "type":"list",
1114
- "member":{
1115
- "shape":"String",
1116
- "locationName":"CacheNodeId"
1117
- }
1118
- },
1119
- "CacheNodeList":{
1120
- "type":"list",
1121
- "member":{
1122
- "shape":"CacheNode",
1123
- "locationName":"CacheNode"
1124
- }
1125
- },
1126
- "CacheNodeTypeSpecificParameter":{
1127
- "type":"structure",
1128
- "members":{
1129
- "ParameterName":{"shape":"String"},
1130
- "Description":{"shape":"String"},
1131
- "Source":{"shape":"String"},
1132
- "DataType":{"shape":"String"},
1133
- "AllowedValues":{"shape":"String"},
1134
- "IsModifiable":{"shape":"Boolean"},
1135
- "MinimumEngineVersion":{"shape":"String"},
1136
- "CacheNodeTypeSpecificValues":{"shape":"CacheNodeTypeSpecificValueList"},
1137
- "ChangeType":{"shape":"ChangeType"}
1138
- }
1139
- },
1140
- "CacheNodeTypeSpecificParametersList":{
1141
- "type":"list",
1142
- "member":{
1143
- "shape":"CacheNodeTypeSpecificParameter",
1144
- "locationName":"CacheNodeTypeSpecificParameter"
1145
- }
1146
- },
1147
- "CacheNodeTypeSpecificValue":{
1148
- "type":"structure",
1149
- "members":{
1150
- "CacheNodeType":{"shape":"String"},
1151
- "Value":{"shape":"String"}
1152
- }
1153
- },
1154
- "CacheNodeTypeSpecificValueList":{
1155
- "type":"list",
1156
- "member":{
1157
- "shape":"CacheNodeTypeSpecificValue",
1158
- "locationName":"CacheNodeTypeSpecificValue"
1159
- }
1160
- },
1161
- "CacheParameterGroup":{
1162
- "type":"structure",
1163
- "members":{
1164
- "CacheParameterGroupName":{"shape":"String"},
1165
- "CacheParameterGroupFamily":{"shape":"String"},
1166
- "Description":{"shape":"String"}
1167
- },
1168
- "wrapper":true
1169
- },
1170
- "CacheParameterGroupAlreadyExistsFault":{
1171
- "type":"structure",
1172
- "members":{
1173
- },
1174
- "error":{
1175
- "code":"CacheParameterGroupAlreadyExists",
1176
- "httpStatusCode":400,
1177
- "senderFault":true
1178
- },
1179
- "exception":true
1180
- },
1181
- "CacheParameterGroupDetails":{
1182
- "type":"structure",
1183
- "members":{
1184
- "Marker":{"shape":"String"},
1185
- "Parameters":{"shape":"ParametersList"},
1186
- "CacheNodeTypeSpecificParameters":{"shape":"CacheNodeTypeSpecificParametersList"}
1187
- }
1188
- },
1189
- "CacheParameterGroupList":{
1190
- "type":"list",
1191
- "member":{
1192
- "shape":"CacheParameterGroup",
1193
- "locationName":"CacheParameterGroup"
1194
- }
1195
- },
1196
- "CacheParameterGroupNameMessage":{
1197
- "type":"structure",
1198
- "members":{
1199
- "CacheParameterGroupName":{"shape":"String"}
1200
- }
1201
- },
1202
- "CacheParameterGroupNotFoundFault":{
1203
- "type":"structure",
1204
- "members":{
1205
- },
1206
- "error":{
1207
- "code":"CacheParameterGroupNotFound",
1208
- "httpStatusCode":404,
1209
- "senderFault":true
1210
- },
1211
- "exception":true
1212
- },
1213
- "CacheParameterGroupQuotaExceededFault":{
1214
- "type":"structure",
1215
- "members":{
1216
- },
1217
- "error":{
1218
- "code":"CacheParameterGroupQuotaExceeded",
1219
- "httpStatusCode":400,
1220
- "senderFault":true
1221
- },
1222
- "exception":true
1223
- },
1224
- "CacheParameterGroupStatus":{
1225
- "type":"structure",
1226
- "members":{
1227
- "CacheParameterGroupName":{"shape":"String"},
1228
- "ParameterApplyStatus":{"shape":"String"},
1229
- "CacheNodeIdsToReboot":{"shape":"CacheNodeIdsList"}
1230
- }
1231
- },
1232
- "CacheParameterGroupsMessage":{
1233
- "type":"structure",
1234
- "members":{
1235
- "Marker":{"shape":"String"},
1236
- "CacheParameterGroups":{"shape":"CacheParameterGroupList"}
1237
- }
1238
- },
1239
- "CacheSecurityGroup":{
1240
- "type":"structure",
1241
- "members":{
1242
- "OwnerId":{"shape":"String"},
1243
- "CacheSecurityGroupName":{"shape":"String"},
1244
- "Description":{"shape":"String"},
1245
- "EC2SecurityGroups":{"shape":"EC2SecurityGroupList"}
1246
- },
1247
- "wrapper":true
1248
- },
1249
- "CacheSecurityGroupAlreadyExistsFault":{
1250
- "type":"structure",
1251
- "members":{
1252
- },
1253
- "error":{
1254
- "code":"CacheSecurityGroupAlreadyExists",
1255
- "httpStatusCode":400,
1256
- "senderFault":true
1257
- },
1258
- "exception":true
1259
- },
1260
- "CacheSecurityGroupMembership":{
1261
- "type":"structure",
1262
- "members":{
1263
- "CacheSecurityGroupName":{"shape":"String"},
1264
- "Status":{"shape":"String"}
1265
- }
1266
- },
1267
- "CacheSecurityGroupMembershipList":{
1268
- "type":"list",
1269
- "member":{
1270
- "shape":"CacheSecurityGroupMembership",
1271
- "locationName":"CacheSecurityGroup"
1272
- }
1273
- },
1274
- "CacheSecurityGroupMessage":{
1275
- "type":"structure",
1276
- "members":{
1277
- "Marker":{"shape":"String"},
1278
- "CacheSecurityGroups":{"shape":"CacheSecurityGroups"}
1279
- }
1280
- },
1281
- "CacheSecurityGroupNameList":{
1282
- "type":"list",
1283
- "member":{
1284
- "shape":"String",
1285
- "locationName":"CacheSecurityGroupName"
1286
- }
1287
- },
1288
- "CacheSecurityGroupNotFoundFault":{
1289
- "type":"structure",
1290
- "members":{
1291
- },
1292
- "error":{
1293
- "code":"CacheSecurityGroupNotFound",
1294
- "httpStatusCode":404,
1295
- "senderFault":true
1296
- },
1297
- "exception":true
1298
- },
1299
- "CacheSecurityGroupQuotaExceededFault":{
1300
- "type":"structure",
1301
- "members":{
1302
- },
1303
- "error":{
1304
- "code":"QuotaExceeded.CacheSecurityGroup",
1305
- "httpStatusCode":400,
1306
- "senderFault":true
1307
- },
1308
- "exception":true
1309
- },
1310
- "CacheSecurityGroups":{
1311
- "type":"list",
1312
- "member":{
1313
- "shape":"CacheSecurityGroup",
1314
- "locationName":"CacheSecurityGroup"
1315
- }
1316
- },
1317
- "CacheSubnetGroup":{
1318
- "type":"structure",
1319
- "members":{
1320
- "CacheSubnetGroupName":{"shape":"String"},
1321
- "CacheSubnetGroupDescription":{"shape":"String"},
1322
- "VpcId":{"shape":"String"},
1323
- "Subnets":{"shape":"SubnetList"}
1324
- },
1325
- "wrapper":true
1326
- },
1327
- "CacheSubnetGroupAlreadyExistsFault":{
1328
- "type":"structure",
1329
- "members":{
1330
- },
1331
- "error":{
1332
- "code":"CacheSubnetGroupAlreadyExists",
1333
- "httpStatusCode":400,
1334
- "senderFault":true
1335
- },
1336
- "exception":true
1337
- },
1338
- "CacheSubnetGroupInUse":{
1339
- "type":"structure",
1340
- "members":{
1341
- },
1342
- "error":{
1343
- "code":"CacheSubnetGroupInUse",
1344
- "httpStatusCode":400,
1345
- "senderFault":true
1346
- },
1347
- "exception":true
1348
- },
1349
- "CacheSubnetGroupMessage":{
1350
- "type":"structure",
1351
- "members":{
1352
- "Marker":{"shape":"String"},
1353
- "CacheSubnetGroups":{"shape":"CacheSubnetGroups"}
1354
- }
1355
- },
1356
- "CacheSubnetGroupNotFoundFault":{
1357
- "type":"structure",
1358
- "members":{
1359
- },
1360
- "error":{
1361
- "code":"CacheSubnetGroupNotFoundFault",
1362
- "httpStatusCode":400,
1363
- "senderFault":true
1364
- },
1365
- "exception":true
1366
- },
1367
- "CacheSubnetGroupQuotaExceededFault":{
1368
- "type":"structure",
1369
- "members":{
1370
- },
1371
- "error":{
1372
- "code":"CacheSubnetGroupQuotaExceeded",
1373
- "httpStatusCode":400,
1374
- "senderFault":true
1375
- },
1376
- "exception":true
1377
- },
1378
- "CacheSubnetGroups":{
1379
- "type":"list",
1380
- "member":{
1381
- "shape":"CacheSubnetGroup",
1382
- "locationName":"CacheSubnetGroup"
1383
- }
1384
- },
1385
- "CacheSubnetQuotaExceededFault":{
1386
- "type":"structure",
1387
- "members":{
1388
- },
1389
- "error":{
1390
- "code":"CacheSubnetQuotaExceededFault",
1391
- "httpStatusCode":400,
1392
- "senderFault":true
1393
- },
1394
- "exception":true
1395
- },
1396
- "ChangeType":{
1397
- "type":"string",
1398
- "enum":[
1399
- "immediate",
1400
- "requires-reboot"
1401
- ]
1402
- },
1403
- "ClusterIdList":{
1404
- "type":"list",
1405
- "member":{
1406
- "shape":"String",
1407
- "locationName":"ClusterId"
1408
- }
1409
- },
1410
- "ClusterQuotaForCustomerExceededFault":{
1411
- "type":"structure",
1412
- "members":{
1413
- },
1414
- "error":{
1415
- "code":"ClusterQuotaForCustomerExceeded",
1416
- "httpStatusCode":400,
1417
- "senderFault":true
1418
- },
1419
- "exception":true
1420
- },
1421
- "ConfigureShard":{
1422
- "type":"structure",
1423
- "required":[
1424
- "NodeGroupId",
1425
- "NewReplicaCount"
1426
- ],
1427
- "members":{
1428
- "NodeGroupId":{"shape":"AllowedNodeGroupId"},
1429
- "NewReplicaCount":{"shape":"Integer"},
1430
- "PreferredAvailabilityZones":{"shape":"PreferredAvailabilityZoneList"}
1431
- }
1432
- },
1433
- "CopySnapshotMessage":{
1434
- "type":"structure",
1435
- "required":[
1436
- "SourceSnapshotName",
1437
- "TargetSnapshotName"
1438
- ],
1439
- "members":{
1440
- "SourceSnapshotName":{"shape":"String"},
1441
- "TargetSnapshotName":{"shape":"String"},
1442
- "TargetBucket":{"shape":"String"}
1443
- }
1444
- },
1445
- "CopySnapshotResult":{
1446
- "type":"structure",
1447
- "members":{
1448
- "Snapshot":{"shape":"Snapshot"}
1449
- }
1450
- },
1451
- "CreateCacheClusterMessage":{
1452
- "type":"structure",
1453
- "required":["CacheClusterId"],
1454
- "members":{
1455
- "CacheClusterId":{"shape":"String"},
1456
- "ReplicationGroupId":{"shape":"String"},
1457
- "AZMode":{"shape":"AZMode"},
1458
- "PreferredAvailabilityZone":{"shape":"String"},
1459
- "PreferredAvailabilityZones":{"shape":"PreferredAvailabilityZoneList"},
1460
- "NumCacheNodes":{"shape":"IntegerOptional"},
1461
- "CacheNodeType":{"shape":"String"},
1462
- "Engine":{"shape":"String"},
1463
- "EngineVersion":{"shape":"String"},
1464
- "CacheParameterGroupName":{"shape":"String"},
1465
- "CacheSubnetGroupName":{"shape":"String"},
1466
- "CacheSecurityGroupNames":{"shape":"CacheSecurityGroupNameList"},
1467
- "SecurityGroupIds":{"shape":"SecurityGroupIdsList"},
1468
- "Tags":{"shape":"TagList"},
1469
- "SnapshotArns":{"shape":"SnapshotArnsList"},
1470
- "SnapshotName":{"shape":"String"},
1471
- "PreferredMaintenanceWindow":{"shape":"String"},
1472
- "Port":{"shape":"IntegerOptional"},
1473
- "NotificationTopicArn":{"shape":"String"},
1474
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
1475
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
1476
- "SnapshotWindow":{"shape":"String"},
1477
- "AuthToken":{"shape":"String"}
1478
- }
1479
- },
1480
- "CreateCacheClusterResult":{
1481
- "type":"structure",
1482
- "members":{
1483
- "CacheCluster":{"shape":"CacheCluster"}
1484
- }
1485
- },
1486
- "CreateCacheParameterGroupMessage":{
1487
- "type":"structure",
1488
- "required":[
1489
- "CacheParameterGroupName",
1490
- "CacheParameterGroupFamily",
1491
- "Description"
1492
- ],
1493
- "members":{
1494
- "CacheParameterGroupName":{"shape":"String"},
1495
- "CacheParameterGroupFamily":{"shape":"String"},
1496
- "Description":{"shape":"String"}
1497
- }
1498
- },
1499
- "CreateCacheParameterGroupResult":{
1500
- "type":"structure",
1501
- "members":{
1502
- "CacheParameterGroup":{"shape":"CacheParameterGroup"}
1503
- }
1504
- },
1505
- "CreateCacheSecurityGroupMessage":{
1506
- "type":"structure",
1507
- "required":[
1508
- "CacheSecurityGroupName",
1509
- "Description"
1510
- ],
1511
- "members":{
1512
- "CacheSecurityGroupName":{"shape":"String"},
1513
- "Description":{"shape":"String"}
1514
- }
1515
- },
1516
- "CreateCacheSecurityGroupResult":{
1517
- "type":"structure",
1518
- "members":{
1519
- "CacheSecurityGroup":{"shape":"CacheSecurityGroup"}
1520
- }
1521
- },
1522
- "CreateCacheSubnetGroupMessage":{
1523
- "type":"structure",
1524
- "required":[
1525
- "CacheSubnetGroupName",
1526
- "CacheSubnetGroupDescription",
1527
- "SubnetIds"
1528
- ],
1529
- "members":{
1530
- "CacheSubnetGroupName":{"shape":"String"},
1531
- "CacheSubnetGroupDescription":{"shape":"String"},
1532
- "SubnetIds":{"shape":"SubnetIdentifierList"}
1533
- }
1534
- },
1535
- "CreateCacheSubnetGroupResult":{
1536
- "type":"structure",
1537
- "members":{
1538
- "CacheSubnetGroup":{"shape":"CacheSubnetGroup"}
1539
- }
1540
- },
1541
- "CreateReplicationGroupMessage":{
1542
- "type":"structure",
1543
- "required":[
1544
- "ReplicationGroupId",
1545
- "ReplicationGroupDescription"
1546
- ],
1547
- "members":{
1548
- "ReplicationGroupId":{"shape":"String"},
1549
- "ReplicationGroupDescription":{"shape":"String"},
1550
- "PrimaryClusterId":{"shape":"String"},
1551
- "AutomaticFailoverEnabled":{"shape":"BooleanOptional"},
1552
- "NumCacheClusters":{"shape":"IntegerOptional"},
1553
- "PreferredCacheClusterAZs":{"shape":"AvailabilityZonesList"},
1554
- "NumNodeGroups":{"shape":"IntegerOptional"},
1555
- "ReplicasPerNodeGroup":{"shape":"IntegerOptional"},
1556
- "NodeGroupConfiguration":{"shape":"NodeGroupConfigurationList"},
1557
- "CacheNodeType":{"shape":"String"},
1558
- "Engine":{"shape":"String"},
1559
- "EngineVersion":{"shape":"String"},
1560
- "CacheParameterGroupName":{"shape":"String"},
1561
- "CacheSubnetGroupName":{"shape":"String"},
1562
- "CacheSecurityGroupNames":{"shape":"CacheSecurityGroupNameList"},
1563
- "SecurityGroupIds":{"shape":"SecurityGroupIdsList"},
1564
- "Tags":{"shape":"TagList"},
1565
- "SnapshotArns":{"shape":"SnapshotArnsList"},
1566
- "SnapshotName":{"shape":"String"},
1567
- "PreferredMaintenanceWindow":{"shape":"String"},
1568
- "Port":{"shape":"IntegerOptional"},
1569
- "NotificationTopicArn":{"shape":"String"},
1570
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
1571
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
1572
- "SnapshotWindow":{"shape":"String"},
1573
- "AuthToken":{"shape":"String"},
1574
- "TransitEncryptionEnabled":{"shape":"BooleanOptional"},
1575
- "AtRestEncryptionEnabled":{"shape":"BooleanOptional"}
1576
- }
1577
- },
1578
- "CreateReplicationGroupResult":{
1579
- "type":"structure",
1580
- "members":{
1581
- "ReplicationGroup":{"shape":"ReplicationGroup"}
1582
- }
1583
- },
1584
- "CreateSnapshotMessage":{
1585
- "type":"structure",
1586
- "required":["SnapshotName"],
1587
- "members":{
1588
- "ReplicationGroupId":{"shape":"String"},
1589
- "CacheClusterId":{"shape":"String"},
1590
- "SnapshotName":{"shape":"String"}
1591
- }
1592
- },
1593
- "CreateSnapshotResult":{
1594
- "type":"structure",
1595
- "members":{
1596
- "Snapshot":{"shape":"Snapshot"}
1597
- }
1598
- },
1599
- "DecreaseReplicaCountMessage":{
1600
- "type":"structure",
1601
- "required":[
1602
- "ReplicationGroupId",
1603
- "ApplyImmediately"
1604
- ],
1605
- "members":{
1606
- "ReplicationGroupId":{"shape":"String"},
1607
- "NewReplicaCount":{"shape":"IntegerOptional"},
1608
- "ReplicaConfiguration":{"shape":"ReplicaConfigurationList"},
1609
- "ReplicasToRemove":{"shape":"RemoveReplicasList"},
1610
- "ApplyImmediately":{"shape":"Boolean"}
1611
- }
1612
- },
1613
- "DecreaseReplicaCountResult":{
1614
- "type":"structure",
1615
- "members":{
1616
- "ReplicationGroup":{"shape":"ReplicationGroup"}
1617
- }
1618
- },
1619
- "DeleteCacheClusterMessage":{
1620
- "type":"structure",
1621
- "required":["CacheClusterId"],
1622
- "members":{
1623
- "CacheClusterId":{"shape":"String"},
1624
- "FinalSnapshotIdentifier":{"shape":"String"}
1625
- }
1626
- },
1627
- "DeleteCacheClusterResult":{
1628
- "type":"structure",
1629
- "members":{
1630
- "CacheCluster":{"shape":"CacheCluster"}
1631
- }
1632
- },
1633
- "DeleteCacheParameterGroupMessage":{
1634
- "type":"structure",
1635
- "required":["CacheParameterGroupName"],
1636
- "members":{
1637
- "CacheParameterGroupName":{"shape":"String"}
1638
- }
1639
- },
1640
- "DeleteCacheSecurityGroupMessage":{
1641
- "type":"structure",
1642
- "required":["CacheSecurityGroupName"],
1643
- "members":{
1644
- "CacheSecurityGroupName":{"shape":"String"}
1645
- }
1646
- },
1647
- "DeleteCacheSubnetGroupMessage":{
1648
- "type":"structure",
1649
- "required":["CacheSubnetGroupName"],
1650
- "members":{
1651
- "CacheSubnetGroupName":{"shape":"String"}
1652
- }
1653
- },
1654
- "DeleteReplicationGroupMessage":{
1655
- "type":"structure",
1656
- "required":["ReplicationGroupId"],
1657
- "members":{
1658
- "ReplicationGroupId":{"shape":"String"},
1659
- "RetainPrimaryCluster":{"shape":"BooleanOptional"},
1660
- "FinalSnapshotIdentifier":{"shape":"String"}
1661
- }
1662
- },
1663
- "DeleteReplicationGroupResult":{
1664
- "type":"structure",
1665
- "members":{
1666
- "ReplicationGroup":{"shape":"ReplicationGroup"}
1667
- }
1668
- },
1669
- "DeleteSnapshotMessage":{
1670
- "type":"structure",
1671
- "required":["SnapshotName"],
1672
- "members":{
1673
- "SnapshotName":{"shape":"String"}
1674
- }
1675
- },
1676
- "DeleteSnapshotResult":{
1677
- "type":"structure",
1678
- "members":{
1679
- "Snapshot":{"shape":"Snapshot"}
1680
- }
1681
- },
1682
- "DescribeCacheClustersMessage":{
1683
- "type":"structure",
1684
- "members":{
1685
- "CacheClusterId":{"shape":"String"},
1686
- "MaxRecords":{"shape":"IntegerOptional"},
1687
- "Marker":{"shape":"String"},
1688
- "ShowCacheNodeInfo":{"shape":"BooleanOptional"},
1689
- "ShowCacheClustersNotInReplicationGroups":{"shape":"BooleanOptional"}
1690
- }
1691
- },
1692
- "DescribeCacheEngineVersionsMessage":{
1693
- "type":"structure",
1694
- "members":{
1695
- "Engine":{"shape":"String"},
1696
- "EngineVersion":{"shape":"String"},
1697
- "CacheParameterGroupFamily":{"shape":"String"},
1698
- "MaxRecords":{"shape":"IntegerOptional"},
1699
- "Marker":{"shape":"String"},
1700
- "DefaultOnly":{"shape":"Boolean"}
1701
- }
1702
- },
1703
- "DescribeCacheParameterGroupsMessage":{
1704
- "type":"structure",
1705
- "members":{
1706
- "CacheParameterGroupName":{"shape":"String"},
1707
- "MaxRecords":{"shape":"IntegerOptional"},
1708
- "Marker":{"shape":"String"}
1709
- }
1710
- },
1711
- "DescribeCacheParametersMessage":{
1712
- "type":"structure",
1713
- "required":["CacheParameterGroupName"],
1714
- "members":{
1715
- "CacheParameterGroupName":{"shape":"String"},
1716
- "Source":{"shape":"String"},
1717
- "MaxRecords":{"shape":"IntegerOptional"},
1718
- "Marker":{"shape":"String"}
1719
- }
1720
- },
1721
- "DescribeCacheSecurityGroupsMessage":{
1722
- "type":"structure",
1723
- "members":{
1724
- "CacheSecurityGroupName":{"shape":"String"},
1725
- "MaxRecords":{"shape":"IntegerOptional"},
1726
- "Marker":{"shape":"String"}
1727
- }
1728
- },
1729
- "DescribeCacheSubnetGroupsMessage":{
1730
- "type":"structure",
1731
- "members":{
1732
- "CacheSubnetGroupName":{"shape":"String"},
1733
- "MaxRecords":{"shape":"IntegerOptional"},
1734
- "Marker":{"shape":"String"}
1735
- }
1736
- },
1737
- "DescribeEngineDefaultParametersMessage":{
1738
- "type":"structure",
1739
- "required":["CacheParameterGroupFamily"],
1740
- "members":{
1741
- "CacheParameterGroupFamily":{"shape":"String"},
1742
- "MaxRecords":{"shape":"IntegerOptional"},
1743
- "Marker":{"shape":"String"}
1744
- }
1745
- },
1746
- "DescribeEngineDefaultParametersResult":{
1747
- "type":"structure",
1748
- "members":{
1749
- "EngineDefaults":{"shape":"EngineDefaults"}
1750
- }
1751
- },
1752
- "DescribeEventsMessage":{
1753
- "type":"structure",
1754
- "members":{
1755
- "SourceIdentifier":{"shape":"String"},
1756
- "SourceType":{"shape":"SourceType"},
1757
- "StartTime":{"shape":"TStamp"},
1758
- "EndTime":{"shape":"TStamp"},
1759
- "Duration":{"shape":"IntegerOptional"},
1760
- "MaxRecords":{"shape":"IntegerOptional"},
1761
- "Marker":{"shape":"String"}
1762
- }
1763
- },
1764
- "DescribeReplicationGroupsMessage":{
1765
- "type":"structure",
1766
- "members":{
1767
- "ReplicationGroupId":{"shape":"String"},
1768
- "MaxRecords":{"shape":"IntegerOptional"},
1769
- "Marker":{"shape":"String"}
1770
- }
1771
- },
1772
- "DescribeReservedCacheNodesMessage":{
1773
- "type":"structure",
1774
- "members":{
1775
- "ReservedCacheNodeId":{"shape":"String"},
1776
- "ReservedCacheNodesOfferingId":{"shape":"String"},
1777
- "CacheNodeType":{"shape":"String"},
1778
- "Duration":{"shape":"String"},
1779
- "ProductDescription":{"shape":"String"},
1780
- "OfferingType":{"shape":"String"},
1781
- "MaxRecords":{"shape":"IntegerOptional"},
1782
- "Marker":{"shape":"String"}
1783
- }
1784
- },
1785
- "DescribeReservedCacheNodesOfferingsMessage":{
1786
- "type":"structure",
1787
- "members":{
1788
- "ReservedCacheNodesOfferingId":{"shape":"String"},
1789
- "CacheNodeType":{"shape":"String"},
1790
- "Duration":{"shape":"String"},
1791
- "ProductDescription":{"shape":"String"},
1792
- "OfferingType":{"shape":"String"},
1793
- "MaxRecords":{"shape":"IntegerOptional"},
1794
- "Marker":{"shape":"String"}
1795
- }
1796
- },
1797
- "DescribeServiceUpdatesMessage":{
1798
- "type":"structure",
1799
- "members":{
1800
- "ServiceUpdateName":{"shape":"String"},
1801
- "ServiceUpdateStatus":{"shape":"ServiceUpdateStatusList"},
1802
- "MaxRecords":{"shape":"IntegerOptional"},
1803
- "Marker":{"shape":"String"}
1804
- }
1805
- },
1806
- "DescribeSnapshotsListMessage":{
1807
- "type":"structure",
1808
- "members":{
1809
- "Marker":{"shape":"String"},
1810
- "Snapshots":{"shape":"SnapshotList"}
1811
- }
1812
- },
1813
- "DescribeSnapshotsMessage":{
1814
- "type":"structure",
1815
- "members":{
1816
- "ReplicationGroupId":{"shape":"String"},
1817
- "CacheClusterId":{"shape":"String"},
1818
- "SnapshotName":{"shape":"String"},
1819
- "SnapshotSource":{"shape":"String"},
1820
- "Marker":{"shape":"String"},
1821
- "MaxRecords":{"shape":"IntegerOptional"},
1822
- "ShowNodeGroupConfig":{"shape":"BooleanOptional"}
1823
- }
1824
- },
1825
- "DescribeUpdateActionsMessage":{
1826
- "type":"structure",
1827
- "members":{
1828
- "ServiceUpdateName":{"shape":"String"},
1829
- "ReplicationGroupIds":{"shape":"ReplicationGroupIdList"},
1830
- "ServiceUpdateStatus":{"shape":"ServiceUpdateStatusList"},
1831
- "ServiceUpdateTimeRange":{"shape":"TimeRangeFilter"},
1832
- "UpdateActionStatus":{"shape":"UpdateActionStatusList"},
1833
- "ShowNodeLevelUpdateStatus":{"shape":"BooleanOptional"},
1834
- "MaxRecords":{"shape":"IntegerOptional"},
1835
- "Marker":{"shape":"String"}
1836
- }
1837
- },
1838
- "Double":{"type":"double"},
1839
- "EC2SecurityGroup":{
1840
- "type":"structure",
1841
- "members":{
1842
- "Status":{"shape":"String"},
1843
- "EC2SecurityGroupName":{"shape":"String"},
1844
- "EC2SecurityGroupOwnerId":{"shape":"String"}
1845
- }
1846
- },
1847
- "EC2SecurityGroupList":{
1848
- "type":"list",
1849
- "member":{
1850
- "shape":"EC2SecurityGroup",
1851
- "locationName":"EC2SecurityGroup"
1852
- }
1853
- },
1854
- "Endpoint":{
1855
- "type":"structure",
1856
- "members":{
1857
- "Address":{"shape":"String"},
1858
- "Port":{"shape":"Integer"}
1859
- }
1860
- },
1861
- "EngineDefaults":{
1862
- "type":"structure",
1863
- "members":{
1864
- "CacheParameterGroupFamily":{"shape":"String"},
1865
- "Marker":{"shape":"String"},
1866
- "Parameters":{"shape":"ParametersList"},
1867
- "CacheNodeTypeSpecificParameters":{"shape":"CacheNodeTypeSpecificParametersList"}
1868
- },
1869
- "wrapper":true
1870
- },
1871
- "Event":{
1872
- "type":"structure",
1873
- "members":{
1874
- "SourceIdentifier":{"shape":"String"},
1875
- "SourceType":{"shape":"SourceType"},
1876
- "Message":{"shape":"String"},
1877
- "Date":{"shape":"TStamp"}
1878
- }
1879
- },
1880
- "EventList":{
1881
- "type":"list",
1882
- "member":{
1883
- "shape":"Event",
1884
- "locationName":"Event"
1885
- }
1886
- },
1887
- "EventsMessage":{
1888
- "type":"structure",
1889
- "members":{
1890
- "Marker":{"shape":"String"},
1891
- "Events":{"shape":"EventList"}
1892
- }
1893
- },
1894
- "IncreaseReplicaCountMessage":{
1895
- "type":"structure",
1896
- "required":[
1897
- "ReplicationGroupId",
1898
- "ApplyImmediately"
1899
- ],
1900
- "members":{
1901
- "ReplicationGroupId":{"shape":"String"},
1902
- "NewReplicaCount":{"shape":"IntegerOptional"},
1903
- "ReplicaConfiguration":{"shape":"ReplicaConfigurationList"},
1904
- "ApplyImmediately":{"shape":"Boolean"}
1905
- }
1906
- },
1907
- "IncreaseReplicaCountResult":{
1908
- "type":"structure",
1909
- "members":{
1910
- "ReplicationGroup":{"shape":"ReplicationGroup"}
1911
- }
1912
- },
1913
- "InsufficientCacheClusterCapacityFault":{
1914
- "type":"structure",
1915
- "members":{
1916
- },
1917
- "error":{
1918
- "code":"InsufficientCacheClusterCapacity",
1919
- "httpStatusCode":400,
1920
- "senderFault":true
1921
- },
1922
- "exception":true
1923
- },
1924
- "Integer":{"type":"integer"},
1925
- "IntegerOptional":{"type":"integer"},
1926
- "InvalidARNFault":{
1927
- "type":"structure",
1928
- "members":{
1929
- },
1930
- "error":{
1931
- "code":"InvalidARN",
1932
- "httpStatusCode":400,
1933
- "senderFault":true
1934
- },
1935
- "exception":true
1936
- },
1937
- "InvalidCacheClusterStateFault":{
1938
- "type":"structure",
1939
- "members":{
1940
- },
1941
- "error":{
1942
- "code":"InvalidCacheClusterState",
1943
- "httpStatusCode":400,
1944
- "senderFault":true
1945
- },
1946
- "exception":true
1947
- },
1948
- "InvalidCacheParameterGroupStateFault":{
1949
- "type":"structure",
1950
- "members":{
1951
- },
1952
- "error":{
1953
- "code":"InvalidCacheParameterGroupState",
1954
- "httpStatusCode":400,
1955
- "senderFault":true
1956
- },
1957
- "exception":true
1958
- },
1959
- "InvalidCacheSecurityGroupStateFault":{
1960
- "type":"structure",
1961
- "members":{
1962
- },
1963
- "error":{
1964
- "code":"InvalidCacheSecurityGroupState",
1965
- "httpStatusCode":400,
1966
- "senderFault":true
1967
- },
1968
- "exception":true
1969
- },
1970
- "InvalidParameterCombinationException":{
1971
- "type":"structure",
1972
- "members":{
1973
- "message":{"shape":"AwsQueryErrorMessage"}
1974
- },
1975
- "error":{
1976
- "code":"InvalidParameterCombination",
1977
- "httpStatusCode":400,
1978
- "senderFault":true
1979
- },
1980
- "exception":true,
1981
- "synthetic":true
1982
- },
1983
- "InvalidParameterValueException":{
1984
- "type":"structure",
1985
- "members":{
1986
- "message":{"shape":"AwsQueryErrorMessage"}
1987
- },
1988
- "error":{
1989
- "code":"InvalidParameterValue",
1990
- "httpStatusCode":400,
1991
- "senderFault":true
1992
- },
1993
- "exception":true,
1994
- "synthetic":true
1995
- },
1996
- "InvalidReplicationGroupStateFault":{
1997
- "type":"structure",
1998
- "members":{
1999
- },
2000
- "error":{
2001
- "code":"InvalidReplicationGroupState",
2002
- "httpStatusCode":400,
2003
- "senderFault":true
2004
- },
2005
- "exception":true
2006
- },
2007
- "InvalidSnapshotStateFault":{
2008
- "type":"structure",
2009
- "members":{
2010
- },
2011
- "error":{
2012
- "code":"InvalidSnapshotState",
2013
- "httpStatusCode":400,
2014
- "senderFault":true
2015
- },
2016
- "exception":true
2017
- },
2018
- "InvalidSubnet":{
2019
- "type":"structure",
2020
- "members":{
2021
- },
2022
- "error":{
2023
- "code":"InvalidSubnet",
2024
- "httpStatusCode":400,
2025
- "senderFault":true
2026
- },
2027
- "exception":true
2028
- },
2029
- "InvalidVPCNetworkStateFault":{
2030
- "type":"structure",
2031
- "members":{
2032
- },
2033
- "error":{
2034
- "code":"InvalidVPCNetworkStateFault",
2035
- "httpStatusCode":400,
2036
- "senderFault":true
2037
- },
2038
- "exception":true
2039
- },
2040
- "KeyList":{
2041
- "type":"list",
2042
- "member":{"shape":"String"}
2043
- },
2044
- "ListAllowedNodeTypeModificationsMessage":{
2045
- "type":"structure",
2046
- "members":{
2047
- "CacheClusterId":{"shape":"String"},
2048
- "ReplicationGroupId":{"shape":"String"}
2049
- }
2050
- },
2051
- "ListTagsForResourceMessage":{
2052
- "type":"structure",
2053
- "required":["ResourceName"],
2054
- "members":{
2055
- "ResourceName":{"shape":"String"}
2056
- }
2057
- },
2058
- "ModifyCacheClusterMessage":{
2059
- "type":"structure",
2060
- "required":["CacheClusterId"],
2061
- "members":{
2062
- "CacheClusterId":{"shape":"String"},
2063
- "NumCacheNodes":{"shape":"IntegerOptional"},
2064
- "CacheNodeIdsToRemove":{"shape":"CacheNodeIdsList"},
2065
- "AZMode":{"shape":"AZMode"},
2066
- "NewAvailabilityZones":{"shape":"PreferredAvailabilityZoneList"},
2067
- "CacheSecurityGroupNames":{"shape":"CacheSecurityGroupNameList"},
2068
- "SecurityGroupIds":{"shape":"SecurityGroupIdsList"},
2069
- "PreferredMaintenanceWindow":{"shape":"String"},
2070
- "NotificationTopicArn":{"shape":"String"},
2071
- "CacheParameterGroupName":{"shape":"String"},
2072
- "NotificationTopicStatus":{"shape":"String"},
2073
- "ApplyImmediately":{"shape":"Boolean"},
2074
- "EngineVersion":{"shape":"String"},
2075
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
2076
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
2077
- "SnapshotWindow":{"shape":"String"},
2078
- "CacheNodeType":{"shape":"String"}
2079
- }
2080
- },
2081
- "ModifyCacheClusterResult":{
2082
- "type":"structure",
2083
- "members":{
2084
- "CacheCluster":{"shape":"CacheCluster"}
2085
- }
2086
- },
2087
- "ModifyCacheParameterGroupMessage":{
2088
- "type":"structure",
2089
- "required":[
2090
- "CacheParameterGroupName",
2091
- "ParameterNameValues"
2092
- ],
2093
- "members":{
2094
- "CacheParameterGroupName":{"shape":"String"},
2095
- "ParameterNameValues":{"shape":"ParameterNameValueList"}
2096
- }
2097
- },
2098
- "ModifyCacheSubnetGroupMessage":{
2099
- "type":"structure",
2100
- "required":["CacheSubnetGroupName"],
2101
- "members":{
2102
- "CacheSubnetGroupName":{"shape":"String"},
2103
- "CacheSubnetGroupDescription":{"shape":"String"},
2104
- "SubnetIds":{"shape":"SubnetIdentifierList"}
2105
- }
2106
- },
2107
- "ModifyCacheSubnetGroupResult":{
2108
- "type":"structure",
2109
- "members":{
2110
- "CacheSubnetGroup":{"shape":"CacheSubnetGroup"}
2111
- }
2112
- },
2113
- "ModifyReplicationGroupMessage":{
2114
- "type":"structure",
2115
- "required":["ReplicationGroupId"],
2116
- "members":{
2117
- "ReplicationGroupId":{"shape":"String"},
2118
- "ReplicationGroupDescription":{"shape":"String"},
2119
- "PrimaryClusterId":{"shape":"String"},
2120
- "SnapshottingClusterId":{"shape":"String"},
2121
- "AutomaticFailoverEnabled":{"shape":"BooleanOptional"},
2122
- "CacheSecurityGroupNames":{"shape":"CacheSecurityGroupNameList"},
2123
- "SecurityGroupIds":{"shape":"SecurityGroupIdsList"},
2124
- "PreferredMaintenanceWindow":{"shape":"String"},
2125
- "NotificationTopicArn":{"shape":"String"},
2126
- "CacheParameterGroupName":{"shape":"String"},
2127
- "NotificationTopicStatus":{"shape":"String"},
2128
- "ApplyImmediately":{"shape":"Boolean"},
2129
- "EngineVersion":{"shape":"String"},
2130
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
2131
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
2132
- "SnapshotWindow":{"shape":"String"},
2133
- "CacheNodeType":{"shape":"String"},
2134
- "NodeGroupId":{
2135
- "shape":"String",
2136
- "deprecated":true
2137
- }
2138
- }
2139
- },
2140
- "ModifyReplicationGroupResult":{
2141
- "type":"structure",
2142
- "members":{
2143
- "ReplicationGroup":{"shape":"ReplicationGroup"}
2144
- }
2145
- },
2146
- "ModifyReplicationGroupShardConfigurationMessage":{
2147
- "type":"structure",
2148
- "required":[
2149
- "ReplicationGroupId",
2150
- "NodeGroupCount",
2151
- "ApplyImmediately"
2152
- ],
2153
- "members":{
2154
- "ReplicationGroupId":{"shape":"String"},
2155
- "NodeGroupCount":{"shape":"Integer"},
2156
- "ApplyImmediately":{"shape":"Boolean"},
2157
- "ReshardingConfiguration":{"shape":"ReshardingConfigurationList"},
2158
- "NodeGroupsToRemove":{"shape":"NodeGroupsToRemoveList"},
2159
- "NodeGroupsToRetain":{"shape":"NodeGroupsToRetainList"}
2160
- }
2161
- },
2162
- "ModifyReplicationGroupShardConfigurationResult":{
2163
- "type":"structure",
2164
- "members":{
2165
- "ReplicationGroup":{"shape":"ReplicationGroup"}
2166
- }
2167
- },
2168
- "NoOperationFault":{
2169
- "type":"structure",
2170
- "members":{
2171
- },
2172
- "error":{
2173
- "code":"NoOperationFault",
2174
- "httpStatusCode":400,
2175
- "senderFault":true
2176
- },
2177
- "exception":true
2178
- },
2179
- "NodeGroup":{
2180
- "type":"structure",
2181
- "members":{
2182
- "NodeGroupId":{"shape":"String"},
2183
- "Status":{"shape":"String"},
2184
- "PrimaryEndpoint":{"shape":"Endpoint"},
2185
- "ReaderEndpoint":{"shape":"Endpoint"},
2186
- "Slots":{"shape":"String"},
2187
- "NodeGroupMembers":{"shape":"NodeGroupMemberList"}
2188
- }
2189
- },
2190
- "NodeGroupConfiguration":{
2191
- "type":"structure",
2192
- "members":{
2193
- "NodeGroupId":{"shape":"AllowedNodeGroupId"},
2194
- "Slots":{"shape":"String"},
2195
- "ReplicaCount":{"shape":"IntegerOptional"},
2196
- "PrimaryAvailabilityZone":{"shape":"String"},
2197
- "ReplicaAvailabilityZones":{"shape":"AvailabilityZonesList"}
2198
- }
2199
- },
2200
- "NodeGroupConfigurationList":{
2201
- "type":"list",
2202
- "member":{
2203
- "shape":"NodeGroupConfiguration",
2204
- "locationName":"NodeGroupConfiguration"
2205
- }
2206
- },
2207
- "NodeGroupList":{
2208
- "type":"list",
2209
- "member":{
2210
- "shape":"NodeGroup",
2211
- "locationName":"NodeGroup"
2212
- }
2213
- },
2214
- "NodeGroupMember":{
2215
- "type":"structure",
2216
- "members":{
2217
- "CacheClusterId":{"shape":"String"},
2218
- "CacheNodeId":{"shape":"String"},
2219
- "ReadEndpoint":{"shape":"Endpoint"},
2220
- "PreferredAvailabilityZone":{"shape":"String"},
2221
- "CurrentRole":{"shape":"String"}
2222
- }
2223
- },
2224
- "NodeGroupMemberList":{
2225
- "type":"list",
2226
- "member":{
2227
- "shape":"NodeGroupMember",
2228
- "locationName":"NodeGroupMember"
2229
- }
2230
- },
2231
- "NodeGroupMemberUpdateStatus":{
2232
- "type":"structure",
2233
- "members":{
2234
- "CacheClusterId":{"shape":"String"},
2235
- "CacheNodeId":{"shape":"String"},
2236
- "NodeUpdateStatus":{"shape":"NodeUpdateStatus"},
2237
- "NodeDeletionDate":{"shape":"TStamp"},
2238
- "NodeUpdateStartDate":{"shape":"TStamp"},
2239
- "NodeUpdateEndDate":{"shape":"TStamp"},
2240
- "NodeUpdateInitiatedBy":{"shape":"NodeUpdateInitiatedBy"},
2241
- "NodeUpdateInitiatedDate":{"shape":"TStamp"},
2242
- "NodeUpdateStatusModifiedDate":{"shape":"TStamp"}
2243
- }
2244
- },
2245
- "NodeGroupMemberUpdateStatusList":{
2246
- "type":"list",
2247
- "member":{
2248
- "shape":"NodeGroupMemberUpdateStatus",
2249
- "locationName":"NodeGroupMemberUpdateStatus"
2250
- }
2251
- },
2252
- "NodeGroupNotFoundFault":{
2253
- "type":"structure",
2254
- "members":{
2255
- },
2256
- "error":{
2257
- "code":"NodeGroupNotFoundFault",
2258
- "httpStatusCode":404,
2259
- "senderFault":true
2260
- },
2261
- "exception":true
2262
- },
2263
- "NodeGroupUpdateStatus":{
2264
- "type":"structure",
2265
- "members":{
2266
- "NodeGroupId":{"shape":"String"},
2267
- "NodeGroupMemberUpdateStatus":{"shape":"NodeGroupMemberUpdateStatusList"}
2268
- }
2269
- },
2270
- "NodeGroupUpdateStatusList":{
2271
- "type":"list",
2272
- "member":{
2273
- "shape":"NodeGroupUpdateStatus",
2274
- "locationName":"NodeGroupUpdateStatus"
2275
- }
2276
- },
2277
- "NodeGroupsPerReplicationGroupQuotaExceededFault":{
2278
- "type":"structure",
2279
- "members":{
2280
- },
2281
- "error":{
2282
- "code":"NodeGroupsPerReplicationGroupQuotaExceeded",
2283
- "httpStatusCode":400,
2284
- "senderFault":true
2285
- },
2286
- "exception":true
2287
- },
2288
- "NodeGroupsToRemoveList":{
2289
- "type":"list",
2290
- "member":{
2291
- "shape":"AllowedNodeGroupId",
2292
- "locationName":"NodeGroupToRemove"
2293
- }
2294
- },
2295
- "NodeGroupsToRetainList":{
2296
- "type":"list",
2297
- "member":{
2298
- "shape":"AllowedNodeGroupId",
2299
- "locationName":"NodeGroupToRetain"
2300
- }
2301
- },
2302
- "NodeQuotaForClusterExceededFault":{
2303
- "type":"structure",
2304
- "members":{
2305
- },
2306
- "error":{
2307
- "code":"NodeQuotaForClusterExceeded",
2308
- "httpStatusCode":400,
2309
- "senderFault":true
2310
- },
2311
- "exception":true
2312
- },
2313
- "NodeQuotaForCustomerExceededFault":{
2314
- "type":"structure",
2315
- "members":{
2316
- },
2317
- "error":{
2318
- "code":"NodeQuotaForCustomerExceeded",
2319
- "httpStatusCode":400,
2320
- "senderFault":true
2321
- },
2322
- "exception":true
2323
- },
2324
- "NodeSnapshot":{
2325
- "type":"structure",
2326
- "members":{
2327
- "CacheClusterId":{"shape":"String"},
2328
- "NodeGroupId":{"shape":"String"},
2329
- "CacheNodeId":{"shape":"String"},
2330
- "NodeGroupConfiguration":{"shape":"NodeGroupConfiguration"},
2331
- "CacheSize":{"shape":"String"},
2332
- "CacheNodeCreateTime":{"shape":"TStamp"},
2333
- "SnapshotCreateTime":{"shape":"TStamp"}
2334
- },
2335
- "wrapper":true
2336
- },
2337
- "NodeSnapshotList":{
2338
- "type":"list",
2339
- "member":{
2340
- "shape":"NodeSnapshot",
2341
- "locationName":"NodeSnapshot"
2342
- }
2343
- },
2344
- "NodeTypeList":{
2345
- "type":"list",
2346
- "member":{"shape":"String"}
2347
- },
2348
- "NodeUpdateInitiatedBy":{
2349
- "type":"string",
2350
- "enum":[
2351
- "system",
2352
- "customer"
2353
- ]
2354
- },
2355
- "NodeUpdateStatus":{
2356
- "type":"string",
2357
- "enum":[
2358
- "not-applied",
2359
- "waiting-to-start",
2360
- "in-progress",
2361
- "stopping",
2362
- "stopped",
2363
- "complete"
2364
- ]
2365
- },
2366
- "NotificationConfiguration":{
2367
- "type":"structure",
2368
- "members":{
2369
- "TopicArn":{"shape":"String"},
2370
- "TopicStatus":{"shape":"String"}
2371
- }
2372
- },
2373
- "Parameter":{
2374
- "type":"structure",
2375
- "members":{
2376
- "ParameterName":{"shape":"String"},
2377
- "ParameterValue":{"shape":"String"},
2378
- "Description":{"shape":"String"},
2379
- "Source":{"shape":"String"},
2380
- "DataType":{"shape":"String"},
2381
- "AllowedValues":{"shape":"String"},
2382
- "IsModifiable":{"shape":"Boolean"},
2383
- "MinimumEngineVersion":{"shape":"String"},
2384
- "ChangeType":{"shape":"ChangeType"}
2385
- }
2386
- },
2387
- "ParameterNameValue":{
2388
- "type":"structure",
2389
- "members":{
2390
- "ParameterName":{"shape":"String"},
2391
- "ParameterValue":{"shape":"String"}
2392
- }
2393
- },
2394
- "ParameterNameValueList":{
2395
- "type":"list",
2396
- "member":{
2397
- "shape":"ParameterNameValue",
2398
- "locationName":"ParameterNameValue"
2399
- }
2400
- },
2401
- "ParametersList":{
2402
- "type":"list",
2403
- "member":{
2404
- "shape":"Parameter",
2405
- "locationName":"Parameter"
2406
- }
2407
- },
2408
- "PendingAutomaticFailoverStatus":{
2409
- "type":"string",
2410
- "enum":[
2411
- "enabled",
2412
- "disabled"
2413
- ]
2414
- },
2415
- "PendingModifiedValues":{
2416
- "type":"structure",
2417
- "members":{
2418
- "NumCacheNodes":{"shape":"IntegerOptional"},
2419
- "CacheNodeIdsToRemove":{"shape":"CacheNodeIdsList"},
2420
- "EngineVersion":{"shape":"String"},
2421
- "CacheNodeType":{"shape":"String"}
2422
- }
2423
- },
2424
- "PreferredAvailabilityZoneList":{
2425
- "type":"list",
2426
- "member":{
2427
- "shape":"String",
2428
- "locationName":"PreferredAvailabilityZone"
2429
- }
2430
- },
2431
- "ProcessedUpdateAction":{
2432
- "type":"structure",
2433
- "members":{
2434
- "ReplicationGroupId":{"shape":"String"},
2435
- "ServiceUpdateName":{"shape":"String"},
2436
- "UpdateActionStatus":{"shape":"UpdateActionStatus"}
2437
- }
2438
- },
2439
- "ProcessedUpdateActionList":{
2440
- "type":"list",
2441
- "member":{
2442
- "shape":"ProcessedUpdateAction",
2443
- "locationName":"ProcessedUpdateAction"
2444
- }
2445
- },
2446
- "PurchaseReservedCacheNodesOfferingMessage":{
2447
- "type":"structure",
2448
- "required":["ReservedCacheNodesOfferingId"],
2449
- "members":{
2450
- "ReservedCacheNodesOfferingId":{"shape":"String"},
2451
- "ReservedCacheNodeId":{"shape":"String"},
2452
- "CacheNodeCount":{"shape":"IntegerOptional"}
2453
- }
2454
- },
2455
- "PurchaseReservedCacheNodesOfferingResult":{
2456
- "type":"structure",
2457
- "members":{
2458
- "ReservedCacheNode":{"shape":"ReservedCacheNode"}
2459
- }
2460
- },
2461
- "RebootCacheClusterMessage":{
2462
- "type":"structure",
2463
- "required":[
2464
- "CacheClusterId",
2465
- "CacheNodeIdsToReboot"
2466
- ],
2467
- "members":{
2468
- "CacheClusterId":{"shape":"String"},
2469
- "CacheNodeIdsToReboot":{"shape":"CacheNodeIdsList"}
2470
- }
2471
- },
2472
- "RebootCacheClusterResult":{
2473
- "type":"structure",
2474
- "members":{
2475
- "CacheCluster":{"shape":"CacheCluster"}
2476
- }
2477
- },
2478
- "RecurringCharge":{
2479
- "type":"structure",
2480
- "members":{
2481
- "RecurringChargeAmount":{"shape":"Double"},
2482
- "RecurringChargeFrequency":{"shape":"String"}
2483
- },
2484
- "wrapper":true
2485
- },
2486
- "RecurringChargeList":{
2487
- "type":"list",
2488
- "member":{
2489
- "shape":"RecurringCharge",
2490
- "locationName":"RecurringCharge"
2491
- }
2492
- },
2493
- "RemoveReplicasList":{
2494
- "type":"list",
2495
- "member":{"shape":"String"}
2496
- },
2497
- "RemoveTagsFromResourceMessage":{
2498
- "type":"structure",
2499
- "required":[
2500
- "ResourceName",
2501
- "TagKeys"
2502
- ],
2503
- "members":{
2504
- "ResourceName":{"shape":"String"},
2505
- "TagKeys":{"shape":"KeyList"}
2506
- }
2507
- },
2508
- "ReplicaConfigurationList":{
2509
- "type":"list",
2510
- "member":{
2511
- "shape":"ConfigureShard",
2512
- "locationName":"ConfigureShard"
2513
- }
2514
- },
2515
- "ReplicationGroup":{
2516
- "type":"structure",
2517
- "members":{
2518
- "ReplicationGroupId":{"shape":"String"},
2519
- "Description":{"shape":"String"},
2520
- "Status":{"shape":"String"},
2521
- "PendingModifiedValues":{"shape":"ReplicationGroupPendingModifiedValues"},
2522
- "MemberClusters":{"shape":"ClusterIdList"},
2523
- "NodeGroups":{"shape":"NodeGroupList"},
2524
- "SnapshottingClusterId":{"shape":"String"},
2525
- "AutomaticFailover":{"shape":"AutomaticFailoverStatus"},
2526
- "ConfigurationEndpoint":{"shape":"Endpoint"},
2527
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
2528
- "SnapshotWindow":{"shape":"String"},
2529
- "ClusterEnabled":{"shape":"BooleanOptional"},
2530
- "CacheNodeType":{"shape":"String"},
2531
- "AuthTokenEnabled":{"shape":"BooleanOptional"},
2532
- "TransitEncryptionEnabled":{"shape":"BooleanOptional"},
2533
- "AtRestEncryptionEnabled":{"shape":"BooleanOptional"}
2534
- },
2535
- "wrapper":true
2536
- },
2537
- "ReplicationGroupAlreadyExistsFault":{
2538
- "type":"structure",
2539
- "members":{
2540
- },
2541
- "error":{
2542
- "code":"ReplicationGroupAlreadyExists",
2543
- "httpStatusCode":400,
2544
- "senderFault":true
2545
- },
2546
- "exception":true
2547
- },
2548
- "ReplicationGroupIdList":{
2549
- "type":"list",
2550
- "member":{"shape":"String"},
2551
- "max":20
2552
- },
2553
- "ReplicationGroupList":{
2554
- "type":"list",
2555
- "member":{
2556
- "shape":"ReplicationGroup",
2557
- "locationName":"ReplicationGroup"
2558
- }
2559
- },
2560
- "ReplicationGroupMessage":{
2561
- "type":"structure",
2562
- "members":{
2563
- "Marker":{"shape":"String"},
2564
- "ReplicationGroups":{"shape":"ReplicationGroupList"}
2565
- }
2566
- },
2567
- "ReplicationGroupNotFoundFault":{
2568
- "type":"structure",
2569
- "members":{
2570
- },
2571
- "error":{
2572
- "code":"ReplicationGroupNotFoundFault",
2573
- "httpStatusCode":404,
2574
- "senderFault":true
2575
- },
2576
- "exception":true
2577
- },
2578
- "ReplicationGroupPendingModifiedValues":{
2579
- "type":"structure",
2580
- "members":{
2581
- "PrimaryClusterId":{"shape":"String"},
2582
- "AutomaticFailoverStatus":{"shape":"PendingAutomaticFailoverStatus"},
2583
- "Resharding":{"shape":"ReshardingStatus"}
2584
- }
2585
- },
2586
- "ReservedCacheNode":{
2587
- "type":"structure",
2588
- "members":{
2589
- "ReservedCacheNodeId":{"shape":"String"},
2590
- "ReservedCacheNodesOfferingId":{"shape":"String"},
2591
- "CacheNodeType":{"shape":"String"},
2592
- "StartTime":{"shape":"TStamp"},
2593
- "Duration":{"shape":"Integer"},
2594
- "FixedPrice":{"shape":"Double"},
2595
- "UsagePrice":{"shape":"Double"},
2596
- "CacheNodeCount":{"shape":"Integer"},
2597
- "ProductDescription":{"shape":"String"},
2598
- "OfferingType":{"shape":"String"},
2599
- "State":{"shape":"String"},
2600
- "RecurringCharges":{"shape":"RecurringChargeList"},
2601
- "ReservationARN":{"shape":"String"}
2602
- },
2603
- "wrapper":true
2604
- },
2605
- "ReservedCacheNodeAlreadyExistsFault":{
2606
- "type":"structure",
2607
- "members":{
2608
- },
2609
- "error":{
2610
- "code":"ReservedCacheNodeAlreadyExists",
2611
- "httpStatusCode":404,
2612
- "senderFault":true
2613
- },
2614
- "exception":true
2615
- },
2616
- "ReservedCacheNodeList":{
2617
- "type":"list",
2618
- "member":{
2619
- "shape":"ReservedCacheNode",
2620
- "locationName":"ReservedCacheNode"
2621
- }
2622
- },
2623
- "ReservedCacheNodeMessage":{
2624
- "type":"structure",
2625
- "members":{
2626
- "Marker":{"shape":"String"},
2627
- "ReservedCacheNodes":{"shape":"ReservedCacheNodeList"}
2628
- }
2629
- },
2630
- "ReservedCacheNodeNotFoundFault":{
2631
- "type":"structure",
2632
- "members":{
2633
- },
2634
- "error":{
2635
- "code":"ReservedCacheNodeNotFound",
2636
- "httpStatusCode":404,
2637
- "senderFault":true
2638
- },
2639
- "exception":true
2640
- },
2641
- "ReservedCacheNodeQuotaExceededFault":{
2642
- "type":"structure",
2643
- "members":{
2644
- },
2645
- "error":{
2646
- "code":"ReservedCacheNodeQuotaExceeded",
2647
- "httpStatusCode":400,
2648
- "senderFault":true
2649
- },
2650
- "exception":true
2651
- },
2652
- "ReservedCacheNodesOffering":{
2653
- "type":"structure",
2654
- "members":{
2655
- "ReservedCacheNodesOfferingId":{"shape":"String"},
2656
- "CacheNodeType":{"shape":"String"},
2657
- "Duration":{"shape":"Integer"},
2658
- "FixedPrice":{"shape":"Double"},
2659
- "UsagePrice":{"shape":"Double"},
2660
- "ProductDescription":{"shape":"String"},
2661
- "OfferingType":{"shape":"String"},
2662
- "RecurringCharges":{"shape":"RecurringChargeList"}
2663
- },
2664
- "wrapper":true
2665
- },
2666
- "ReservedCacheNodesOfferingList":{
2667
- "type":"list",
2668
- "member":{
2669
- "shape":"ReservedCacheNodesOffering",
2670
- "locationName":"ReservedCacheNodesOffering"
2671
- }
2672
- },
2673
- "ReservedCacheNodesOfferingMessage":{
2674
- "type":"structure",
2675
- "members":{
2676
- "Marker":{"shape":"String"},
2677
- "ReservedCacheNodesOfferings":{"shape":"ReservedCacheNodesOfferingList"}
2678
- }
2679
- },
2680
- "ReservedCacheNodesOfferingNotFoundFault":{
2681
- "type":"structure",
2682
- "members":{
2683
- },
2684
- "error":{
2685
- "code":"ReservedCacheNodesOfferingNotFound",
2686
- "httpStatusCode":404,
2687
- "senderFault":true
2688
- },
2689
- "exception":true
2690
- },
2691
- "ResetCacheParameterGroupMessage":{
2692
- "type":"structure",
2693
- "required":["CacheParameterGroupName"],
2694
- "members":{
2695
- "CacheParameterGroupName":{"shape":"String"},
2696
- "ResetAllParameters":{"shape":"Boolean"},
2697
- "ParameterNameValues":{"shape":"ParameterNameValueList"}
2698
- }
2699
- },
2700
- "ReshardingConfiguration":{
2701
- "type":"structure",
2702
- "members":{
2703
- "NodeGroupId":{"shape":"AllowedNodeGroupId"},
2704
- "PreferredAvailabilityZones":{"shape":"AvailabilityZonesList"}
2705
- }
2706
- },
2707
- "ReshardingConfigurationList":{
2708
- "type":"list",
2709
- "member":{
2710
- "shape":"ReshardingConfiguration",
2711
- "locationName":"ReshardingConfiguration"
2712
- }
2713
- },
2714
- "ReshardingStatus":{
2715
- "type":"structure",
2716
- "members":{
2717
- "SlotMigration":{"shape":"SlotMigration"}
2718
- }
2719
- },
2720
- "RevokeCacheSecurityGroupIngressMessage":{
2721
- "type":"structure",
2722
- "required":[
2723
- "CacheSecurityGroupName",
2724
- "EC2SecurityGroupName",
2725
- "EC2SecurityGroupOwnerId"
2726
- ],
2727
- "members":{
2728
- "CacheSecurityGroupName":{"shape":"String"},
2729
- "EC2SecurityGroupName":{"shape":"String"},
2730
- "EC2SecurityGroupOwnerId":{"shape":"String"}
2731
- }
2732
- },
2733
- "RevokeCacheSecurityGroupIngressResult":{
2734
- "type":"structure",
2735
- "members":{
2736
- "CacheSecurityGroup":{"shape":"CacheSecurityGroup"}
2737
- }
2738
- },
2739
- "SecurityGroupIdsList":{
2740
- "type":"list",
2741
- "member":{
2742
- "shape":"String",
2743
- "locationName":"SecurityGroupId"
2744
- }
2745
- },
2746
- "SecurityGroupMembership":{
2747
- "type":"structure",
2748
- "members":{
2749
- "SecurityGroupId":{"shape":"String"},
2750
- "Status":{"shape":"String"}
2751
- }
2752
- },
2753
- "SecurityGroupMembershipList":{
2754
- "type":"list",
2755
- "member":{"shape":"SecurityGroupMembership"}
2756
- },
2757
- "ServiceLinkedRoleNotFoundFault":{
2758
- "type":"structure",
2759
- "members":{
2760
- },
2761
- "error":{
2762
- "code":"ServiceLinkedRoleNotFoundFault",
2763
- "httpStatusCode":400,
2764
- "senderFault":true
2765
- },
2766
- "exception":true
2767
- },
2768
- "ServiceUpdate":{
2769
- "type":"structure",
2770
- "members":{
2771
- "ServiceUpdateName":{"shape":"String"},
2772
- "ServiceUpdateReleaseDate":{"shape":"TStamp"},
2773
- "ServiceUpdateEndDate":{"shape":"TStamp"},
2774
- "ServiceUpdateSeverity":{"shape":"ServiceUpdateSeverity"},
2775
- "ServiceUpdateRecommendedApplyByDate":{"shape":"TStamp"},
2776
- "ServiceUpdateStatus":{"shape":"ServiceUpdateStatus"},
2777
- "ServiceUpdateDescription":{"shape":"String"},
2778
- "ServiceUpdateType":{"shape":"ServiceUpdateType"},
2779
- "Engine":{"shape":"String"},
2780
- "EngineVersion":{"shape":"String"},
2781
- "AutoUpdateAfterRecommendedApplyByDate":{"shape":"BooleanOptional"},
2782
- "EstimatedUpdateTime":{"shape":"String"}
2783
- }
2784
- },
2785
- "ServiceUpdateList":{
2786
- "type":"list",
2787
- "member":{
2788
- "shape":"ServiceUpdate",
2789
- "locationName":"ServiceUpdate"
2790
- }
2791
- },
2792
- "ServiceUpdateNotFoundFault":{
2793
- "type":"structure",
2794
- "members":{
2795
- },
2796
- "error":{
2797
- "code":"ServiceUpdateNotFoundFault",
2798
- "httpStatusCode":404,
2799
- "senderFault":true
2800
- },
2801
- "exception":true
2802
- },
2803
- "ServiceUpdateSeverity":{
2804
- "type":"string",
2805
- "enum":[
2806
- "critical",
2807
- "important",
2808
- "medium",
2809
- "low"
2810
- ]
2811
- },
2812
- "ServiceUpdateStatus":{
2813
- "type":"string",
2814
- "enum":[
2815
- "available",
2816
- "cancelled",
2817
- "expired"
2818
- ]
2819
- },
2820
- "ServiceUpdateStatusList":{
2821
- "type":"list",
2822
- "member":{"shape":"ServiceUpdateStatus"},
2823
- "max":3
2824
- },
2825
- "ServiceUpdateType":{
2826
- "type":"string",
2827
- "enum":["security-update"]
2828
- },
2829
- "ServiceUpdatesMessage":{
2830
- "type":"structure",
2831
- "members":{
2832
- "Marker":{"shape":"String"},
2833
- "ServiceUpdates":{"shape":"ServiceUpdateList"}
2834
- }
2835
- },
2836
- "SlaMet":{
2837
- "type":"string",
2838
- "enum":[
2839
- "yes",
2840
- "no",
2841
- "n/a"
2842
- ]
2843
- },
2844
- "SlotMigration":{
2845
- "type":"structure",
2846
- "members":{
2847
- "ProgressPercentage":{"shape":"Double"}
2848
- }
2849
- },
2850
- "Snapshot":{
2851
- "type":"structure",
2852
- "members":{
2853
- "SnapshotName":{"shape":"String"},
2854
- "ReplicationGroupId":{"shape":"String"},
2855
- "ReplicationGroupDescription":{"shape":"String"},
2856
- "CacheClusterId":{"shape":"String"},
2857
- "SnapshotStatus":{"shape":"String"},
2858
- "SnapshotSource":{"shape":"String"},
2859
- "CacheNodeType":{"shape":"String"},
2860
- "Engine":{"shape":"String"},
2861
- "EngineVersion":{"shape":"String"},
2862
- "NumCacheNodes":{"shape":"IntegerOptional"},
2863
- "PreferredAvailabilityZone":{"shape":"String"},
2864
- "CacheClusterCreateTime":{"shape":"TStamp"},
2865
- "PreferredMaintenanceWindow":{"shape":"String"},
2866
- "TopicArn":{"shape":"String"},
2867
- "Port":{"shape":"IntegerOptional"},
2868
- "CacheParameterGroupName":{"shape":"String"},
2869
- "CacheSubnetGroupName":{"shape":"String"},
2870
- "VpcId":{"shape":"String"},
2871
- "AutoMinorVersionUpgrade":{"shape":"Boolean"},
2872
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
2873
- "SnapshotWindow":{"shape":"String"},
2874
- "NumNodeGroups":{"shape":"IntegerOptional"},
2875
- "AutomaticFailover":{"shape":"AutomaticFailoverStatus"},
2876
- "NodeSnapshots":{"shape":"NodeSnapshotList"}
2877
- },
2878
- "wrapper":true
2879
- },
2880
- "SnapshotAlreadyExistsFault":{
2881
- "type":"structure",
2882
- "members":{
2883
- },
2884
- "error":{
2885
- "code":"SnapshotAlreadyExistsFault",
2886
- "httpStatusCode":400,
2887
- "senderFault":true
2888
- },
2889
- "exception":true
2890
- },
2891
- "SnapshotArnsList":{
2892
- "type":"list",
2893
- "member":{
2894
- "shape":"String",
2895
- "locationName":"SnapshotArn"
2896
- }
2897
- },
2898
- "SnapshotFeatureNotSupportedFault":{
2899
- "type":"structure",
2900
- "members":{
2901
- },
2902
- "error":{
2903
- "code":"SnapshotFeatureNotSupportedFault",
2904
- "httpStatusCode":400,
2905
- "senderFault":true
2906
- },
2907
- "exception":true
2908
- },
2909
- "SnapshotList":{
2910
- "type":"list",
2911
- "member":{
2912
- "shape":"Snapshot",
2913
- "locationName":"Snapshot"
2914
- }
2915
- },
2916
- "SnapshotNotFoundFault":{
2917
- "type":"structure",
2918
- "members":{
2919
- },
2920
- "error":{
2921
- "code":"SnapshotNotFoundFault",
2922
- "httpStatusCode":404,
2923
- "senderFault":true
2924
- },
2925
- "exception":true
2926
- },
2927
- "SnapshotQuotaExceededFault":{
2928
- "type":"structure",
2929
- "members":{
2930
- },
2931
- "error":{
2932
- "code":"SnapshotQuotaExceededFault",
2933
- "httpStatusCode":400,
2934
- "senderFault":true
2935
- },
2936
- "exception":true
2937
- },
2938
- "SourceType":{
2939
- "type":"string",
2940
- "enum":[
2941
- "cache-cluster",
2942
- "cache-parameter-group",
2943
- "cache-security-group",
2944
- "cache-subnet-group",
2945
- "replication-group"
2946
- ]
2947
- },
2948
- "String":{"type":"string"},
2949
- "Subnet":{
2950
- "type":"structure",
2951
- "members":{
2952
- "SubnetIdentifier":{"shape":"String"},
2953
- "SubnetAvailabilityZone":{"shape":"AvailabilityZone"}
2954
- }
2955
- },
2956
- "SubnetIdentifierList":{
2957
- "type":"list",
2958
- "member":{
2959
- "shape":"String",
2960
- "locationName":"SubnetIdentifier"
2961
- }
2962
- },
2963
- "SubnetInUse":{
2964
- "type":"structure",
2965
- "members":{
2966
- },
2967
- "error":{
2968
- "code":"SubnetInUse",
2969
- "httpStatusCode":400,
2970
- "senderFault":true
2971
- },
2972
- "exception":true
2973
- },
2974
- "SubnetList":{
2975
- "type":"list",
2976
- "member":{
2977
- "shape":"Subnet",
2978
- "locationName":"Subnet"
2979
- }
2980
- },
2981
- "TStamp":{"type":"timestamp"},
2982
- "Tag":{
2983
- "type":"structure",
2984
- "members":{
2985
- "Key":{"shape":"String"},
2986
- "Value":{"shape":"String"}
2987
- }
2988
- },
2989
- "TagList":{
2990
- "type":"list",
2991
- "member":{
2992
- "shape":"Tag",
2993
- "locationName":"Tag"
2994
- }
2995
- },
2996
- "TagListMessage":{
2997
- "type":"structure",
2998
- "members":{
2999
- "TagList":{"shape":"TagList"}
3000
- }
3001
- },
3002
- "TagNotFoundFault":{
3003
- "type":"structure",
3004
- "members":{
3005
- },
3006
- "error":{
3007
- "code":"TagNotFound",
3008
- "httpStatusCode":404,
3009
- "senderFault":true
3010
- },
3011
- "exception":true
3012
- },
3013
- "TagQuotaPerResourceExceeded":{
3014
- "type":"structure",
3015
- "members":{
3016
- },
3017
- "error":{
3018
- "code":"TagQuotaPerResourceExceeded",
3019
- "httpStatusCode":400,
3020
- "senderFault":true
3021
- },
3022
- "exception":true
3023
- },
3024
- "TestFailoverMessage":{
3025
- "type":"structure",
3026
- "required":[
3027
- "ReplicationGroupId",
3028
- "NodeGroupId"
3029
- ],
3030
- "members":{
3031
- "ReplicationGroupId":{"shape":"String"},
3032
- "NodeGroupId":{"shape":"AllowedNodeGroupId"}
3033
- }
3034
- },
3035
- "TestFailoverNotAvailableFault":{
3036
- "type":"structure",
3037
- "members":{
3038
- },
3039
- "error":{
3040
- "code":"TestFailoverNotAvailableFault",
3041
- "httpStatusCode":400,
3042
- "senderFault":true
3043
- },
3044
- "exception":true
3045
- },
3046
- "TestFailoverResult":{
3047
- "type":"structure",
3048
- "members":{
3049
- "ReplicationGroup":{"shape":"ReplicationGroup"}
3050
- }
3051
- },
3052
- "TimeRangeFilter":{
3053
- "type":"structure",
3054
- "members":{
3055
- "StartTime":{"shape":"TStamp"},
3056
- "EndTime":{"shape":"TStamp"}
3057
- }
3058
- },
3059
- "UnprocessedUpdateAction":{
3060
- "type":"structure",
3061
- "members":{
3062
- "ReplicationGroupId":{"shape":"String"},
3063
- "ServiceUpdateName":{"shape":"String"},
3064
- "ErrorType":{"shape":"String"},
3065
- "ErrorMessage":{"shape":"String"}
3066
- }
3067
- },
3068
- "UnprocessedUpdateActionList":{
3069
- "type":"list",
3070
- "member":{
3071
- "shape":"UnprocessedUpdateAction",
3072
- "locationName":"UnprocessedUpdateAction"
3073
- }
3074
- },
3075
- "UpdateAction":{
3076
- "type":"structure",
3077
- "members":{
3078
- "ReplicationGroupId":{"shape":"String"},
3079
- "ServiceUpdateName":{"shape":"String"},
3080
- "ServiceUpdateReleaseDate":{"shape":"TStamp"},
3081
- "ServiceUpdateSeverity":{"shape":"ServiceUpdateSeverity"},
3082
- "ServiceUpdateStatus":{"shape":"ServiceUpdateStatus"},
3083
- "ServiceUpdateRecommendedApplyByDate":{"shape":"TStamp"},
3084
- "ServiceUpdateType":{"shape":"ServiceUpdateType"},
3085
- "UpdateActionAvailableDate":{"shape":"TStamp"},
3086
- "UpdateActionStatus":{"shape":"UpdateActionStatus"},
3087
- "NodesUpdated":{"shape":"String"},
3088
- "UpdateActionStatusModifiedDate":{"shape":"TStamp"},
3089
- "SlaMet":{"shape":"SlaMet"},
3090
- "NodeGroupUpdateStatus":{"shape":"NodeGroupUpdateStatusList"},
3091
- "EstimatedUpdateTime":{"shape":"String"}
3092
- }
3093
- },
3094
- "UpdateActionList":{
3095
- "type":"list",
3096
- "member":{
3097
- "shape":"UpdateAction",
3098
- "locationName":"UpdateAction"
3099
- }
3100
- },
3101
- "UpdateActionResultsMessage":{
3102
- "type":"structure",
3103
- "members":{
3104
- "ProcessedUpdateActions":{"shape":"ProcessedUpdateActionList"},
3105
- "UnprocessedUpdateActions":{"shape":"UnprocessedUpdateActionList"}
3106
- }
3107
- },
3108
- "UpdateActionStatus":{
3109
- "type":"string",
3110
- "enum":[
3111
- "not-applied",
3112
- "waiting-to-start",
3113
- "in-progress",
3114
- "stopping",
3115
- "stopped",
3116
- "complete"
3117
- ]
3118
- },
3119
- "UpdateActionStatusList":{
3120
- "type":"list",
3121
- "member":{"shape":"UpdateActionStatus"},
3122
- "max":6
3123
- },
3124
- "UpdateActionsMessage":{
3125
- "type":"structure",
3126
- "members":{
3127
- "Marker":{"shape":"String"},
3128
- "UpdateActions":{"shape":"UpdateActionList"}
3129
- }
3130
- }
3131
- }
3132
- }