aws-sdk-core 2.11.366 → 3.67.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1166) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -552
  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 -15
  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 +164 -11
  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 -1042
  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 -257
  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 -1128
  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 -5349
  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 -52
  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 -1379
  326. data/apis/connect/2017-08-08/examples-1.json +0 -5
  327. data/apis/connect/2017-08-08/paginators-1.json +0 -14
  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 -1327
  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 -2066
  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 -25416
  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 -3152
  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 -1543
  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 -1376
  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 -692
  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 -6294
  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 -2222
  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 -1133
  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 -1698
  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 -417
  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 -174
  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 -8292
  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 -2039
  624. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
  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 -1525
  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 -766
  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 -1703
  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 -2080
  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 -8526
  684. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  685. data/apis/polly/2016-06-10/api-2.json +0 -830
  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 -6588
  725. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  726. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  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 -2138
  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 -680
  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 -929
  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 -5213
  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 -299
  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 -104
  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/swf_read_timeouts.rb +0 -23
  1099. data/lib/aws-sdk-core/polly.rb +0 -14
  1100. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1101. data/lib/aws-sdk-core/pricing.rb +0 -6
  1102. data/lib/aws-sdk-core/qldb.rb +0 -6
  1103. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1104. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1105. data/lib/aws-sdk-core/ram.rb +0 -6
  1106. data/lib/aws-sdk-core/rds.rb +0 -16
  1107. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1108. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1109. data/lib/aws-sdk-core/redshift.rb +0 -7
  1110. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1111. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1112. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1113. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1114. data/lib/aws-sdk-core/route53.rb +0 -7
  1115. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1116. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1117. data/lib/aws-sdk-core/s3.rb +0 -26
  1118. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1119. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1120. data/lib/aws-sdk-core/s3control.rb +0 -6
  1121. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1122. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1123. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1124. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1125. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1126. data/lib/aws-sdk-core/service.rb +0 -4
  1127. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1128. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1129. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1130. data/lib/aws-sdk-core/ses.rb +0 -7
  1131. data/lib/aws-sdk-core/shield.rb +0 -6
  1132. data/lib/aws-sdk-core/signer.rb +0 -7
  1133. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1134. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1135. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1136. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1137. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1138. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1139. data/lib/aws-sdk-core/sms.rb +0 -6
  1140. data/lib/aws-sdk-core/snowball.rb +0 -6
  1141. data/lib/aws-sdk-core/sns.rb +0 -7
  1142. data/lib/aws-sdk-core/sqs.rb +0 -7
  1143. data/lib/aws-sdk-core/ssm.rb +0 -6
  1144. data/lib/aws-sdk-core/states.rb +0 -6
  1145. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1146. data/lib/aws-sdk-core/sts.rb +0 -6
  1147. data/lib/aws-sdk-core/support.rb +0 -6
  1148. data/lib/aws-sdk-core/swf.rb +0 -6
  1149. data/lib/aws-sdk-core/textract.rb +0 -6
  1150. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1151. data/lib/aws-sdk-core/transfer.rb +0 -6
  1152. data/lib/aws-sdk-core/translate.rb +0 -6
  1153. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1154. data/lib/aws-sdk-core/version.rb +0 -3
  1155. data/lib/aws-sdk-core/waf.rb +0 -6
  1156. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1157. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1158. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1159. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1160. data/lib/aws-sdk-core/worklink.rb +0 -6
  1161. data/lib/aws-sdk-core/workmail.rb +0 -6
  1162. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1163. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1164. data/lib/aws-sdk-core/xray.rb +0 -6
  1165. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1166. 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,3152 +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":[
992
- "ReplicationGroupIds",
993
- "ServiceUpdateName"
994
- ],
995
- "members":{
996
- "ReplicationGroupIds":{"shape":"ReplicationGroupIdList"},
997
- "ServiceUpdateName":{"shape":"String"}
998
- }
999
- },
1000
- "BatchStopUpdateActionMessage":{
1001
- "type":"structure",
1002
- "required":[
1003
- "ReplicationGroupIds",
1004
- "ServiceUpdateName"
1005
- ],
1006
- "members":{
1007
- "ReplicationGroupIds":{"shape":"ReplicationGroupIdList"},
1008
- "ServiceUpdateName":{"shape":"String"}
1009
- }
1010
- },
1011
- "Boolean":{"type":"boolean"},
1012
- "BooleanOptional":{"type":"boolean"},
1013
- "CacheCluster":{
1014
- "type":"structure",
1015
- "members":{
1016
- "CacheClusterId":{"shape":"String"},
1017
- "ConfigurationEndpoint":{"shape":"Endpoint"},
1018
- "ClientDownloadLandingPage":{"shape":"String"},
1019
- "CacheNodeType":{"shape":"String"},
1020
- "Engine":{"shape":"String"},
1021
- "EngineVersion":{"shape":"String"},
1022
- "CacheClusterStatus":{"shape":"String"},
1023
- "NumCacheNodes":{"shape":"IntegerOptional"},
1024
- "PreferredAvailabilityZone":{"shape":"String"},
1025
- "CacheClusterCreateTime":{"shape":"TStamp"},
1026
- "PreferredMaintenanceWindow":{"shape":"String"},
1027
- "PendingModifiedValues":{"shape":"PendingModifiedValues"},
1028
- "NotificationConfiguration":{"shape":"NotificationConfiguration"},
1029
- "CacheSecurityGroups":{"shape":"CacheSecurityGroupMembershipList"},
1030
- "CacheParameterGroup":{"shape":"CacheParameterGroupStatus"},
1031
- "CacheSubnetGroupName":{"shape":"String"},
1032
- "CacheNodes":{"shape":"CacheNodeList"},
1033
- "AutoMinorVersionUpgrade":{"shape":"Boolean"},
1034
- "SecurityGroups":{"shape":"SecurityGroupMembershipList"},
1035
- "ReplicationGroupId":{"shape":"String"},
1036
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
1037
- "SnapshotWindow":{"shape":"String"},
1038
- "AuthTokenEnabled":{"shape":"BooleanOptional"},
1039
- "TransitEncryptionEnabled":{"shape":"BooleanOptional"},
1040
- "AtRestEncryptionEnabled":{"shape":"BooleanOptional"}
1041
- },
1042
- "wrapper":true
1043
- },
1044
- "CacheClusterAlreadyExistsFault":{
1045
- "type":"structure",
1046
- "members":{
1047
- },
1048
- "error":{
1049
- "code":"CacheClusterAlreadyExists",
1050
- "httpStatusCode":400,
1051
- "senderFault":true
1052
- },
1053
- "exception":true
1054
- },
1055
- "CacheClusterList":{
1056
- "type":"list",
1057
- "member":{
1058
- "shape":"CacheCluster",
1059
- "locationName":"CacheCluster"
1060
- }
1061
- },
1062
- "CacheClusterMessage":{
1063
- "type":"structure",
1064
- "members":{
1065
- "Marker":{"shape":"String"},
1066
- "CacheClusters":{"shape":"CacheClusterList"}
1067
- }
1068
- },
1069
- "CacheClusterNotFoundFault":{
1070
- "type":"structure",
1071
- "members":{
1072
- },
1073
- "error":{
1074
- "code":"CacheClusterNotFound",
1075
- "httpStatusCode":404,
1076
- "senderFault":true
1077
- },
1078
- "exception":true
1079
- },
1080
- "CacheEngineVersion":{
1081
- "type":"structure",
1082
- "members":{
1083
- "Engine":{"shape":"String"},
1084
- "EngineVersion":{"shape":"String"},
1085
- "CacheParameterGroupFamily":{"shape":"String"},
1086
- "CacheEngineDescription":{"shape":"String"},
1087
- "CacheEngineVersionDescription":{"shape":"String"}
1088
- }
1089
- },
1090
- "CacheEngineVersionList":{
1091
- "type":"list",
1092
- "member":{
1093
- "shape":"CacheEngineVersion",
1094
- "locationName":"CacheEngineVersion"
1095
- }
1096
- },
1097
- "CacheEngineVersionMessage":{
1098
- "type":"structure",
1099
- "members":{
1100
- "Marker":{"shape":"String"},
1101
- "CacheEngineVersions":{"shape":"CacheEngineVersionList"}
1102
- }
1103
- },
1104
- "CacheNode":{
1105
- "type":"structure",
1106
- "members":{
1107
- "CacheNodeId":{"shape":"String"},
1108
- "CacheNodeStatus":{"shape":"String"},
1109
- "CacheNodeCreateTime":{"shape":"TStamp"},
1110
- "Endpoint":{"shape":"Endpoint"},
1111
- "ParameterGroupStatus":{"shape":"String"},
1112
- "SourceCacheNodeId":{"shape":"String"},
1113
- "CustomerAvailabilityZone":{"shape":"String"}
1114
- }
1115
- },
1116
- "CacheNodeIdsList":{
1117
- "type":"list",
1118
- "member":{
1119
- "shape":"String",
1120
- "locationName":"CacheNodeId"
1121
- }
1122
- },
1123
- "CacheNodeList":{
1124
- "type":"list",
1125
- "member":{
1126
- "shape":"CacheNode",
1127
- "locationName":"CacheNode"
1128
- }
1129
- },
1130
- "CacheNodeTypeSpecificParameter":{
1131
- "type":"structure",
1132
- "members":{
1133
- "ParameterName":{"shape":"String"},
1134
- "Description":{"shape":"String"},
1135
- "Source":{"shape":"String"},
1136
- "DataType":{"shape":"String"},
1137
- "AllowedValues":{"shape":"String"},
1138
- "IsModifiable":{"shape":"Boolean"},
1139
- "MinimumEngineVersion":{"shape":"String"},
1140
- "CacheNodeTypeSpecificValues":{"shape":"CacheNodeTypeSpecificValueList"},
1141
- "ChangeType":{"shape":"ChangeType"}
1142
- }
1143
- },
1144
- "CacheNodeTypeSpecificParametersList":{
1145
- "type":"list",
1146
- "member":{
1147
- "shape":"CacheNodeTypeSpecificParameter",
1148
- "locationName":"CacheNodeTypeSpecificParameter"
1149
- }
1150
- },
1151
- "CacheNodeTypeSpecificValue":{
1152
- "type":"structure",
1153
- "members":{
1154
- "CacheNodeType":{"shape":"String"},
1155
- "Value":{"shape":"String"}
1156
- }
1157
- },
1158
- "CacheNodeTypeSpecificValueList":{
1159
- "type":"list",
1160
- "member":{
1161
- "shape":"CacheNodeTypeSpecificValue",
1162
- "locationName":"CacheNodeTypeSpecificValue"
1163
- }
1164
- },
1165
- "CacheParameterGroup":{
1166
- "type":"structure",
1167
- "members":{
1168
- "CacheParameterGroupName":{"shape":"String"},
1169
- "CacheParameterGroupFamily":{"shape":"String"},
1170
- "Description":{"shape":"String"}
1171
- },
1172
- "wrapper":true
1173
- },
1174
- "CacheParameterGroupAlreadyExistsFault":{
1175
- "type":"structure",
1176
- "members":{
1177
- },
1178
- "error":{
1179
- "code":"CacheParameterGroupAlreadyExists",
1180
- "httpStatusCode":400,
1181
- "senderFault":true
1182
- },
1183
- "exception":true
1184
- },
1185
- "CacheParameterGroupDetails":{
1186
- "type":"structure",
1187
- "members":{
1188
- "Marker":{"shape":"String"},
1189
- "Parameters":{"shape":"ParametersList"},
1190
- "CacheNodeTypeSpecificParameters":{"shape":"CacheNodeTypeSpecificParametersList"}
1191
- }
1192
- },
1193
- "CacheParameterGroupList":{
1194
- "type":"list",
1195
- "member":{
1196
- "shape":"CacheParameterGroup",
1197
- "locationName":"CacheParameterGroup"
1198
- }
1199
- },
1200
- "CacheParameterGroupNameMessage":{
1201
- "type":"structure",
1202
- "members":{
1203
- "CacheParameterGroupName":{"shape":"String"}
1204
- }
1205
- },
1206
- "CacheParameterGroupNotFoundFault":{
1207
- "type":"structure",
1208
- "members":{
1209
- },
1210
- "error":{
1211
- "code":"CacheParameterGroupNotFound",
1212
- "httpStatusCode":404,
1213
- "senderFault":true
1214
- },
1215
- "exception":true
1216
- },
1217
- "CacheParameterGroupQuotaExceededFault":{
1218
- "type":"structure",
1219
- "members":{
1220
- },
1221
- "error":{
1222
- "code":"CacheParameterGroupQuotaExceeded",
1223
- "httpStatusCode":400,
1224
- "senderFault":true
1225
- },
1226
- "exception":true
1227
- },
1228
- "CacheParameterGroupStatus":{
1229
- "type":"structure",
1230
- "members":{
1231
- "CacheParameterGroupName":{"shape":"String"},
1232
- "ParameterApplyStatus":{"shape":"String"},
1233
- "CacheNodeIdsToReboot":{"shape":"CacheNodeIdsList"}
1234
- }
1235
- },
1236
- "CacheParameterGroupsMessage":{
1237
- "type":"structure",
1238
- "members":{
1239
- "Marker":{"shape":"String"},
1240
- "CacheParameterGroups":{"shape":"CacheParameterGroupList"}
1241
- }
1242
- },
1243
- "CacheSecurityGroup":{
1244
- "type":"structure",
1245
- "members":{
1246
- "OwnerId":{"shape":"String"},
1247
- "CacheSecurityGroupName":{"shape":"String"},
1248
- "Description":{"shape":"String"},
1249
- "EC2SecurityGroups":{"shape":"EC2SecurityGroupList"}
1250
- },
1251
- "wrapper":true
1252
- },
1253
- "CacheSecurityGroupAlreadyExistsFault":{
1254
- "type":"structure",
1255
- "members":{
1256
- },
1257
- "error":{
1258
- "code":"CacheSecurityGroupAlreadyExists",
1259
- "httpStatusCode":400,
1260
- "senderFault":true
1261
- },
1262
- "exception":true
1263
- },
1264
- "CacheSecurityGroupMembership":{
1265
- "type":"structure",
1266
- "members":{
1267
- "CacheSecurityGroupName":{"shape":"String"},
1268
- "Status":{"shape":"String"}
1269
- }
1270
- },
1271
- "CacheSecurityGroupMembershipList":{
1272
- "type":"list",
1273
- "member":{
1274
- "shape":"CacheSecurityGroupMembership",
1275
- "locationName":"CacheSecurityGroup"
1276
- }
1277
- },
1278
- "CacheSecurityGroupMessage":{
1279
- "type":"structure",
1280
- "members":{
1281
- "Marker":{"shape":"String"},
1282
- "CacheSecurityGroups":{"shape":"CacheSecurityGroups"}
1283
- }
1284
- },
1285
- "CacheSecurityGroupNameList":{
1286
- "type":"list",
1287
- "member":{
1288
- "shape":"String",
1289
- "locationName":"CacheSecurityGroupName"
1290
- }
1291
- },
1292
- "CacheSecurityGroupNotFoundFault":{
1293
- "type":"structure",
1294
- "members":{
1295
- },
1296
- "error":{
1297
- "code":"CacheSecurityGroupNotFound",
1298
- "httpStatusCode":404,
1299
- "senderFault":true
1300
- },
1301
- "exception":true
1302
- },
1303
- "CacheSecurityGroupQuotaExceededFault":{
1304
- "type":"structure",
1305
- "members":{
1306
- },
1307
- "error":{
1308
- "code":"QuotaExceeded.CacheSecurityGroup",
1309
- "httpStatusCode":400,
1310
- "senderFault":true
1311
- },
1312
- "exception":true
1313
- },
1314
- "CacheSecurityGroups":{
1315
- "type":"list",
1316
- "member":{
1317
- "shape":"CacheSecurityGroup",
1318
- "locationName":"CacheSecurityGroup"
1319
- }
1320
- },
1321
- "CacheSubnetGroup":{
1322
- "type":"structure",
1323
- "members":{
1324
- "CacheSubnetGroupName":{"shape":"String"},
1325
- "CacheSubnetGroupDescription":{"shape":"String"},
1326
- "VpcId":{"shape":"String"},
1327
- "Subnets":{"shape":"SubnetList"}
1328
- },
1329
- "wrapper":true
1330
- },
1331
- "CacheSubnetGroupAlreadyExistsFault":{
1332
- "type":"structure",
1333
- "members":{
1334
- },
1335
- "error":{
1336
- "code":"CacheSubnetGroupAlreadyExists",
1337
- "httpStatusCode":400,
1338
- "senderFault":true
1339
- },
1340
- "exception":true
1341
- },
1342
- "CacheSubnetGroupInUse":{
1343
- "type":"structure",
1344
- "members":{
1345
- },
1346
- "error":{
1347
- "code":"CacheSubnetGroupInUse",
1348
- "httpStatusCode":400,
1349
- "senderFault":true
1350
- },
1351
- "exception":true
1352
- },
1353
- "CacheSubnetGroupMessage":{
1354
- "type":"structure",
1355
- "members":{
1356
- "Marker":{"shape":"String"},
1357
- "CacheSubnetGroups":{"shape":"CacheSubnetGroups"}
1358
- }
1359
- },
1360
- "CacheSubnetGroupNotFoundFault":{
1361
- "type":"structure",
1362
- "members":{
1363
- },
1364
- "error":{
1365
- "code":"CacheSubnetGroupNotFoundFault",
1366
- "httpStatusCode":400,
1367
- "senderFault":true
1368
- },
1369
- "exception":true
1370
- },
1371
- "CacheSubnetGroupQuotaExceededFault":{
1372
- "type":"structure",
1373
- "members":{
1374
- },
1375
- "error":{
1376
- "code":"CacheSubnetGroupQuotaExceeded",
1377
- "httpStatusCode":400,
1378
- "senderFault":true
1379
- },
1380
- "exception":true
1381
- },
1382
- "CacheSubnetGroups":{
1383
- "type":"list",
1384
- "member":{
1385
- "shape":"CacheSubnetGroup",
1386
- "locationName":"CacheSubnetGroup"
1387
- }
1388
- },
1389
- "CacheSubnetQuotaExceededFault":{
1390
- "type":"structure",
1391
- "members":{
1392
- },
1393
- "error":{
1394
- "code":"CacheSubnetQuotaExceededFault",
1395
- "httpStatusCode":400,
1396
- "senderFault":true
1397
- },
1398
- "exception":true
1399
- },
1400
- "ChangeType":{
1401
- "type":"string",
1402
- "enum":[
1403
- "immediate",
1404
- "requires-reboot"
1405
- ]
1406
- },
1407
- "ClusterIdList":{
1408
- "type":"list",
1409
- "member":{
1410
- "shape":"String",
1411
- "locationName":"ClusterId"
1412
- }
1413
- },
1414
- "ClusterQuotaForCustomerExceededFault":{
1415
- "type":"structure",
1416
- "members":{
1417
- },
1418
- "error":{
1419
- "code":"ClusterQuotaForCustomerExceeded",
1420
- "httpStatusCode":400,
1421
- "senderFault":true
1422
- },
1423
- "exception":true
1424
- },
1425
- "ConfigureShard":{
1426
- "type":"structure",
1427
- "required":[
1428
- "NodeGroupId",
1429
- "NewReplicaCount"
1430
- ],
1431
- "members":{
1432
- "NodeGroupId":{"shape":"AllowedNodeGroupId"},
1433
- "NewReplicaCount":{"shape":"Integer"},
1434
- "PreferredAvailabilityZones":{"shape":"PreferredAvailabilityZoneList"}
1435
- }
1436
- },
1437
- "CopySnapshotMessage":{
1438
- "type":"structure",
1439
- "required":[
1440
- "SourceSnapshotName",
1441
- "TargetSnapshotName"
1442
- ],
1443
- "members":{
1444
- "SourceSnapshotName":{"shape":"String"},
1445
- "TargetSnapshotName":{"shape":"String"},
1446
- "TargetBucket":{"shape":"String"},
1447
- "KmsKeyId":{"shape":"String"}
1448
- }
1449
- },
1450
- "CopySnapshotResult":{
1451
- "type":"structure",
1452
- "members":{
1453
- "Snapshot":{"shape":"Snapshot"}
1454
- }
1455
- },
1456
- "CreateCacheClusterMessage":{
1457
- "type":"structure",
1458
- "required":["CacheClusterId"],
1459
- "members":{
1460
- "CacheClusterId":{"shape":"String"},
1461
- "ReplicationGroupId":{"shape":"String"},
1462
- "AZMode":{"shape":"AZMode"},
1463
- "PreferredAvailabilityZone":{"shape":"String"},
1464
- "PreferredAvailabilityZones":{"shape":"PreferredAvailabilityZoneList"},
1465
- "NumCacheNodes":{"shape":"IntegerOptional"},
1466
- "CacheNodeType":{"shape":"String"},
1467
- "Engine":{"shape":"String"},
1468
- "EngineVersion":{"shape":"String"},
1469
- "CacheParameterGroupName":{"shape":"String"},
1470
- "CacheSubnetGroupName":{"shape":"String"},
1471
- "CacheSecurityGroupNames":{"shape":"CacheSecurityGroupNameList"},
1472
- "SecurityGroupIds":{"shape":"SecurityGroupIdsList"},
1473
- "Tags":{"shape":"TagList"},
1474
- "SnapshotArns":{"shape":"SnapshotArnsList"},
1475
- "SnapshotName":{"shape":"String"},
1476
- "PreferredMaintenanceWindow":{"shape":"String"},
1477
- "Port":{"shape":"IntegerOptional"},
1478
- "NotificationTopicArn":{"shape":"String"},
1479
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
1480
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
1481
- "SnapshotWindow":{"shape":"String"},
1482
- "AuthToken":{"shape":"String"}
1483
- }
1484
- },
1485
- "CreateCacheClusterResult":{
1486
- "type":"structure",
1487
- "members":{
1488
- "CacheCluster":{"shape":"CacheCluster"}
1489
- }
1490
- },
1491
- "CreateCacheParameterGroupMessage":{
1492
- "type":"structure",
1493
- "required":[
1494
- "CacheParameterGroupName",
1495
- "CacheParameterGroupFamily",
1496
- "Description"
1497
- ],
1498
- "members":{
1499
- "CacheParameterGroupName":{"shape":"String"},
1500
- "CacheParameterGroupFamily":{"shape":"String"},
1501
- "Description":{"shape":"String"}
1502
- }
1503
- },
1504
- "CreateCacheParameterGroupResult":{
1505
- "type":"structure",
1506
- "members":{
1507
- "CacheParameterGroup":{"shape":"CacheParameterGroup"}
1508
- }
1509
- },
1510
- "CreateCacheSecurityGroupMessage":{
1511
- "type":"structure",
1512
- "required":[
1513
- "CacheSecurityGroupName",
1514
- "Description"
1515
- ],
1516
- "members":{
1517
- "CacheSecurityGroupName":{"shape":"String"},
1518
- "Description":{"shape":"String"}
1519
- }
1520
- },
1521
- "CreateCacheSecurityGroupResult":{
1522
- "type":"structure",
1523
- "members":{
1524
- "CacheSecurityGroup":{"shape":"CacheSecurityGroup"}
1525
- }
1526
- },
1527
- "CreateCacheSubnetGroupMessage":{
1528
- "type":"structure",
1529
- "required":[
1530
- "CacheSubnetGroupName",
1531
- "CacheSubnetGroupDescription",
1532
- "SubnetIds"
1533
- ],
1534
- "members":{
1535
- "CacheSubnetGroupName":{"shape":"String"},
1536
- "CacheSubnetGroupDescription":{"shape":"String"},
1537
- "SubnetIds":{"shape":"SubnetIdentifierList"}
1538
- }
1539
- },
1540
- "CreateCacheSubnetGroupResult":{
1541
- "type":"structure",
1542
- "members":{
1543
- "CacheSubnetGroup":{"shape":"CacheSubnetGroup"}
1544
- }
1545
- },
1546
- "CreateReplicationGroupMessage":{
1547
- "type":"structure",
1548
- "required":[
1549
- "ReplicationGroupId",
1550
- "ReplicationGroupDescription"
1551
- ],
1552
- "members":{
1553
- "ReplicationGroupId":{"shape":"String"},
1554
- "ReplicationGroupDescription":{"shape":"String"},
1555
- "PrimaryClusterId":{"shape":"String"},
1556
- "AutomaticFailoverEnabled":{"shape":"BooleanOptional"},
1557
- "NumCacheClusters":{"shape":"IntegerOptional"},
1558
- "PreferredCacheClusterAZs":{"shape":"AvailabilityZonesList"},
1559
- "NumNodeGroups":{"shape":"IntegerOptional"},
1560
- "ReplicasPerNodeGroup":{"shape":"IntegerOptional"},
1561
- "NodeGroupConfiguration":{"shape":"NodeGroupConfigurationList"},
1562
- "CacheNodeType":{"shape":"String"},
1563
- "Engine":{"shape":"String"},
1564
- "EngineVersion":{"shape":"String"},
1565
- "CacheParameterGroupName":{"shape":"String"},
1566
- "CacheSubnetGroupName":{"shape":"String"},
1567
- "CacheSecurityGroupNames":{"shape":"CacheSecurityGroupNameList"},
1568
- "SecurityGroupIds":{"shape":"SecurityGroupIdsList"},
1569
- "Tags":{"shape":"TagList"},
1570
- "SnapshotArns":{"shape":"SnapshotArnsList"},
1571
- "SnapshotName":{"shape":"String"},
1572
- "PreferredMaintenanceWindow":{"shape":"String"},
1573
- "Port":{"shape":"IntegerOptional"},
1574
- "NotificationTopicArn":{"shape":"String"},
1575
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
1576
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
1577
- "SnapshotWindow":{"shape":"String"},
1578
- "AuthToken":{"shape":"String"},
1579
- "TransitEncryptionEnabled":{"shape":"BooleanOptional"},
1580
- "AtRestEncryptionEnabled":{"shape":"BooleanOptional"},
1581
- "KmsKeyId":{"shape":"String"}
1582
- }
1583
- },
1584
- "CreateReplicationGroupResult":{
1585
- "type":"structure",
1586
- "members":{
1587
- "ReplicationGroup":{"shape":"ReplicationGroup"}
1588
- }
1589
- },
1590
- "CreateSnapshotMessage":{
1591
- "type":"structure",
1592
- "required":["SnapshotName"],
1593
- "members":{
1594
- "ReplicationGroupId":{"shape":"String"},
1595
- "CacheClusterId":{"shape":"String"},
1596
- "SnapshotName":{"shape":"String"},
1597
- "KmsKeyId":{"shape":"String"}
1598
- }
1599
- },
1600
- "CreateSnapshotResult":{
1601
- "type":"structure",
1602
- "members":{
1603
- "Snapshot":{"shape":"Snapshot"}
1604
- }
1605
- },
1606
- "DecreaseReplicaCountMessage":{
1607
- "type":"structure",
1608
- "required":[
1609
- "ReplicationGroupId",
1610
- "ApplyImmediately"
1611
- ],
1612
- "members":{
1613
- "ReplicationGroupId":{"shape":"String"},
1614
- "NewReplicaCount":{"shape":"IntegerOptional"},
1615
- "ReplicaConfiguration":{"shape":"ReplicaConfigurationList"},
1616
- "ReplicasToRemove":{"shape":"RemoveReplicasList"},
1617
- "ApplyImmediately":{"shape":"Boolean"}
1618
- }
1619
- },
1620
- "DecreaseReplicaCountResult":{
1621
- "type":"structure",
1622
- "members":{
1623
- "ReplicationGroup":{"shape":"ReplicationGroup"}
1624
- }
1625
- },
1626
- "DeleteCacheClusterMessage":{
1627
- "type":"structure",
1628
- "required":["CacheClusterId"],
1629
- "members":{
1630
- "CacheClusterId":{"shape":"String"},
1631
- "FinalSnapshotIdentifier":{"shape":"String"}
1632
- }
1633
- },
1634
- "DeleteCacheClusterResult":{
1635
- "type":"structure",
1636
- "members":{
1637
- "CacheCluster":{"shape":"CacheCluster"}
1638
- }
1639
- },
1640
- "DeleteCacheParameterGroupMessage":{
1641
- "type":"structure",
1642
- "required":["CacheParameterGroupName"],
1643
- "members":{
1644
- "CacheParameterGroupName":{"shape":"String"}
1645
- }
1646
- },
1647
- "DeleteCacheSecurityGroupMessage":{
1648
- "type":"structure",
1649
- "required":["CacheSecurityGroupName"],
1650
- "members":{
1651
- "CacheSecurityGroupName":{"shape":"String"}
1652
- }
1653
- },
1654
- "DeleteCacheSubnetGroupMessage":{
1655
- "type":"structure",
1656
- "required":["CacheSubnetGroupName"],
1657
- "members":{
1658
- "CacheSubnetGroupName":{"shape":"String"}
1659
- }
1660
- },
1661
- "DeleteReplicationGroupMessage":{
1662
- "type":"structure",
1663
- "required":["ReplicationGroupId"],
1664
- "members":{
1665
- "ReplicationGroupId":{"shape":"String"},
1666
- "RetainPrimaryCluster":{"shape":"BooleanOptional"},
1667
- "FinalSnapshotIdentifier":{"shape":"String"}
1668
- }
1669
- },
1670
- "DeleteReplicationGroupResult":{
1671
- "type":"structure",
1672
- "members":{
1673
- "ReplicationGroup":{"shape":"ReplicationGroup"}
1674
- }
1675
- },
1676
- "DeleteSnapshotMessage":{
1677
- "type":"structure",
1678
- "required":["SnapshotName"],
1679
- "members":{
1680
- "SnapshotName":{"shape":"String"}
1681
- }
1682
- },
1683
- "DeleteSnapshotResult":{
1684
- "type":"structure",
1685
- "members":{
1686
- "Snapshot":{"shape":"Snapshot"}
1687
- }
1688
- },
1689
- "DescribeCacheClustersMessage":{
1690
- "type":"structure",
1691
- "members":{
1692
- "CacheClusterId":{"shape":"String"},
1693
- "MaxRecords":{"shape":"IntegerOptional"},
1694
- "Marker":{"shape":"String"},
1695
- "ShowCacheNodeInfo":{"shape":"BooleanOptional"},
1696
- "ShowCacheClustersNotInReplicationGroups":{"shape":"BooleanOptional"}
1697
- }
1698
- },
1699
- "DescribeCacheEngineVersionsMessage":{
1700
- "type":"structure",
1701
- "members":{
1702
- "Engine":{"shape":"String"},
1703
- "EngineVersion":{"shape":"String"},
1704
- "CacheParameterGroupFamily":{"shape":"String"},
1705
- "MaxRecords":{"shape":"IntegerOptional"},
1706
- "Marker":{"shape":"String"},
1707
- "DefaultOnly":{"shape":"Boolean"}
1708
- }
1709
- },
1710
- "DescribeCacheParameterGroupsMessage":{
1711
- "type":"structure",
1712
- "members":{
1713
- "CacheParameterGroupName":{"shape":"String"},
1714
- "MaxRecords":{"shape":"IntegerOptional"},
1715
- "Marker":{"shape":"String"}
1716
- }
1717
- },
1718
- "DescribeCacheParametersMessage":{
1719
- "type":"structure",
1720
- "required":["CacheParameterGroupName"],
1721
- "members":{
1722
- "CacheParameterGroupName":{"shape":"String"},
1723
- "Source":{"shape":"String"},
1724
- "MaxRecords":{"shape":"IntegerOptional"},
1725
- "Marker":{"shape":"String"}
1726
- }
1727
- },
1728
- "DescribeCacheSecurityGroupsMessage":{
1729
- "type":"structure",
1730
- "members":{
1731
- "CacheSecurityGroupName":{"shape":"String"},
1732
- "MaxRecords":{"shape":"IntegerOptional"},
1733
- "Marker":{"shape":"String"}
1734
- }
1735
- },
1736
- "DescribeCacheSubnetGroupsMessage":{
1737
- "type":"structure",
1738
- "members":{
1739
- "CacheSubnetGroupName":{"shape":"String"},
1740
- "MaxRecords":{"shape":"IntegerOptional"},
1741
- "Marker":{"shape":"String"}
1742
- }
1743
- },
1744
- "DescribeEngineDefaultParametersMessage":{
1745
- "type":"structure",
1746
- "required":["CacheParameterGroupFamily"],
1747
- "members":{
1748
- "CacheParameterGroupFamily":{"shape":"String"},
1749
- "MaxRecords":{"shape":"IntegerOptional"},
1750
- "Marker":{"shape":"String"}
1751
- }
1752
- },
1753
- "DescribeEngineDefaultParametersResult":{
1754
- "type":"structure",
1755
- "members":{
1756
- "EngineDefaults":{"shape":"EngineDefaults"}
1757
- }
1758
- },
1759
- "DescribeEventsMessage":{
1760
- "type":"structure",
1761
- "members":{
1762
- "SourceIdentifier":{"shape":"String"},
1763
- "SourceType":{"shape":"SourceType"},
1764
- "StartTime":{"shape":"TStamp"},
1765
- "EndTime":{"shape":"TStamp"},
1766
- "Duration":{"shape":"IntegerOptional"},
1767
- "MaxRecords":{"shape":"IntegerOptional"},
1768
- "Marker":{"shape":"String"}
1769
- }
1770
- },
1771
- "DescribeReplicationGroupsMessage":{
1772
- "type":"structure",
1773
- "members":{
1774
- "ReplicationGroupId":{"shape":"String"},
1775
- "MaxRecords":{"shape":"IntegerOptional"},
1776
- "Marker":{"shape":"String"}
1777
- }
1778
- },
1779
- "DescribeReservedCacheNodesMessage":{
1780
- "type":"structure",
1781
- "members":{
1782
- "ReservedCacheNodeId":{"shape":"String"},
1783
- "ReservedCacheNodesOfferingId":{"shape":"String"},
1784
- "CacheNodeType":{"shape":"String"},
1785
- "Duration":{"shape":"String"},
1786
- "ProductDescription":{"shape":"String"},
1787
- "OfferingType":{"shape":"String"},
1788
- "MaxRecords":{"shape":"IntegerOptional"},
1789
- "Marker":{"shape":"String"}
1790
- }
1791
- },
1792
- "DescribeReservedCacheNodesOfferingsMessage":{
1793
- "type":"structure",
1794
- "members":{
1795
- "ReservedCacheNodesOfferingId":{"shape":"String"},
1796
- "CacheNodeType":{"shape":"String"},
1797
- "Duration":{"shape":"String"},
1798
- "ProductDescription":{"shape":"String"},
1799
- "OfferingType":{"shape":"String"},
1800
- "MaxRecords":{"shape":"IntegerOptional"},
1801
- "Marker":{"shape":"String"}
1802
- }
1803
- },
1804
- "DescribeServiceUpdatesMessage":{
1805
- "type":"structure",
1806
- "members":{
1807
- "ServiceUpdateName":{"shape":"String"},
1808
- "ServiceUpdateStatus":{"shape":"ServiceUpdateStatusList"},
1809
- "MaxRecords":{"shape":"IntegerOptional"},
1810
- "Marker":{"shape":"String"}
1811
- }
1812
- },
1813
- "DescribeSnapshotsListMessage":{
1814
- "type":"structure",
1815
- "members":{
1816
- "Marker":{"shape":"String"},
1817
- "Snapshots":{"shape":"SnapshotList"}
1818
- }
1819
- },
1820
- "DescribeSnapshotsMessage":{
1821
- "type":"structure",
1822
- "members":{
1823
- "ReplicationGroupId":{"shape":"String"},
1824
- "CacheClusterId":{"shape":"String"},
1825
- "SnapshotName":{"shape":"String"},
1826
- "SnapshotSource":{"shape":"String"},
1827
- "Marker":{"shape":"String"},
1828
- "MaxRecords":{"shape":"IntegerOptional"},
1829
- "ShowNodeGroupConfig":{"shape":"BooleanOptional"}
1830
- }
1831
- },
1832
- "DescribeUpdateActionsMessage":{
1833
- "type":"structure",
1834
- "members":{
1835
- "ServiceUpdateName":{"shape":"String"},
1836
- "ReplicationGroupIds":{"shape":"ReplicationGroupIdList"},
1837
- "ServiceUpdateStatus":{"shape":"ServiceUpdateStatusList"},
1838
- "ServiceUpdateTimeRange":{"shape":"TimeRangeFilter"},
1839
- "UpdateActionStatus":{"shape":"UpdateActionStatusList"},
1840
- "ShowNodeLevelUpdateStatus":{"shape":"BooleanOptional"},
1841
- "MaxRecords":{"shape":"IntegerOptional"},
1842
- "Marker":{"shape":"String"}
1843
- }
1844
- },
1845
- "Double":{"type":"double"},
1846
- "EC2SecurityGroup":{
1847
- "type":"structure",
1848
- "members":{
1849
- "Status":{"shape":"String"},
1850
- "EC2SecurityGroupName":{"shape":"String"},
1851
- "EC2SecurityGroupOwnerId":{"shape":"String"}
1852
- }
1853
- },
1854
- "EC2SecurityGroupList":{
1855
- "type":"list",
1856
- "member":{
1857
- "shape":"EC2SecurityGroup",
1858
- "locationName":"EC2SecurityGroup"
1859
- }
1860
- },
1861
- "Endpoint":{
1862
- "type":"structure",
1863
- "members":{
1864
- "Address":{"shape":"String"},
1865
- "Port":{"shape":"Integer"}
1866
- }
1867
- },
1868
- "EngineDefaults":{
1869
- "type":"structure",
1870
- "members":{
1871
- "CacheParameterGroupFamily":{"shape":"String"},
1872
- "Marker":{"shape":"String"},
1873
- "Parameters":{"shape":"ParametersList"},
1874
- "CacheNodeTypeSpecificParameters":{"shape":"CacheNodeTypeSpecificParametersList"}
1875
- },
1876
- "wrapper":true
1877
- },
1878
- "Event":{
1879
- "type":"structure",
1880
- "members":{
1881
- "SourceIdentifier":{"shape":"String"},
1882
- "SourceType":{"shape":"SourceType"},
1883
- "Message":{"shape":"String"},
1884
- "Date":{"shape":"TStamp"}
1885
- }
1886
- },
1887
- "EventList":{
1888
- "type":"list",
1889
- "member":{
1890
- "shape":"Event",
1891
- "locationName":"Event"
1892
- }
1893
- },
1894
- "EventsMessage":{
1895
- "type":"structure",
1896
- "members":{
1897
- "Marker":{"shape":"String"},
1898
- "Events":{"shape":"EventList"}
1899
- }
1900
- },
1901
- "IncreaseReplicaCountMessage":{
1902
- "type":"structure",
1903
- "required":[
1904
- "ReplicationGroupId",
1905
- "ApplyImmediately"
1906
- ],
1907
- "members":{
1908
- "ReplicationGroupId":{"shape":"String"},
1909
- "NewReplicaCount":{"shape":"IntegerOptional"},
1910
- "ReplicaConfiguration":{"shape":"ReplicaConfigurationList"},
1911
- "ApplyImmediately":{"shape":"Boolean"}
1912
- }
1913
- },
1914
- "IncreaseReplicaCountResult":{
1915
- "type":"structure",
1916
- "members":{
1917
- "ReplicationGroup":{"shape":"ReplicationGroup"}
1918
- }
1919
- },
1920
- "InsufficientCacheClusterCapacityFault":{
1921
- "type":"structure",
1922
- "members":{
1923
- },
1924
- "error":{
1925
- "code":"InsufficientCacheClusterCapacity",
1926
- "httpStatusCode":400,
1927
- "senderFault":true
1928
- },
1929
- "exception":true
1930
- },
1931
- "Integer":{"type":"integer"},
1932
- "IntegerOptional":{"type":"integer"},
1933
- "InvalidARNFault":{
1934
- "type":"structure",
1935
- "members":{
1936
- },
1937
- "error":{
1938
- "code":"InvalidARN",
1939
- "httpStatusCode":400,
1940
- "senderFault":true
1941
- },
1942
- "exception":true
1943
- },
1944
- "InvalidCacheClusterStateFault":{
1945
- "type":"structure",
1946
- "members":{
1947
- },
1948
- "error":{
1949
- "code":"InvalidCacheClusterState",
1950
- "httpStatusCode":400,
1951
- "senderFault":true
1952
- },
1953
- "exception":true
1954
- },
1955
- "InvalidCacheParameterGroupStateFault":{
1956
- "type":"structure",
1957
- "members":{
1958
- },
1959
- "error":{
1960
- "code":"InvalidCacheParameterGroupState",
1961
- "httpStatusCode":400,
1962
- "senderFault":true
1963
- },
1964
- "exception":true
1965
- },
1966
- "InvalidCacheSecurityGroupStateFault":{
1967
- "type":"structure",
1968
- "members":{
1969
- },
1970
- "error":{
1971
- "code":"InvalidCacheSecurityGroupState",
1972
- "httpStatusCode":400,
1973
- "senderFault":true
1974
- },
1975
- "exception":true
1976
- },
1977
- "InvalidKMSKeyFault":{
1978
- "type":"structure",
1979
- "members":{
1980
- },
1981
- "error":{
1982
- "code":"InvalidKMSKeyFault",
1983
- "httpStatusCode":400,
1984
- "senderFault":true
1985
- },
1986
- "exception":true
1987
- },
1988
- "InvalidParameterCombinationException":{
1989
- "type":"structure",
1990
- "members":{
1991
- "message":{"shape":"AwsQueryErrorMessage"}
1992
- },
1993
- "error":{
1994
- "code":"InvalidParameterCombination",
1995
- "httpStatusCode":400,
1996
- "senderFault":true
1997
- },
1998
- "exception":true,
1999
- "synthetic":true
2000
- },
2001
- "InvalidParameterValueException":{
2002
- "type":"structure",
2003
- "members":{
2004
- "message":{"shape":"AwsQueryErrorMessage"}
2005
- },
2006
- "error":{
2007
- "code":"InvalidParameterValue",
2008
- "httpStatusCode":400,
2009
- "senderFault":true
2010
- },
2011
- "exception":true,
2012
- "synthetic":true
2013
- },
2014
- "InvalidReplicationGroupStateFault":{
2015
- "type":"structure",
2016
- "members":{
2017
- },
2018
- "error":{
2019
- "code":"InvalidReplicationGroupState",
2020
- "httpStatusCode":400,
2021
- "senderFault":true
2022
- },
2023
- "exception":true
2024
- },
2025
- "InvalidSnapshotStateFault":{
2026
- "type":"structure",
2027
- "members":{
2028
- },
2029
- "error":{
2030
- "code":"InvalidSnapshotState",
2031
- "httpStatusCode":400,
2032
- "senderFault":true
2033
- },
2034
- "exception":true
2035
- },
2036
- "InvalidSubnet":{
2037
- "type":"structure",
2038
- "members":{
2039
- },
2040
- "error":{
2041
- "code":"InvalidSubnet",
2042
- "httpStatusCode":400,
2043
- "senderFault":true
2044
- },
2045
- "exception":true
2046
- },
2047
- "InvalidVPCNetworkStateFault":{
2048
- "type":"structure",
2049
- "members":{
2050
- },
2051
- "error":{
2052
- "code":"InvalidVPCNetworkStateFault",
2053
- "httpStatusCode":400,
2054
- "senderFault":true
2055
- },
2056
- "exception":true
2057
- },
2058
- "KeyList":{
2059
- "type":"list",
2060
- "member":{"shape":"String"}
2061
- },
2062
- "ListAllowedNodeTypeModificationsMessage":{
2063
- "type":"structure",
2064
- "members":{
2065
- "CacheClusterId":{"shape":"String"},
2066
- "ReplicationGroupId":{"shape":"String"}
2067
- }
2068
- },
2069
- "ListTagsForResourceMessage":{
2070
- "type":"structure",
2071
- "required":["ResourceName"],
2072
- "members":{
2073
- "ResourceName":{"shape":"String"}
2074
- }
2075
- },
2076
- "ModifyCacheClusterMessage":{
2077
- "type":"structure",
2078
- "required":["CacheClusterId"],
2079
- "members":{
2080
- "CacheClusterId":{"shape":"String"},
2081
- "NumCacheNodes":{"shape":"IntegerOptional"},
2082
- "CacheNodeIdsToRemove":{"shape":"CacheNodeIdsList"},
2083
- "AZMode":{"shape":"AZMode"},
2084
- "NewAvailabilityZones":{"shape":"PreferredAvailabilityZoneList"},
2085
- "CacheSecurityGroupNames":{"shape":"CacheSecurityGroupNameList"},
2086
- "SecurityGroupIds":{"shape":"SecurityGroupIdsList"},
2087
- "PreferredMaintenanceWindow":{"shape":"String"},
2088
- "NotificationTopicArn":{"shape":"String"},
2089
- "CacheParameterGroupName":{"shape":"String"},
2090
- "NotificationTopicStatus":{"shape":"String"},
2091
- "ApplyImmediately":{"shape":"Boolean"},
2092
- "EngineVersion":{"shape":"String"},
2093
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
2094
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
2095
- "SnapshotWindow":{"shape":"String"},
2096
- "CacheNodeType":{"shape":"String"}
2097
- }
2098
- },
2099
- "ModifyCacheClusterResult":{
2100
- "type":"structure",
2101
- "members":{
2102
- "CacheCluster":{"shape":"CacheCluster"}
2103
- }
2104
- },
2105
- "ModifyCacheParameterGroupMessage":{
2106
- "type":"structure",
2107
- "required":[
2108
- "CacheParameterGroupName",
2109
- "ParameterNameValues"
2110
- ],
2111
- "members":{
2112
- "CacheParameterGroupName":{"shape":"String"},
2113
- "ParameterNameValues":{"shape":"ParameterNameValueList"}
2114
- }
2115
- },
2116
- "ModifyCacheSubnetGroupMessage":{
2117
- "type":"structure",
2118
- "required":["CacheSubnetGroupName"],
2119
- "members":{
2120
- "CacheSubnetGroupName":{"shape":"String"},
2121
- "CacheSubnetGroupDescription":{"shape":"String"},
2122
- "SubnetIds":{"shape":"SubnetIdentifierList"}
2123
- }
2124
- },
2125
- "ModifyCacheSubnetGroupResult":{
2126
- "type":"structure",
2127
- "members":{
2128
- "CacheSubnetGroup":{"shape":"CacheSubnetGroup"}
2129
- }
2130
- },
2131
- "ModifyReplicationGroupMessage":{
2132
- "type":"structure",
2133
- "required":["ReplicationGroupId"],
2134
- "members":{
2135
- "ReplicationGroupId":{"shape":"String"},
2136
- "ReplicationGroupDescription":{"shape":"String"},
2137
- "PrimaryClusterId":{"shape":"String"},
2138
- "SnapshottingClusterId":{"shape":"String"},
2139
- "AutomaticFailoverEnabled":{"shape":"BooleanOptional"},
2140
- "CacheSecurityGroupNames":{"shape":"CacheSecurityGroupNameList"},
2141
- "SecurityGroupIds":{"shape":"SecurityGroupIdsList"},
2142
- "PreferredMaintenanceWindow":{"shape":"String"},
2143
- "NotificationTopicArn":{"shape":"String"},
2144
- "CacheParameterGroupName":{"shape":"String"},
2145
- "NotificationTopicStatus":{"shape":"String"},
2146
- "ApplyImmediately":{"shape":"Boolean"},
2147
- "EngineVersion":{"shape":"String"},
2148
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
2149
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
2150
- "SnapshotWindow":{"shape":"String"},
2151
- "CacheNodeType":{"shape":"String"},
2152
- "NodeGroupId":{
2153
- "shape":"String",
2154
- "deprecated":true
2155
- }
2156
- }
2157
- },
2158
- "ModifyReplicationGroupResult":{
2159
- "type":"structure",
2160
- "members":{
2161
- "ReplicationGroup":{"shape":"ReplicationGroup"}
2162
- }
2163
- },
2164
- "ModifyReplicationGroupShardConfigurationMessage":{
2165
- "type":"structure",
2166
- "required":[
2167
- "ReplicationGroupId",
2168
- "NodeGroupCount",
2169
- "ApplyImmediately"
2170
- ],
2171
- "members":{
2172
- "ReplicationGroupId":{"shape":"String"},
2173
- "NodeGroupCount":{"shape":"Integer"},
2174
- "ApplyImmediately":{"shape":"Boolean"},
2175
- "ReshardingConfiguration":{"shape":"ReshardingConfigurationList"},
2176
- "NodeGroupsToRemove":{"shape":"NodeGroupsToRemoveList"},
2177
- "NodeGroupsToRetain":{"shape":"NodeGroupsToRetainList"}
2178
- }
2179
- },
2180
- "ModifyReplicationGroupShardConfigurationResult":{
2181
- "type":"structure",
2182
- "members":{
2183
- "ReplicationGroup":{"shape":"ReplicationGroup"}
2184
- }
2185
- },
2186
- "NoOperationFault":{
2187
- "type":"structure",
2188
- "members":{
2189
- },
2190
- "error":{
2191
- "code":"NoOperationFault",
2192
- "httpStatusCode":400,
2193
- "senderFault":true
2194
- },
2195
- "exception":true
2196
- },
2197
- "NodeGroup":{
2198
- "type":"structure",
2199
- "members":{
2200
- "NodeGroupId":{"shape":"String"},
2201
- "Status":{"shape":"String"},
2202
- "PrimaryEndpoint":{"shape":"Endpoint"},
2203
- "ReaderEndpoint":{"shape":"Endpoint"},
2204
- "Slots":{"shape":"String"},
2205
- "NodeGroupMembers":{"shape":"NodeGroupMemberList"}
2206
- }
2207
- },
2208
- "NodeGroupConfiguration":{
2209
- "type":"structure",
2210
- "members":{
2211
- "NodeGroupId":{"shape":"AllowedNodeGroupId"},
2212
- "Slots":{"shape":"String"},
2213
- "ReplicaCount":{"shape":"IntegerOptional"},
2214
- "PrimaryAvailabilityZone":{"shape":"String"},
2215
- "ReplicaAvailabilityZones":{"shape":"AvailabilityZonesList"}
2216
- }
2217
- },
2218
- "NodeGroupConfigurationList":{
2219
- "type":"list",
2220
- "member":{
2221
- "shape":"NodeGroupConfiguration",
2222
- "locationName":"NodeGroupConfiguration"
2223
- }
2224
- },
2225
- "NodeGroupList":{
2226
- "type":"list",
2227
- "member":{
2228
- "shape":"NodeGroup",
2229
- "locationName":"NodeGroup"
2230
- }
2231
- },
2232
- "NodeGroupMember":{
2233
- "type":"structure",
2234
- "members":{
2235
- "CacheClusterId":{"shape":"String"},
2236
- "CacheNodeId":{"shape":"String"},
2237
- "ReadEndpoint":{"shape":"Endpoint"},
2238
- "PreferredAvailabilityZone":{"shape":"String"},
2239
- "CurrentRole":{"shape":"String"}
2240
- }
2241
- },
2242
- "NodeGroupMemberList":{
2243
- "type":"list",
2244
- "member":{
2245
- "shape":"NodeGroupMember",
2246
- "locationName":"NodeGroupMember"
2247
- }
2248
- },
2249
- "NodeGroupMemberUpdateStatus":{
2250
- "type":"structure",
2251
- "members":{
2252
- "CacheClusterId":{"shape":"String"},
2253
- "CacheNodeId":{"shape":"String"},
2254
- "NodeUpdateStatus":{"shape":"NodeUpdateStatus"},
2255
- "NodeDeletionDate":{"shape":"TStamp"},
2256
- "NodeUpdateStartDate":{"shape":"TStamp"},
2257
- "NodeUpdateEndDate":{"shape":"TStamp"},
2258
- "NodeUpdateInitiatedBy":{"shape":"NodeUpdateInitiatedBy"},
2259
- "NodeUpdateInitiatedDate":{"shape":"TStamp"},
2260
- "NodeUpdateStatusModifiedDate":{"shape":"TStamp"}
2261
- }
2262
- },
2263
- "NodeGroupMemberUpdateStatusList":{
2264
- "type":"list",
2265
- "member":{
2266
- "shape":"NodeGroupMemberUpdateStatus",
2267
- "locationName":"NodeGroupMemberUpdateStatus"
2268
- }
2269
- },
2270
- "NodeGroupNotFoundFault":{
2271
- "type":"structure",
2272
- "members":{
2273
- },
2274
- "error":{
2275
- "code":"NodeGroupNotFoundFault",
2276
- "httpStatusCode":404,
2277
- "senderFault":true
2278
- },
2279
- "exception":true
2280
- },
2281
- "NodeGroupUpdateStatus":{
2282
- "type":"structure",
2283
- "members":{
2284
- "NodeGroupId":{"shape":"String"},
2285
- "NodeGroupMemberUpdateStatus":{"shape":"NodeGroupMemberUpdateStatusList"}
2286
- }
2287
- },
2288
- "NodeGroupUpdateStatusList":{
2289
- "type":"list",
2290
- "member":{
2291
- "shape":"NodeGroupUpdateStatus",
2292
- "locationName":"NodeGroupUpdateStatus"
2293
- }
2294
- },
2295
- "NodeGroupsPerReplicationGroupQuotaExceededFault":{
2296
- "type":"structure",
2297
- "members":{
2298
- },
2299
- "error":{
2300
- "code":"NodeGroupsPerReplicationGroupQuotaExceeded",
2301
- "httpStatusCode":400,
2302
- "senderFault":true
2303
- },
2304
- "exception":true
2305
- },
2306
- "NodeGroupsToRemoveList":{
2307
- "type":"list",
2308
- "member":{
2309
- "shape":"AllowedNodeGroupId",
2310
- "locationName":"NodeGroupToRemove"
2311
- }
2312
- },
2313
- "NodeGroupsToRetainList":{
2314
- "type":"list",
2315
- "member":{
2316
- "shape":"AllowedNodeGroupId",
2317
- "locationName":"NodeGroupToRetain"
2318
- }
2319
- },
2320
- "NodeQuotaForClusterExceededFault":{
2321
- "type":"structure",
2322
- "members":{
2323
- },
2324
- "error":{
2325
- "code":"NodeQuotaForClusterExceeded",
2326
- "httpStatusCode":400,
2327
- "senderFault":true
2328
- },
2329
- "exception":true
2330
- },
2331
- "NodeQuotaForCustomerExceededFault":{
2332
- "type":"structure",
2333
- "members":{
2334
- },
2335
- "error":{
2336
- "code":"NodeQuotaForCustomerExceeded",
2337
- "httpStatusCode":400,
2338
- "senderFault":true
2339
- },
2340
- "exception":true
2341
- },
2342
- "NodeSnapshot":{
2343
- "type":"structure",
2344
- "members":{
2345
- "CacheClusterId":{"shape":"String"},
2346
- "NodeGroupId":{"shape":"String"},
2347
- "CacheNodeId":{"shape":"String"},
2348
- "NodeGroupConfiguration":{"shape":"NodeGroupConfiguration"},
2349
- "CacheSize":{"shape":"String"},
2350
- "CacheNodeCreateTime":{"shape":"TStamp"},
2351
- "SnapshotCreateTime":{"shape":"TStamp"}
2352
- },
2353
- "wrapper":true
2354
- },
2355
- "NodeSnapshotList":{
2356
- "type":"list",
2357
- "member":{
2358
- "shape":"NodeSnapshot",
2359
- "locationName":"NodeSnapshot"
2360
- }
2361
- },
2362
- "NodeTypeList":{
2363
- "type":"list",
2364
- "member":{"shape":"String"}
2365
- },
2366
- "NodeUpdateInitiatedBy":{
2367
- "type":"string",
2368
- "enum":[
2369
- "system",
2370
- "customer"
2371
- ]
2372
- },
2373
- "NodeUpdateStatus":{
2374
- "type":"string",
2375
- "enum":[
2376
- "not-applied",
2377
- "waiting-to-start",
2378
- "in-progress",
2379
- "stopping",
2380
- "stopped",
2381
- "complete"
2382
- ]
2383
- },
2384
- "NotificationConfiguration":{
2385
- "type":"structure",
2386
- "members":{
2387
- "TopicArn":{"shape":"String"},
2388
- "TopicStatus":{"shape":"String"}
2389
- }
2390
- },
2391
- "Parameter":{
2392
- "type":"structure",
2393
- "members":{
2394
- "ParameterName":{"shape":"String"},
2395
- "ParameterValue":{"shape":"String"},
2396
- "Description":{"shape":"String"},
2397
- "Source":{"shape":"String"},
2398
- "DataType":{"shape":"String"},
2399
- "AllowedValues":{"shape":"String"},
2400
- "IsModifiable":{"shape":"Boolean"},
2401
- "MinimumEngineVersion":{"shape":"String"},
2402
- "ChangeType":{"shape":"ChangeType"}
2403
- }
2404
- },
2405
- "ParameterNameValue":{
2406
- "type":"structure",
2407
- "members":{
2408
- "ParameterName":{"shape":"String"},
2409
- "ParameterValue":{"shape":"String"}
2410
- }
2411
- },
2412
- "ParameterNameValueList":{
2413
- "type":"list",
2414
- "member":{
2415
- "shape":"ParameterNameValue",
2416
- "locationName":"ParameterNameValue"
2417
- }
2418
- },
2419
- "ParametersList":{
2420
- "type":"list",
2421
- "member":{
2422
- "shape":"Parameter",
2423
- "locationName":"Parameter"
2424
- }
2425
- },
2426
- "PendingAutomaticFailoverStatus":{
2427
- "type":"string",
2428
- "enum":[
2429
- "enabled",
2430
- "disabled"
2431
- ]
2432
- },
2433
- "PendingModifiedValues":{
2434
- "type":"structure",
2435
- "members":{
2436
- "NumCacheNodes":{"shape":"IntegerOptional"},
2437
- "CacheNodeIdsToRemove":{"shape":"CacheNodeIdsList"},
2438
- "EngineVersion":{"shape":"String"},
2439
- "CacheNodeType":{"shape":"String"}
2440
- }
2441
- },
2442
- "PreferredAvailabilityZoneList":{
2443
- "type":"list",
2444
- "member":{
2445
- "shape":"String",
2446
- "locationName":"PreferredAvailabilityZone"
2447
- }
2448
- },
2449
- "ProcessedUpdateAction":{
2450
- "type":"structure",
2451
- "members":{
2452
- "ReplicationGroupId":{"shape":"String"},
2453
- "ServiceUpdateName":{"shape":"String"},
2454
- "UpdateActionStatus":{"shape":"UpdateActionStatus"}
2455
- }
2456
- },
2457
- "ProcessedUpdateActionList":{
2458
- "type":"list",
2459
- "member":{
2460
- "shape":"ProcessedUpdateAction",
2461
- "locationName":"ProcessedUpdateAction"
2462
- }
2463
- },
2464
- "PurchaseReservedCacheNodesOfferingMessage":{
2465
- "type":"structure",
2466
- "required":["ReservedCacheNodesOfferingId"],
2467
- "members":{
2468
- "ReservedCacheNodesOfferingId":{"shape":"String"},
2469
- "ReservedCacheNodeId":{"shape":"String"},
2470
- "CacheNodeCount":{"shape":"IntegerOptional"}
2471
- }
2472
- },
2473
- "PurchaseReservedCacheNodesOfferingResult":{
2474
- "type":"structure",
2475
- "members":{
2476
- "ReservedCacheNode":{"shape":"ReservedCacheNode"}
2477
- }
2478
- },
2479
- "RebootCacheClusterMessage":{
2480
- "type":"structure",
2481
- "required":[
2482
- "CacheClusterId",
2483
- "CacheNodeIdsToReboot"
2484
- ],
2485
- "members":{
2486
- "CacheClusterId":{"shape":"String"},
2487
- "CacheNodeIdsToReboot":{"shape":"CacheNodeIdsList"}
2488
- }
2489
- },
2490
- "RebootCacheClusterResult":{
2491
- "type":"structure",
2492
- "members":{
2493
- "CacheCluster":{"shape":"CacheCluster"}
2494
- }
2495
- },
2496
- "RecurringCharge":{
2497
- "type":"structure",
2498
- "members":{
2499
- "RecurringChargeAmount":{"shape":"Double"},
2500
- "RecurringChargeFrequency":{"shape":"String"}
2501
- },
2502
- "wrapper":true
2503
- },
2504
- "RecurringChargeList":{
2505
- "type":"list",
2506
- "member":{
2507
- "shape":"RecurringCharge",
2508
- "locationName":"RecurringCharge"
2509
- }
2510
- },
2511
- "RemoveReplicasList":{
2512
- "type":"list",
2513
- "member":{"shape":"String"}
2514
- },
2515
- "RemoveTagsFromResourceMessage":{
2516
- "type":"structure",
2517
- "required":[
2518
- "ResourceName",
2519
- "TagKeys"
2520
- ],
2521
- "members":{
2522
- "ResourceName":{"shape":"String"},
2523
- "TagKeys":{"shape":"KeyList"}
2524
- }
2525
- },
2526
- "ReplicaConfigurationList":{
2527
- "type":"list",
2528
- "member":{
2529
- "shape":"ConfigureShard",
2530
- "locationName":"ConfigureShard"
2531
- }
2532
- },
2533
- "ReplicationGroup":{
2534
- "type":"structure",
2535
- "members":{
2536
- "ReplicationGroupId":{"shape":"String"},
2537
- "Description":{"shape":"String"},
2538
- "Status":{"shape":"String"},
2539
- "PendingModifiedValues":{"shape":"ReplicationGroupPendingModifiedValues"},
2540
- "MemberClusters":{"shape":"ClusterIdList"},
2541
- "NodeGroups":{"shape":"NodeGroupList"},
2542
- "SnapshottingClusterId":{"shape":"String"},
2543
- "AutomaticFailover":{"shape":"AutomaticFailoverStatus"},
2544
- "ConfigurationEndpoint":{"shape":"Endpoint"},
2545
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
2546
- "SnapshotWindow":{"shape":"String"},
2547
- "ClusterEnabled":{"shape":"BooleanOptional"},
2548
- "CacheNodeType":{"shape":"String"},
2549
- "AuthTokenEnabled":{"shape":"BooleanOptional"},
2550
- "TransitEncryptionEnabled":{"shape":"BooleanOptional"},
2551
- "AtRestEncryptionEnabled":{"shape":"BooleanOptional"},
2552
- "KmsKeyId":{"shape":"String"}
2553
- },
2554
- "wrapper":true
2555
- },
2556
- "ReplicationGroupAlreadyExistsFault":{
2557
- "type":"structure",
2558
- "members":{
2559
- },
2560
- "error":{
2561
- "code":"ReplicationGroupAlreadyExists",
2562
- "httpStatusCode":400,
2563
- "senderFault":true
2564
- },
2565
- "exception":true
2566
- },
2567
- "ReplicationGroupIdList":{
2568
- "type":"list",
2569
- "member":{"shape":"String"},
2570
- "max":20
2571
- },
2572
- "ReplicationGroupList":{
2573
- "type":"list",
2574
- "member":{
2575
- "shape":"ReplicationGroup",
2576
- "locationName":"ReplicationGroup"
2577
- }
2578
- },
2579
- "ReplicationGroupMessage":{
2580
- "type":"structure",
2581
- "members":{
2582
- "Marker":{"shape":"String"},
2583
- "ReplicationGroups":{"shape":"ReplicationGroupList"}
2584
- }
2585
- },
2586
- "ReplicationGroupNotFoundFault":{
2587
- "type":"structure",
2588
- "members":{
2589
- },
2590
- "error":{
2591
- "code":"ReplicationGroupNotFoundFault",
2592
- "httpStatusCode":404,
2593
- "senderFault":true
2594
- },
2595
- "exception":true
2596
- },
2597
- "ReplicationGroupPendingModifiedValues":{
2598
- "type":"structure",
2599
- "members":{
2600
- "PrimaryClusterId":{"shape":"String"},
2601
- "AutomaticFailoverStatus":{"shape":"PendingAutomaticFailoverStatus"},
2602
- "Resharding":{"shape":"ReshardingStatus"}
2603
- }
2604
- },
2605
- "ReservedCacheNode":{
2606
- "type":"structure",
2607
- "members":{
2608
- "ReservedCacheNodeId":{"shape":"String"},
2609
- "ReservedCacheNodesOfferingId":{"shape":"String"},
2610
- "CacheNodeType":{"shape":"String"},
2611
- "StartTime":{"shape":"TStamp"},
2612
- "Duration":{"shape":"Integer"},
2613
- "FixedPrice":{"shape":"Double"},
2614
- "UsagePrice":{"shape":"Double"},
2615
- "CacheNodeCount":{"shape":"Integer"},
2616
- "ProductDescription":{"shape":"String"},
2617
- "OfferingType":{"shape":"String"},
2618
- "State":{"shape":"String"},
2619
- "RecurringCharges":{"shape":"RecurringChargeList"},
2620
- "ReservationARN":{"shape":"String"}
2621
- },
2622
- "wrapper":true
2623
- },
2624
- "ReservedCacheNodeAlreadyExistsFault":{
2625
- "type":"structure",
2626
- "members":{
2627
- },
2628
- "error":{
2629
- "code":"ReservedCacheNodeAlreadyExists",
2630
- "httpStatusCode":404,
2631
- "senderFault":true
2632
- },
2633
- "exception":true
2634
- },
2635
- "ReservedCacheNodeList":{
2636
- "type":"list",
2637
- "member":{
2638
- "shape":"ReservedCacheNode",
2639
- "locationName":"ReservedCacheNode"
2640
- }
2641
- },
2642
- "ReservedCacheNodeMessage":{
2643
- "type":"structure",
2644
- "members":{
2645
- "Marker":{"shape":"String"},
2646
- "ReservedCacheNodes":{"shape":"ReservedCacheNodeList"}
2647
- }
2648
- },
2649
- "ReservedCacheNodeNotFoundFault":{
2650
- "type":"structure",
2651
- "members":{
2652
- },
2653
- "error":{
2654
- "code":"ReservedCacheNodeNotFound",
2655
- "httpStatusCode":404,
2656
- "senderFault":true
2657
- },
2658
- "exception":true
2659
- },
2660
- "ReservedCacheNodeQuotaExceededFault":{
2661
- "type":"structure",
2662
- "members":{
2663
- },
2664
- "error":{
2665
- "code":"ReservedCacheNodeQuotaExceeded",
2666
- "httpStatusCode":400,
2667
- "senderFault":true
2668
- },
2669
- "exception":true
2670
- },
2671
- "ReservedCacheNodesOffering":{
2672
- "type":"structure",
2673
- "members":{
2674
- "ReservedCacheNodesOfferingId":{"shape":"String"},
2675
- "CacheNodeType":{"shape":"String"},
2676
- "Duration":{"shape":"Integer"},
2677
- "FixedPrice":{"shape":"Double"},
2678
- "UsagePrice":{"shape":"Double"},
2679
- "ProductDescription":{"shape":"String"},
2680
- "OfferingType":{"shape":"String"},
2681
- "RecurringCharges":{"shape":"RecurringChargeList"}
2682
- },
2683
- "wrapper":true
2684
- },
2685
- "ReservedCacheNodesOfferingList":{
2686
- "type":"list",
2687
- "member":{
2688
- "shape":"ReservedCacheNodesOffering",
2689
- "locationName":"ReservedCacheNodesOffering"
2690
- }
2691
- },
2692
- "ReservedCacheNodesOfferingMessage":{
2693
- "type":"structure",
2694
- "members":{
2695
- "Marker":{"shape":"String"},
2696
- "ReservedCacheNodesOfferings":{"shape":"ReservedCacheNodesOfferingList"}
2697
- }
2698
- },
2699
- "ReservedCacheNodesOfferingNotFoundFault":{
2700
- "type":"structure",
2701
- "members":{
2702
- },
2703
- "error":{
2704
- "code":"ReservedCacheNodesOfferingNotFound",
2705
- "httpStatusCode":404,
2706
- "senderFault":true
2707
- },
2708
- "exception":true
2709
- },
2710
- "ResetCacheParameterGroupMessage":{
2711
- "type":"structure",
2712
- "required":["CacheParameterGroupName"],
2713
- "members":{
2714
- "CacheParameterGroupName":{"shape":"String"},
2715
- "ResetAllParameters":{"shape":"Boolean"},
2716
- "ParameterNameValues":{"shape":"ParameterNameValueList"}
2717
- }
2718
- },
2719
- "ReshardingConfiguration":{
2720
- "type":"structure",
2721
- "members":{
2722
- "NodeGroupId":{"shape":"AllowedNodeGroupId"},
2723
- "PreferredAvailabilityZones":{"shape":"AvailabilityZonesList"}
2724
- }
2725
- },
2726
- "ReshardingConfigurationList":{
2727
- "type":"list",
2728
- "member":{
2729
- "shape":"ReshardingConfiguration",
2730
- "locationName":"ReshardingConfiguration"
2731
- }
2732
- },
2733
- "ReshardingStatus":{
2734
- "type":"structure",
2735
- "members":{
2736
- "SlotMigration":{"shape":"SlotMigration"}
2737
- }
2738
- },
2739
- "RevokeCacheSecurityGroupIngressMessage":{
2740
- "type":"structure",
2741
- "required":[
2742
- "CacheSecurityGroupName",
2743
- "EC2SecurityGroupName",
2744
- "EC2SecurityGroupOwnerId"
2745
- ],
2746
- "members":{
2747
- "CacheSecurityGroupName":{"shape":"String"},
2748
- "EC2SecurityGroupName":{"shape":"String"},
2749
- "EC2SecurityGroupOwnerId":{"shape":"String"}
2750
- }
2751
- },
2752
- "RevokeCacheSecurityGroupIngressResult":{
2753
- "type":"structure",
2754
- "members":{
2755
- "CacheSecurityGroup":{"shape":"CacheSecurityGroup"}
2756
- }
2757
- },
2758
- "SecurityGroupIdsList":{
2759
- "type":"list",
2760
- "member":{
2761
- "shape":"String",
2762
- "locationName":"SecurityGroupId"
2763
- }
2764
- },
2765
- "SecurityGroupMembership":{
2766
- "type":"structure",
2767
- "members":{
2768
- "SecurityGroupId":{"shape":"String"},
2769
- "Status":{"shape":"String"}
2770
- }
2771
- },
2772
- "SecurityGroupMembershipList":{
2773
- "type":"list",
2774
- "member":{"shape":"SecurityGroupMembership"}
2775
- },
2776
- "ServiceLinkedRoleNotFoundFault":{
2777
- "type":"structure",
2778
- "members":{
2779
- },
2780
- "error":{
2781
- "code":"ServiceLinkedRoleNotFoundFault",
2782
- "httpStatusCode":400,
2783
- "senderFault":true
2784
- },
2785
- "exception":true
2786
- },
2787
- "ServiceUpdate":{
2788
- "type":"structure",
2789
- "members":{
2790
- "ServiceUpdateName":{"shape":"String"},
2791
- "ServiceUpdateReleaseDate":{"shape":"TStamp"},
2792
- "ServiceUpdateEndDate":{"shape":"TStamp"},
2793
- "ServiceUpdateSeverity":{"shape":"ServiceUpdateSeverity"},
2794
- "ServiceUpdateRecommendedApplyByDate":{"shape":"TStamp"},
2795
- "ServiceUpdateStatus":{"shape":"ServiceUpdateStatus"},
2796
- "ServiceUpdateDescription":{"shape":"String"},
2797
- "ServiceUpdateType":{"shape":"ServiceUpdateType"},
2798
- "Engine":{"shape":"String"},
2799
- "EngineVersion":{"shape":"String"},
2800
- "AutoUpdateAfterRecommendedApplyByDate":{"shape":"BooleanOptional"},
2801
- "EstimatedUpdateTime":{"shape":"String"}
2802
- }
2803
- },
2804
- "ServiceUpdateList":{
2805
- "type":"list",
2806
- "member":{
2807
- "shape":"ServiceUpdate",
2808
- "locationName":"ServiceUpdate"
2809
- }
2810
- },
2811
- "ServiceUpdateNotFoundFault":{
2812
- "type":"structure",
2813
- "members":{
2814
- },
2815
- "error":{
2816
- "code":"ServiceUpdateNotFoundFault",
2817
- "httpStatusCode":404,
2818
- "senderFault":true
2819
- },
2820
- "exception":true
2821
- },
2822
- "ServiceUpdateSeverity":{
2823
- "type":"string",
2824
- "enum":[
2825
- "critical",
2826
- "important",
2827
- "medium",
2828
- "low"
2829
- ]
2830
- },
2831
- "ServiceUpdateStatus":{
2832
- "type":"string",
2833
- "enum":[
2834
- "available",
2835
- "cancelled",
2836
- "expired"
2837
- ]
2838
- },
2839
- "ServiceUpdateStatusList":{
2840
- "type":"list",
2841
- "member":{"shape":"ServiceUpdateStatus"},
2842
- "max":3
2843
- },
2844
- "ServiceUpdateType":{
2845
- "type":"string",
2846
- "enum":["security-update"]
2847
- },
2848
- "ServiceUpdatesMessage":{
2849
- "type":"structure",
2850
- "members":{
2851
- "Marker":{"shape":"String"},
2852
- "ServiceUpdates":{"shape":"ServiceUpdateList"}
2853
- }
2854
- },
2855
- "SlaMet":{
2856
- "type":"string",
2857
- "enum":[
2858
- "yes",
2859
- "no",
2860
- "n/a"
2861
- ]
2862
- },
2863
- "SlotMigration":{
2864
- "type":"structure",
2865
- "members":{
2866
- "ProgressPercentage":{"shape":"Double"}
2867
- }
2868
- },
2869
- "Snapshot":{
2870
- "type":"structure",
2871
- "members":{
2872
- "SnapshotName":{"shape":"String"},
2873
- "ReplicationGroupId":{"shape":"String"},
2874
- "ReplicationGroupDescription":{"shape":"String"},
2875
- "CacheClusterId":{"shape":"String"},
2876
- "SnapshotStatus":{"shape":"String"},
2877
- "SnapshotSource":{"shape":"String"},
2878
- "CacheNodeType":{"shape":"String"},
2879
- "Engine":{"shape":"String"},
2880
- "EngineVersion":{"shape":"String"},
2881
- "NumCacheNodes":{"shape":"IntegerOptional"},
2882
- "PreferredAvailabilityZone":{"shape":"String"},
2883
- "CacheClusterCreateTime":{"shape":"TStamp"},
2884
- "PreferredMaintenanceWindow":{"shape":"String"},
2885
- "TopicArn":{"shape":"String"},
2886
- "Port":{"shape":"IntegerOptional"},
2887
- "CacheParameterGroupName":{"shape":"String"},
2888
- "CacheSubnetGroupName":{"shape":"String"},
2889
- "VpcId":{"shape":"String"},
2890
- "AutoMinorVersionUpgrade":{"shape":"Boolean"},
2891
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
2892
- "SnapshotWindow":{"shape":"String"},
2893
- "NumNodeGroups":{"shape":"IntegerOptional"},
2894
- "AutomaticFailover":{"shape":"AutomaticFailoverStatus"},
2895
- "NodeSnapshots":{"shape":"NodeSnapshotList"},
2896
- "KmsKeyId":{"shape":"String"}
2897
- },
2898
- "wrapper":true
2899
- },
2900
- "SnapshotAlreadyExistsFault":{
2901
- "type":"structure",
2902
- "members":{
2903
- },
2904
- "error":{
2905
- "code":"SnapshotAlreadyExistsFault",
2906
- "httpStatusCode":400,
2907
- "senderFault":true
2908
- },
2909
- "exception":true
2910
- },
2911
- "SnapshotArnsList":{
2912
- "type":"list",
2913
- "member":{
2914
- "shape":"String",
2915
- "locationName":"SnapshotArn"
2916
- }
2917
- },
2918
- "SnapshotFeatureNotSupportedFault":{
2919
- "type":"structure",
2920
- "members":{
2921
- },
2922
- "error":{
2923
- "code":"SnapshotFeatureNotSupportedFault",
2924
- "httpStatusCode":400,
2925
- "senderFault":true
2926
- },
2927
- "exception":true
2928
- },
2929
- "SnapshotList":{
2930
- "type":"list",
2931
- "member":{
2932
- "shape":"Snapshot",
2933
- "locationName":"Snapshot"
2934
- }
2935
- },
2936
- "SnapshotNotFoundFault":{
2937
- "type":"structure",
2938
- "members":{
2939
- },
2940
- "error":{
2941
- "code":"SnapshotNotFoundFault",
2942
- "httpStatusCode":404,
2943
- "senderFault":true
2944
- },
2945
- "exception":true
2946
- },
2947
- "SnapshotQuotaExceededFault":{
2948
- "type":"structure",
2949
- "members":{
2950
- },
2951
- "error":{
2952
- "code":"SnapshotQuotaExceededFault",
2953
- "httpStatusCode":400,
2954
- "senderFault":true
2955
- },
2956
- "exception":true
2957
- },
2958
- "SourceType":{
2959
- "type":"string",
2960
- "enum":[
2961
- "cache-cluster",
2962
- "cache-parameter-group",
2963
- "cache-security-group",
2964
- "cache-subnet-group",
2965
- "replication-group"
2966
- ]
2967
- },
2968
- "String":{"type":"string"},
2969
- "Subnet":{
2970
- "type":"structure",
2971
- "members":{
2972
- "SubnetIdentifier":{"shape":"String"},
2973
- "SubnetAvailabilityZone":{"shape":"AvailabilityZone"}
2974
- }
2975
- },
2976
- "SubnetIdentifierList":{
2977
- "type":"list",
2978
- "member":{
2979
- "shape":"String",
2980
- "locationName":"SubnetIdentifier"
2981
- }
2982
- },
2983
- "SubnetInUse":{
2984
- "type":"structure",
2985
- "members":{
2986
- },
2987
- "error":{
2988
- "code":"SubnetInUse",
2989
- "httpStatusCode":400,
2990
- "senderFault":true
2991
- },
2992
- "exception":true
2993
- },
2994
- "SubnetList":{
2995
- "type":"list",
2996
- "member":{
2997
- "shape":"Subnet",
2998
- "locationName":"Subnet"
2999
- }
3000
- },
3001
- "TStamp":{"type":"timestamp"},
3002
- "Tag":{
3003
- "type":"structure",
3004
- "members":{
3005
- "Key":{"shape":"String"},
3006
- "Value":{"shape":"String"}
3007
- }
3008
- },
3009
- "TagList":{
3010
- "type":"list",
3011
- "member":{
3012
- "shape":"Tag",
3013
- "locationName":"Tag"
3014
- }
3015
- },
3016
- "TagListMessage":{
3017
- "type":"structure",
3018
- "members":{
3019
- "TagList":{"shape":"TagList"}
3020
- }
3021
- },
3022
- "TagNotFoundFault":{
3023
- "type":"structure",
3024
- "members":{
3025
- },
3026
- "error":{
3027
- "code":"TagNotFound",
3028
- "httpStatusCode":404,
3029
- "senderFault":true
3030
- },
3031
- "exception":true
3032
- },
3033
- "TagQuotaPerResourceExceeded":{
3034
- "type":"structure",
3035
- "members":{
3036
- },
3037
- "error":{
3038
- "code":"TagQuotaPerResourceExceeded",
3039
- "httpStatusCode":400,
3040
- "senderFault":true
3041
- },
3042
- "exception":true
3043
- },
3044
- "TestFailoverMessage":{
3045
- "type":"structure",
3046
- "required":[
3047
- "ReplicationGroupId",
3048
- "NodeGroupId"
3049
- ],
3050
- "members":{
3051
- "ReplicationGroupId":{"shape":"String"},
3052
- "NodeGroupId":{"shape":"AllowedNodeGroupId"}
3053
- }
3054
- },
3055
- "TestFailoverNotAvailableFault":{
3056
- "type":"structure",
3057
- "members":{
3058
- },
3059
- "error":{
3060
- "code":"TestFailoverNotAvailableFault",
3061
- "httpStatusCode":400,
3062
- "senderFault":true
3063
- },
3064
- "exception":true
3065
- },
3066
- "TestFailoverResult":{
3067
- "type":"structure",
3068
- "members":{
3069
- "ReplicationGroup":{"shape":"ReplicationGroup"}
3070
- }
3071
- },
3072
- "TimeRangeFilter":{
3073
- "type":"structure",
3074
- "members":{
3075
- "StartTime":{"shape":"TStamp"},
3076
- "EndTime":{"shape":"TStamp"}
3077
- }
3078
- },
3079
- "UnprocessedUpdateAction":{
3080
- "type":"structure",
3081
- "members":{
3082
- "ReplicationGroupId":{"shape":"String"},
3083
- "ServiceUpdateName":{"shape":"String"},
3084
- "ErrorType":{"shape":"String"},
3085
- "ErrorMessage":{"shape":"String"}
3086
- }
3087
- },
3088
- "UnprocessedUpdateActionList":{
3089
- "type":"list",
3090
- "member":{
3091
- "shape":"UnprocessedUpdateAction",
3092
- "locationName":"UnprocessedUpdateAction"
3093
- }
3094
- },
3095
- "UpdateAction":{
3096
- "type":"structure",
3097
- "members":{
3098
- "ReplicationGroupId":{"shape":"String"},
3099
- "ServiceUpdateName":{"shape":"String"},
3100
- "ServiceUpdateReleaseDate":{"shape":"TStamp"},
3101
- "ServiceUpdateSeverity":{"shape":"ServiceUpdateSeverity"},
3102
- "ServiceUpdateStatus":{"shape":"ServiceUpdateStatus"},
3103
- "ServiceUpdateRecommendedApplyByDate":{"shape":"TStamp"},
3104
- "ServiceUpdateType":{"shape":"ServiceUpdateType"},
3105
- "UpdateActionAvailableDate":{"shape":"TStamp"},
3106
- "UpdateActionStatus":{"shape":"UpdateActionStatus"},
3107
- "NodesUpdated":{"shape":"String"},
3108
- "UpdateActionStatusModifiedDate":{"shape":"TStamp"},
3109
- "SlaMet":{"shape":"SlaMet"},
3110
- "NodeGroupUpdateStatus":{"shape":"NodeGroupUpdateStatusList"},
3111
- "EstimatedUpdateTime":{"shape":"String"}
3112
- }
3113
- },
3114
- "UpdateActionList":{
3115
- "type":"list",
3116
- "member":{
3117
- "shape":"UpdateAction",
3118
- "locationName":"UpdateAction"
3119
- }
3120
- },
3121
- "UpdateActionResultsMessage":{
3122
- "type":"structure",
3123
- "members":{
3124
- "ProcessedUpdateActions":{"shape":"ProcessedUpdateActionList"},
3125
- "UnprocessedUpdateActions":{"shape":"UnprocessedUpdateActionList"}
3126
- }
3127
- },
3128
- "UpdateActionStatus":{
3129
- "type":"string",
3130
- "enum":[
3131
- "not-applied",
3132
- "waiting-to-start",
3133
- "in-progress",
3134
- "stopping",
3135
- "stopped",
3136
- "complete"
3137
- ]
3138
- },
3139
- "UpdateActionStatusList":{
3140
- "type":"list",
3141
- "member":{"shape":"UpdateActionStatus"},
3142
- "max":6
3143
- },
3144
- "UpdateActionsMessage":{
3145
- "type":"structure",
3146
- "members":{
3147
- "Marker":{"shape":"String"},
3148
- "UpdateActions":{"shape":"UpdateActionList"}
3149
- }
3150
- }
3151
- }
3152
- }