aws-sdk-core 2.11.632 → 3.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1328) hide show
  1. checksums.yaml +5 -5
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3541 -3615
  4. data/lib/aws-sdk-core.rb +64 -615
  5. data/lib/aws-sdk-core/client_stubs.rb +3 -64
  6. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  7. data/lib/aws-sdk-core/credential_provider_chain.rb +1 -2
  8. data/lib/aws-sdk-core/eager_loader.rb +0 -1
  9. data/lib/aws-sdk-core/ecs_credentials.rb +10 -14
  10. data/lib/aws-sdk-core/errors.rb +12 -34
  11. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  12. data/lib/aws-sdk-core/instance_profile_credentials.rb +19 -126
  13. data/lib/aws-sdk-core/json.rb +4 -5
  14. data/lib/aws-sdk-core/json/handler.rb +3 -2
  15. data/lib/aws-sdk-core/json/parser.rb +1 -1
  16. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  17. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  18. data/lib/aws-sdk-core/pager.rb +30 -25
  19. data/lib/aws-sdk-core/param_converter.rb +3 -3
  20. data/lib/aws-sdk-core/param_validator.rb +10 -4
  21. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  22. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  23. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  24. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  25. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  26. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  27. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  28. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  29. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  30. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -20
  31. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  32. data/lib/aws-sdk-core/plugins/retry_errors.rb +12 -31
  33. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  34. data/lib/aws-sdk-core/plugins/signature_v4.rb +131 -0
  35. data/lib/aws-sdk-core/plugins/stub_responses.rb +13 -11
  36. data/lib/aws-sdk-core/plugins/user_agent.rb +16 -6
  37. data/lib/aws-sdk-core/query.rb +5 -0
  38. data/lib/aws-sdk-core/query/handler.rb +15 -16
  39. data/lib/aws-sdk-core/query/param_builder.rb +1 -1
  40. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  41. data/lib/aws-sdk-core/rest.rb +10 -0
  42. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  43. data/lib/aws-sdk-core/rest/request/endpoint.rb +1 -1
  44. data/lib/aws-sdk-core/rest/request/headers.rb +0 -9
  45. data/lib/aws-sdk-core/rest/response/headers.rb +0 -7
  46. data/lib/aws-sdk-core/rest/response/parser.rb +14 -14
  47. data/lib/aws-sdk-core/shared_config.rb +1 -38
  48. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  49. data/lib/aws-sdk-core/structure.rb +17 -12
  50. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  51. data/lib/aws-sdk-core/stubbing/empty_stub.rb +6 -2
  52. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  53. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +1 -7
  54. data/lib/aws-sdk-core/stubbing/stub_data.rb +4 -0
  55. data/lib/aws-sdk-core/util.rb +39 -0
  56. data/lib/aws-sdk-core/version.rb +1 -1
  57. data/lib/aws-sdk-core/waiters.rb +3 -0
  58. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  59. data/lib/aws-sdk-core/waiters/waiter.rb +3 -2
  60. data/lib/aws-sdk-core/xml.rb +9 -0
  61. data/lib/aws-sdk-core/xml/builder.rb +2 -2
  62. data/lib/aws-sdk-core/xml/error_handler.rb +1 -2
  63. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  64. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +1 -5
  65. data/lib/aws-sdk-core/xml/parser/frame.rb +4 -4
  66. data/lib/aws-sdk-sts.rb +45 -0
  67. data/lib/aws-sdk-sts/client.rb +1198 -0
  68. data/lib/aws-sdk-sts/client_api.rb +266 -0
  69. data/lib/aws-sdk-sts/customizations.rb +0 -0
  70. data/lib/aws-sdk-sts/errors.rb +23 -0
  71. data/lib/aws-sdk-sts/resource.rb +25 -0
  72. data/lib/aws-sdk-sts/types.rb +854 -0
  73. data/lib/seahorse.rb +50 -60
  74. data/lib/seahorse/client/base.rb +1 -7
  75. data/lib/seahorse/client/configuration.rb +2 -8
  76. data/lib/seahorse/client/events.rb +1 -1
  77. data/lib/seahorse/client/http/response.rb +3 -3
  78. data/lib/seahorse/client/logging/formatter.rb +3 -3
  79. data/lib/seahorse/client/logging/handler.rb +2 -0
  80. data/lib/seahorse/client/net_http/connection_pool.rb +3 -0
  81. data/lib/seahorse/client/net_http/handler.rb +4 -5
  82. data/lib/seahorse/client/net_http/patches.rb +1 -0
  83. data/lib/seahorse/client/plugin.rb +66 -6
  84. data/lib/seahorse/client/plugin_list.rb +1 -3
  85. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  86. data/lib/seahorse/client/plugins/logging.rb +17 -19
  87. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  88. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  89. data/lib/seahorse/client/plugins/response_target.rb +2 -0
  90. data/lib/seahorse/model/api.rb +4 -4
  91. data/lib/seahorse/model/operation.rb +0 -9
  92. data/lib/seahorse/model/shapes.rb +18 -2
  93. data/lib/seahorse/util.rb +0 -21
  94. metadata +42 -1249
  95. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -954
  96. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  97. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -34
  98. data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1229
  99. data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
  100. data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -28
  101. data/apis/acm-pca/2017-08-22/api-2.json +0 -1203
  102. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  103. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  104. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  105. data/apis/acm/2015-12-08/api-2.json +0 -873
  106. data/apis/acm/2015-12-08/examples-1.json +0 -5
  107. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  108. data/apis/acm/2015-12-08/smoke.json +0 -18
  109. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  110. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4146
  111. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  112. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  113. data/apis/amplify/2017-07-25/api-2.json +0 -2419
  114. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  115. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  116. data/apis/apigateway/2015-07-09/api-2.json +0 -5412
  117. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  118. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  119. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  120. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  121. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  122. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -7236
  123. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  124. data/apis/appconfig/2019-10-09/api-2.json +0 -1699
  125. data/apis/appconfig/2019-10-09/examples-1.json +0 -5
  126. data/apis/appconfig/2019-10-09/paginators-1.json +0 -34
  127. data/apis/appflow/2020-08-23/api-2.json +0 -2422
  128. data/apis/appflow/2020-08-23/examples-1.json +0 -5
  129. data/apis/appflow/2020-08-23/paginators-1.json +0 -23
  130. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -795
  131. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -221
  132. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  133. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  134. data/apis/application-insights/2018-11-25/api-2.json +0 -1261
  135. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  136. data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
  137. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  138. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  139. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  140. data/apis/appmesh/2019-01-25/api-2.json +0 -3764
  141. data/apis/appmesh/2019-01-25/examples-1.json +0 -5
  142. data/apis/appmesh/2019-01-25/paginators-1.json +0 -52
  143. data/apis/appstream/2016-12-01/api-2.json +0 -2390
  144. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  145. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  146. data/apis/appstream/2016-12-01/smoke.json +0 -11
  147. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  148. data/apis/appsync/2017-07-25/api-2.json +0 -2294
  149. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  150. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  151. data/apis/athena/2017-05-18/api-2.json +0 -1403
  152. data/apis/athena/2017-05-18/examples-1.json +0 -5
  153. data/apis/athena/2017-05-18/paginators-1.json +0 -48
  154. data/apis/athena/2017-05-18/smoke.json +0 -11
  155. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  156. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  157. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  158. data/apis/autoscaling/2011-01-01/api-2.json +0 -2676
  159. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1496
  160. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  161. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  162. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  163. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  164. data/apis/backup/2018-11-15/api-2.json +0 -2522
  165. data/apis/backup/2018-11-15/examples-1.json +0 -5
  166. data/apis/backup/2018-11-15/paginators-1.json +0 -64
  167. data/apis/batch/2016-08-10/api-2.json +0 -1360
  168. data/apis/batch/2016-08-10/examples-1.json +0 -687
  169. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  170. data/apis/batch/2016-08-10/smoke.json +0 -11
  171. data/apis/braket/2019-09-01/api-2.json +0 -703
  172. data/apis/braket/2019-09-01/examples-1.json +0 -5
  173. data/apis/braket/2019-09-01/paginators-1.json +0 -16
  174. data/apis/budgets/2016-10-20/api-2.json +0 -1444
  175. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  176. data/apis/budgets/2016-10-20/paginators-1.json +0 -46
  177. data/apis/ce/2017-10-25/api-2.json +0 -2268
  178. data/apis/ce/2017-10-25/examples-1.json +0 -5
  179. data/apis/ce/2017-10-25/paginators-1.json +0 -19
  180. data/apis/chime/2018-05-01/api-2.json +0 -8964
  181. data/apis/chime/2018-05-01/examples-1.json +0 -5
  182. data/apis/chime/2018-05-01/paginators-1.json +0 -124
  183. data/apis/cloud9/2017-09-23/api-2.json +0 -691
  184. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  185. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  186. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  187. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  188. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  189. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  190. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  191. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  192. data/apis/cloudformation/2010-05-15/api-2.json +0 -3495
  193. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  194. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -91
  195. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  196. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  197. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -294
  198. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  199. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  200. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  201. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  202. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  203. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  204. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  205. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  206. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  207. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  208. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  209. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  210. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  211. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  212. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  213. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  214. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  215. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  216. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  217. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  218. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  219. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  220. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  221. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  222. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  223. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  224. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  225. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  226. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  227. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  228. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  229. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  230. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  231. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  232. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  233. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  234. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  235. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  236. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  237. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  238. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  239. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  240. data/apis/cloudfront/2019-03-26/api-2.json +0 -4035
  241. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  242. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  243. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  244. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  245. data/apis/cloudfront/2020-05-31/api-2.json +0 -5976
  246. data/apis/cloudfront/2020-05-31/examples-1.json +0 -5
  247. data/apis/cloudfront/2020-05-31/paginators-1.json +0 -32
  248. data/apis/cloudfront/2020-05-31/smoke.json +0 -20
  249. data/apis/cloudfront/2020-05-31/waiters-2.json +0 -47
  250. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  251. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  252. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  253. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -837
  254. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  255. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  256. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  257. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  258. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  259. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  260. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  261. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  262. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  263. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  264. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  265. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  266. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  267. data/apis/codeartifact/2018-09-22/api-2.json +0 -2420
  268. data/apis/codeartifact/2018-09-22/examples-1.json +0 -5
  269. data/apis/codeartifact/2018-09-22/paginators-1.json +0 -40
  270. data/apis/codebuild/2016-10-06/api-2.json +0 -2438
  271. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  272. data/apis/codebuild/2016-10-06/paginators-1.json +0 -73
  273. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  274. data/apis/codecommit/2015-04-13/api-2.json +0 -5517
  275. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  276. data/apis/codecommit/2015-04-13/paginators-1.json +0 -69
  277. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  278. data/apis/codedeploy/2014-10-06/api-2.json +0 -3281
  279. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  280. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  281. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  282. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  283. data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -1058
  284. data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
  285. data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -25
  286. data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -1609
  287. data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
  288. data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -25
  289. data/apis/codepipeline/2015-07-09/api-2.json +0 -2517
  290. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  291. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  292. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  293. data/apis/codestar-connections/2019-12-01/api-2.json +0 -515
  294. data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
  295. data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -14
  296. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  297. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  298. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  299. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  300. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  301. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  302. data/apis/codestar/2017-04-19/smoke.json +0 -11
  303. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1069
  304. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  305. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -10
  306. data/apis/cognito-identity/2014-06-30/smoke.json +0 -20
  307. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5483
  308. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  309. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  310. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  311. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  312. data/apis/comprehend/2017-11-27/api-2.json +0 -3004
  313. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  314. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  315. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -1210
  316. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  317. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  318. data/apis/compute-optimizer/2019-11-01/api-2.json +0 -869
  319. data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
  320. data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
  321. data/apis/config/2014-11-12/api-2.json +0 -4378
  322. data/apis/config/2014-11-12/examples-1.json +0 -5
  323. data/apis/config/2014-11-12/paginators-1.json +0 -26
  324. data/apis/config/2014-11-12/smoke.json +0 -19
  325. data/apis/connect/2017-08-08/api-2.json +0 -4452
  326. data/apis/connect/2017-08-08/examples-1.json +0 -5
  327. data/apis/connect/2017-08-08/paginators-1.json +0 -116
  328. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  329. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  330. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  331. data/apis/cur/2017-01-06/api-2.json +0 -295
  332. data/apis/cur/2017-01-06/examples-1.json +0 -102
  333. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  334. data/apis/cur/2017-01-06/smoke.json +0 -11
  335. data/apis/databrew/2017-07-25/api-2.json +0 -2127
  336. data/apis/databrew/2017-07-25/examples-1.json +0 -5
  337. data/apis/databrew/2017-07-25/paginators-1.json +0 -46
  338. data/apis/dataexchange/2017-07-25/api-2.json +0 -2272
  339. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  340. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  341. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  342. data/apis/datasync/2018-11-09/api-2.json +0 -1675
  343. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  344. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  345. data/apis/dax/2017-04-19/api-2.json +0 -1140
  346. data/apis/dax/2017-04-19/examples-1.json +0 -5
  347. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  348. data/apis/detective/2018-10-26/api-2.json +0 -486
  349. data/apis/detective/2018-10-26/examples-1.json +0 -5
  350. data/apis/detective/2018-10-26/paginators-1.json +0 -19
  351. data/apis/devicefarm/2015-06-23/api-2.json +0 -3619
  352. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  353. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -97
  354. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  355. data/apis/directconnect/2012-10-25/api-2.json +0 -2188
  356. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  357. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  358. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  359. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  360. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  361. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  362. data/apis/discovery/2015-11-01/smoke.json +0 -11
  363. data/apis/dlm/2018-01-12/api-2.json +0 -696
  364. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  365. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  366. data/apis/dms/2016-01-01/api-2.json +0 -2844
  367. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  368. data/apis/dms/2016-01-01/paginators-1.json +0 -94
  369. data/apis/dms/2016-01-01/smoke.json +0 -18
  370. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  371. data/apis/docdb/2014-10-31/api-2.json +0 -2535
  372. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  373. data/apis/docdb/2014-10-31/paginators-1.json +0 -73
  374. data/apis/docdb/2014-10-31/smoke.json +0 -18
  375. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  376. data/apis/ds/2015-04-16/api-2.json +0 -3179
  377. data/apis/ds/2015-04-16/examples-1.json +0 -5
  378. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  379. data/apis/ds/2015-04-16/smoke.json +0 -20
  380. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  381. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  382. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  383. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  384. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  385. data/apis/dynamodb/2012-08-10/api-2.json +0 -3392
  386. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  387. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -36
  388. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  389. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  390. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  391. data/apis/ebs/2019-11-02/api-2.json +0 -645
  392. data/apis/ebs/2019-11-02/examples-1.json +0 -5
  393. data/apis/ebs/2019-11-02/paginators-1.json +0 -14
  394. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  395. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  396. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  397. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  398. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  399. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  400. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  401. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  402. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  403. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  404. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  405. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  406. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  407. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  408. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  409. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  410. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  411. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  412. data/apis/ec2/2016-11-15/api-2.json +0 -31412
  413. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  414. data/apis/ec2/2016-11-15/paginators-1.json +0 -594
  415. data/apis/ec2/2016-11-15/resources-1.json +0 -2907
  416. data/apis/ec2/2016-11-15/smoke.json +0 -20
  417. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  418. data/apis/ecr/2015-09-21/api-2.json +0 -1684
  419. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  420. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  421. data/apis/ecr/2015-09-21/smoke.json +0 -18
  422. data/apis/ecr/2015-09-21/waiters-2.json +0 -45
  423. data/apis/ecs/2014-11-13/api-2.json +0 -3263
  424. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  425. data/apis/ecs/2014-11-13/paginators-1.json +0 -52
  426. data/apis/ecs/2014-11-13/smoke.json +0 -18
  427. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  428. data/apis/eks/2017-11-01/api-2.json +0 -1485
  429. data/apis/eks/2017-11-01/examples-1.json +0 -135
  430. data/apis/eks/2017-11-01/paginators-1.json +0 -28
  431. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  432. data/apis/elastic-inference/2017-07-25/api-2.json +0 -426
  433. data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
  434. data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -10
  435. data/apis/elasticache/2015-02-02/api-2.json +0 -4349
  436. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  437. data/apis/elasticache/2015-02-02/paginators-1.json +0 -106
  438. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  439. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  440. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2617
  441. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  442. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -42
  443. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  444. data/apis/elasticbeanstalk/2010-12-01/waiters-2.json +0 -63
  445. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1510
  446. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  447. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -24
  448. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  449. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  450. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  451. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  452. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  453. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  454. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2391
  455. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  456. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  457. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  458. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  459. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2555
  460. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  461. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -47
  462. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  463. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  464. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  465. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  466. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  467. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  468. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  469. data/apis/email/2010-12-01/api-2.json +0 -3182
  470. data/apis/email/2010-12-01/examples-1.json +0 -1021
  471. data/apis/email/2010-12-01/paginators-1.json +0 -18
  472. data/apis/email/2010-12-01/smoke.json +0 -18
  473. data/apis/email/2010-12-01/waiters-2.json +0 -18
  474. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  475. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  476. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  477. data/apis/es/2015-01-01/api-2.json +0 -2533
  478. data/apis/es/2015-01-01/examples-1.json +0 -5
  479. data/apis/es/2015-01-01/paginators-1.json +0 -59
  480. data/apis/es/2015-01-01/smoke.json +0 -18
  481. data/apis/eventbridge/2015-10-07/api-2.json +0 -2052
  482. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  483. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  484. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  485. data/apis/events/2015-10-07/api-2.json +0 -2052
  486. data/apis/events/2015-10-07/examples-1.json +0 -5
  487. data/apis/events/2015-10-07/paginators-1.json +0 -4
  488. data/apis/events/2015-10-07/smoke.json +0 -18
  489. data/apis/firehose/2015-08-04/api-2.json +0 -1717
  490. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  491. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  492. data/apis/firehose/2015-08-04/smoke.json +0 -18
  493. data/apis/fms/2018-01-01/api-2.json +0 -1449
  494. data/apis/fms/2018-01-01/examples-1.json +0 -5
  495. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  496. data/apis/forecast/2018-06-26/api-2.json +0 -1565
  497. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  498. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  499. data/apis/forecastquery/2018-06-26/api-2.json +0 -146
  500. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  501. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  502. data/apis/frauddetector/2019-11-15/api-2.json +0 -2510
  503. data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
  504. data/apis/frauddetector/2019-11-15/paginators-1.json +0 -59
  505. data/apis/fsx/2018-03-01/api-2.json +0 -1642
  506. data/apis/fsx/2018-03-01/examples-1.json +0 -395
  507. data/apis/fsx/2018-03-01/paginators-1.json +0 -24
  508. data/apis/gamelift/2015-10-01/api-2.json +0 -4505
  509. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  510. data/apis/gamelift/2015-10-01/paginators-1.json +0 -124
  511. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  512. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  513. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  514. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  515. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  516. data/apis/glacier/2012-06-01/smoke.json +0 -18
  517. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  518. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -1181
  519. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  520. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  521. data/apis/glue/2017-03-31/api-2.json +0 -8102
  522. data/apis/glue/2017-03-31/examples-1.json +0 -5
  523. data/apis/glue/2017-03-31/paginators-1.json +0 -154
  524. data/apis/glue/2017-03-31/smoke.json +0 -11
  525. data/apis/greengrass/2017-06-07/api-2.json +0 -5244
  526. data/apis/groundstation/2019-05-23/api-2.json +0 -1463
  527. data/apis/groundstation/2019-05-23/examples-1.json +0 -5
  528. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  529. data/apis/guardduty/2017-11-28/api-2.json +0 -4370
  530. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  531. data/apis/guardduty/2017-11-28/paginators-1.json +0 -62
  532. data/apis/health/2016-08-04/api-2.json +0 -847
  533. data/apis/health/2016-08-04/examples-1.json +0 -5
  534. data/apis/health/2016-08-04/paginators-1.json +0 -55
  535. data/apis/health/2016-08-04/smoke.json +0 -11
  536. data/apis/honeycode/2020-03-01/api-2.json +0 -321
  537. data/apis/honeycode/2020-03-01/examples-1.json +0 -5
  538. data/apis/honeycode/2020-03-01/paginators-1.json +0 -4
  539. data/apis/iam/2010-05-08/api-2.json +0 -5821
  540. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  541. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  542. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  543. data/apis/iam/2010-05-08/smoke.json +0 -18
  544. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  545. data/apis/identitystore/2020-06-15/api-2.json +0 -318
  546. data/apis/identitystore/2020-06-15/examples-1.json +0 -5
  547. data/apis/identitystore/2020-06-15/paginators-1.json +0 -14
  548. data/apis/imagebuilder/2019-12-02/api-2.json +0 -2493
  549. data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
  550. data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
  551. data/apis/importexport/2010-06-01/api-2.json +0 -667
  552. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  553. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  554. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  555. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  556. data/apis/inspector/2016-02-16/smoke.json +0 -18
  557. data/apis/iot-data/2015-05-28/api-2.json +0 -343
  558. data/apis/iot-data/2015-05-28/examples-1.json +0 -5
  559. data/apis/iot-data/2015-05-28/paginators-1.json +0 -4
  560. data/apis/iot-data/2015-05-28/smoke.json +0 -13
  561. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  562. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  563. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  564. data/apis/iot/2015-05-28/api-2.json +0 -11835
  565. data/apis/iot/2015-05-28/examples-1.json +0 -5
  566. data/apis/iot/2015-05-28/paginators-1.json +0 -294
  567. data/apis/iot/2015-05-28/smoke.json +0 -18
  568. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  569. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  570. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  571. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  572. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2269
  573. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  574. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  575. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  576. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  577. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  578. data/apis/iotevents/2018-07-27/api-2.json +0 -1262
  579. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  580. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  581. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -384
  582. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  583. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  584. data/apis/iotsitewise/2019-12-02/api-2.json +0 -3673
  585. data/apis/iotsitewise/2019-12-02/examples-1.json +0 -5
  586. data/apis/iotsitewise/2019-12-02/paginators-1.json +0 -70
  587. data/apis/iotsitewise/2019-12-02/waiters-2.json +0 -92
  588. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  589. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  590. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  591. data/apis/ivs/2020-07-14/api-2.json +0 -981
  592. data/apis/ivs/2020-07-14/examples-1.json +0 -5
  593. data/apis/ivs/2020-07-14/paginators-1.json +0 -33
  594. data/apis/kafka/2018-11-14/api-2.json +0 -2917
  595. data/apis/kafka/2018-11-14/paginators-1.json +0 -46
  596. data/apis/kendra/2019-02-03/api-2.json +0 -2561
  597. data/apis/kendra/2019-02-03/examples-1.json +0 -5
  598. data/apis/kendra/2019-02-03/paginators-1.json +0 -19
  599. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -498
  600. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  601. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  602. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  603. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  604. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  605. data/apis/kinesis-video-signaling/2019-12-04/api-2.json +0 -200
  606. data/apis/kinesis-video-signaling/2019-12-04/examples-1.json +0 -5
  607. data/apis/kinesis-video-signaling/2019-12-04/paginators-1.json +0 -4
  608. data/apis/kinesis/2013-12-02/api-2.json +0 -1449
  609. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  610. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  611. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  612. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  613. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  614. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  615. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  616. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2342
  617. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  618. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  619. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -958
  620. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  621. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -16
  622. data/apis/kms/2014-11-01/api-2.json +0 -2158
  623. data/apis/kms/2014-11-01/examples-1.json +0 -906
  624. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  625. data/apis/kms/2014-11-01/smoke.json +0 -19
  626. data/apis/lakeformation/2017-03-31/api-2.json +0 -737
  627. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  628. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  629. data/apis/lambda/2014-11-11/api-2.json +0 -668
  630. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  631. data/apis/lambda/2015-03-31/api-2.json +0 -3067
  632. data/apis/lambda/2015-03-31/examples-1.json +0 -1513
  633. data/apis/lambda/2015-03-31/paginators-1.json +0 -52
  634. data/apis/lambda/2015-03-31/smoke.json +0 -18
  635. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  636. data/apis/lex-models/2017-04-19/api-2.json +0 -2688
  637. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  638. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  639. data/apis/license-manager/2018-08-01/api-2.json +0 -886
  640. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  641. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  642. data/apis/lightsail/2016-11-28/api-2.json +0 -6873
  643. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  644. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  645. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  646. data/apis/logs/2014-03-28/api-2.json +0 -1819
  647. data/apis/logs/2014-03-28/examples-1.json +0 -5
  648. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  649. data/apis/logs/2014-03-28/smoke.json +0 -19
  650. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  651. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  652. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  653. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  654. data/apis/macie/2017-12-19/api-2.json +0 -365
  655. data/apis/macie/2017-12-19/examples-1.json +0 -5
  656. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  657. data/apis/macie2/2020-01-01/api-2.json +0 -5775
  658. data/apis/macie2/2020-01-01/paginators-1.json +0 -58
  659. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1507
  660. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  661. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  662. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -560
  663. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  664. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  665. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  666. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  667. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  668. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  669. data/apis/mediaconnect/2018-11-14/api-2.json +0 -2882
  670. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -28
  671. data/apis/mediaconvert/2017-08-29/api-2.json +0 -9636
  672. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  673. data/apis/medialive/2017-10-14/api-2.json +0 -12784
  674. data/apis/medialive/2017-10-14/paginators-1.json +0 -64
  675. data/apis/medialive/2017-10-14/waiters-2.json +0 -298
  676. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1879
  677. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  678. data/apis/mediapackage/2017-10-12/api-2.json +0 -2700
  679. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  680. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  681. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  682. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  683. data/apis/mediastore/2017-09-01/api-2.json +0 -871
  684. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  685. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  686. data/apis/mediatailor/2018-04-23/api-2.json +0 -629
  687. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  688. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -417
  689. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  690. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  691. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -220
  692. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  693. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  694. data/apis/mobile/2017-07-01/api-2.json +0 -551
  695. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  696. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  697. data/apis/monitoring/2010-08-01/api-2.json +0 -1978
  698. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  699. data/apis/monitoring/2010-08-01/paginators-1.json +0 -46
  700. data/apis/monitoring/2010-08-01/resources-1.json +0 -505
  701. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  702. data/apis/monitoring/2010-08-01/waiters-2.json +0 -31
  703. data/apis/mq/2017-11-27/api-2.json +0 -2783
  704. data/apis/mq/2017-11-27/paginators-1.json +0 -10
  705. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  706. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  707. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  708. data/apis/neptune/2014-10-31/api-2.json +0 -3822
  709. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  710. data/apis/neptune/2014-10-31/paginators-1.json +0 -67
  711. data/apis/neptune/2014-10-31/smoke.json +0 -18
  712. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  713. data/apis/network-firewall/2020-11-12/api-2.json +0 -1884
  714. data/apis/network-firewall/2020-11-12/examples-1.json +0 -5
  715. data/apis/network-firewall/2020-11-12/paginators-1.json +0 -28
  716. data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
  717. data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
  718. data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
  719. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  720. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  721. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  722. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  723. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  724. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  725. data/apis/opsworkscm/2016-11-01/api-2.json +0 -948
  726. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  727. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -28
  728. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  729. data/apis/organizations/2016-11-28/api-2.json +0 -2618
  730. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  731. data/apis/organizations/2016-11-28/paginators-1.json +0 -86
  732. data/apis/outposts/2019-12-03/api-2.json +0 -432
  733. data/apis/outposts/2019-12-03/examples-1.json +0 -5
  734. data/apis/outposts/2019-12-03/paginators-1.json +0 -14
  735. data/apis/personalize-events/2018-03-22/api-2.json +0 -214
  736. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  737. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  738. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -172
  739. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  740. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  741. data/apis/personalize/2018-05-22/api-2.json +0 -2038
  742. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  743. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  744. data/apis/pi/2018-02-27/api-2.json +0 -253
  745. data/apis/pi/2018-02-27/examples-1.json +0 -5
  746. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  747. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  748. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  749. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  750. data/apis/pinpoint/2016-12-01/api-2.json +0 -12480
  751. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  752. data/apis/polly/2016-06-10/api-2.json +0 -836
  753. data/apis/polly/2016-06-10/examples-1.json +0 -171
  754. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  755. data/apis/polly/2016-06-10/smoke.json +0 -11
  756. data/apis/pricing/2017-10-15/api-2.json +0 -227
  757. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  758. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  759. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  760. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  761. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  762. data/apis/qldb/2019-01-02/api-2.json +0 -999
  763. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  764. data/apis/qldb/2019-01-02/paginators-1.json +0 -24
  765. data/apis/quicksight/2018-04-01/api-2.json +0 -7780
  766. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  767. data/apis/quicksight/2018-04-01/paginators-1.json +0 -64
  768. data/apis/ram/2018-01-04/api-2.json +0 -1315
  769. data/apis/ram/2018-01-04/examples-1.json +0 -5
  770. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  771. data/apis/rds-data/2018-08-01/api-2.json +0 -552
  772. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  773. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  774. data/apis/rds/2013-01-10/api-2.json +0 -2903
  775. data/apis/rds/2013-01-10/examples-1.json +0 -5
  776. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  777. data/apis/rds/2013-01-10/smoke.json +0 -18
  778. data/apis/rds/2013-02-12/api-2.json +0 -3059
  779. data/apis/rds/2013-02-12/examples-1.json +0 -5
  780. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  781. data/apis/rds/2013-02-12/smoke.json +0 -18
  782. data/apis/rds/2013-09-09/api-2.json +0 -3160
  783. data/apis/rds/2013-09-09/examples-1.json +0 -5
  784. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  785. data/apis/rds/2013-09-09/smoke.json +0 -18
  786. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  787. data/apis/rds/2014-09-01/api-2.json +0 -3273
  788. data/apis/rds/2014-09-01/examples-1.json +0 -5
  789. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  790. data/apis/rds/2014-09-01/smoke.json +0 -18
  791. data/apis/rds/2014-10-31/api-2.json +0 -7765
  792. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  793. data/apis/rds/2014-10-31/paginators-1.json +0 -212
  794. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  795. data/apis/rds/2014-10-31/smoke.json +0 -18
  796. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  797. data/apis/redshift-data/2019-12-20/api-2.json +0 -501
  798. data/apis/redshift-data/2019-12-20/examples-1.json +0 -5
  799. data/apis/redshift-data/2019-12-20/paginators-1.json +0 -39
  800. data/apis/redshift/2012-12-01/api-2.json +0 -5527
  801. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  802. data/apis/redshift/2012-12-01/paginators-1.json +0 -154
  803. data/apis/redshift/2012-12-01/smoke.json +0 -18
  804. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  805. data/apis/rekognition/2016-06-27/api-2.json +0 -3180
  806. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  807. data/apis/rekognition/2016-06-27/paginators-1.json +0 -73
  808. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  809. data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
  810. data/apis/resource-groups/2017-11-27/api-2.json +0 -927
  811. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  812. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -22
  813. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
  814. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  815. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
  816. data/apis/robomaker/2018-06-29/api-2.json +0 -3160
  817. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  818. data/apis/robomaker/2018-06-29/paginators-1.json +0 -70
  819. data/apis/route53/2013-04-01/api-2.json +0 -3881
  820. data/apis/route53/2013-04-01/examples-1.json +0 -762
  821. data/apis/route53/2013-04-01/paginators-1.json +0 -39
  822. data/apis/route53/2013-04-01/smoke.json +0 -18
  823. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  824. data/apis/route53domains/2014-05-15/api-2.json +0 -1507
  825. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  826. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  827. data/apis/route53domains/2014-05-15/smoke.json +0 -18
  828. data/apis/route53resolver/2018-04-01/api-2.json +0 -1666
  829. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  830. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -46
  831. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  832. data/apis/runtime.lex/2016-11-28/api-2.json +0 -841
  833. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  834. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  835. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -175
  836. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  837. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  838. data/apis/s3/2006-03-01/api-2.json +0 -7474
  839. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  840. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  841. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  842. data/apis/s3/2006-03-01/smoke.json +0 -11
  843. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  844. data/apis/s3control/2018-08-20/api-2.json +0 -2903
  845. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  846. data/apis/s3control/2018-08-20/paginators-1.json +0 -19
  847. data/apis/s3outposts/2017-07-25/api-2.json +0 -250
  848. data/apis/s3outposts/2017-07-25/examples-1.json +0 -5
  849. data/apis/s3outposts/2017-07-25/paginators-1.json +0 -10
  850. data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -366
  851. data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
  852. data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
  853. data/apis/sagemaker/2017-07-24/api-2.json +0 -10329
  854. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  855. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -214
  856. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
  857. data/apis/savingsplans/2019-06-28/api-2.json +0 -786
  858. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  859. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  860. data/apis/schemas/2019-12-02/api-2.json +0 -2980
  861. data/apis/schemas/2019-12-02/paginators-1.json +0 -34
  862. data/apis/schemas/2019-12-02/waiters-2.json +0 -36
  863. data/apis/sdb/2009-04-15/api-2.json +0 -955
  864. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  865. data/apis/secretsmanager/2017-10-17/api-2.json +0 -1088
  866. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -594
  867. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  868. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  869. data/apis/securityhub/2018-10-26/api-2.json +0 -4515
  870. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  871. data/apis/securityhub/2018-10-26/paginators-1.json +0 -54
  872. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1857
  873. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  874. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  875. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  876. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  877. data/apis/servicecatalog-appregistry/2020-06-24/api-2.json +0 -857
  878. data/apis/servicecatalog-appregistry/2020-06-24/examples-1.json +0 -5
  879. data/apis/servicecatalog-appregistry/2020-06-24/paginators-1.json +0 -28
  880. data/apis/servicecatalog/2015-12-10/api-2.json +0 -4130
  881. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  882. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -94
  883. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  884. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1317
  885. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -672
  886. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  887. data/apis/sesv2/2019-09-27/api-2.json +0 -3966
  888. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  889. data/apis/sesv2/2019-09-27/paginators-1.json +0 -64
  890. data/apis/shield/2016-06-02/api-2.json +0 -1445
  891. data/apis/shield/2016-06-02/examples-1.json +0 -5
  892. data/apis/shield/2016-06-02/paginators-1.json +0 -26
  893. data/apis/shield/2016-06-02/smoke.json +0 -11
  894. data/apis/signer/2017-08-25/api-2.json +0 -822
  895. data/apis/signer/2017-08-25/examples-1.json +0 -5
  896. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  897. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  898. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  899. data/apis/sms/2016-10-24/api-2.json +0 -1775
  900. data/apis/sms/2016-10-24/examples-1.json +0 -5
  901. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  902. data/apis/sms/2016-10-24/smoke.json +0 -18
  903. data/apis/snowball/2016-06-30/api-2.json +0 -1116
  904. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  905. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  906. data/apis/snowball/2016-06-30/smoke.json +0 -11
  907. data/apis/sns/2010-03-31/api-2.json +0 -1471
  908. data/apis/sns/2010-03-31/examples-1.json +0 -5
  909. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  910. data/apis/sns/2010-03-31/resources-1.json +0 -327
  911. data/apis/sns/2010-03-31/smoke.json +0 -19
  912. data/apis/sqs/2012-11-05/api-2.json +0 -1139
  913. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  914. data/apis/sqs/2012-11-05/paginators-1.json +0 -16
  915. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  916. data/apis/sqs/2012-11-05/smoke.json +0 -18
  917. data/apis/ssm/2014-11-06/api-2.json +0 -9349
  918. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  919. data/apis/ssm/2014-11-06/paginators-1.json +0 -259
  920. data/apis/ssm/2014-11-06/smoke.json +0 -18
  921. data/apis/ssm/2014-11-06/waiters-2.json +0 -60
  922. data/apis/sso-admin/2020-07-20/api-2.json +0 -1296
  923. data/apis/sso-admin/2020-07-20/examples-1.json +0 -5
  924. data/apis/sso-admin/2020-07-20/paginators-1.json +0 -63
  925. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  926. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  927. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  928. data/apis/sso/2019-06-10/api-2.json +0 -281
  929. data/apis/sso/2019-06-10/examples-1.json +0 -5
  930. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  931. data/apis/states/2016-11-23/api-2.json +0 -1539
  932. data/apis/states/2016-11-23/examples-1.json +0 -5
  933. data/apis/states/2016-11-23/paginators-1.json +0 -28
  934. data/apis/states/2016-11-23/smoke.json +0 -11
  935. data/apis/storagegateway/2013-06-30/api-2.json +0 -3733
  936. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  937. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -82
  938. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -407
  939. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  940. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  941. data/apis/sts/2011-06-15/api-2.json +0 -599
  942. data/apis/sts/2011-06-15/examples-1.json +0 -271
  943. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  944. data/apis/sts/2011-06-15/smoke.json +0 -19
  945. data/apis/support/2013-04-15/api-2.json +0 -773
  946. data/apis/support/2013-04-15/examples-1.json +0 -5
  947. data/apis/support/2013-04-15/paginators-1.json +0 -25
  948. data/apis/support/2013-04-15/smoke.json +0 -22
  949. data/apis/swf/2012-01-25/api-2.json +0 -2792
  950. data/apis/swf/2012-01-25/examples-1.json +0 -5
  951. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  952. data/apis/synthetics/2017-10-11/api-2.json +0 -790
  953. data/apis/synthetics/2017-10-11/examples-1.json +0 -5
  954. data/apis/synthetics/2017-10-11/paginators-1.json +0 -24
  955. data/apis/textract/2018-06-27/api-2.json +0 -690
  956. data/apis/textract/2018-06-27/examples-1.json +0 -5
  957. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  958. data/apis/timestream-query/2018-11-01/api-2.json +0 -299
  959. data/apis/timestream-query/2018-11-01/examples-1.json +0 -5
  960. data/apis/timestream-query/2018-11-01/paginators-1.json +0 -14
  961. data/apis/timestream-write/2018-11-01/api-2.json +0 -775
  962. data/apis/timestream-write/2018-11-01/examples-1.json +0 -5
  963. data/apis/timestream-write/2018-11-01/paginators-1.json +0 -14
  964. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -347
  965. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  966. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  967. data/apis/transcribe/2017-10-26/api-2.json +0 -1327
  968. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  969. data/apis/transcribe/2017-10-26/paginators-1.json +0 -34
  970. data/apis/transfer/2018-11-05/api-2.json +0 -1110
  971. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  972. data/apis/transfer/2018-11-05/paginators-1.json +0 -24
  973. data/apis/translate/2017-07-01/api-2.json +0 -660
  974. data/apis/translate/2017-07-01/examples-1.json +0 -5
  975. data/apis/translate/2017-07-01/paginators-1.json +0 -14
  976. data/apis/waf-regional/2016-11-28/api-2.json +0 -4093
  977. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  978. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  979. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  980. data/apis/waf/2015-08-24/api-2.json +0 -3958
  981. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  982. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  983. data/apis/waf/2015-08-24/smoke.json +0 -21
  984. data/apis/wafv2/2019-07-29/api-2.json +0 -2698
  985. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  986. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  987. data/apis/wafv2/2019-07-29/smoke.json +0 -22
  988. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  989. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  990. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  991. data/apis/worklink/2018-09-25/api-2.json +0 -1393
  992. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  993. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  994. data/apis/workmail/2017-10-01/api-2.json +0 -2430
  995. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  996. data/apis/workmail/2017-10-01/paginators-1.json +0 -49
  997. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  998. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  999. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  1000. data/apis/workspaces/2015-04-08/api-2.json +0 -2442
  1001. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  1002. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  1003. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  1004. data/apis/xray/2016-04-12/api-2.json +0 -1792
  1005. data/apis/xray/2016-04-12/examples-1.json +0 -5
  1006. data/apis/xray/2016-04-12/paginators-1.json +0 -54
  1007. data/bin/aws.rb +0 -180
  1008. data/endpoints.json +0 -9478
  1009. data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
  1010. data/lib/aws-sdk-core/acm.rb +0 -7
  1011. data/lib/aws-sdk-core/acmpca.rb +0 -7
  1012. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  1013. data/lib/aws-sdk-core/amplify.rb +0 -6
  1014. data/lib/aws-sdk-core/api/builder.rb +0 -129
  1015. data/lib/aws-sdk-core/api/customizations.rb +0 -304
  1016. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  1017. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  1018. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  1019. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  1020. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  1021. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  1022. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  1023. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  1024. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  1025. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  1026. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  1027. data/lib/aws-sdk-core/apigateway.rb +0 -6
  1028. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  1029. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  1030. data/lib/aws-sdk-core/appconfig.rb +0 -6
  1031. data/lib/aws-sdk-core/appflow.rb +0 -6
  1032. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  1033. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  1034. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  1035. data/lib/aws-sdk-core/appmesh.rb +0 -6
  1036. data/lib/aws-sdk-core/appregistry.rb +0 -6
  1037. data/lib/aws-sdk-core/appstream.rb +0 -7
  1038. data/lib/aws-sdk-core/appsync.rb +0 -6
  1039. data/lib/aws-sdk-core/athena.rb +0 -6
  1040. data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
  1041. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  1042. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  1043. data/lib/aws-sdk-core/backup.rb +0 -6
  1044. data/lib/aws-sdk-core/batch.rb +0 -6
  1045. data/lib/aws-sdk-core/braket.rb +0 -6
  1046. data/lib/aws-sdk-core/budgets.rb +0 -6
  1047. data/lib/aws-sdk-core/checksums.rb +0 -51
  1048. data/lib/aws-sdk-core/chime.rb +0 -6
  1049. data/lib/aws-sdk-core/client.rb +0 -78
  1050. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  1051. data/lib/aws-sdk-core/cloud9.rb +0 -6
  1052. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  1053. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  1054. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  1055. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  1056. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  1057. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  1058. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  1059. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  1060. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  1061. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  1062. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  1063. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  1064. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  1065. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  1066. data/lib/aws-sdk-core/codeartifact.rb +0 -6
  1067. data/lib/aws-sdk-core/codebuild.rb +0 -6
  1068. data/lib/aws-sdk-core/codecommit.rb +0 -6
  1069. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  1070. data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
  1071. data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
  1072. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  1073. data/lib/aws-sdk-core/codestar.rb +0 -6
  1074. data/lib/aws-sdk-core/codestarconnections.rb +0 -6
  1075. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1076. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1077. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1078. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1079. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1080. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1081. data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
  1082. data/lib/aws-sdk-core/configservice.rb +0 -6
  1083. data/lib/aws-sdk-core/connect.rb +0 -6
  1084. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1085. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1086. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1087. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1088. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1089. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1090. data/lib/aws-sdk-core/datasync.rb +0 -6
  1091. data/lib/aws-sdk-core/dax.rb +0 -6
  1092. data/lib/aws-sdk-core/detective.rb +0 -6
  1093. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1094. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1095. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1096. data/lib/aws-sdk-core/dlm.rb +0 -6
  1097. data/lib/aws-sdk-core/docdb.rb +0 -7
  1098. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1099. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1100. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1101. data/lib/aws-sdk-core/ebs.rb +0 -6
  1102. data/lib/aws-sdk-core/ec2.rb +0 -8
  1103. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1104. data/lib/aws-sdk-core/ecr.rb +0 -7
  1105. data/lib/aws-sdk-core/ecs.rb +0 -7
  1106. data/lib/aws-sdk-core/efs.rb +0 -6
  1107. data/lib/aws-sdk-core/eks.rb +0 -7
  1108. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1109. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -7
  1110. data/lib/aws-sdk-core/elasticinference.rb +0 -6
  1111. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1112. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1113. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1114. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1115. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1116. data/lib/aws-sdk-core/emr.rb +0 -7
  1117. data/lib/aws-sdk-core/endpoint_cache.rb +0 -188
  1118. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1119. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1120. data/lib/aws-sdk-core/firehose.rb +0 -6
  1121. data/lib/aws-sdk-core/fms.rb +0 -6
  1122. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1123. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1124. data/lib/aws-sdk-core/frauddetector.rb +0 -6
  1125. data/lib/aws-sdk-core/fsx.rb +0 -6
  1126. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1127. data/lib/aws-sdk-core/glacier.rb +0 -8
  1128. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1129. data/lib/aws-sdk-core/glue.rb +0 -6
  1130. data/lib/aws-sdk-core/gluedatabrew.rb +0 -6
  1131. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1132. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1133. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1134. data/lib/aws-sdk-core/health.rb +0 -6
  1135. data/lib/aws-sdk-core/honeycode.rb +0 -6
  1136. data/lib/aws-sdk-core/iam.rb +0 -8
  1137. data/lib/aws-sdk-core/identitystore.rb +0 -6
  1138. data/lib/aws-sdk-core/imagebuilder.rb +0 -6
  1139. data/lib/aws-sdk-core/importexport.rb +0 -5
  1140. data/lib/aws-sdk-core/inspector.rb +0 -6
  1141. data/lib/aws-sdk-core/iot.rb +0 -6
  1142. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1143. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1144. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1145. data/lib/aws-sdk-core/iotdataplane.rb +0 -6
  1146. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1147. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1148. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1149. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1150. data/lib/aws-sdk-core/iotsitewise.rb +0 -7
  1151. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1152. data/lib/aws-sdk-core/ivs.rb +0 -6
  1153. data/lib/aws-sdk-core/kafka.rb +0 -5
  1154. data/lib/aws-sdk-core/kendra.rb +0 -6
  1155. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1156. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1157. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1158. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1159. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1160. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1161. data/lib/aws-sdk-core/kinesisvideosignalingchannels.rb +0 -6
  1162. data/lib/aws-sdk-core/kms.rb +0 -6
  1163. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1164. data/lib/aws-sdk-core/lambda.rb +0 -7
  1165. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1166. data/lib/aws-sdk-core/lex.rb +0 -6
  1167. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1168. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1169. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1170. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1171. data/lib/aws-sdk-core/macie.rb +0 -6
  1172. data/lib/aws-sdk-core/macie2.rb +0 -5
  1173. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1174. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1175. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1176. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1177. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1178. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1179. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1180. data/lib/aws-sdk-core/medialive.rb +0 -6
  1181. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1182. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1183. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1184. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1185. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1186. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1187. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1188. data/lib/aws-sdk-core/mobile.rb +0 -6
  1189. data/lib/aws-sdk-core/mq.rb +0 -5
  1190. data/lib/aws-sdk-core/mturk.rb +0 -6
  1191. data/lib/aws-sdk-core/neptune.rb +0 -7
  1192. data/lib/aws-sdk-core/networkfirewall.rb +0 -6
  1193. data/lib/aws-sdk-core/networkmanager.rb +0 -6
  1194. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1195. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1196. data/lib/aws-sdk-core/organizations.rb +0 -6
  1197. data/lib/aws-sdk-core/outposts.rb +0 -6
  1198. data/lib/aws-sdk-core/partitions.rb +0 -174
  1199. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1200. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1201. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1202. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1203. data/lib/aws-sdk-core/personalize.rb +0 -6
  1204. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1205. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1206. data/lib/aws-sdk-core/pi.rb +0 -6
  1207. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1208. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1209. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1210. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1211. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1212. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1213. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1214. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1215. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1216. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1217. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1218. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +0 -167
  1219. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +0 -62
  1220. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1221. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1222. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1223. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +0 -29
  1224. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1225. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1226. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1227. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1228. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1229. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1230. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1231. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1232. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1233. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1234. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1235. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1236. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1237. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1238. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1239. data/lib/aws-sdk-core/plugins/s3_iad_regional_endpoint.rb +0 -58
  1240. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1241. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1242. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1243. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1244. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1245. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1246. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1247. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1248. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1249. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1250. data/lib/aws-sdk-core/polly.rb +0 -14
  1251. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1252. data/lib/aws-sdk-core/pricing.rb +0 -6
  1253. data/lib/aws-sdk-core/qldb.rb +0 -6
  1254. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1255. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1256. data/lib/aws-sdk-core/ram.rb +0 -6
  1257. data/lib/aws-sdk-core/rds.rb +0 -16
  1258. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1259. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1260. data/lib/aws-sdk-core/redshift.rb +0 -7
  1261. data/lib/aws-sdk-core/redshiftdataapiservice.rb +0 -6
  1262. data/lib/aws-sdk-core/rekognition.rb +0 -7
  1263. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1264. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1265. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1266. data/lib/aws-sdk-core/route53.rb +0 -7
  1267. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1268. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1269. data/lib/aws-sdk-core/s3.rb +0 -26
  1270. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1271. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1272. data/lib/aws-sdk-core/s3control.rb +0 -6
  1273. data/lib/aws-sdk-core/s3outposts.rb +0 -6
  1274. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1275. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1276. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1277. data/lib/aws-sdk-core/schemas.rb +0 -6
  1278. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1279. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1280. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1281. data/lib/aws-sdk-core/service.rb +0 -4
  1282. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1283. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1284. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1285. data/lib/aws-sdk-core/ses.rb +0 -7
  1286. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1287. data/lib/aws-sdk-core/shield.rb +0 -6
  1288. data/lib/aws-sdk-core/signer.rb +0 -7
  1289. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1290. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1291. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1292. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1293. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1294. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1295. data/lib/aws-sdk-core/sms.rb +0 -6
  1296. data/lib/aws-sdk-core/snowball.rb +0 -6
  1297. data/lib/aws-sdk-core/sns.rb +0 -7
  1298. data/lib/aws-sdk-core/sqs.rb +0 -7
  1299. data/lib/aws-sdk-core/ssm.rb +0 -7
  1300. data/lib/aws-sdk-core/sso.rb +0 -6
  1301. data/lib/aws-sdk-core/ssoadmin.rb +0 -6
  1302. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1303. data/lib/aws-sdk-core/states.rb +0 -6
  1304. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1305. data/lib/aws-sdk-core/sts.rb +0 -6
  1306. data/lib/aws-sdk-core/support.rb +0 -6
  1307. data/lib/aws-sdk-core/swf.rb +0 -6
  1308. data/lib/aws-sdk-core/synthetics.rb +0 -6
  1309. data/lib/aws-sdk-core/textract.rb +0 -6
  1310. data/lib/aws-sdk-core/timestreamquery.rb +0 -6
  1311. data/lib/aws-sdk-core/timestreamwrite.rb +0 -6
  1312. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1313. data/lib/aws-sdk-core/transfer.rb +0 -6
  1314. data/lib/aws-sdk-core/translate.rb +0 -6
  1315. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1316. data/lib/aws-sdk-core/waf.rb +0 -6
  1317. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1318. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1319. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1320. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1321. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1322. data/lib/aws-sdk-core/worklink.rb +0 -6
  1323. data/lib/aws-sdk-core/workmail.rb +0 -6
  1324. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1325. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1326. data/lib/aws-sdk-core/xray.rb +0 -6
  1327. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1328. data/service-models.json +0 -949
@@ -1,3149 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- "AddTagsToResource": [
5
- {
6
- "input": {
7
- "ResourceName": "arn:aws:elasticache:us-east-1:1234567890:cluster:my-mem-cluster",
8
- "Tags": [
9
- {
10
- "Key": "APIVersion",
11
- "Value": "20150202"
12
- },
13
- {
14
- "Key": "Service",
15
- "Value": "ElastiCache"
16
- }
17
- ]
18
- },
19
- "output": {
20
- "TagList": [
21
- {
22
- "Key": "APIVersion",
23
- "Value": "20150202"
24
- },
25
- {
26
- "Key": "Service",
27
- "Value": "ElastiCache"
28
- }
29
- ]
30
- },
31
- "comments": {
32
- "input": {
33
- },
34
- "output": {
35
- }
36
- },
37
- "description": "Adds up to 10 tags, key/value pairs, to a cluster or snapshot resource.",
38
- "id": "addtagstoresource-1482430264385",
39
- "title": "AddTagsToResource"
40
- }
41
- ],
42
- "AuthorizeCacheSecurityGroupIngress": [
43
- {
44
- "input": {
45
- "CacheSecurityGroupName": "my-sec-grp",
46
- "EC2SecurityGroupName": "my-ec2-sec-grp",
47
- "EC2SecurityGroupOwnerId": "1234567890"
48
- },
49
- "comments": {
50
- "input": {
51
- },
52
- "output": {
53
- }
54
- },
55
- "description": "Allows network ingress to a cache security group. Applications using ElastiCache must be running on Amazon EC2. Amazon EC2 security groups are used as the authorization mechanism.",
56
- "id": "authorizecachecachesecuritygroupingress-1483046446206",
57
- "title": "AuthorizeCacheCacheSecurityGroupIngress"
58
- }
59
- ],
60
- "CopySnapshot": [
61
- {
62
- "input": {
63
- "SourceSnapshotName": "my-snapshot",
64
- "TargetBucket": "",
65
- "TargetSnapshotName": "my-snapshot-copy"
66
- },
67
- "output": {
68
- "Snapshot": {
69
- "AutoMinorVersionUpgrade": true,
70
- "CacheClusterCreateTime": "2016-12-21T22:24:04.955Z",
71
- "CacheClusterId": "my-redis4",
72
- "CacheNodeType": "cache.m3.large",
73
- "CacheParameterGroupName": "default.redis3.2",
74
- "CacheSubnetGroupName": "default",
75
- "Engine": "redis",
76
- "EngineVersion": "3.2.4",
77
- "NodeSnapshots": [
78
- {
79
- "CacheNodeCreateTime": "2016-12-21T22:24:04.955Z",
80
- "CacheNodeId": "0001",
81
- "CacheSize": "3 MB",
82
- "SnapshotCreateTime": "2016-12-28T07:00:52Z"
83
- }
84
- ],
85
- "NumCacheNodes": 1,
86
- "Port": 6379,
87
- "PreferredAvailabilityZone": "us-east-1c",
88
- "PreferredMaintenanceWindow": "tue:09:30-tue:10:30",
89
- "SnapshotName": "my-snapshot-copy",
90
- "SnapshotRetentionLimit": 7,
91
- "SnapshotSource": "manual",
92
- "SnapshotStatus": "creating",
93
- "SnapshotWindow": "07:00-08:00",
94
- "VpcId": "vpc-3820329f3"
95
- }
96
- },
97
- "comments": {
98
- "input": {
99
- },
100
- "output": {
101
- }
102
- },
103
- "description": "Copies a snapshot to a specified name.",
104
- "id": "copysnapshot-1482961393820",
105
- "title": "CopySnapshot"
106
- }
107
- ],
108
- "CreateCacheCluster": [
109
- {
110
- "input": {
111
- "AZMode": "cross-az",
112
- "CacheClusterId": "my-memcached-cluster",
113
- "CacheNodeType": "cache.r3.large",
114
- "CacheSubnetGroupName": "default",
115
- "Engine": "memcached",
116
- "EngineVersion": "1.4.24",
117
- "NumCacheNodes": 2,
118
- "Port": 11211
119
- },
120
- "output": {
121
- "CacheCluster": {
122
- "AutoMinorVersionUpgrade": true,
123
- "CacheClusterId": "my-memcached-cluster",
124
- "CacheClusterStatus": "creating",
125
- "CacheNodeType": "cache.r3.large",
126
- "CacheParameterGroup": {
127
- "CacheNodeIdsToReboot": [
128
-
129
- ],
130
- "CacheParameterGroupName": "default.memcached1.4",
131
- "ParameterApplyStatus": "in-sync"
132
- },
133
- "CacheSecurityGroups": [
134
-
135
- ],
136
- "CacheSubnetGroupName": "default",
137
- "ClientDownloadLandingPage": "https://console.aws.amazon.com/elasticache/home#client-download:",
138
- "Engine": "memcached",
139
- "EngineVersion": "1.4.24",
140
- "NumCacheNodes": 2,
141
- "PendingModifiedValues": {
142
- },
143
- "PreferredAvailabilityZone": "Multiple",
144
- "PreferredMaintenanceWindow": "wed:09:00-wed:10:00"
145
- }
146
- },
147
- "comments": {
148
- "input": {
149
- },
150
- "output": {
151
- }
152
- },
153
- "description": "Creates a Memcached cluster with 2 nodes. ",
154
- "id": "createcachecluster-1474994727381",
155
- "title": "CreateCacheCluster"
156
- },
157
- {
158
- "input": {
159
- "AutoMinorVersionUpgrade": true,
160
- "CacheClusterId": "my-redis",
161
- "CacheNodeType": "cache.r3.larage",
162
- "CacheSubnetGroupName": "default",
163
- "Engine": "redis",
164
- "EngineVersion": "3.2.4",
165
- "NumCacheNodes": 1,
166
- "Port": 6379,
167
- "PreferredAvailabilityZone": "us-east-1c",
168
- "SnapshotRetentionLimit": 7
169
- },
170
- "output": {
171
- "CacheCluster": {
172
- "AutoMinorVersionUpgrade": true,
173
- "CacheClusterId": "my-redis",
174
- "CacheClusterStatus": "creating",
175
- "CacheNodeType": "cache.m3.large",
176
- "CacheParameterGroup": {
177
- "CacheNodeIdsToReboot": [
178
-
179
- ],
180
- "CacheParameterGroupName": "default.redis3.2",
181
- "ParameterApplyStatus": "in-sync"
182
- },
183
- "CacheSecurityGroups": [
184
-
185
- ],
186
- "CacheSubnetGroupName": "default",
187
- "ClientDownloadLandingPage": "https: //console.aws.amazon.com/elasticache/home#client-download: ",
188
- "Engine": "redis",
189
- "EngineVersion": "3.2.4",
190
- "NumCacheNodes": 1,
191
- "PendingModifiedValues": {
192
- },
193
- "PreferredAvailabilityZone": "us-east-1c",
194
- "PreferredMaintenanceWindow": "fri: 05: 30-fri: 06: 30",
195
- "SnapshotRetentionLimit": 7,
196
- "SnapshotWindow": "10: 00-11: 00"
197
- }
198
- },
199
- "comments": {
200
- "input": {
201
- },
202
- "output": {
203
- }
204
- },
205
- "description": "Creates a Redis cluster with 1 node. ",
206
- "id": "createcachecluster-1474994727381",
207
- "title": "CreateCacheCluster"
208
- }
209
- ],
210
- "CreateCacheParameterGroup": [
211
- {
212
- "input": {
213
- "CacheParameterGroupFamily": "redis2.8",
214
- "CacheParameterGroupName": "custom-redis2-8",
215
- "Description": "Custom Redis 2.8 parameter group."
216
- },
217
- "output": {
218
- "CacheParameterGroup": {
219
- "CacheParameterGroupFamily": "redis2.8",
220
- "CacheParameterGroupName": "custom-redis2-8",
221
- "Description": "Custom Redis 2.8 parameter group."
222
- }
223
- },
224
- "comments": {
225
- "input": {
226
- },
227
- "output": {
228
- }
229
- },
230
- "description": "Creates the Amazon ElastiCache parameter group custom-redis2-8.",
231
- "id": "createcacheparametergroup-1474997699362",
232
- "title": "CreateCacheParameterGroup"
233
- }
234
- ],
235
- "CreateCacheSecurityGroup": [
236
- {
237
- "input": {
238
- "CacheSecurityGroupName": "my-cache-sec-grp",
239
- "Description": "Example ElastiCache security group."
240
- },
241
- "comments": {
242
- "input": {
243
- },
244
- "output": {
245
- }
246
- },
247
- "description": "Creates an ElastiCache security group. ElastiCache security groups are only for clusters not running in an AWS VPC.",
248
- "id": "createcachesecuritygroup-1483041506604",
249
- "title": "CreateCacheSecurityGroup"
250
- }
251
- ],
252
- "CreateCacheSubnetGroup": [
253
- {
254
- "input": {
255
- "CacheSubnetGroupDescription": "Sample subnet group",
256
- "CacheSubnetGroupName": "my-sn-grp2",
257
- "SubnetIds": [
258
- "subnet-6f28c982",
259
- "subnet-bcd382f3",
260
- "subnet-845b3e7c0"
261
- ]
262
- },
263
- "output": {
264
- "CacheSubnetGroup": {
265
- "CacheSubnetGroupDescription": "My subnet group.",
266
- "CacheSubnetGroupName": "my-sn-grp",
267
- "Subnets": [
268
- {
269
- "SubnetAvailabilityZone": {
270
- "Name": "us-east-1a"
271
- },
272
- "SubnetIdentifier": "subnet-6f28c982"
273
- },
274
- {
275
- "SubnetAvailabilityZone": {
276
- "Name": "us-east-1c"
277
- },
278
- "SubnetIdentifier": "subnet-bcd382f3"
279
- },
280
- {
281
- "SubnetAvailabilityZone": {
282
- "Name": "us-east-1b"
283
- },
284
- "SubnetIdentifier": "subnet-845b3e7c0"
285
- }
286
- ],
287
- "VpcId": "vpc-91280df6"
288
- }
289
- },
290
- "comments": {
291
- "input": {
292
- },
293
- "output": {
294
- }
295
- },
296
- "description": "Creates a new cache subnet group.",
297
- "id": "createcachesubnet-1483042274558",
298
- "title": "CreateCacheSubnet"
299
- }
300
- ],
301
- "CreateReplicationGroup": [
302
- {
303
- "input": {
304
- "AutomaticFailoverEnabled": true,
305
- "CacheNodeType": "cache.m3.medium",
306
- "Engine": "redis",
307
- "EngineVersion": "2.8.24",
308
- "NumCacheClusters": 3,
309
- "ReplicationGroupDescription": "A Redis replication group.",
310
- "ReplicationGroupId": "my-redis-rg",
311
- "SnapshotRetentionLimit": 30
312
- },
313
- "output": {
314
- "ReplicationGroup": {
315
- "AutomaticFailover": "enabling",
316
- "Description": "A Redis replication group.",
317
- "MemberClusters": [
318
- "my-redis-rg-001",
319
- "my-redis-rg-002",
320
- "my-redis-rg-003"
321
- ],
322
- "PendingModifiedValues": {
323
- },
324
- "ReplicationGroupId": "my-redis-rg",
325
- "SnapshottingClusterId": "my-redis-rg-002",
326
- "Status": "creating"
327
- }
328
- },
329
- "comments": {
330
- "input": {
331
- },
332
- "output": {
333
- }
334
- },
335
- "description": "Creates a Redis replication group with 3 nodes.",
336
- "id": "createcachereplicationgroup-1474998730655",
337
- "title": "CreateCacheReplicationGroup"
338
- },
339
- {
340
- "input": {
341
- "AutoMinorVersionUpgrade": true,
342
- "CacheNodeType": "cache.m3.medium",
343
- "CacheParameterGroupName": "default.redis3.2.cluster.on",
344
- "Engine": "redis",
345
- "EngineVersion": "3.2.4",
346
- "NodeGroupConfiguration": [
347
- {
348
- "PrimaryAvailabilityZone": "us-east-1c",
349
- "ReplicaAvailabilityZones": [
350
- "us-east-1b"
351
- ],
352
- "ReplicaCount": 1,
353
- "Slots": "0-8999"
354
- },
355
- {
356
- "PrimaryAvailabilityZone": "us-east-1a",
357
- "ReplicaAvailabilityZones": [
358
- "us-east-1a",
359
- "us-east-1c"
360
- ],
361
- "ReplicaCount": 2,
362
- "Slots": "9000-16383"
363
- }
364
- ],
365
- "NumNodeGroups": 2,
366
- "ReplicationGroupDescription": "A multi-sharded replication group",
367
- "ReplicationGroupId": "clustered-redis-rg",
368
- "SnapshotRetentionLimit": 8
369
- },
370
- "output": {
371
- "ReplicationGroup": {
372
- "AutomaticFailover": "enabled",
373
- "Description": "Sharded replication group",
374
- "MemberClusters": [
375
- "rc-rg3-0001-001",
376
- "rc-rg3-0001-002",
377
- "rc-rg3-0002-001",
378
- "rc-rg3-0002-002",
379
- "rc-rg3-0002-003"
380
- ],
381
- "PendingModifiedValues": {
382
- },
383
- "ReplicationGroupId": "clustered-redis-rg",
384
- "SnapshotRetentionLimit": 8,
385
- "SnapshotWindow": "05:30-06:30",
386
- "Status": "creating"
387
- }
388
- },
389
- "comments": {
390
- "input": {
391
- },
392
- "output": {
393
- }
394
- },
395
- "description": "Creates a Redis (cluster mode enabled) replication group with two shards. One shard has one read replica node and the other shard has two read replicas.",
396
- "id": "createreplicationgroup-1483657035585",
397
- "title": "CreateReplicationGroup"
398
- }
399
- ],
400
- "CreateSnapshot": [
401
- {
402
- "input": {
403
- "CacheClusterId": "onenoderedis",
404
- "SnapshotName": "snapshot-1"
405
- },
406
- "output": {
407
- "Snapshot": {
408
- "AutoMinorVersionUpgrade": true,
409
- "CacheClusterCreateTime": "2017-02-03T15:43:36.278Z",
410
- "CacheClusterId": "onenoderedis",
411
- "CacheNodeType": "cache.m3.medium",
412
- "CacheParameterGroupName": "default.redis3.2",
413
- "CacheSubnetGroupName": "default",
414
- "Engine": "redis",
415
- "EngineVersion": "3.2.4",
416
- "NodeSnapshots": [
417
- {
418
- "CacheNodeCreateTime": "2017-02-03T15:43:36.278Z",
419
- "CacheNodeId": "0001",
420
- "CacheSize": ""
421
- }
422
- ],
423
- "NumCacheNodes": 1,
424
- "Port": 6379,
425
- "PreferredAvailabilityZone": "us-west-2c",
426
- "PreferredMaintenanceWindow": "sat:08:00-sat:09:00",
427
- "SnapshotName": "snapshot-1",
428
- "SnapshotRetentionLimit": 1,
429
- "SnapshotSource": "manual",
430
- "SnapshotStatus": "creating",
431
- "SnapshotWindow": "00:00-01:00",
432
- "VpcId": "vpc-73c3cd17"
433
- }
434
- },
435
- "comments": {
436
- "input": {
437
- },
438
- "output": {
439
- }
440
- },
441
- "description": "Creates a snapshot of a non-clustered Redis cluster that has only one node.",
442
- "id": "createsnapshot-1474999681024",
443
- "title": "CreateSnapshot - NonClustered Redis, no read-replicas"
444
- },
445
- {
446
- "input": {
447
- "CacheClusterId": "threenoderedis-001",
448
- "SnapshotName": "snapshot-2"
449
- },
450
- "output": {
451
- "Snapshot": {
452
- "AutoMinorVersionUpgrade": true,
453
- "CacheClusterCreateTime": "2017-02-03T15:43:36.278Z",
454
- "CacheClusterId": "threenoderedis-001",
455
- "CacheNodeType": "cache.m3.medium",
456
- "CacheParameterGroupName": "default.redis3.2",
457
- "CacheSubnetGroupName": "default",
458
- "Engine": "redis",
459
- "EngineVersion": "3.2.4",
460
- "NodeSnapshots": [
461
- {
462
- "CacheNodeCreateTime": "2017-02-03T15:43:36.278Z",
463
- "CacheNodeId": "0001",
464
- "CacheSize": ""
465
- }
466
- ],
467
- "NumCacheNodes": 1,
468
- "Port": 6379,
469
- "PreferredAvailabilityZone": "us-west-2c",
470
- "PreferredMaintenanceWindow": "sat:08:00-sat:09:00",
471
- "SnapshotName": "snapshot-2",
472
- "SnapshotRetentionLimit": 1,
473
- "SnapshotSource": "manual",
474
- "SnapshotStatus": "creating",
475
- "SnapshotWindow": "00:00-01:00",
476
- "VpcId": "vpc-73c3cd17"
477
- }
478
- },
479
- "comments": {
480
- "input": {
481
- },
482
- "output": {
483
- }
484
- },
485
- "description": "Creates a snapshot of a non-clustered Redis cluster that has only three nodes, primary and two read-replicas. CacheClusterId must be a specific node in the cluster.",
486
- "id": "createsnapshot-1474999681024",
487
- "title": "CreateSnapshot - NonClustered Redis, 2 read-replicas"
488
- },
489
- {
490
- "input": {
491
- "ReplicationGroupId": "clusteredredis",
492
- "SnapshotName": "snapshot-2x5"
493
- },
494
- "output": {
495
- "Snapshot": {
496
- "AutoMinorVersionUpgrade": true,
497
- "AutomaticFailover": "enabled",
498
- "CacheNodeType": "cache.m3.medium",
499
- "CacheParameterGroupName": "default.redis3.2.cluster.on",
500
- "CacheSubnetGroupName": "default",
501
- "Engine": "redis",
502
- "EngineVersion": "3.2.4",
503
- "NodeSnapshots": [
504
- {
505
- "CacheSize": "",
506
- "NodeGroupId": "0001"
507
- },
508
- {
509
- "CacheSize": "",
510
- "NodeGroupId": "0002"
511
- }
512
- ],
513
- "NumNodeGroups": 2,
514
- "Port": 6379,
515
- "PreferredMaintenanceWindow": "mon:09:30-mon:10:30",
516
- "ReplicationGroupDescription": "Redis cluster with 2 shards.",
517
- "ReplicationGroupId": "clusteredredis",
518
- "SnapshotName": "snapshot-2x5",
519
- "SnapshotRetentionLimit": 1,
520
- "SnapshotSource": "manual",
521
- "SnapshotStatus": "creating",
522
- "SnapshotWindow": "12:00-13:00",
523
- "VpcId": "vpc-73c3cd17"
524
- }
525
- },
526
- "comments": {
527
- "input": {
528
- },
529
- "output": {
530
- }
531
- },
532
- "description": "Creates a snapshot of a clustered Redis cluster that has 2 shards, each with a primary and 4 read-replicas.",
533
- "id": "createsnapshot-clustered-redis-1486144841758",
534
- "title": "CreateSnapshot-clustered Redis"
535
- }
536
- ],
537
- "DeleteCacheCluster": [
538
- {
539
- "input": {
540
- "CacheClusterId": "my-memcached"
541
- },
542
- "output": {
543
- "CacheCluster": {
544
- "AutoMinorVersionUpgrade": true,
545
- "CacheClusterCreateTime": "2016-12-22T16:05:17.314Z",
546
- "CacheClusterId": "my-memcached",
547
- "CacheClusterStatus": "deleting",
548
- "CacheNodeType": "cache.r3.large",
549
- "CacheParameterGroup": {
550
- "CacheNodeIdsToReboot": [
551
-
552
- ],
553
- "CacheParameterGroupName": "default.memcached1.4",
554
- "ParameterApplyStatus": "in-sync"
555
- },
556
- "CacheSecurityGroups": [
557
-
558
- ],
559
- "CacheSubnetGroupName": "default",
560
- "ClientDownloadLandingPage": "https://console.aws.amazon.com/elasticache/home#client-download:",
561
- "ConfigurationEndpoint": {
562
- "Address": "my-memcached2.ameaqx.cfg.use1.cache.amazonaws.com",
563
- "Port": 11211
564
- },
565
- "Engine": "memcached",
566
- "EngineVersion": "1.4.24",
567
- "NumCacheNodes": 2,
568
- "PendingModifiedValues": {
569
- },
570
- "PreferredAvailabilityZone": "Multiple",
571
- "PreferredMaintenanceWindow": "tue:07:30-tue:08:30"
572
- }
573
- },
574
- "comments": {
575
- "input": {
576
- },
577
- "output": {
578
- }
579
- },
580
- "description": "Deletes an Amazon ElastiCache cluster.",
581
- "id": "deletecachecluster-1475010605291",
582
- "title": "DeleteCacheCluster"
583
- }
584
- ],
585
- "DeleteCacheParameterGroup": [
586
- {
587
- "input": {
588
- "CacheParameterGroupName": "custom-mem1-4"
589
- },
590
- "comments": {
591
- "input": {
592
- },
593
- "output": {
594
- }
595
- },
596
- "description": "Deletes the Amazon ElastiCache parameter group custom-mem1-4.",
597
- "id": "deletecacheparametergroup-1475010933957",
598
- "title": "DeleteCacheParameterGroup"
599
- }
600
- ],
601
- "DeleteCacheSecurityGroup": [
602
- {
603
- "input": {
604
- "CacheSecurityGroupName": "my-sec-group"
605
- },
606
- "comments": {
607
- "input": {
608
- },
609
- "output": {
610
- }
611
- },
612
- "description": "Deletes a cache security group.",
613
- "id": "deletecachesecuritygroup-1483046967507",
614
- "title": "DeleteCacheSecurityGroup"
615
- }
616
- ],
617
- "DeleteCacheSubnetGroup": [
618
- {
619
- "input": {
620
- "CacheSubnetGroupName": "my-subnet-group"
621
- },
622
- "comments": {
623
- "input": {
624
- },
625
- "output": {
626
- }
627
- },
628
- "description": "Deletes the Amazon ElastiCache subnet group my-subnet-group.",
629
- "id": "deletecachesubnetgroup-1475011431325",
630
- "title": "DeleteCacheSubnetGroup"
631
- }
632
- ],
633
- "DeleteReplicationGroup": [
634
- {
635
- "input": {
636
- "ReplicationGroupId": "my-redis-rg",
637
- "RetainPrimaryCluster": false
638
- },
639
- "output": {
640
- "ReplicationGroup": {
641
- "AutomaticFailover": "disabled",
642
- "Description": "simple redis cluster",
643
- "PendingModifiedValues": {
644
- },
645
- "ReplicationGroupId": "my-redis-rg",
646
- "Status": "deleting"
647
- }
648
- },
649
- "comments": {
650
- "input": {
651
- },
652
- "output": {
653
- }
654
- },
655
- "description": "Deletes the Amazon ElastiCache replication group my-redis-rg.",
656
- "id": "deletereplicationgroup-1475011641804",
657
- "title": "DeleteReplicationGroup"
658
- }
659
- ],
660
- "DeleteSnapshot": [
661
- {
662
- "input": {
663
- "SnapshotName": "snapshot-20161212"
664
- },
665
- "output": {
666
- "Snapshot": {
667
- "AutoMinorVersionUpgrade": true,
668
- "CacheClusterCreateTime": "2016-12-21T22:27:12.543Z",
669
- "CacheClusterId": "my-redis5",
670
- "CacheNodeType": "cache.m3.large",
671
- "CacheParameterGroupName": "default.redis3.2",
672
- "CacheSubnetGroupName": "default",
673
- "Engine": "redis",
674
- "EngineVersion": "3.2.4",
675
- "NodeSnapshots": [
676
- {
677
- "CacheNodeCreateTime": "2016-12-21T22:27:12.543Z",
678
- "CacheNodeId": "0001",
679
- "CacheSize": "3 MB",
680
- "SnapshotCreateTime": "2016-12-21T22:30:26Z"
681
- }
682
- ],
683
- "NumCacheNodes": 1,
684
- "Port": 6379,
685
- "PreferredAvailabilityZone": "us-east-1c",
686
- "PreferredMaintenanceWindow": "fri:05:30-fri:06:30",
687
- "SnapshotName": "snapshot-20161212",
688
- "SnapshotRetentionLimit": 7,
689
- "SnapshotSource": "manual",
690
- "SnapshotStatus": "deleting",
691
- "SnapshotWindow": "10:00-11:00",
692
- "VpcId": "vpc-91280df6"
693
- }
694
- },
695
- "comments": {
696
- "input": {
697
- },
698
- "output": {
699
- }
700
- },
701
- "description": "Deletes the Redis snapshot snapshot-20160822.",
702
- "id": "deletesnapshot-1475011945779",
703
- "title": "DeleteSnapshot"
704
- }
705
- ],
706
- "DescribeCacheClusters": [
707
- {
708
- "input": {
709
- "CacheClusterId": "my-mem-cluster"
710
- },
711
- "output": {
712
- "CacheClusters": [
713
- {
714
- "AutoMinorVersionUpgrade": true,
715
- "CacheClusterCreateTime": "2016-12-21T21:59:43.794Z",
716
- "CacheClusterId": "my-mem-cluster",
717
- "CacheClusterStatus": "available",
718
- "CacheNodeType": "cache.t2.medium",
719
- "CacheParameterGroup": {
720
- "CacheNodeIdsToReboot": [
721
-
722
- ],
723
- "CacheParameterGroupName": "default.memcached1.4",
724
- "ParameterApplyStatus": "in-sync"
725
- },
726
- "CacheSecurityGroups": [
727
-
728
- ],
729
- "CacheSubnetGroupName": "default",
730
- "ClientDownloadLandingPage": "https://console.aws.amazon.com/elasticache/home#client-download:",
731
- "ConfigurationEndpoint": {
732
- "Address": "my-mem-cluster.abcdef.cfg.use1.cache.amazonaws.com",
733
- "Port": 11211
734
- },
735
- "Engine": "memcached",
736
- "EngineVersion": "1.4.24",
737
- "NumCacheNodes": 2,
738
- "PendingModifiedValues": {
739
- },
740
- "PreferredAvailabilityZone": "Multiple",
741
- "PreferredMaintenanceWindow": "wed:06:00-wed:07:00"
742
- }
743
- ]
744
- },
745
- "comments": {
746
- "input": {
747
- },
748
- "output": {
749
- }
750
- },
751
- "description": "Lists the details for up to 50 cache clusters.",
752
- "id": "describecacheclusters-1475012269754",
753
- "title": "DescribeCacheClusters"
754
- },
755
- {
756
- "input": {
757
- "CacheClusterId": "my-mem-cluster",
758
- "ShowCacheNodeInfo": true
759
- },
760
- "output": {
761
- "CacheClusters": [
762
- {
763
- "AutoMinorVersionUpgrade": true,
764
- "CacheClusterCreateTime": "2016-12-21T21:59:43.794Z",
765
- "CacheClusterId": "my-mem-cluster",
766
- "CacheClusterStatus": "available",
767
- "CacheNodeType": "cache.t2.medium",
768
- "CacheNodes": [
769
- {
770
- "CacheNodeCreateTime": "2016-12-21T21:59:43.794Z",
771
- "CacheNodeId": "0001",
772
- "CacheNodeStatus": "available",
773
- "CustomerAvailabilityZone": "us-east-1b",
774
- "Endpoint": {
775
- "Address": "my-mem-cluster.ameaqx.0001.use1.cache.amazonaws.com",
776
- "Port": 11211
777
- },
778
- "ParameterGroupStatus": "in-sync"
779
- },
780
- {
781
- "CacheNodeCreateTime": "2016-12-21T21:59:43.794Z",
782
- "CacheNodeId": "0002",
783
- "CacheNodeStatus": "available",
784
- "CustomerAvailabilityZone": "us-east-1a",
785
- "Endpoint": {
786
- "Address": "my-mem-cluster.ameaqx.0002.use1.cache.amazonaws.com",
787
- "Port": 11211
788
- },
789
- "ParameterGroupStatus": "in-sync"
790
- }
791
- ],
792
- "CacheParameterGroup": {
793
- "CacheNodeIdsToReboot": [
794
-
795
- ],
796
- "CacheParameterGroupName": "default.memcached1.4",
797
- "ParameterApplyStatus": "in-sync"
798
- },
799
- "CacheSecurityGroups": [
800
-
801
- ],
802
- "CacheSubnetGroupName": "default",
803
- "ClientDownloadLandingPage": "https://console.aws.amazon.com/elasticache/home#client-download:",
804
- "ConfigurationEndpoint": {
805
- "Address": "my-mem-cluster.ameaqx.cfg.use1.cache.amazonaws.com",
806
- "Port": 11211
807
- },
808
- "Engine": "memcached",
809
- "EngineVersion": "1.4.24",
810
- "NumCacheNodes": 2,
811
- "PendingModifiedValues": {
812
- },
813
- "PreferredAvailabilityZone": "Multiple",
814
- "PreferredMaintenanceWindow": "wed:06:00-wed:07:00"
815
- }
816
- ]
817
- },
818
- "comments": {
819
- "input": {
820
- },
821
- "output": {
822
- }
823
- },
824
- "description": "Lists the details for the cache cluster my-mem-cluster.",
825
- "id": "describecacheclusters-1475012269754",
826
- "title": "DescribeCacheClusters"
827
- }
828
- ],
829
- "DescribeCacheEngineVersions": [
830
- {
831
- "input": {
832
- },
833
- "output": {
834
- "CacheEngineVersions": [
835
- {
836
- "CacheEngineDescription": "memcached",
837
- "CacheEngineVersionDescription": "memcached version 1.4.14",
838
- "CacheParameterGroupFamily": "memcached1.4",
839
- "Engine": "memcached",
840
- "EngineVersion": "1.4.14"
841
- },
842
- {
843
- "CacheEngineDescription": "memcached",
844
- "CacheEngineVersionDescription": "memcached version 1.4.24",
845
- "CacheParameterGroupFamily": "memcached1.4",
846
- "Engine": "memcached",
847
- "EngineVersion": "1.4.24"
848
- },
849
- {
850
- "CacheEngineDescription": "memcached",
851
- "CacheEngineVersionDescription": "memcached version 1.4.33",
852
- "CacheParameterGroupFamily": "memcached1.4",
853
- "Engine": "memcached",
854
- "EngineVersion": "1.4.33"
855
- },
856
- {
857
- "CacheEngineDescription": "memcached",
858
- "CacheEngineVersionDescription": "memcached version 1.4.5",
859
- "CacheParameterGroupFamily": "memcached1.4",
860
- "Engine": "memcached",
861
- "EngineVersion": "1.4.5"
862
- },
863
- {
864
- "CacheEngineDescription": "Redis",
865
- "CacheEngineVersionDescription": "redis version 2.6.13",
866
- "CacheParameterGroupFamily": "redis2.6",
867
- "Engine": "redis",
868
- "EngineVersion": "2.6.13"
869
- },
870
- {
871
- "CacheEngineDescription": "Redis",
872
- "CacheEngineVersionDescription": "redis version 2.8.19",
873
- "CacheParameterGroupFamily": "redis2.8",
874
- "Engine": "redis",
875
- "EngineVersion": "2.8.19"
876
- },
877
- {
878
- "CacheEngineDescription": "Redis",
879
- "CacheEngineVersionDescription": "redis version 2.8.21",
880
- "CacheParameterGroupFamily": "redis2.8",
881
- "Engine": "redis",
882
- "EngineVersion": "2.8.21"
883
- },
884
- {
885
- "CacheEngineDescription": "Redis",
886
- "CacheEngineVersionDescription": "redis version 2.8.22 R5",
887
- "CacheParameterGroupFamily": "redis2.8",
888
- "Engine": "redis",
889
- "EngineVersion": "2.8.22"
890
- },
891
- {
892
- "CacheEngineDescription": "Redis",
893
- "CacheEngineVersionDescription": "redis version 2.8.23 R4",
894
- "CacheParameterGroupFamily": "redis2.8",
895
- "Engine": "redis",
896
- "EngineVersion": "2.8.23"
897
- },
898
- {
899
- "CacheEngineDescription": "Redis",
900
- "CacheEngineVersionDescription": "redis version 2.8.24 R3",
901
- "CacheParameterGroupFamily": "redis2.8",
902
- "Engine": "redis",
903
- "EngineVersion": "2.8.24"
904
- },
905
- {
906
- "CacheEngineDescription": "Redis",
907
- "CacheEngineVersionDescription": "redis version 2.8.6",
908
- "CacheParameterGroupFamily": "redis2.8",
909
- "Engine": "redis",
910
- "EngineVersion": "2.8.6"
911
- },
912
- {
913
- "CacheEngineDescription": "Redis",
914
- "CacheEngineVersionDescription": "redis version 3.2.4",
915
- "CacheParameterGroupFamily": "redis3.2",
916
- "Engine": "redis",
917
- "EngineVersion": "3.2.4"
918
- }
919
- ]
920
- },
921
- "comments": {
922
- "input": {
923
- },
924
- "output": {
925
- }
926
- },
927
- "description": "Lists the details for up to 25 Memcached and Redis cache engine versions.",
928
- "id": "describecacheengineversions-1475012638790",
929
- "title": "DescribeCacheEngineVersions"
930
- },
931
- {
932
- "input": {
933
- "DefaultOnly": false,
934
- "Engine": "redis",
935
- "MaxRecords": 50
936
- },
937
- "output": {
938
- "CacheEngineVersions": [
939
- {
940
- "CacheEngineDescription": "Redis",
941
- "CacheEngineVersionDescription": "redis version 2.6.13",
942
- "CacheParameterGroupFamily": "redis2.6",
943
- "Engine": "redis",
944
- "EngineVersion": "2.6.13"
945
- },
946
- {
947
- "CacheEngineDescription": "Redis",
948
- "CacheEngineVersionDescription": "redis version 2.8.19",
949
- "CacheParameterGroupFamily": "redis2.8",
950
- "Engine": "redis",
951
- "EngineVersion": "2.8.19"
952
- },
953
- {
954
- "CacheEngineDescription": "Redis",
955
- "CacheEngineVersionDescription": "redis version 2.8.21",
956
- "CacheParameterGroupFamily": "redis2.8",
957
- "Engine": "redis",
958
- "EngineVersion": "2.8.21"
959
- },
960
- {
961
- "CacheEngineDescription": "Redis",
962
- "CacheEngineVersionDescription": "redis version 2.8.22 R5",
963
- "CacheParameterGroupFamily": "redis2.8",
964
- "Engine": "redis",
965
- "EngineVersion": "2.8.22"
966
- },
967
- {
968
- "CacheEngineDescription": "Redis",
969
- "CacheEngineVersionDescription": "redis version 2.8.23 R4",
970
- "CacheParameterGroupFamily": "redis2.8",
971
- "Engine": "redis",
972
- "EngineVersion": "2.8.23"
973
- },
974
- {
975
- "CacheEngineDescription": "Redis",
976
- "CacheEngineVersionDescription": "redis version 2.8.24 R3",
977
- "CacheParameterGroupFamily": "redis2.8",
978
- "Engine": "redis",
979
- "EngineVersion": "2.8.24"
980
- },
981
- {
982
- "CacheEngineDescription": "Redis",
983
- "CacheEngineVersionDescription": "redis version 2.8.6",
984
- "CacheParameterGroupFamily": "redis2.8",
985
- "Engine": "redis",
986
- "EngineVersion": "2.8.6"
987
- },
988
- {
989
- "CacheEngineDescription": "Redis",
990
- "CacheEngineVersionDescription": "redis version 3.2.4",
991
- "CacheParameterGroupFamily": "redis3.2",
992
- "Engine": "redis",
993
- "EngineVersion": "3.2.4"
994
- }
995
- ],
996
- "Marker": ""
997
- },
998
- "comments": {
999
- "input": {
1000
- },
1001
- "output": {
1002
- }
1003
- },
1004
- "description": "Lists the details for up to 50 Redis cache engine versions.",
1005
- "id": "describecacheengineversions-1475012638790",
1006
- "title": "DescribeCacheEngineVersions"
1007
- }
1008
- ],
1009
- "DescribeCacheParameterGroups": [
1010
- {
1011
- "input": {
1012
- "CacheParameterGroupName": "custom-mem1-4"
1013
- },
1014
- "output": {
1015
- "CacheParameterGroups": [
1016
- {
1017
- "CacheParameterGroupFamily": "memcached1.4",
1018
- "CacheParameterGroupName": "custom-mem1-4",
1019
- "Description": "Custom memcache param group"
1020
- }
1021
- ]
1022
- },
1023
- "comments": {
1024
- "input": {
1025
- },
1026
- "output": {
1027
- }
1028
- },
1029
- "description": "Returns a list of cache parameter group descriptions. If a cache parameter group name is specified, the list contains only the descriptions for that group.",
1030
- "id": "describecacheparametergroups-1483045457557",
1031
- "title": "DescribeCacheParameterGroups"
1032
- }
1033
- ],
1034
- "DescribeCacheParameters": [
1035
- {
1036
- "input": {
1037
- "CacheParameterGroupName": "custom-redis2-8",
1038
- "MaxRecords": 100,
1039
- "Source": "user"
1040
- },
1041
- "output": {
1042
- "Marker": "",
1043
- "Parameters": [
1044
- {
1045
- "AllowedValues": "yes,no",
1046
- "ChangeType": "requires-reboot",
1047
- "DataType": "string",
1048
- "Description": "Apply rehashing or not.",
1049
- "IsModifiable": true,
1050
- "MinimumEngineVersion": "2.8.6",
1051
- "ParameterName": "activerehashing",
1052
- "ParameterValue": "yes",
1053
- "Source": "system"
1054
- },
1055
- {
1056
- "AllowedValues": "always,everysec,no",
1057
- "ChangeType": "immediate",
1058
- "DataType": "string",
1059
- "Description": "fsync policy for AOF persistence",
1060
- "IsModifiable": true,
1061
- "MinimumEngineVersion": "2.8.6",
1062
- "ParameterName": "appendfsync",
1063
- "ParameterValue": "everysec",
1064
- "Source": "system"
1065
- },
1066
- {
1067
- "AllowedValues": "yes,no",
1068
- "ChangeType": "immediate",
1069
- "DataType": "string",
1070
- "Description": "Enable Redis persistence.",
1071
- "IsModifiable": true,
1072
- "MinimumEngineVersion": "2.8.6",
1073
- "ParameterName": "appendonly",
1074
- "ParameterValue": "no",
1075
- "Source": "system"
1076
- },
1077
- {
1078
- "AllowedValues": "0-",
1079
- "ChangeType": "immediate",
1080
- "DataType": "integer",
1081
- "Description": "Normal client output buffer hard limit in bytes.",
1082
- "IsModifiable": true,
1083
- "MinimumEngineVersion": "2.8.6",
1084
- "ParameterName": "client-output-buffer-limit-normal-hard-limit",
1085
- "ParameterValue": "0",
1086
- "Source": "system"
1087
- },
1088
- {
1089
- "AllowedValues": "0-",
1090
- "ChangeType": "immediate",
1091
- "DataType": "integer",
1092
- "Description": "Normal client output buffer soft limit in bytes.",
1093
- "IsModifiable": true,
1094
- "MinimumEngineVersion": "2.8.6",
1095
- "ParameterName": "client-output-buffer-limit-normal-soft-limit",
1096
- "ParameterValue": "0",
1097
- "Source": "system"
1098
- },
1099
- {
1100
- "AllowedValues": "0-",
1101
- "ChangeType": "immediate",
1102
- "DataType": "integer",
1103
- "Description": "Normal client output buffer soft limit in seconds.",
1104
- "IsModifiable": true,
1105
- "MinimumEngineVersion": "2.8.6",
1106
- "ParameterName": "client-output-buffer-limit-normal-soft-seconds",
1107
- "ParameterValue": "0",
1108
- "Source": "system"
1109
- },
1110
- {
1111
- "AllowedValues": "0-",
1112
- "ChangeType": "immediate",
1113
- "DataType": "integer",
1114
- "Description": "Pubsub client output buffer hard limit in bytes.",
1115
- "IsModifiable": true,
1116
- "MinimumEngineVersion": "2.8.6",
1117
- "ParameterName": "client-output-buffer-limit-pubsub-hard-limit",
1118
- "ParameterValue": "33554432",
1119
- "Source": "system"
1120
- },
1121
- {
1122
- "AllowedValues": "0-",
1123
- "ChangeType": "immediate",
1124
- "DataType": "integer",
1125
- "Description": "Pubsub client output buffer soft limit in bytes.",
1126
- "IsModifiable": true,
1127
- "MinimumEngineVersion": "2.8.6",
1128
- "ParameterName": "client-output-buffer-limit-pubsub-soft-limit",
1129
- "ParameterValue": "8388608",
1130
- "Source": "system"
1131
- },
1132
- {
1133
- "AllowedValues": "0-",
1134
- "ChangeType": "immediate",
1135
- "DataType": "integer",
1136
- "Description": "Pubsub client output buffer soft limit in seconds.",
1137
- "IsModifiable": true,
1138
- "MinimumEngineVersion": "2.8.6",
1139
- "ParameterName": "client-output-buffer-limit-pubsub-soft-seconds",
1140
- "ParameterValue": "60",
1141
- "Source": "system"
1142
- },
1143
- {
1144
- "AllowedValues": "0-",
1145
- "ChangeType": "immediate",
1146
- "DataType": "integer",
1147
- "Description": "Slave client output buffer soft limit in seconds.",
1148
- "IsModifiable": false,
1149
- "MinimumEngineVersion": "2.8.6",
1150
- "ParameterName": "client-output-buffer-limit-slave-soft-seconds",
1151
- "ParameterValue": "60",
1152
- "Source": "system"
1153
- },
1154
- {
1155
- "AllowedValues": "yes,no",
1156
- "ChangeType": "immediate",
1157
- "DataType": "string",
1158
- "Description": "If enabled, clients who attempt to write to a read-only slave will be disconnected. Applicable to 2.8.23 and higher.",
1159
- "IsModifiable": true,
1160
- "MinimumEngineVersion": "2.8.23",
1161
- "ParameterName": "close-on-slave-write",
1162
- "ParameterValue": "yes",
1163
- "Source": "system"
1164
- },
1165
- {
1166
- "AllowedValues": "1-1200000",
1167
- "ChangeType": "requires-reboot",
1168
- "DataType": "integer",
1169
- "Description": "Set the number of databases.",
1170
- "IsModifiable": true,
1171
- "MinimumEngineVersion": "2.8.6",
1172
- "ParameterName": "databases",
1173
- "ParameterValue": "16",
1174
- "Source": "system"
1175
- },
1176
- {
1177
- "AllowedValues": "0-",
1178
- "ChangeType": "immediate",
1179
- "DataType": "integer",
1180
- "Description": "The maximum number of hash entries in order for the dataset to be compressed.",
1181
- "IsModifiable": true,
1182
- "MinimumEngineVersion": "2.8.6",
1183
- "ParameterName": "hash-max-ziplist-entries",
1184
- "ParameterValue": "512",
1185
- "Source": "system"
1186
- },
1187
- {
1188
- "AllowedValues": "0-",
1189
- "ChangeType": "immediate",
1190
- "DataType": "integer",
1191
- "Description": "The threshold of biggest hash entries in order for the dataset to be compressed.",
1192
- "IsModifiable": true,
1193
- "MinimumEngineVersion": "2.8.6",
1194
- "ParameterName": "hash-max-ziplist-value",
1195
- "ParameterValue": "64",
1196
- "Source": "system"
1197
- },
1198
- {
1199
- "AllowedValues": "0-",
1200
- "ChangeType": "immediate",
1201
- "DataType": "integer",
1202
- "Description": "The maximum number of list entries in order for the dataset to be compressed.",
1203
- "IsModifiable": true,
1204
- "MinimumEngineVersion": "2.8.6",
1205
- "ParameterName": "list-max-ziplist-entries",
1206
- "ParameterValue": "512",
1207
- "Source": "system"
1208
- },
1209
- {
1210
- "AllowedValues": "0-",
1211
- "ChangeType": "immediate",
1212
- "DataType": "integer",
1213
- "Description": "The threshold of biggest list entries in order for the dataset to be compressed.",
1214
- "IsModifiable": true,
1215
- "MinimumEngineVersion": "2.8.6",
1216
- "ParameterName": "list-max-ziplist-value",
1217
- "ParameterValue": "64",
1218
- "Source": "system"
1219
- },
1220
- {
1221
- "AllowedValues": "5000",
1222
- "ChangeType": "immediate",
1223
- "DataType": "integer",
1224
- "Description": "Max execution time of a Lua script in milliseconds. 0 for unlimited execution without warnings.",
1225
- "IsModifiable": false,
1226
- "MinimumEngineVersion": "2.8.6",
1227
- "ParameterName": "lua-time-limit",
1228
- "ParameterValue": "5000",
1229
- "Source": "system"
1230
- },
1231
- {
1232
- "AllowedValues": "1-65000",
1233
- "ChangeType": "requires-reboot",
1234
- "DataType": "integer",
1235
- "Description": "The maximum number of Redis clients.",
1236
- "IsModifiable": false,
1237
- "MinimumEngineVersion": "2.8.6",
1238
- "ParameterName": "maxclients",
1239
- "ParameterValue": "65000",
1240
- "Source": "system"
1241
- },
1242
- {
1243
- "AllowedValues": "volatile-lru,allkeys-lru,volatile-random,allkeys-random,volatile-ttl,noeviction",
1244
- "ChangeType": "immediate",
1245
- "DataType": "string",
1246
- "Description": "Max memory policy.",
1247
- "IsModifiable": true,
1248
- "MinimumEngineVersion": "2.8.6",
1249
- "ParameterName": "maxmemory-policy",
1250
- "ParameterValue": "volatile-lru",
1251
- "Source": "system"
1252
- },
1253
- {
1254
- "AllowedValues": "1-",
1255
- "ChangeType": "immediate",
1256
- "DataType": "integer",
1257
- "Description": "Max memory samples.",
1258
- "IsModifiable": true,
1259
- "MinimumEngineVersion": "2.8.6",
1260
- "ParameterName": "maxmemory-samples",
1261
- "ParameterValue": "3",
1262
- "Source": "system"
1263
- },
1264
- {
1265
- "AllowedValues": "0-",
1266
- "ChangeType": "immediate",
1267
- "DataType": "integer",
1268
- "Description": "Maximum number of seconds within which the master must receive a ping from a slave to take writes. Use this parameter together with min-slaves-to-write to regulate when the master stops accepting writes. Setting this value to 0 means the master always takes writes.",
1269
- "IsModifiable": true,
1270
- "MinimumEngineVersion": "2.8.6",
1271
- "ParameterName": "min-slaves-max-lag",
1272
- "ParameterValue": "10",
1273
- "Source": "system"
1274
- },
1275
- {
1276
- "AllowedValues": "0-",
1277
- "ChangeType": "immediate",
1278
- "DataType": "integer",
1279
- "Description": "Number of slaves that must be connected in order for master to take writes. Use this parameter together with min-slaves-max-lag to regulate when the master stops accepting writes. Setting this to 0 means the master always takes writes.",
1280
- "IsModifiable": true,
1281
- "MinimumEngineVersion": "2.8.6",
1282
- "ParameterName": "min-slaves-to-write",
1283
- "ParameterValue": "0",
1284
- "Source": "system"
1285
- },
1286
- {
1287
- "ChangeType": "immediate",
1288
- "DataType": "string",
1289
- "Description": "The keyspace events for Redis to notify Pub/Sub clients about. By default all notifications are disabled",
1290
- "IsModifiable": true,
1291
- "MinimumEngineVersion": "2.8.6",
1292
- "ParameterName": "notify-keyspace-events",
1293
- "Source": "system"
1294
- },
1295
- {
1296
- "AllowedValues": "16384-",
1297
- "ChangeType": "immediate",
1298
- "DataType": "integer",
1299
- "Description": "The replication backlog size in bytes for PSYNC. This is the size of the buffer which accumulates slave data when slave is disconnected for some time, so that when slave reconnects again, only transfer the portion of data which the slave missed. Minimum value is 16K.",
1300
- "IsModifiable": true,
1301
- "MinimumEngineVersion": "2.8.6",
1302
- "ParameterName": "repl-backlog-size",
1303
- "ParameterValue": "1048576",
1304
- "Source": "system"
1305
- },
1306
- {
1307
- "AllowedValues": "0-",
1308
- "ChangeType": "immediate",
1309
- "DataType": "integer",
1310
- "Description": "The amount of time in seconds after the master no longer have any slaves connected for the master to free the replication backlog. A value of 0 means to never release the backlog.",
1311
- "IsModifiable": true,
1312
- "MinimumEngineVersion": "2.8.6",
1313
- "ParameterName": "repl-backlog-ttl",
1314
- "ParameterValue": "3600",
1315
- "Source": "system"
1316
- },
1317
- {
1318
- "AllowedValues": "11-",
1319
- "ChangeType": "immediate",
1320
- "DataType": "integer",
1321
- "Description": "The timeout in seconds for bulk transfer I/O during sync and master timeout from the perspective of the slave, and slave timeout from the perspective of the master.",
1322
- "IsModifiable": true,
1323
- "MinimumEngineVersion": "2.8.6",
1324
- "ParameterName": "repl-timeout",
1325
- "ParameterValue": "60",
1326
- "Source": "system"
1327
- },
1328
- {
1329
- "AllowedValues": "0-",
1330
- "ChangeType": "immediate",
1331
- "DataType": "integer",
1332
- "Description": "The amount of memory reserved for non-cache memory usage, in bytes. You may want to increase this parameter for nodes with read replicas, AOF enabled, etc, to reduce swap usage.",
1333
- "IsModifiable": true,
1334
- "MinimumEngineVersion": "2.8.6",
1335
- "ParameterName": "reserved-memory",
1336
- "ParameterValue": "0",
1337
- "Source": "system"
1338
- },
1339
- {
1340
- "AllowedValues": "0-",
1341
- "ChangeType": "immediate",
1342
- "DataType": "integer",
1343
- "Description": "The limit in the size of the set in order for the dataset to be compressed.",
1344
- "IsModifiable": true,
1345
- "MinimumEngineVersion": "2.8.6",
1346
- "ParameterName": "set-max-intset-entries",
1347
- "ParameterValue": "512",
1348
- "Source": "system"
1349
- },
1350
- {
1351
- "AllowedValues": "yes,no",
1352
- "ChangeType": "immediate",
1353
- "DataType": "string",
1354
- "Description": "Configures if chaining of slaves is allowed",
1355
- "IsModifiable": false,
1356
- "MinimumEngineVersion": "2.8.6",
1357
- "ParameterName": "slave-allow-chaining",
1358
- "ParameterValue": "no",
1359
- "Source": "system"
1360
- },
1361
- {
1362
- "AllowedValues": "-",
1363
- "ChangeType": "immediate",
1364
- "DataType": "integer",
1365
- "Description": "The execution time, in microseconds, to exceed in order for the command to get logged. Note that a negative number disables the slow log, while a value of zero forces the logging of every command.",
1366
- "IsModifiable": true,
1367
- "MinimumEngineVersion": "2.8.6",
1368
- "ParameterName": "slowlog-log-slower-than",
1369
- "ParameterValue": "10000",
1370
- "Source": "system"
1371
- },
1372
- {
1373
- "AllowedValues": "0-",
1374
- "ChangeType": "immediate",
1375
- "DataType": "integer",
1376
- "Description": "The length of the slow log. There is no limit to this length. Just be aware that it will consume memory. You can reclaim memory used by the slow log with SLOWLOG RESET.",
1377
- "IsModifiable": true,
1378
- "MinimumEngineVersion": "2.8.6",
1379
- "ParameterName": "slowlog-max-len",
1380
- "ParameterValue": "128",
1381
- "Source": "system"
1382
- },
1383
- {
1384
- "AllowedValues": "0-",
1385
- "ChangeType": "immediate",
1386
- "DataType": "integer",
1387
- "Description": "If non-zero, send ACKs every given number of seconds.",
1388
- "IsModifiable": true,
1389
- "MinimumEngineVersion": "2.8.6",
1390
- "ParameterName": "tcp-keepalive",
1391
- "ParameterValue": "0",
1392
- "Source": "system"
1393
- },
1394
- {
1395
- "AllowedValues": "0,20-",
1396
- "ChangeType": "immediate",
1397
- "DataType": "integer",
1398
- "Description": "Close connection if client is idle for a given number of seconds, or never if 0.",
1399
- "IsModifiable": true,
1400
- "MinimumEngineVersion": "2.8.6",
1401
- "ParameterName": "timeout",
1402
- "ParameterValue": "0",
1403
- "Source": "system"
1404
- },
1405
- {
1406
- "AllowedValues": "0-",
1407
- "ChangeType": "immediate",
1408
- "DataType": "integer",
1409
- "Description": "The maximum number of sorted set entries in order for the dataset to be compressed.",
1410
- "IsModifiable": true,
1411
- "MinimumEngineVersion": "2.8.6",
1412
- "ParameterName": "zset-max-ziplist-entries",
1413
- "ParameterValue": "128",
1414
- "Source": "system"
1415
- },
1416
- {
1417
- "AllowedValues": "0-",
1418
- "ChangeType": "immediate",
1419
- "DataType": "integer",
1420
- "Description": "The threshold of biggest sorted set entries in order for the dataset to be compressed.",
1421
- "IsModifiable": true,
1422
- "MinimumEngineVersion": "2.8.6",
1423
- "ParameterName": "zset-max-ziplist-value",
1424
- "ParameterValue": "64",
1425
- "Source": "system"
1426
- }
1427
- ]
1428
- },
1429
- "comments": {
1430
- "input": {
1431
- },
1432
- "output": {
1433
- }
1434
- },
1435
- "description": "Lists up to 100 user parameter values for the parameter group custom.redis2.8.",
1436
- "id": "describecacheparameters-1475013576900",
1437
- "title": "DescribeCacheParameters"
1438
- }
1439
- ],
1440
- "DescribeCacheSecurityGroups": [
1441
- {
1442
- "input": {
1443
- "CacheSecurityGroupName": "my-sec-group"
1444
- },
1445
- "comments": {
1446
- "input": {
1447
- },
1448
- "output": {
1449
- }
1450
- },
1451
- "description": "Returns a list of cache security group descriptions. If a cache security group name is specified, the list contains only the description of that group.",
1452
- "id": "describecachesecuritygroups-1483047200801",
1453
- "title": "DescribeCacheSecurityGroups"
1454
- }
1455
- ],
1456
- "DescribeCacheSubnetGroups": [
1457
- {
1458
- "input": {
1459
- "MaxRecords": 25
1460
- },
1461
- "output": {
1462
- "CacheSubnetGroups": [
1463
- {
1464
- "CacheSubnetGroupDescription": "Default CacheSubnetGroup",
1465
- "CacheSubnetGroupName": "default",
1466
- "Subnets": [
1467
- {
1468
- "SubnetAvailabilityZone": {
1469
- "Name": "us-east-1a"
1470
- },
1471
- "SubnetIdentifier": "subnet-1a2b3c4d"
1472
- },
1473
- {
1474
- "SubnetAvailabilityZone": {
1475
- "Name": "us-east-1c"
1476
- },
1477
- "SubnetIdentifier": "subnet-a1b2c3d4"
1478
- },
1479
- {
1480
- "SubnetAvailabilityZone": {
1481
- "Name": "us-east-1e"
1482
- },
1483
- "SubnetIdentifier": "subnet-abcd1234"
1484
- },
1485
- {
1486
- "SubnetAvailabilityZone": {
1487
- "Name": "us-east-1b"
1488
- },
1489
- "SubnetIdentifier": "subnet-1234abcd"
1490
- }
1491
- ],
1492
- "VpcId": "vpc-91280df6"
1493
- }
1494
- ],
1495
- "Marker": ""
1496
- },
1497
- "comments": {
1498
- "input": {
1499
- },
1500
- "output": {
1501
- }
1502
- },
1503
- "description": "Describes up to 25 cache subnet groups.",
1504
- "id": "describecachesubnetgroups-1482439214064",
1505
- "title": "DescribeCacheSubnetGroups"
1506
- }
1507
- ],
1508
- "DescribeEngineDefaultParameters": [
1509
- {
1510
- "input": {
1511
- "CacheParameterGroupFamily": "redis2.8",
1512
- "MaxRecords": 25
1513
- },
1514
- "output": {
1515
- "EngineDefaults": {
1516
- "CacheNodeTypeSpecificParameters": [
1517
- {
1518
- "AllowedValues": "0-",
1519
- "CacheNodeTypeSpecificValues": [
1520
- {
1521
- "CacheNodeType": "cache.c1.xlarge",
1522
- "Value": "650117120"
1523
- },
1524
- {
1525
- "CacheNodeType": "cache.m1.large",
1526
- "Value": "702545920"
1527
- },
1528
- {
1529
- "CacheNodeType": "cache.m1.medium",
1530
- "Value": "309329920"
1531
- },
1532
- {
1533
- "CacheNodeType": "cache.m1.small",
1534
- "Value": "94371840"
1535
- },
1536
- {
1537
- "CacheNodeType": "cache.m1.xlarge",
1538
- "Value": "1488977920"
1539
- },
1540
- {
1541
- "CacheNodeType": "cache.m2.2xlarge",
1542
- "Value": "3502243840"
1543
- },
1544
- {
1545
- "CacheNodeType": "cache.m2.4xlarge",
1546
- "Value": "7088373760"
1547
- },
1548
- {
1549
- "CacheNodeType": "cache.m2.xlarge",
1550
- "Value": "1709178880"
1551
- },
1552
- {
1553
- "CacheNodeType": "cache.m3.2xlarge",
1554
- "Value": "2998927360"
1555
- },
1556
- {
1557
- "CacheNodeType": "cache.m3.large",
1558
- "Value": "650117120"
1559
- },
1560
- {
1561
- "CacheNodeType": "cache.m3.medium",
1562
- "Value": "309329920"
1563
- },
1564
- {
1565
- "CacheNodeType": "cache.m3.xlarge",
1566
- "Value": "1426063360"
1567
- },
1568
- {
1569
- "CacheNodeType": "cache.m4.10xlarge",
1570
- "Value": "16604761424"
1571
- },
1572
- {
1573
- "CacheNodeType": "cache.m4.2xlarge",
1574
- "Value": "3188912636"
1575
- },
1576
- {
1577
- "CacheNodeType": "cache.m4.4xlarge",
1578
- "Value": "6525729063"
1579
- },
1580
- {
1581
- "CacheNodeType": "cache.m4.large",
1582
- "Value": "689259315"
1583
- },
1584
- {
1585
- "CacheNodeType": "cache.m4.xlarge",
1586
- "Value": "1532850176"
1587
- },
1588
- {
1589
- "CacheNodeType": "cache.r3.2xlarge",
1590
- "Value": "6081740800"
1591
- },
1592
- {
1593
- "CacheNodeType": "cache.r3.4xlarge",
1594
- "Value": "12268339200"
1595
- },
1596
- {
1597
- "CacheNodeType": "cache.r3.8xlarge",
1598
- "Value": "24536678400"
1599
- },
1600
- {
1601
- "CacheNodeType": "cache.r3.large",
1602
- "Value": "1468006400"
1603
- },
1604
- {
1605
- "CacheNodeType": "cache.r3.xlarge",
1606
- "Value": "3040870400"
1607
- },
1608
- {
1609
- "CacheNodeType": "cache.t1.micro",
1610
- "Value": "14260633"
1611
- },
1612
- {
1613
- "CacheNodeType": "cache.t2.medium",
1614
- "Value": "346134937"
1615
- },
1616
- {
1617
- "CacheNodeType": "cache.t2.micro",
1618
- "Value": "58195968"
1619
- },
1620
- {
1621
- "CacheNodeType": "cache.t2.small",
1622
- "Value": "166513868"
1623
- }
1624
- ],
1625
- "ChangeType": "immediate",
1626
- "DataType": "integer",
1627
- "Description": "Slave client output buffer hard limit in bytes.",
1628
- "IsModifiable": false,
1629
- "MinimumEngineVersion": "2.8.6",
1630
- "ParameterName": "client-output-buffer-limit-slave-hard-limit",
1631
- "Source": "system"
1632
- },
1633
- {
1634
- "AllowedValues": "0-",
1635
- "CacheNodeTypeSpecificValues": [
1636
- {
1637
- "CacheNodeType": "cache.c1.xlarge",
1638
- "Value": "650117120"
1639
- },
1640
- {
1641
- "CacheNodeType": "cache.m1.large",
1642
- "Value": "702545920"
1643
- },
1644
- {
1645
- "CacheNodeType": "cache.m1.medium",
1646
- "Value": "309329920"
1647
- },
1648
- {
1649
- "CacheNodeType": "cache.m1.small",
1650
- "Value": "94371840"
1651
- },
1652
- {
1653
- "CacheNodeType": "cache.m1.xlarge",
1654
- "Value": "1488977920"
1655
- },
1656
- {
1657
- "CacheNodeType": "cache.m2.2xlarge",
1658
- "Value": "3502243840"
1659
- },
1660
- {
1661
- "CacheNodeType": "cache.m2.4xlarge",
1662
- "Value": "7088373760"
1663
- },
1664
- {
1665
- "CacheNodeType": "cache.m2.xlarge",
1666
- "Value": "1709178880"
1667
- },
1668
- {
1669
- "CacheNodeType": "cache.m3.2xlarge",
1670
- "Value": "2998927360"
1671
- },
1672
- {
1673
- "CacheNodeType": "cache.m3.large",
1674
- "Value": "650117120"
1675
- },
1676
- {
1677
- "CacheNodeType": "cache.m3.medium",
1678
- "Value": "309329920"
1679
- },
1680
- {
1681
- "CacheNodeType": "cache.m3.xlarge",
1682
- "Value": "1426063360"
1683
- },
1684
- {
1685
- "CacheNodeType": "cache.m4.10xlarge",
1686
- "Value": "16604761424"
1687
- },
1688
- {
1689
- "CacheNodeType": "cache.m4.2xlarge",
1690
- "Value": "3188912636"
1691
- },
1692
- {
1693
- "CacheNodeType": "cache.m4.4xlarge",
1694
- "Value": "6525729063"
1695
- },
1696
- {
1697
- "CacheNodeType": "cache.m4.large",
1698
- "Value": "689259315"
1699
- },
1700
- {
1701
- "CacheNodeType": "cache.m4.xlarge",
1702
- "Value": "1532850176"
1703
- },
1704
- {
1705
- "CacheNodeType": "cache.r3.2xlarge",
1706
- "Value": "6081740800"
1707
- },
1708
- {
1709
- "CacheNodeType": "cache.r3.4xlarge",
1710
- "Value": "12268339200"
1711
- },
1712
- {
1713
- "CacheNodeType": "cache.r3.8xlarge",
1714
- "Value": "24536678400"
1715
- },
1716
- {
1717
- "CacheNodeType": "cache.r3.large",
1718
- "Value": "1468006400"
1719
- },
1720
- {
1721
- "CacheNodeType": "cache.r3.xlarge",
1722
- "Value": "3040870400"
1723
- },
1724
- {
1725
- "CacheNodeType": "cache.t1.micro",
1726
- "Value": "14260633"
1727
- },
1728
- {
1729
- "CacheNodeType": "cache.t2.medium",
1730
- "Value": "346134937"
1731
- },
1732
- {
1733
- "CacheNodeType": "cache.t2.micro",
1734
- "Value": "58195968"
1735
- },
1736
- {
1737
- "CacheNodeType": "cache.t2.small",
1738
- "Value": "166513868"
1739
- }
1740
- ],
1741
- "ChangeType": "immediate",
1742
- "DataType": "integer",
1743
- "Description": "Slave client output buffer soft limit in bytes.",
1744
- "IsModifiable": false,
1745
- "MinimumEngineVersion": "2.8.6",
1746
- "ParameterName": "client-output-buffer-limit-slave-soft-limit",
1747
- "Source": "system"
1748
- },
1749
- {
1750
- "AllowedValues": "0-",
1751
- "CacheNodeTypeSpecificValues": [
1752
- {
1753
- "CacheNodeType": "cache.c1.xlarge",
1754
- "Value": "6501171200"
1755
- },
1756
- {
1757
- "CacheNodeType": "cache.m1.large",
1758
- "Value": "7025459200"
1759
- },
1760
- {
1761
- "CacheNodeType": "cache.m1.medium",
1762
- "Value": "3093299200"
1763
- },
1764
- {
1765
- "CacheNodeType": "cache.m1.small",
1766
- "Value": "943718400"
1767
- },
1768
- {
1769
- "CacheNodeType": "cache.m1.xlarge",
1770
- "Value": "14889779200"
1771
- },
1772
- {
1773
- "CacheNodeType": "cache.m2.2xlarge",
1774
- "Value": "35022438400"
1775
- },
1776
- {
1777
- "CacheNodeType": "cache.m2.4xlarge",
1778
- "Value": "70883737600"
1779
- },
1780
- {
1781
- "CacheNodeType": "cache.m2.xlarge",
1782
- "Value": "17091788800"
1783
- },
1784
- {
1785
- "CacheNodeType": "cache.m3.2xlarge",
1786
- "Value": "29989273600"
1787
- },
1788
- {
1789
- "CacheNodeType": "cache.m3.large",
1790
- "Value": "6501171200"
1791
- },
1792
- {
1793
- "CacheNodeType": "cache.m3.medium",
1794
- "Value": "2988441600"
1795
- },
1796
- {
1797
- "CacheNodeType": "cache.m3.xlarge",
1798
- "Value": "14260633600"
1799
- },
1800
- {
1801
- "CacheNodeType": "cache.m4.10xlarge",
1802
- "Value": "166047614239"
1803
- },
1804
- {
1805
- "CacheNodeType": "cache.m4.2xlarge",
1806
- "Value": "31889126359"
1807
- },
1808
- {
1809
- "CacheNodeType": "cache.m4.4xlarge",
1810
- "Value": "65257290629"
1811
- },
1812
- {
1813
- "CacheNodeType": "cache.m4.large",
1814
- "Value": "6892593152"
1815
- },
1816
- {
1817
- "CacheNodeType": "cache.m4.xlarge",
1818
- "Value": "15328501760"
1819
- },
1820
- {
1821
- "CacheNodeType": "cache.r3.2xlarge",
1822
- "Value": "62495129600"
1823
- },
1824
- {
1825
- "CacheNodeType": "cache.r3.4xlarge",
1826
- "Value": "126458265600"
1827
- },
1828
- {
1829
- "CacheNodeType": "cache.r3.8xlarge",
1830
- "Value": "254384537600"
1831
- },
1832
- {
1833
- "CacheNodeType": "cache.r3.large",
1834
- "Value": "14470348800"
1835
- },
1836
- {
1837
- "CacheNodeType": "cache.r3.xlarge",
1838
- "Value": "30513561600"
1839
- },
1840
- {
1841
- "CacheNodeType": "cache.t1.micro",
1842
- "Value": "142606336"
1843
- },
1844
- {
1845
- "CacheNodeType": "cache.t2.medium",
1846
- "Value": "3461349376"
1847
- },
1848
- {
1849
- "CacheNodeType": "cache.t2.micro",
1850
- "Value": "581959680"
1851
- },
1852
- {
1853
- "CacheNodeType": "cache.t2.small",
1854
- "Value": "1665138688"
1855
- }
1856
- ],
1857
- "ChangeType": "immediate",
1858
- "DataType": "integer",
1859
- "Description": "The maximum configurable amount of memory to use to store items, in bytes.",
1860
- "IsModifiable": false,
1861
- "MinimumEngineVersion": "2.8.6",
1862
- "ParameterName": "maxmemory",
1863
- "Source": "system"
1864
- }
1865
- ],
1866
- "CacheParameterGroupFamily": "redis2.8",
1867
- "Marker": "bWluLXNsYXZlcy10by13cml0ZQ==",
1868
- "Parameters": [
1869
- {
1870
- "AllowedValues": "yes,no",
1871
- "ChangeType": "requires-reboot",
1872
- "DataType": "string",
1873
- "Description": "Apply rehashing or not.",
1874
- "IsModifiable": true,
1875
- "MinimumEngineVersion": "2.8.6",
1876
- "ParameterName": "activerehashing",
1877
- "ParameterValue": "yes",
1878
- "Source": "system"
1879
- },
1880
- {
1881
- "AllowedValues": "always,everysec,no",
1882
- "ChangeType": "immediate",
1883
- "DataType": "string",
1884
- "Description": "fsync policy for AOF persistence",
1885
- "IsModifiable": true,
1886
- "MinimumEngineVersion": "2.8.6",
1887
- "ParameterName": "appendfsync",
1888
- "ParameterValue": "everysec",
1889
- "Source": "system"
1890
- },
1891
- {
1892
- "AllowedValues": "yes,no",
1893
- "ChangeType": "immediate",
1894
- "DataType": "string",
1895
- "Description": "Enable Redis persistence.",
1896
- "IsModifiable": true,
1897
- "MinimumEngineVersion": "2.8.6",
1898
- "ParameterName": "appendonly",
1899
- "ParameterValue": "no",
1900
- "Source": "system"
1901
- },
1902
- {
1903
- "AllowedValues": "0-",
1904
- "ChangeType": "immediate",
1905
- "DataType": "integer",
1906
- "Description": "Normal client output buffer hard limit in bytes.",
1907
- "IsModifiable": true,
1908
- "MinimumEngineVersion": "2.8.6",
1909
- "ParameterName": "client-output-buffer-limit-normal-hard-limit",
1910
- "ParameterValue": "0",
1911
- "Source": "system"
1912
- },
1913
- {
1914
- "AllowedValues": "0-",
1915
- "ChangeType": "immediate",
1916
- "DataType": "integer",
1917
- "Description": "Normal client output buffer soft limit in bytes.",
1918
- "IsModifiable": true,
1919
- "MinimumEngineVersion": "2.8.6",
1920
- "ParameterName": "client-output-buffer-limit-normal-soft-limit",
1921
- "ParameterValue": "0",
1922
- "Source": "system"
1923
- },
1924
- {
1925
- "AllowedValues": "0-",
1926
- "ChangeType": "immediate",
1927
- "DataType": "integer",
1928
- "Description": "Normal client output buffer soft limit in seconds.",
1929
- "IsModifiable": true,
1930
- "MinimumEngineVersion": "2.8.6",
1931
- "ParameterName": "client-output-buffer-limit-normal-soft-seconds",
1932
- "ParameterValue": "0",
1933
- "Source": "system"
1934
- },
1935
- {
1936
- "AllowedValues": "0-",
1937
- "ChangeType": "immediate",
1938
- "DataType": "integer",
1939
- "Description": "Pubsub client output buffer hard limit in bytes.",
1940
- "IsModifiable": true,
1941
- "MinimumEngineVersion": "2.8.6",
1942
- "ParameterName": "client-output-buffer-limit-pubsub-hard-limit",
1943
- "ParameterValue": "33554432",
1944
- "Source": "system"
1945
- },
1946
- {
1947
- "AllowedValues": "0-",
1948
- "ChangeType": "immediate",
1949
- "DataType": "integer",
1950
- "Description": "Pubsub client output buffer soft limit in bytes.",
1951
- "IsModifiable": true,
1952
- "MinimumEngineVersion": "2.8.6",
1953
- "ParameterName": "client-output-buffer-limit-pubsub-soft-limit",
1954
- "ParameterValue": "8388608",
1955
- "Source": "system"
1956
- },
1957
- {
1958
- "AllowedValues": "0-",
1959
- "ChangeType": "immediate",
1960
- "DataType": "integer",
1961
- "Description": "Pubsub client output buffer soft limit in seconds.",
1962
- "IsModifiable": true,
1963
- "MinimumEngineVersion": "2.8.6",
1964
- "ParameterName": "client-output-buffer-limit-pubsub-soft-seconds",
1965
- "ParameterValue": "60",
1966
- "Source": "system"
1967
- },
1968
- {
1969
- "AllowedValues": "0-",
1970
- "ChangeType": "immediate",
1971
- "DataType": "integer",
1972
- "Description": "Slave client output buffer soft limit in seconds.",
1973
- "IsModifiable": false,
1974
- "MinimumEngineVersion": "2.8.6",
1975
- "ParameterName": "client-output-buffer-limit-slave-soft-seconds",
1976
- "ParameterValue": "60",
1977
- "Source": "system"
1978
- },
1979
- {
1980
- "AllowedValues": "yes,no",
1981
- "ChangeType": "immediate",
1982
- "DataType": "string",
1983
- "Description": "If enabled, clients who attempt to write to a read-only slave will be disconnected. Applicable to 2.8.23 and higher.",
1984
- "IsModifiable": true,
1985
- "MinimumEngineVersion": "2.8.23",
1986
- "ParameterName": "close-on-slave-write",
1987
- "ParameterValue": "yes",
1988
- "Source": "system"
1989
- },
1990
- {
1991
- "AllowedValues": "1-1200000",
1992
- "ChangeType": "requires-reboot",
1993
- "DataType": "integer",
1994
- "Description": "Set the number of databases.",
1995
- "IsModifiable": true,
1996
- "MinimumEngineVersion": "2.8.6",
1997
- "ParameterName": "databases",
1998
- "ParameterValue": "16",
1999
- "Source": "system"
2000
- },
2001
- {
2002
- "AllowedValues": "0-",
2003
- "ChangeType": "immediate",
2004
- "DataType": "integer",
2005
- "Description": "The maximum number of hash entries in order for the dataset to be compressed.",
2006
- "IsModifiable": true,
2007
- "MinimumEngineVersion": "2.8.6",
2008
- "ParameterName": "hash-max-ziplist-entries",
2009
- "ParameterValue": "512",
2010
- "Source": "system"
2011
- },
2012
- {
2013
- "AllowedValues": "0-",
2014
- "ChangeType": "immediate",
2015
- "DataType": "integer",
2016
- "Description": "The threshold of biggest hash entries in order for the dataset to be compressed.",
2017
- "IsModifiable": true,
2018
- "MinimumEngineVersion": "2.8.6",
2019
- "ParameterName": "hash-max-ziplist-value",
2020
- "ParameterValue": "64",
2021
- "Source": "system"
2022
- },
2023
- {
2024
- "AllowedValues": "0-",
2025
- "ChangeType": "immediate",
2026
- "DataType": "integer",
2027
- "Description": "The maximum number of list entries in order for the dataset to be compressed.",
2028
- "IsModifiable": true,
2029
- "MinimumEngineVersion": "2.8.6",
2030
- "ParameterName": "list-max-ziplist-entries",
2031
- "ParameterValue": "512",
2032
- "Source": "system"
2033
- },
2034
- {
2035
- "AllowedValues": "0-",
2036
- "ChangeType": "immediate",
2037
- "DataType": "integer",
2038
- "Description": "The threshold of biggest list entries in order for the dataset to be compressed.",
2039
- "IsModifiable": true,
2040
- "MinimumEngineVersion": "2.8.6",
2041
- "ParameterName": "list-max-ziplist-value",
2042
- "ParameterValue": "64",
2043
- "Source": "system"
2044
- },
2045
- {
2046
- "AllowedValues": "5000",
2047
- "ChangeType": "immediate",
2048
- "DataType": "integer",
2049
- "Description": "Max execution time of a Lua script in milliseconds. 0 for unlimited execution without warnings.",
2050
- "IsModifiable": false,
2051
- "MinimumEngineVersion": "2.8.6",
2052
- "ParameterName": "lua-time-limit",
2053
- "ParameterValue": "5000",
2054
- "Source": "system"
2055
- },
2056
- {
2057
- "AllowedValues": "1-65000",
2058
- "ChangeType": "requires-reboot",
2059
- "DataType": "integer",
2060
- "Description": "The maximum number of Redis clients.",
2061
- "IsModifiable": false,
2062
- "MinimumEngineVersion": "2.8.6",
2063
- "ParameterName": "maxclients",
2064
- "ParameterValue": "65000",
2065
- "Source": "system"
2066
- },
2067
- {
2068
- "AllowedValues": "volatile-lru,allkeys-lru,volatile-random,allkeys-random,volatile-ttl,noeviction",
2069
- "ChangeType": "immediate",
2070
- "DataType": "string",
2071
- "Description": "Max memory policy.",
2072
- "IsModifiable": true,
2073
- "MinimumEngineVersion": "2.8.6",
2074
- "ParameterName": "maxmemory-policy",
2075
- "ParameterValue": "volatile-lru",
2076
- "Source": "system"
2077
- },
2078
- {
2079
- "AllowedValues": "1-",
2080
- "ChangeType": "immediate",
2081
- "DataType": "integer",
2082
- "Description": "Max memory samples.",
2083
- "IsModifiable": true,
2084
- "MinimumEngineVersion": "2.8.6",
2085
- "ParameterName": "maxmemory-samples",
2086
- "ParameterValue": "3",
2087
- "Source": "system"
2088
- },
2089
- {
2090
- "AllowedValues": "0-",
2091
- "ChangeType": "immediate",
2092
- "DataType": "integer",
2093
- "Description": "Maximum number of seconds within which the master must receive a ping from a slave to take writes. Use this parameter together with min-slaves-to-write to regulate when the master stops accepting writes. Setting this value to 0 means the master always takes writes.",
2094
- "IsModifiable": true,
2095
- "MinimumEngineVersion": "2.8.6",
2096
- "ParameterName": "min-slaves-max-lag",
2097
- "ParameterValue": "10",
2098
- "Source": "system"
2099
- },
2100
- {
2101
- "AllowedValues": "0-",
2102
- "ChangeType": "immediate",
2103
- "DataType": "integer",
2104
- "Description": "Number of slaves that must be connected in order for master to take writes. Use this parameter together with min-slaves-max-lag to regulate when the master stops accepting writes. Setting this to 0 means the master always takes writes.",
2105
- "IsModifiable": true,
2106
- "MinimumEngineVersion": "2.8.6",
2107
- "ParameterName": "min-slaves-to-write",
2108
- "ParameterValue": "0",
2109
- "Source": "system"
2110
- }
2111
- ]
2112
- }
2113
- },
2114
- "comments": {
2115
- "input": {
2116
- },
2117
- "output": {
2118
- }
2119
- },
2120
- "description": "Returns the default engine and system parameter information for the specified cache engine.",
2121
- "id": "describeenginedefaultparameters-1481738057686",
2122
- "title": "DescribeEngineDefaultParameters"
2123
- }
2124
- ],
2125
- "DescribeEvents": [
2126
- {
2127
- "input": {
2128
- "Duration": 360,
2129
- "SourceType": "cache-cluster"
2130
- },
2131
- "output": {
2132
- "Events": [
2133
- {
2134
- "Date": "2016-12-22T16:27:56.088Z",
2135
- "Message": "Added cache node 0001 in availability zone us-east-1e",
2136
- "SourceIdentifier": "redis-cluster",
2137
- "SourceType": "cache-cluster"
2138
- },
2139
- {
2140
- "Date": "2016-12-22T16:27:56.078Z",
2141
- "Message": "Cache cluster created",
2142
- "SourceIdentifier": "redis-cluster",
2143
- "SourceType": "cache-cluster"
2144
- },
2145
- {
2146
- "Date": "2016-12-22T16:05:17.326Z",
2147
- "Message": "Added cache node 0002 in availability zone us-east-1c",
2148
- "SourceIdentifier": "my-memcached2",
2149
- "SourceType": "cache-cluster"
2150
- },
2151
- {
2152
- "Date": "2016-12-22T16:05:17.323Z",
2153
- "Message": "Added cache node 0001 in availability zone us-east-1e",
2154
- "SourceIdentifier": "my-memcached2",
2155
- "SourceType": "cache-cluster"
2156
- },
2157
- {
2158
- "Date": "2016-12-22T16:05:17.314Z",
2159
- "Message": "Cache cluster created",
2160
- "SourceIdentifier": "my-memcached2",
2161
- "SourceType": "cache-cluster"
2162
- }
2163
- ],
2164
- "Marker": ""
2165
- },
2166
- "comments": {
2167
- "input": {
2168
- },
2169
- "output": {
2170
- }
2171
- },
2172
- "description": "Describes all the cache-cluster events for the past 120 minutes.",
2173
- "id": "describeevents-1481843894757",
2174
- "title": "DescribeEvents"
2175
- },
2176
- {
2177
- "input": {
2178
- "StartTime": "2016-12-22T15:00:00.000Z"
2179
- },
2180
- "output": {
2181
- "Events": [
2182
- {
2183
- "Date": "2016-12-22T21:35:46.674Z",
2184
- "Message": "Snapshot succeeded for snapshot with ID 'cr-bkup' of replication group with ID 'clustered-redis'",
2185
- "SourceIdentifier": "clustered-redis-0001-001",
2186
- "SourceType": "cache-cluster"
2187
- },
2188
- {
2189
- "Date": "2016-12-22T16:27:56.088Z",
2190
- "Message": "Added cache node 0001 in availability zone us-east-1e",
2191
- "SourceIdentifier": "redis-cluster",
2192
- "SourceType": "cache-cluster"
2193
- },
2194
- {
2195
- "Date": "2016-12-22T16:27:56.078Z",
2196
- "Message": "Cache cluster created",
2197
- "SourceIdentifier": "redis-cluster",
2198
- "SourceType": "cache-cluster"
2199
- },
2200
- {
2201
- "Date": "2016-12-22T16:05:17.326Z",
2202
- "Message": "Added cache node 0002 in availability zone us-east-1c",
2203
- "SourceIdentifier": "my-memcached2",
2204
- "SourceType": "cache-cluster"
2205
- },
2206
- {
2207
- "Date": "2016-12-22T16:05:17.323Z",
2208
- "Message": "Added cache node 0001 in availability zone us-east-1e",
2209
- "SourceIdentifier": "my-memcached2",
2210
- "SourceType": "cache-cluster"
2211
- },
2212
- {
2213
- "Date": "2016-12-22T16:05:17.314Z",
2214
- "Message": "Cache cluster created",
2215
- "SourceIdentifier": "my-memcached2",
2216
- "SourceType": "cache-cluster"
2217
- }
2218
- ],
2219
- "Marker": ""
2220
- },
2221
- "comments": {
2222
- "input": {
2223
- },
2224
- "output": {
2225
- }
2226
- },
2227
- "description": "Describes all the replication-group events from 3:00P to 5:00P on November 11, 2016.",
2228
- "id": "describeevents-1481843894757",
2229
- "title": "DescribeEvents"
2230
- }
2231
- ],
2232
- "DescribeReplicationGroups": [
2233
- {
2234
- "input": {
2235
- },
2236
- "output": {
2237
- "Marker": "",
2238
- "ReplicationGroups": [
2239
- {
2240
- "AutomaticFailover": "enabled",
2241
- "Description": "Test cluster",
2242
- "MemberClusters": [
2243
- "clustered-redis-0001-001",
2244
- "clustered-redis-0001-002",
2245
- "clustered-redis-0002-001",
2246
- "clustered-redis-0002-002"
2247
- ],
2248
- "NodeGroups": [
2249
- {
2250
- "NodeGroupId": "0001",
2251
- "NodeGroupMembers": [
2252
- {
2253
- "CacheClusterId": "clustered-redis-0001-001",
2254
- "CacheNodeId": "0001",
2255
- "PreferredAvailabilityZone": "us-east-1e"
2256
- },
2257
- {
2258
- "CacheClusterId": "clustered-redis-0001-002",
2259
- "CacheNodeId": "0001",
2260
- "PreferredAvailabilityZone": "us-east-1c"
2261
- }
2262
- ],
2263
- "Status": "available"
2264
- },
2265
- {
2266
- "NodeGroupId": "0002",
2267
- "NodeGroupMembers": [
2268
- {
2269
- "CacheClusterId": "clustered-redis-0002-001",
2270
- "CacheNodeId": "0001",
2271
- "PreferredAvailabilityZone": "us-east-1c"
2272
- },
2273
- {
2274
- "CacheClusterId": "clustered-redis-0002-002",
2275
- "CacheNodeId": "0001",
2276
- "PreferredAvailabilityZone": "us-east-1b"
2277
- }
2278
- ],
2279
- "Status": "available"
2280
- }
2281
- ],
2282
- "PendingModifiedValues": {
2283
- },
2284
- "ReplicationGroupId": "clustered-redis",
2285
- "Status": "available"
2286
- }
2287
- ]
2288
- },
2289
- "comments": {
2290
- "input": {
2291
- },
2292
- "output": {
2293
- }
2294
- },
2295
- "description": "Returns information about the replication group myreplgroup.",
2296
- "id": "describereplicationgroups-1481742639427",
2297
- "title": "DescribeReplicationGroups"
2298
- }
2299
- ],
2300
- "DescribeReservedCacheNodes": [
2301
- {
2302
- "input": {
2303
- "MaxRecords": 25
2304
- },
2305
- "comments": {
2306
- "input": {
2307
- },
2308
- "output": {
2309
- }
2310
- },
2311
- "description": "Returns information about reserved cache nodes for this account, or about a specified reserved cache node. If the account has no reserved cache nodes, the operation returns an empty list, as shown here.",
2312
- "id": "describereservedcachenodes-1481742348045",
2313
- "title": "DescribeReservedCacheNodes"
2314
- }
2315
- ],
2316
- "DescribeReservedCacheNodesOfferings": [
2317
- {
2318
- "input": {
2319
- "MaxRecords": 20
2320
- },
2321
- "output": {
2322
- "Marker": "1ef01f5b-433f-94ff-a530-61a56bfc8e7a",
2323
- "ReservedCacheNodesOfferings": [
2324
- {
2325
- "CacheNodeType": "cache.m1.small",
2326
- "Duration": 94608000,
2327
- "FixedPrice": 157.0,
2328
- "OfferingType": "Medium Utilization",
2329
- "ProductDescription": "memcached",
2330
- "RecurringCharges": [
2331
-
2332
- ],
2333
- "ReservedCacheNodesOfferingId": "0167633d-37f6-4222-b872-b1f22eb79ba4",
2334
- "UsagePrice": 0.017
2335
- },
2336
- {
2337
- "CacheNodeType": "cache.m4.xlarge",
2338
- "Duration": 94608000,
2339
- "FixedPrice": 1248.0,
2340
- "OfferingType": "Heavy Utilization",
2341
- "ProductDescription": "redis",
2342
- "RecurringCharges": [
2343
- {
2344
- "RecurringChargeAmount": 0.077,
2345
- "RecurringChargeFrequency": "Hourly"
2346
- }
2347
- ],
2348
- "ReservedCacheNodesOfferingId": "02c04e13-baca-4e71-9ceb-620eed94827d",
2349
- "UsagePrice": 0.0
2350
- },
2351
- {
2352
- "CacheNodeType": "cache.m2.4xlarge",
2353
- "Duration": 94608000,
2354
- "FixedPrice": 2381.0,
2355
- "OfferingType": "Medium Utilization",
2356
- "ProductDescription": "memcached",
2357
- "RecurringCharges": [
2358
-
2359
- ],
2360
- "ReservedCacheNodesOfferingId": "02e1755e-76e8-48e3-8d82-820a5726a458",
2361
- "UsagePrice": 0.276
2362
- },
2363
- {
2364
- "CacheNodeType": "cache.m1.small",
2365
- "Duration": 94608000,
2366
- "FixedPrice": 188.0,
2367
- "OfferingType": "Heavy Utilization",
2368
- "ProductDescription": "redis",
2369
- "RecurringCharges": [
2370
- {
2371
- "RecurringChargeAmount": 0.013,
2372
- "RecurringChargeFrequency": "Hourly"
2373
- }
2374
- ],
2375
- "ReservedCacheNodesOfferingId": "03315215-7b87-421a-a3dd-785021e4113f",
2376
- "UsagePrice": 0.0
2377
- },
2378
- {
2379
- "CacheNodeType": "cache.m4.10xlarge",
2380
- "Duration": 31536000,
2381
- "FixedPrice": 6158.0,
2382
- "OfferingType": "Heavy Utilization",
2383
- "ProductDescription": "redis",
2384
- "RecurringCharges": [
2385
- {
2386
- "RecurringChargeAmount": 1.125,
2387
- "RecurringChargeFrequency": "Hourly"
2388
- }
2389
- ],
2390
- "ReservedCacheNodesOfferingId": "05ffbb44-2ace-4476-a2a5-8ec99f866fb3",
2391
- "UsagePrice": 0.0
2392
- },
2393
- {
2394
- "CacheNodeType": "cache.m1.small",
2395
- "Duration": 31536000,
2396
- "FixedPrice": 101.0,
2397
- "OfferingType": "Medium Utilization",
2398
- "ProductDescription": "redis",
2399
- "RecurringCharges": [
2400
-
2401
- ],
2402
- "ReservedCacheNodesOfferingId": "065c71ae-4a4e-4f1e-bebf-37525f4c6cb2",
2403
- "UsagePrice": 0.023
2404
- },
2405
- {
2406
- "CacheNodeType": "cache.m1.medium",
2407
- "Duration": 94608000,
2408
- "FixedPrice": 314.0,
2409
- "OfferingType": "Medium Utilization",
2410
- "ProductDescription": "memcached",
2411
- "RecurringCharges": [
2412
-
2413
- ],
2414
- "ReservedCacheNodesOfferingId": "06774b12-7f5e-48c1-907a-f286c63f327d",
2415
- "UsagePrice": 0.034
2416
- },
2417
- {
2418
- "CacheNodeType": "cache.m2.xlarge",
2419
- "Duration": 31536000,
2420
- "FixedPrice": 163.0,
2421
- "OfferingType": "Light Utilization",
2422
- "ProductDescription": "memcached",
2423
- "RecurringCharges": [
2424
-
2425
- ],
2426
- "ReservedCacheNodesOfferingId": "0924ac6b-847f-4761-ba6b-4290b2adf719",
2427
- "UsagePrice": 0.137
2428
- },
2429
- {
2430
- "CacheNodeType": "cache.m2.xlarge",
2431
- "Duration": 94608000,
2432
- "FixedPrice": 719.0,
2433
- "OfferingType": "Heavy Utilization",
2434
- "ProductDescription": "redis",
2435
- "RecurringCharges": [
2436
- {
2437
- "RecurringChargeAmount": 0.049,
2438
- "RecurringChargeFrequency": "Hourly"
2439
- }
2440
- ],
2441
- "ReservedCacheNodesOfferingId": "09eeb126-69b6-4d3f-8f94-ca3510629f53",
2442
- "UsagePrice": 0.0
2443
- },
2444
- {
2445
- "CacheNodeType": "cache.r3.2xlarge",
2446
- "Duration": 94608000,
2447
- "FixedPrice": 4132.0,
2448
- "OfferingType": "Heavy Utilization",
2449
- "ProductDescription": "redis",
2450
- "RecurringCharges": [
2451
- {
2452
- "RecurringChargeAmount": 0.182,
2453
- "RecurringChargeFrequency": "Hourly"
2454
- }
2455
- ],
2456
- "ReservedCacheNodesOfferingId": "0a516ad8-557f-4310-9dd0-2448c2ff4d62",
2457
- "UsagePrice": 0.0
2458
- },
2459
- {
2460
- "CacheNodeType": "cache.c1.xlarge",
2461
- "Duration": 94608000,
2462
- "FixedPrice": 875.0,
2463
- "OfferingType": "Light Utilization",
2464
- "ProductDescription": "memcached",
2465
- "RecurringCharges": [
2466
-
2467
- ],
2468
- "ReservedCacheNodesOfferingId": "0b0c1cc5-2177-4150-95d7-c67ec34dcb19",
2469
- "UsagePrice": 0.363
2470
- },
2471
- {
2472
- "CacheNodeType": "cache.m4.10xlarge",
2473
- "Duration": 94608000,
2474
- "FixedPrice": 12483.0,
2475
- "OfferingType": "Heavy Utilization",
2476
- "ProductDescription": "memcached",
2477
- "RecurringCharges": [
2478
- {
2479
- "RecurringChargeAmount": 0.76,
2480
- "RecurringChargeFrequency": "Hourly"
2481
- }
2482
- ],
2483
- "ReservedCacheNodesOfferingId": "0c2b139b-1cff-43d0-8fba-0c753f9b1950",
2484
- "UsagePrice": 0.0
2485
- },
2486
- {
2487
- "CacheNodeType": "cache.c1.xlarge",
2488
- "Duration": 31536000,
2489
- "FixedPrice": 1620.0,
2490
- "OfferingType": "Heavy Utilization",
2491
- "ProductDescription": "memcached",
2492
- "RecurringCharges": [
2493
- {
2494
- "RecurringChargeAmount": 0.207,
2495
- "RecurringChargeFrequency": "Hourly"
2496
- }
2497
- ],
2498
- "ReservedCacheNodesOfferingId": "0c52115b-38cb-47a2-8dbc-e02e40b6a13f",
2499
- "UsagePrice": 0.0
2500
- },
2501
- {
2502
- "CacheNodeType": "cache.m2.4xlarge",
2503
- "Duration": 94608000,
2504
- "FixedPrice": 2381.0,
2505
- "OfferingType": "Medium Utilization",
2506
- "ProductDescription": "redis",
2507
- "RecurringCharges": [
2508
-
2509
- ],
2510
- "ReservedCacheNodesOfferingId": "12fcb19c-5416-4e1d-934f-28f1e2cb8599",
2511
- "UsagePrice": 0.276
2512
- },
2513
- {
2514
- "CacheNodeType": "cache.m4.xlarge",
2515
- "Duration": 31536000,
2516
- "FixedPrice": 616.0,
2517
- "OfferingType": "Heavy Utilization",
2518
- "ProductDescription": "memcached",
2519
- "RecurringCharges": [
2520
- {
2521
- "RecurringChargeAmount": 0.112,
2522
- "RecurringChargeFrequency": "Hourly"
2523
- }
2524
- ],
2525
- "ReservedCacheNodesOfferingId": "13af20ad-914d-4d8b-9763-fa2e565f3549",
2526
- "UsagePrice": 0.0
2527
- },
2528
- {
2529
- "CacheNodeType": "cache.r3.8xlarge",
2530
- "Duration": 94608000,
2531
- "FixedPrice": 16528.0,
2532
- "OfferingType": "Heavy Utilization",
2533
- "ProductDescription": "memcached",
2534
- "RecurringCharges": [
2535
- {
2536
- "RecurringChargeAmount": 0.729,
2537
- "RecurringChargeFrequency": "Hourly"
2538
- }
2539
- ],
2540
- "ReservedCacheNodesOfferingId": "14da3d3f-b526-4dbf-b09b-355578b2a576",
2541
- "UsagePrice": 0.0
2542
- },
2543
- {
2544
- "CacheNodeType": "cache.m1.medium",
2545
- "Duration": 94608000,
2546
- "FixedPrice": 140.0,
2547
- "OfferingType": "Light Utilization",
2548
- "ProductDescription": "redis",
2549
- "RecurringCharges": [
2550
-
2551
- ],
2552
- "ReservedCacheNodesOfferingId": "15d7018c-71fb-4717-8409-4bdcdca18da7",
2553
- "UsagePrice": 0.052
2554
- },
2555
- {
2556
- "CacheNodeType": "cache.m4.4xlarge",
2557
- "Duration": 94608000,
2558
- "FixedPrice": 4993.0,
2559
- "OfferingType": "Heavy Utilization",
2560
- "ProductDescription": "memcached",
2561
- "RecurringCharges": [
2562
- {
2563
- "RecurringChargeAmount": 0.304,
2564
- "RecurringChargeFrequency": "Hourly"
2565
- }
2566
- ],
2567
- "ReservedCacheNodesOfferingId": "1ae7ec5f-a76e-49b6-822b-629b1768a13a",
2568
- "UsagePrice": 0.0
2569
- },
2570
- {
2571
- "CacheNodeType": "cache.m3.2xlarge",
2572
- "Duration": 31536000,
2573
- "FixedPrice": 1772.0,
2574
- "OfferingType": "Heavy Utilization",
2575
- "ProductDescription": "redis",
2576
- "RecurringCharges": [
2577
- {
2578
- "RecurringChargeAmount": 0.25,
2579
- "RecurringChargeFrequency": "Hourly"
2580
- }
2581
- ],
2582
- "ReservedCacheNodesOfferingId": "1d31242b-3925-48d1-b882-ce03204e6013",
2583
- "UsagePrice": 0.0
2584
- },
2585
- {
2586
- "CacheNodeType": "cache.t1.micro",
2587
- "Duration": 31536000,
2588
- "FixedPrice": 54.0,
2589
- "OfferingType": "Medium Utilization",
2590
- "ProductDescription": "memcached",
2591
- "RecurringCharges": [
2592
-
2593
- ],
2594
- "ReservedCacheNodesOfferingId": "1ef01f5b-94ff-433f-a530-61a56bfc8e7a",
2595
- "UsagePrice": 0.008
2596
- }
2597
- ]
2598
- },
2599
- "comments": {
2600
- "input": {
2601
- },
2602
- "output": {
2603
- }
2604
- },
2605
- "description": "Lists available reserved cache node offerings.",
2606
- "id": "describereseredcachenodeofferings-1481742869998",
2607
- "title": "DescribeReseredCacheNodeOfferings"
2608
- },
2609
- {
2610
- "input": {
2611
- "CacheNodeType": "cache.r3.large",
2612
- "Duration": "3",
2613
- "MaxRecords": 25,
2614
- "OfferingType": "Light Utilization",
2615
- "ReservedCacheNodesOfferingId": ""
2616
- },
2617
- "output": {
2618
- "Marker": "",
2619
- "ReservedCacheNodesOfferings": [
2620
-
2621
- ]
2622
- },
2623
- "comments": {
2624
- "input": {
2625
- },
2626
- "output": {
2627
- }
2628
- },
2629
- "description": "Lists available reserved cache node offerings for cache.r3.large nodes with a 3 year commitment.",
2630
- "id": "describereseredcachenodeofferings-1481742869998",
2631
- "title": "DescribeReseredCacheNodeOfferings"
2632
- },
2633
- {
2634
- "input": {
2635
- "CacheNodeType": "",
2636
- "Duration": "",
2637
- "Marker": "",
2638
- "MaxRecords": 25,
2639
- "OfferingType": "",
2640
- "ProductDescription": "",
2641
- "ReservedCacheNodesOfferingId": "438012d3-4052-4cc7-b2e3-8d3372e0e706"
2642
- },
2643
- "output": {
2644
- "Marker": "",
2645
- "ReservedCacheNodesOfferings": [
2646
-
2647
- ]
2648
- },
2649
- "comments": {
2650
- "input": {
2651
- },
2652
- "output": {
2653
- }
2654
- },
2655
- "description": "Lists available reserved cache node offerings.",
2656
- "id": "describereseredcachenodeofferings-1481742869998",
2657
- "title": "DescribeReseredCacheNodeOfferings"
2658
- }
2659
- ],
2660
- "DescribeSnapshots": [
2661
- {
2662
- "input": {
2663
- "SnapshotName": "snapshot-20161212"
2664
- },
2665
- "output": {
2666
- "Marker": "",
2667
- "Snapshots": [
2668
- {
2669
- "AutoMinorVersionUpgrade": true,
2670
- "CacheClusterCreateTime": "2016-12-21T22:27:12.543Z",
2671
- "CacheClusterId": "my-redis5",
2672
- "CacheNodeType": "cache.m3.large",
2673
- "CacheParameterGroupName": "default.redis3.2",
2674
- "CacheSubnetGroupName": "default",
2675
- "Engine": "redis",
2676
- "EngineVersion": "3.2.4",
2677
- "NodeSnapshots": [
2678
- {
2679
- "CacheNodeCreateTime": "2016-12-21T22:27:12.543Z",
2680
- "CacheNodeId": "0001",
2681
- "CacheSize": "3 MB",
2682
- "SnapshotCreateTime": "2016-12-21T22:30:26Z"
2683
- }
2684
- ],
2685
- "NumCacheNodes": 1,
2686
- "Port": 6379,
2687
- "PreferredAvailabilityZone": "us-east-1c",
2688
- "PreferredMaintenanceWindow": "fri:05:30-fri:06:30",
2689
- "SnapshotName": "snapshot-20161212",
2690
- "SnapshotRetentionLimit": 7,
2691
- "SnapshotSource": "manual",
2692
- "SnapshotStatus": "available",
2693
- "SnapshotWindow": "10:00-11:00",
2694
- "VpcId": "vpc-91280df6"
2695
- }
2696
- ]
2697
- },
2698
- "comments": {
2699
- "input": {
2700
- },
2701
- "output": {
2702
- }
2703
- },
2704
- "description": "Returns information about the snapshot mysnapshot. By default.",
2705
- "id": "describesnapshots-1481743399584",
2706
- "title": "DescribeSnapshots"
2707
- }
2708
- ],
2709
- "ListAllowedNodeTypeModifications": [
2710
- {
2711
- "input": {
2712
- "ReplicationGroupId": "myreplgroup"
2713
- },
2714
- "output": {
2715
- "ScaleUpModifications": [
2716
- "cache.m4.10xlarge",
2717
- "cache.m4.2xlarge",
2718
- "cache.m4.4xlarge",
2719
- "cache.m4.xlarge",
2720
- "cache.r3.2xlarge",
2721
- "cache.r3.4xlarge",
2722
- "cache.r3.8xlarge",
2723
- "cache.r3.xlarge"
2724
- ]
2725
- },
2726
- "comments": {
2727
- "input": {
2728
- },
2729
- "output": {
2730
- }
2731
- },
2732
- "description": "Lists all available node types that you can scale your Redis cluster's or replication group's current node type up to.",
2733
- "id": "listallowednodetypemodifications-1481748494872",
2734
- "title": "ListAllowedNodeTypeModifications"
2735
- },
2736
- {
2737
- "input": {
2738
- "CacheClusterId": "mycluster"
2739
- },
2740
- "output": {
2741
- "ScaleUpModifications": [
2742
-
2743
- ]
2744
- },
2745
- "comments": {
2746
- "input": {
2747
- },
2748
- "output": {
2749
- }
2750
- },
2751
- "description": "Lists all available node types that you can scale your Redis cluster's or replication group's current node type up to.",
2752
- "id": "listallowednodetypemodifications-1481748494872",
2753
- "title": "ListAllowedNodeTypeModifications"
2754
- }
2755
- ],
2756
- "ListTagsForResource": [
2757
- {
2758
- "input": {
2759
- "ResourceName": "arn:aws:elasticache:us-west-2:<my-account-id>:cluster:mycluster"
2760
- },
2761
- "output": {
2762
- "TagList": [
2763
- {
2764
- "Key": "APIVersion",
2765
- "Value": "20150202"
2766
- },
2767
- {
2768
- "Key": "Service",
2769
- "Value": "ElastiCache"
2770
- }
2771
- ]
2772
- },
2773
- "comments": {
2774
- "input": {
2775
- },
2776
- "output": {
2777
- }
2778
- },
2779
- "description": "Lists all cost allocation tags currently on the named resource. A cost allocation tag is a key-value pair where the key is case-sensitive and the value is optional. You can use cost allocation tags to categorize and track your AWS costs.",
2780
- "id": "listtagsforresource-1481748784584",
2781
- "title": "ListTagsForResource"
2782
- }
2783
- ],
2784
- "ModifyCacheCluster": [
2785
- {
2786
- "input": {
2787
- "ApplyImmediately": true,
2788
- "CacheClusterId": "redis-cluster",
2789
- "SnapshotRetentionLimit": 14
2790
- },
2791
- "output": {
2792
- "CacheCluster": {
2793
- "AutoMinorVersionUpgrade": true,
2794
- "CacheClusterCreateTime": "2016-12-22T16:27:56.078Z",
2795
- "CacheClusterId": "redis-cluster",
2796
- "CacheClusterStatus": "available",
2797
- "CacheNodeType": "cache.r3.large",
2798
- "CacheParameterGroup": {
2799
- "CacheNodeIdsToReboot": [
2800
-
2801
- ],
2802
- "CacheParameterGroupName": "default.redis3.2",
2803
- "ParameterApplyStatus": "in-sync"
2804
- },
2805
- "CacheSecurityGroups": [
2806
-
2807
- ],
2808
- "CacheSubnetGroupName": "default",
2809
- "ClientDownloadLandingPage": "https://console.aws.amazon.com/elasticache/home#client-download:",
2810
- "Engine": "redis",
2811
- "EngineVersion": "3.2.4",
2812
- "NumCacheNodes": 1,
2813
- "PendingModifiedValues": {
2814
- },
2815
- "PreferredAvailabilityZone": "us-east-1e",
2816
- "PreferredMaintenanceWindow": "fri:09:00-fri:10:00",
2817
- "SnapshotRetentionLimit": 14,
2818
- "SnapshotWindow": "07:00-08:00"
2819
- }
2820
- },
2821
- "comments": {
2822
- "input": {
2823
- },
2824
- "output": {
2825
- }
2826
- },
2827
- "description": "Copies a snapshot to a specified name.",
2828
- "id": "modifycachecluster-1482962725919",
2829
- "title": "ModifyCacheCluster"
2830
- }
2831
- ],
2832
- "ModifyCacheParameterGroup": [
2833
- {
2834
- "input": {
2835
- "CacheParameterGroupName": "custom-mem1-4",
2836
- "ParameterNameValues": [
2837
- {
2838
- "ParameterName": "binding_protocol",
2839
- "ParameterValue": "ascii"
2840
- },
2841
- {
2842
- "ParameterName": "chunk_size",
2843
- "ParameterValue": "96"
2844
- }
2845
- ]
2846
- },
2847
- "output": {
2848
- "CacheParameterGroupName": "custom-mem1-4"
2849
- },
2850
- "comments": {
2851
- "input": {
2852
- },
2853
- "output": {
2854
- }
2855
- },
2856
- "description": "Modifies one or more parameter values in the specified parameter group. You cannot modify any default parameter group.",
2857
- "id": "modifycacheparametergroup-1482966746787",
2858
- "title": "ModifyCacheParameterGroup"
2859
- }
2860
- ],
2861
- "ModifyCacheSubnetGroup": [
2862
- {
2863
- "input": {
2864
- "CacheSubnetGroupName": "my-sn-grp",
2865
- "SubnetIds": [
2866
- "subnet-bcde2345"
2867
- ]
2868
- },
2869
- "output": {
2870
- "CacheSubnetGroup": {
2871
- "CacheSubnetGroupDescription": "My subnet group.",
2872
- "CacheSubnetGroupName": "my-sn-grp",
2873
- "Subnets": [
2874
- {
2875
- "SubnetAvailabilityZone": {
2876
- "Name": "us-east-1c"
2877
- },
2878
- "SubnetIdentifier": "subnet-a1b2c3d4"
2879
- },
2880
- {
2881
- "SubnetAvailabilityZone": {
2882
- "Name": "us-east-1e"
2883
- },
2884
- "SubnetIdentifier": "subnet-1a2b3c4d"
2885
- },
2886
- {
2887
- "SubnetAvailabilityZone": {
2888
- "Name": "us-east-1e"
2889
- },
2890
- "SubnetIdentifier": "subnet-bcde2345"
2891
- },
2892
- {
2893
- "SubnetAvailabilityZone": {
2894
- "Name": "us-east-1c"
2895
- },
2896
- "SubnetIdentifier": "subnet-1234abcd"
2897
- },
2898
- {
2899
- "SubnetAvailabilityZone": {
2900
- "Name": "us-east-1b"
2901
- },
2902
- "SubnetIdentifier": "subnet-abcd1234"
2903
- }
2904
- ],
2905
- "VpcId": "vpc-91280df6"
2906
- }
2907
- },
2908
- "comments": {
2909
- "input": {
2910
- },
2911
- "output": {
2912
- }
2913
- },
2914
- "description": "Modifies an existing ElastiCache subnet group.",
2915
- "id": "modifycachesubnetgroup-1483043446226",
2916
- "title": "ModifyCacheSubnetGroup"
2917
- }
2918
- ],
2919
- "ModifyReplicationGroup": [
2920
- {
2921
- "input": {
2922
- "ApplyImmediately": true,
2923
- "ReplicationGroupDescription": "Modified replication group",
2924
- "ReplicationGroupId": "my-redis-rg",
2925
- "SnapshotRetentionLimit": 30,
2926
- "SnapshottingClusterId": "my-redis-rg-001"
2927
- },
2928
- "output": {
2929
- "ReplicationGroup": {
2930
- "AutomaticFailover": "enabled",
2931
- "Description": "Modified replication group",
2932
- "MemberClusters": [
2933
- "my-redis-rg-001",
2934
- "my-redis-rg-002",
2935
- "my-redis-rg-003"
2936
- ],
2937
- "NodeGroups": [
2938
- {
2939
- "NodeGroupId": "0001",
2940
- "NodeGroupMembers": [
2941
- {
2942
- "CacheClusterId": "my-redis-rg-001",
2943
- "CacheNodeId": "0001",
2944
- "CurrentRole": "primary",
2945
- "PreferredAvailabilityZone": "us-east-1b",
2946
- "ReadEndpoint": {
2947
- "Address": "my-redis-rg-001.abcdef.0001.use1.cache.amazonaws.com",
2948
- "Port": 6379
2949
- }
2950
- },
2951
- {
2952
- "CacheClusterId": "my-redis-rg-002",
2953
- "CacheNodeId": "0001",
2954
- "CurrentRole": "replica",
2955
- "PreferredAvailabilityZone": "us-east-1a",
2956
- "ReadEndpoint": {
2957
- "Address": "my-redis-rg-002.abcdef.0001.use1.cache.amazonaws.com",
2958
- "Port": 6379
2959
- }
2960
- },
2961
- {
2962
- "CacheClusterId": "my-redis-rg-003",
2963
- "CacheNodeId": "0001",
2964
- "CurrentRole": "replica",
2965
- "PreferredAvailabilityZone": "us-east-1c",
2966
- "ReadEndpoint": {
2967
- "Address": "my-redis-rg-003.abcdef.0001.use1.cache.amazonaws.com",
2968
- "Port": 6379
2969
- }
2970
- }
2971
- ],
2972
- "PrimaryEndpoint": {
2973
- "Address": "my-redis-rg.abcdef.ng.0001.use1.cache.amazonaws.com",
2974
- "Port": 6379
2975
- },
2976
- "Status": "available"
2977
- }
2978
- ],
2979
- "PendingModifiedValues": {
2980
- },
2981
- "ReplicationGroupId": "my-redis-rg",
2982
- "SnapshottingClusterId": "my-redis-rg-002",
2983
- "Status": "available"
2984
- }
2985
- },
2986
- "comments": {
2987
- "input": {
2988
- },
2989
- "output": {
2990
- }
2991
- },
2992
- "description": "",
2993
- "id": "modifyreplicationgroup-1483039689581",
2994
- "title": "ModifyReplicationGroup"
2995
- }
2996
- ],
2997
- "PurchaseReservedCacheNodesOffering": [
2998
- {
2999
- "input": {
3000
- "ReservedCacheNodesOfferingId": "1ef01f5b-94ff-433f-a530-61a56bfc8e7a"
3001
- },
3002
- "comments": {
3003
- "input": {
3004
- },
3005
- "output": {
3006
- }
3007
- },
3008
- "description": "Allows you to purchase a reserved cache node offering.",
3009
- "id": "purchasereservedcachenodesofferings-1483040798484",
3010
- "title": "PurchaseReservedCacheNodesOfferings"
3011
- }
3012
- ],
3013
- "RebootCacheCluster": [
3014
- {
3015
- "input": {
3016
- "CacheClusterId": "custom-mem1-4 ",
3017
- "CacheNodeIdsToReboot": [
3018
- "0001",
3019
- "0002"
3020
- ]
3021
- },
3022
- "output": {
3023
- "CacheCluster": {
3024
- "AutoMinorVersionUpgrade": true,
3025
- "CacheClusterCreateTime": "2016-12-21T21:59:43.794Z",
3026
- "CacheClusterId": "my-mem-cluster",
3027
- "CacheClusterStatus": "rebooting cache cluster nodes",
3028
- "CacheNodeType": "cache.t2.medium",
3029
- "CacheParameterGroup": {
3030
- "CacheNodeIdsToReboot": [
3031
-
3032
- ],
3033
- "CacheParameterGroupName": "default.memcached1.4",
3034
- "ParameterApplyStatus": "in-sync"
3035
- },
3036
- "CacheSecurityGroups": [
3037
-
3038
- ],
3039
- "CacheSubnetGroupName": "default",
3040
- "ClientDownloadLandingPage": "https://console.aws.amazon.com/elasticache/home#client-download:",
3041
- "ConfigurationEndpoint": {
3042
- "Address": "my-mem-cluster.abcdef.cfg.use1.cache.amazonaws.com",
3043
- "Port": 11211
3044
- },
3045
- "Engine": "memcached",
3046
- "EngineVersion": "1.4.24",
3047
- "NumCacheNodes": 2,
3048
- "PendingModifiedValues": {
3049
- },
3050
- "PreferredAvailabilityZone": "Multiple",
3051
- "PreferredMaintenanceWindow": "wed:06:00-wed:07:00"
3052
- }
3053
- },
3054
- "comments": {
3055
- "input": {
3056
- },
3057
- "output": {
3058
- }
3059
- },
3060
- "description": "Reboots the specified nodes in the names cluster.",
3061
- "id": "rebootcachecluster-1482969019505",
3062
- "title": "RebootCacheCluster"
3063
- }
3064
- ],
3065
- "RemoveTagsFromResource": [
3066
- {
3067
- "input": {
3068
- "ResourceName": "arn:aws:elasticache:us-east-1:1234567890:cluster:my-mem-cluster",
3069
- "TagKeys": [
3070
- "A",
3071
- "C",
3072
- "E"
3073
- ]
3074
- },
3075
- "output": {
3076
- "TagList": [
3077
- {
3078
- "Key": "B",
3079
- "Value": "Banana"
3080
- },
3081
- {
3082
- "Key": "D",
3083
- "Value": "Dog"
3084
- },
3085
- {
3086
- "Key": "F",
3087
- "Value": "Fox"
3088
- },
3089
- {
3090
- "Key": "I",
3091
- "Value": ""
3092
- },
3093
- {
3094
- "Key": "K",
3095
- "Value": "Kite"
3096
- }
3097
- ]
3098
- },
3099
- "comments": {
3100
- "input": {
3101
- },
3102
- "output": {
3103
- }
3104
- },
3105
- "description": "Removes tags identified by a list of tag keys from the list of tags on the specified resource.",
3106
- "id": "removetagsfromresource-1483037920947",
3107
- "title": "RemoveTagsFromResource"
3108
- }
3109
- ],
3110
- "ResetCacheParameterGroup": [
3111
- {
3112
- "input": {
3113
- "CacheParameterGroupName": "custom-mem1-4",
3114
- "ResetAllParameters": true
3115
- },
3116
- "output": {
3117
- "CacheParameterGroupName": "custom-mem1-4"
3118
- },
3119
- "comments": {
3120
- "input": {
3121
- },
3122
- "output": {
3123
- }
3124
- },
3125
- "description": "Modifies the parameters of a cache parameter group to the engine or system default value.",
3126
- "id": "resetcacheparametergroup-1483038334014",
3127
- "title": "ResetCacheParameterGroup"
3128
- }
3129
- ],
3130
- "RevokeCacheSecurityGroupIngress": [
3131
- {
3132
- "input": {
3133
- "CacheSecurityGroupName": "my-sec-grp",
3134
- "EC2SecurityGroupName": "my-ec2-sec-grp",
3135
- "EC2SecurityGroupOwnerId": "1234567890"
3136
- },
3137
- "comments": {
3138
- "input": {
3139
- },
3140
- "output": {
3141
- }
3142
- },
3143
- "description": "Returns a list of cache security group descriptions. If a cache security group name is specified, the list contains only the description of that group.",
3144
- "id": "describecachesecuritygroups-1483047200801",
3145
- "title": "DescribeCacheSecurityGroups"
3146
- }
3147
- ]
3148
- }
3149
- }