aws-sdk-core 2.11.383 → 3.68.1

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