aws-sdk-core 2.11.380 → 3.67.0

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