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,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,10 +0,0 @@
1
- {
2
- "pagination": {
3
- "DescribeAccelerators": {
4
- "input_token": "nextToken",
5
- "output_token": "nextToken",
6
- "limit_key": "maxResults",
7
- "result_key": "acceleratorSet"
8
- }
9
- }
10
- }
@@ -1,4349 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2015-02-02",
5
- "endpointPrefix":"elasticache",
6
- "protocol":"query",
7
- "serviceFullName":"Amazon ElastiCache",
8
- "serviceId":"ElastiCache",
9
- "signatureVersion":"v4",
10
- "uid":"elasticache-2015-02-02",
11
- "xmlNamespace":"http://elasticache.amazonaws.com/doc/2015-02-02/"
12
- },
13
- "operations":{
14
- "AddTagsToResource":{
15
- "name":"AddTagsToResource",
16
- "http":{
17
- "method":"POST",
18
- "requestUri":"/"
19
- },
20
- "input":{"shape":"AddTagsToResourceMessage"},
21
- "output":{
22
- "shape":"TagListMessage",
23
- "resultWrapper":"AddTagsToResourceResult"
24
- },
25
- "errors":[
26
- {"shape":"CacheClusterNotFoundFault"},
27
- {"shape":"SnapshotNotFoundFault"},
28
- {"shape":"TagQuotaPerResourceExceeded"},
29
- {"shape":"InvalidARNFault"}
30
- ]
31
- },
32
- "AuthorizeCacheSecurityGroupIngress":{
33
- "name":"AuthorizeCacheSecurityGroupIngress",
34
- "http":{
35
- "method":"POST",
36
- "requestUri":"/"
37
- },
38
- "input":{"shape":"AuthorizeCacheSecurityGroupIngressMessage"},
39
- "output":{
40
- "shape":"AuthorizeCacheSecurityGroupIngressResult",
41
- "resultWrapper":"AuthorizeCacheSecurityGroupIngressResult"
42
- },
43
- "errors":[
44
- {"shape":"CacheSecurityGroupNotFoundFault"},
45
- {"shape":"InvalidCacheSecurityGroupStateFault"},
46
- {"shape":"AuthorizationAlreadyExistsFault"},
47
- {"shape":"InvalidParameterValueException"},
48
- {"shape":"InvalidParameterCombinationException"}
49
- ]
50
- },
51
- "BatchApplyUpdateAction":{
52
- "name":"BatchApplyUpdateAction",
53
- "http":{
54
- "method":"POST",
55
- "requestUri":"/"
56
- },
57
- "input":{"shape":"BatchApplyUpdateActionMessage"},
58
- "output":{
59
- "shape":"UpdateActionResultsMessage",
60
- "resultWrapper":"BatchApplyUpdateActionResult"
61
- },
62
- "errors":[
63
- {"shape":"ServiceUpdateNotFoundFault"},
64
- {"shape":"InvalidParameterValueException"}
65
- ]
66
- },
67
- "BatchStopUpdateAction":{
68
- "name":"BatchStopUpdateAction",
69
- "http":{
70
- "method":"POST",
71
- "requestUri":"/"
72
- },
73
- "input":{"shape":"BatchStopUpdateActionMessage"},
74
- "output":{
75
- "shape":"UpdateActionResultsMessage",
76
- "resultWrapper":"BatchStopUpdateActionResult"
77
- },
78
- "errors":[
79
- {"shape":"ServiceUpdateNotFoundFault"},
80
- {"shape":"InvalidParameterValueException"}
81
- ]
82
- },
83
- "CompleteMigration":{
84
- "name":"CompleteMigration",
85
- "http":{
86
- "method":"POST",
87
- "requestUri":"/"
88
- },
89
- "input":{"shape":"CompleteMigrationMessage"},
90
- "output":{
91
- "shape":"CompleteMigrationResponse",
92
- "resultWrapper":"CompleteMigrationResult"
93
- },
94
- "errors":[
95
- {"shape":"ReplicationGroupNotFoundFault"},
96
- {"shape":"InvalidReplicationGroupStateFault"},
97
- {"shape":"ReplicationGroupNotUnderMigrationFault"}
98
- ]
99
- },
100
- "CopySnapshot":{
101
- "name":"CopySnapshot",
102
- "http":{
103
- "method":"POST",
104
- "requestUri":"/"
105
- },
106
- "input":{"shape":"CopySnapshotMessage"},
107
- "output":{
108
- "shape":"CopySnapshotResult",
109
- "resultWrapper":"CopySnapshotResult"
110
- },
111
- "errors":[
112
- {"shape":"SnapshotAlreadyExistsFault"},
113
- {"shape":"SnapshotNotFoundFault"},
114
- {"shape":"SnapshotQuotaExceededFault"},
115
- {"shape":"InvalidSnapshotStateFault"},
116
- {"shape":"InvalidParameterValueException"},
117
- {"shape":"InvalidParameterCombinationException"}
118
- ]
119
- },
120
- "CreateCacheCluster":{
121
- "name":"CreateCacheCluster",
122
- "http":{
123
- "method":"POST",
124
- "requestUri":"/"
125
- },
126
- "input":{"shape":"CreateCacheClusterMessage"},
127
- "output":{
128
- "shape":"CreateCacheClusterResult",
129
- "resultWrapper":"CreateCacheClusterResult"
130
- },
131
- "errors":[
132
- {"shape":"ReplicationGroupNotFoundFault"},
133
- {"shape":"InvalidReplicationGroupStateFault"},
134
- {"shape":"CacheClusterAlreadyExistsFault"},
135
- {"shape":"InsufficientCacheClusterCapacityFault"},
136
- {"shape":"CacheSecurityGroupNotFoundFault"},
137
- {"shape":"CacheSubnetGroupNotFoundFault"},
138
- {"shape":"ClusterQuotaForCustomerExceededFault"},
139
- {"shape":"NodeQuotaForClusterExceededFault"},
140
- {"shape":"NodeQuotaForCustomerExceededFault"},
141
- {"shape":"CacheParameterGroupNotFoundFault"},
142
- {"shape":"InvalidVPCNetworkStateFault"},
143
- {"shape":"TagQuotaPerResourceExceeded"},
144
- {"shape":"InvalidParameterValueException"},
145
- {"shape":"InvalidParameterCombinationException"}
146
- ]
147
- },
148
- "CreateCacheParameterGroup":{
149
- "name":"CreateCacheParameterGroup",
150
- "http":{
151
- "method":"POST",
152
- "requestUri":"/"
153
- },
154
- "input":{"shape":"CreateCacheParameterGroupMessage"},
155
- "output":{
156
- "shape":"CreateCacheParameterGroupResult",
157
- "resultWrapper":"CreateCacheParameterGroupResult"
158
- },
159
- "errors":[
160
- {"shape":"CacheParameterGroupQuotaExceededFault"},
161
- {"shape":"CacheParameterGroupAlreadyExistsFault"},
162
- {"shape":"InvalidCacheParameterGroupStateFault"},
163
- {"shape":"InvalidParameterValueException"},
164
- {"shape":"InvalidParameterCombinationException"}
165
- ]
166
- },
167
- "CreateCacheSecurityGroup":{
168
- "name":"CreateCacheSecurityGroup",
169
- "http":{
170
- "method":"POST",
171
- "requestUri":"/"
172
- },
173
- "input":{"shape":"CreateCacheSecurityGroupMessage"},
174
- "output":{
175
- "shape":"CreateCacheSecurityGroupResult",
176
- "resultWrapper":"CreateCacheSecurityGroupResult"
177
- },
178
- "errors":[
179
- {"shape":"CacheSecurityGroupAlreadyExistsFault"},
180
- {"shape":"CacheSecurityGroupQuotaExceededFault"},
181
- {"shape":"InvalidParameterValueException"},
182
- {"shape":"InvalidParameterCombinationException"}
183
- ]
184
- },
185
- "CreateCacheSubnetGroup":{
186
- "name":"CreateCacheSubnetGroup",
187
- "http":{
188
- "method":"POST",
189
- "requestUri":"/"
190
- },
191
- "input":{"shape":"CreateCacheSubnetGroupMessage"},
192
- "output":{
193
- "shape":"CreateCacheSubnetGroupResult",
194
- "resultWrapper":"CreateCacheSubnetGroupResult"
195
- },
196
- "errors":[
197
- {"shape":"CacheSubnetGroupAlreadyExistsFault"},
198
- {"shape":"CacheSubnetGroupQuotaExceededFault"},
199
- {"shape":"CacheSubnetQuotaExceededFault"},
200
- {"shape":"InvalidSubnet"},
201
- {"shape":"SubnetNotAllowedFault"}
202
- ]
203
- },
204
- "CreateGlobalReplicationGroup":{
205
- "name":"CreateGlobalReplicationGroup",
206
- "http":{
207
- "method":"POST",
208
- "requestUri":"/"
209
- },
210
- "input":{"shape":"CreateGlobalReplicationGroupMessage"},
211
- "output":{
212
- "shape":"CreateGlobalReplicationGroupResult",
213
- "resultWrapper":"CreateGlobalReplicationGroupResult"
214
- },
215
- "errors":[
216
- {"shape":"ReplicationGroupNotFoundFault"},
217
- {"shape":"InvalidReplicationGroupStateFault"},
218
- {"shape":"GlobalReplicationGroupAlreadyExistsFault"},
219
- {"shape":"ServiceLinkedRoleNotFoundFault"},
220
- {"shape":"InvalidParameterValueException"}
221
- ]
222
- },
223
- "CreateReplicationGroup":{
224
- "name":"CreateReplicationGroup",
225
- "http":{
226
- "method":"POST",
227
- "requestUri":"/"
228
- },
229
- "input":{"shape":"CreateReplicationGroupMessage"},
230
- "output":{
231
- "shape":"CreateReplicationGroupResult",
232
- "resultWrapper":"CreateReplicationGroupResult"
233
- },
234
- "errors":[
235
- {"shape":"CacheClusterNotFoundFault"},
236
- {"shape":"InvalidCacheClusterStateFault"},
237
- {"shape":"ReplicationGroupAlreadyExistsFault"},
238
- {"shape":"InvalidUserGroupStateFault"},
239
- {"shape":"UserGroupNotFoundFault"},
240
- {"shape":"InsufficientCacheClusterCapacityFault"},
241
- {"shape":"CacheSecurityGroupNotFoundFault"},
242
- {"shape":"CacheSubnetGroupNotFoundFault"},
243
- {"shape":"ClusterQuotaForCustomerExceededFault"},
244
- {"shape":"NodeQuotaForClusterExceededFault"},
245
- {"shape":"NodeQuotaForCustomerExceededFault"},
246
- {"shape":"CacheParameterGroupNotFoundFault"},
247
- {"shape":"InvalidVPCNetworkStateFault"},
248
- {"shape":"TagQuotaPerResourceExceeded"},
249
- {"shape":"NodeGroupsPerReplicationGroupQuotaExceededFault"},
250
- {"shape":"GlobalReplicationGroupNotFoundFault"},
251
- {"shape":"InvalidGlobalReplicationGroupStateFault"},
252
- {"shape":"InvalidParameterValueException"},
253
- {"shape":"InvalidParameterCombinationException"}
254
- ]
255
- },
256
- "CreateSnapshot":{
257
- "name":"CreateSnapshot",
258
- "http":{
259
- "method":"POST",
260
- "requestUri":"/"
261
- },
262
- "input":{"shape":"CreateSnapshotMessage"},
263
- "output":{
264
- "shape":"CreateSnapshotResult",
265
- "resultWrapper":"CreateSnapshotResult"
266
- },
267
- "errors":[
268
- {"shape":"SnapshotAlreadyExistsFault"},
269
- {"shape":"CacheClusterNotFoundFault"},
270
- {"shape":"ReplicationGroupNotFoundFault"},
271
- {"shape":"InvalidCacheClusterStateFault"},
272
- {"shape":"InvalidReplicationGroupStateFault"},
273
- {"shape":"SnapshotQuotaExceededFault"},
274
- {"shape":"SnapshotFeatureNotSupportedFault"},
275
- {"shape":"InvalidParameterCombinationException"},
276
- {"shape":"InvalidParameterValueException"}
277
- ]
278
- },
279
- "CreateUser":{
280
- "name":"CreateUser",
281
- "http":{
282
- "method":"POST",
283
- "requestUri":"/"
284
- },
285
- "input":{"shape":"CreateUserMessage"},
286
- "output":{
287
- "shape":"User",
288
- "resultWrapper":"CreateUserResult"
289
- },
290
- "errors":[
291
- {"shape":"UserAlreadyExistsFault"},
292
- {"shape":"UserQuotaExceededFault"},
293
- {"shape":"DuplicateUserNameFault"},
294
- {"shape":"InvalidParameterValueException"},
295
- {"shape":"InvalidParameterCombinationException"}
296
- ]
297
- },
298
- "CreateUserGroup":{
299
- "name":"CreateUserGroup",
300
- "http":{
301
- "method":"POST",
302
- "requestUri":"/"
303
- },
304
- "input":{"shape":"CreateUserGroupMessage"},
305
- "output":{
306
- "shape":"UserGroup",
307
- "resultWrapper":"CreateUserGroupResult"
308
- },
309
- "errors":[
310
- {"shape":"UserNotFoundFault"},
311
- {"shape":"DuplicateUserNameFault"},
312
- {"shape":"UserGroupAlreadyExistsFault"},
313
- {"shape":"DefaultUserRequired"},
314
- {"shape":"UserGroupQuotaExceededFault"},
315
- {"shape":"InvalidParameterValueException"}
316
- ]
317
- },
318
- "DecreaseNodeGroupsInGlobalReplicationGroup":{
319
- "name":"DecreaseNodeGroupsInGlobalReplicationGroup",
320
- "http":{
321
- "method":"POST",
322
- "requestUri":"/"
323
- },
324
- "input":{"shape":"DecreaseNodeGroupsInGlobalReplicationGroupMessage"},
325
- "output":{
326
- "shape":"DecreaseNodeGroupsInGlobalReplicationGroupResult",
327
- "resultWrapper":"DecreaseNodeGroupsInGlobalReplicationGroupResult"
328
- },
329
- "errors":[
330
- {"shape":"GlobalReplicationGroupNotFoundFault"},
331
- {"shape":"InvalidGlobalReplicationGroupStateFault"},
332
- {"shape":"InvalidParameterValueException"},
333
- {"shape":"InvalidParameterCombinationException"}
334
- ]
335
- },
336
- "DecreaseReplicaCount":{
337
- "name":"DecreaseReplicaCount",
338
- "http":{
339
- "method":"POST",
340
- "requestUri":"/"
341
- },
342
- "input":{"shape":"DecreaseReplicaCountMessage"},
343
- "output":{
344
- "shape":"DecreaseReplicaCountResult",
345
- "resultWrapper":"DecreaseReplicaCountResult"
346
- },
347
- "errors":[
348
- {"shape":"ReplicationGroupNotFoundFault"},
349
- {"shape":"InvalidReplicationGroupStateFault"},
350
- {"shape":"InvalidCacheClusterStateFault"},
351
- {"shape":"InvalidVPCNetworkStateFault"},
352
- {"shape":"InsufficientCacheClusterCapacityFault"},
353
- {"shape":"ClusterQuotaForCustomerExceededFault"},
354
- {"shape":"NodeGroupsPerReplicationGroupQuotaExceededFault"},
355
- {"shape":"NodeQuotaForCustomerExceededFault"},
356
- {"shape":"ServiceLinkedRoleNotFoundFault"},
357
- {"shape":"NoOperationFault"},
358
- {"shape":"InvalidParameterValueException"},
359
- {"shape":"InvalidParameterCombinationException"}
360
- ]
361
- },
362
- "DeleteCacheCluster":{
363
- "name":"DeleteCacheCluster",
364
- "http":{
365
- "method":"POST",
366
- "requestUri":"/"
367
- },
368
- "input":{"shape":"DeleteCacheClusterMessage"},
369
- "output":{
370
- "shape":"DeleteCacheClusterResult",
371
- "resultWrapper":"DeleteCacheClusterResult"
372
- },
373
- "errors":[
374
- {"shape":"CacheClusterNotFoundFault"},
375
- {"shape":"InvalidCacheClusterStateFault"},
376
- {"shape":"SnapshotAlreadyExistsFault"},
377
- {"shape":"SnapshotFeatureNotSupportedFault"},
378
- {"shape":"SnapshotQuotaExceededFault"},
379
- {"shape":"InvalidParameterValueException"},
380
- {"shape":"InvalidParameterCombinationException"}
381
- ]
382
- },
383
- "DeleteCacheParameterGroup":{
384
- "name":"DeleteCacheParameterGroup",
385
- "http":{
386
- "method":"POST",
387
- "requestUri":"/"
388
- },
389
- "input":{"shape":"DeleteCacheParameterGroupMessage"},
390
- "errors":[
391
- {"shape":"InvalidCacheParameterGroupStateFault"},
392
- {"shape":"CacheParameterGroupNotFoundFault"},
393
- {"shape":"InvalidParameterValueException"},
394
- {"shape":"InvalidParameterCombinationException"}
395
- ]
396
- },
397
- "DeleteCacheSecurityGroup":{
398
- "name":"DeleteCacheSecurityGroup",
399
- "http":{
400
- "method":"POST",
401
- "requestUri":"/"
402
- },
403
- "input":{"shape":"DeleteCacheSecurityGroupMessage"},
404
- "errors":[
405
- {"shape":"InvalidCacheSecurityGroupStateFault"},
406
- {"shape":"CacheSecurityGroupNotFoundFault"},
407
- {"shape":"InvalidParameterValueException"},
408
- {"shape":"InvalidParameterCombinationException"}
409
- ]
410
- },
411
- "DeleteCacheSubnetGroup":{
412
- "name":"DeleteCacheSubnetGroup",
413
- "http":{
414
- "method":"POST",
415
- "requestUri":"/"
416
- },
417
- "input":{"shape":"DeleteCacheSubnetGroupMessage"},
418
- "errors":[
419
- {"shape":"CacheSubnetGroupInUse"},
420
- {"shape":"CacheSubnetGroupNotFoundFault"}
421
- ]
422
- },
423
- "DeleteGlobalReplicationGroup":{
424
- "name":"DeleteGlobalReplicationGroup",
425
- "http":{
426
- "method":"POST",
427
- "requestUri":"/"
428
- },
429
- "input":{"shape":"DeleteGlobalReplicationGroupMessage"},
430
- "output":{
431
- "shape":"DeleteGlobalReplicationGroupResult",
432
- "resultWrapper":"DeleteGlobalReplicationGroupResult"
433
- },
434
- "errors":[
435
- {"shape":"GlobalReplicationGroupNotFoundFault"},
436
- {"shape":"InvalidGlobalReplicationGroupStateFault"},
437
- {"shape":"InvalidParameterValueException"}
438
- ]
439
- },
440
- "DeleteReplicationGroup":{
441
- "name":"DeleteReplicationGroup",
442
- "http":{
443
- "method":"POST",
444
- "requestUri":"/"
445
- },
446
- "input":{"shape":"DeleteReplicationGroupMessage"},
447
- "output":{
448
- "shape":"DeleteReplicationGroupResult",
449
- "resultWrapper":"DeleteReplicationGroupResult"
450
- },
451
- "errors":[
452
- {"shape":"ReplicationGroupNotFoundFault"},
453
- {"shape":"InvalidReplicationGroupStateFault"},
454
- {"shape":"SnapshotAlreadyExistsFault"},
455
- {"shape":"SnapshotFeatureNotSupportedFault"},
456
- {"shape":"SnapshotQuotaExceededFault"},
457
- {"shape":"InvalidParameterValueException"},
458
- {"shape":"InvalidParameterCombinationException"}
459
- ]
460
- },
461
- "DeleteSnapshot":{
462
- "name":"DeleteSnapshot",
463
- "http":{
464
- "method":"POST",
465
- "requestUri":"/"
466
- },
467
- "input":{"shape":"DeleteSnapshotMessage"},
468
- "output":{
469
- "shape":"DeleteSnapshotResult",
470
- "resultWrapper":"DeleteSnapshotResult"
471
- },
472
- "errors":[
473
- {"shape":"SnapshotNotFoundFault"},
474
- {"shape":"InvalidSnapshotStateFault"},
475
- {"shape":"InvalidParameterValueException"},
476
- {"shape":"InvalidParameterCombinationException"}
477
- ]
478
- },
479
- "DeleteUser":{
480
- "name":"DeleteUser",
481
- "http":{
482
- "method":"POST",
483
- "requestUri":"/"
484
- },
485
- "input":{"shape":"DeleteUserMessage"},
486
- "output":{
487
- "shape":"User",
488
- "resultWrapper":"DeleteUserResult"
489
- },
490
- "errors":[
491
- {"shape":"InvalidUserStateFault"},
492
- {"shape":"UserNotFoundFault"},
493
- {"shape":"InvalidParameterValueException"},
494
- {"shape":"DefaultUserAssociatedToUserGroupFault"}
495
- ]
496
- },
497
- "DeleteUserGroup":{
498
- "name":"DeleteUserGroup",
499
- "http":{
500
- "method":"POST",
501
- "requestUri":"/"
502
- },
503
- "input":{"shape":"DeleteUserGroupMessage"},
504
- "output":{
505
- "shape":"UserGroup",
506
- "resultWrapper":"DeleteUserGroupResult"
507
- },
508
- "errors":[
509
- {"shape":"UserGroupNotFoundFault"},
510
- {"shape":"InvalidUserGroupStateFault"},
511
- {"shape":"InvalidParameterValueException"}
512
- ]
513
- },
514
- "DescribeCacheClusters":{
515
- "name":"DescribeCacheClusters",
516
- "http":{
517
- "method":"POST",
518
- "requestUri":"/"
519
- },
520
- "input":{"shape":"DescribeCacheClustersMessage"},
521
- "output":{
522
- "shape":"CacheClusterMessage",
523
- "resultWrapper":"DescribeCacheClustersResult"
524
- },
525
- "errors":[
526
- {"shape":"CacheClusterNotFoundFault"},
527
- {"shape":"InvalidParameterValueException"},
528
- {"shape":"InvalidParameterCombinationException"}
529
- ]
530
- },
531
- "DescribeCacheEngineVersions":{
532
- "name":"DescribeCacheEngineVersions",
533
- "http":{
534
- "method":"POST",
535
- "requestUri":"/"
536
- },
537
- "input":{"shape":"DescribeCacheEngineVersionsMessage"},
538
- "output":{
539
- "shape":"CacheEngineVersionMessage",
540
- "resultWrapper":"DescribeCacheEngineVersionsResult"
541
- }
542
- },
543
- "DescribeCacheParameterGroups":{
544
- "name":"DescribeCacheParameterGroups",
545
- "http":{
546
- "method":"POST",
547
- "requestUri":"/"
548
- },
549
- "input":{"shape":"DescribeCacheParameterGroupsMessage"},
550
- "output":{
551
- "shape":"CacheParameterGroupsMessage",
552
- "resultWrapper":"DescribeCacheParameterGroupsResult"
553
- },
554
- "errors":[
555
- {"shape":"CacheParameterGroupNotFoundFault"},
556
- {"shape":"InvalidParameterValueException"},
557
- {"shape":"InvalidParameterCombinationException"}
558
- ]
559
- },
560
- "DescribeCacheParameters":{
561
- "name":"DescribeCacheParameters",
562
- "http":{
563
- "method":"POST",
564
- "requestUri":"/"
565
- },
566
- "input":{"shape":"DescribeCacheParametersMessage"},
567
- "output":{
568
- "shape":"CacheParameterGroupDetails",
569
- "resultWrapper":"DescribeCacheParametersResult"
570
- },
571
- "errors":[
572
- {"shape":"CacheParameterGroupNotFoundFault"},
573
- {"shape":"InvalidParameterValueException"},
574
- {"shape":"InvalidParameterCombinationException"}
575
- ]
576
- },
577
- "DescribeCacheSecurityGroups":{
578
- "name":"DescribeCacheSecurityGroups",
579
- "http":{
580
- "method":"POST",
581
- "requestUri":"/"
582
- },
583
- "input":{"shape":"DescribeCacheSecurityGroupsMessage"},
584
- "output":{
585
- "shape":"CacheSecurityGroupMessage",
586
- "resultWrapper":"DescribeCacheSecurityGroupsResult"
587
- },
588
- "errors":[
589
- {"shape":"CacheSecurityGroupNotFoundFault"},
590
- {"shape":"InvalidParameterValueException"},
591
- {"shape":"InvalidParameterCombinationException"}
592
- ]
593
- },
594
- "DescribeCacheSubnetGroups":{
595
- "name":"DescribeCacheSubnetGroups",
596
- "http":{
597
- "method":"POST",
598
- "requestUri":"/"
599
- },
600
- "input":{"shape":"DescribeCacheSubnetGroupsMessage"},
601
- "output":{
602
- "shape":"CacheSubnetGroupMessage",
603
- "resultWrapper":"DescribeCacheSubnetGroupsResult"
604
- },
605
- "errors":[
606
- {"shape":"CacheSubnetGroupNotFoundFault"}
607
- ]
608
- },
609
- "DescribeEngineDefaultParameters":{
610
- "name":"DescribeEngineDefaultParameters",
611
- "http":{
612
- "method":"POST",
613
- "requestUri":"/"
614
- },
615
- "input":{"shape":"DescribeEngineDefaultParametersMessage"},
616
- "output":{
617
- "shape":"DescribeEngineDefaultParametersResult",
618
- "resultWrapper":"DescribeEngineDefaultParametersResult"
619
- },
620
- "errors":[
621
- {"shape":"InvalidParameterValueException"},
622
- {"shape":"InvalidParameterCombinationException"}
623
- ]
624
- },
625
- "DescribeEvents":{
626
- "name":"DescribeEvents",
627
- "http":{
628
- "method":"POST",
629
- "requestUri":"/"
630
- },
631
- "input":{"shape":"DescribeEventsMessage"},
632
- "output":{
633
- "shape":"EventsMessage",
634
- "resultWrapper":"DescribeEventsResult"
635
- },
636
- "errors":[
637
- {"shape":"InvalidParameterValueException"},
638
- {"shape":"InvalidParameterCombinationException"}
639
- ]
640
- },
641
- "DescribeGlobalReplicationGroups":{
642
- "name":"DescribeGlobalReplicationGroups",
643
- "http":{
644
- "method":"POST",
645
- "requestUri":"/"
646
- },
647
- "input":{"shape":"DescribeGlobalReplicationGroupsMessage"},
648
- "output":{
649
- "shape":"DescribeGlobalReplicationGroupsResult",
650
- "resultWrapper":"DescribeGlobalReplicationGroupsResult"
651
- },
652
- "errors":[
653
- {"shape":"GlobalReplicationGroupNotFoundFault"},
654
- {"shape":"InvalidParameterValueException"},
655
- {"shape":"InvalidParameterCombinationException"}
656
- ]
657
- },
658
- "DescribeReplicationGroups":{
659
- "name":"DescribeReplicationGroups",
660
- "http":{
661
- "method":"POST",
662
- "requestUri":"/"
663
- },
664
- "input":{"shape":"DescribeReplicationGroupsMessage"},
665
- "output":{
666
- "shape":"ReplicationGroupMessage",
667
- "resultWrapper":"DescribeReplicationGroupsResult"
668
- },
669
- "errors":[
670
- {"shape":"ReplicationGroupNotFoundFault"},
671
- {"shape":"InvalidParameterValueException"},
672
- {"shape":"InvalidParameterCombinationException"}
673
- ]
674
- },
675
- "DescribeReservedCacheNodes":{
676
- "name":"DescribeReservedCacheNodes",
677
- "http":{
678
- "method":"POST",
679
- "requestUri":"/"
680
- },
681
- "input":{"shape":"DescribeReservedCacheNodesMessage"},
682
- "output":{
683
- "shape":"ReservedCacheNodeMessage",
684
- "resultWrapper":"DescribeReservedCacheNodesResult"
685
- },
686
- "errors":[
687
- {"shape":"ReservedCacheNodeNotFoundFault"},
688
- {"shape":"InvalidParameterValueException"},
689
- {"shape":"InvalidParameterCombinationException"}
690
- ]
691
- },
692
- "DescribeReservedCacheNodesOfferings":{
693
- "name":"DescribeReservedCacheNodesOfferings",
694
- "http":{
695
- "method":"POST",
696
- "requestUri":"/"
697
- },
698
- "input":{"shape":"DescribeReservedCacheNodesOfferingsMessage"},
699
- "output":{
700
- "shape":"ReservedCacheNodesOfferingMessage",
701
- "resultWrapper":"DescribeReservedCacheNodesOfferingsResult"
702
- },
703
- "errors":[
704
- {"shape":"ReservedCacheNodesOfferingNotFoundFault"},
705
- {"shape":"InvalidParameterValueException"},
706
- {"shape":"InvalidParameterCombinationException"}
707
- ]
708
- },
709
- "DescribeServiceUpdates":{
710
- "name":"DescribeServiceUpdates",
711
- "http":{
712
- "method":"POST",
713
- "requestUri":"/"
714
- },
715
- "input":{"shape":"DescribeServiceUpdatesMessage"},
716
- "output":{
717
- "shape":"ServiceUpdatesMessage",
718
- "resultWrapper":"DescribeServiceUpdatesResult"
719
- },
720
- "errors":[
721
- {"shape":"ServiceUpdateNotFoundFault"},
722
- {"shape":"InvalidParameterValueException"},
723
- {"shape":"InvalidParameterCombinationException"}
724
- ]
725
- },
726
- "DescribeSnapshots":{
727
- "name":"DescribeSnapshots",
728
- "http":{
729
- "method":"POST",
730
- "requestUri":"/"
731
- },
732
- "input":{"shape":"DescribeSnapshotsMessage"},
733
- "output":{
734
- "shape":"DescribeSnapshotsListMessage",
735
- "resultWrapper":"DescribeSnapshotsResult"
736
- },
737
- "errors":[
738
- {"shape":"CacheClusterNotFoundFault"},
739
- {"shape":"SnapshotNotFoundFault"},
740
- {"shape":"InvalidParameterValueException"},
741
- {"shape":"InvalidParameterCombinationException"}
742
- ]
743
- },
744
- "DescribeUpdateActions":{
745
- "name":"DescribeUpdateActions",
746
- "http":{
747
- "method":"POST",
748
- "requestUri":"/"
749
- },
750
- "input":{"shape":"DescribeUpdateActionsMessage"},
751
- "output":{
752
- "shape":"UpdateActionsMessage",
753
- "resultWrapper":"DescribeUpdateActionsResult"
754
- },
755
- "errors":[
756
- {"shape":"InvalidParameterValueException"},
757
- {"shape":"InvalidParameterCombinationException"}
758
- ]
759
- },
760
- "DescribeUserGroups":{
761
- "name":"DescribeUserGroups",
762
- "http":{
763
- "method":"POST",
764
- "requestUri":"/"
765
- },
766
- "input":{"shape":"DescribeUserGroupsMessage"},
767
- "output":{
768
- "shape":"DescribeUserGroupsResult",
769
- "resultWrapper":"DescribeUserGroupsResult"
770
- },
771
- "errors":[
772
- {"shape":"UserGroupNotFoundFault"},
773
- {"shape":"InvalidParameterCombinationException"}
774
- ]
775
- },
776
- "DescribeUsers":{
777
- "name":"DescribeUsers",
778
- "http":{
779
- "method":"POST",
780
- "requestUri":"/"
781
- },
782
- "input":{"shape":"DescribeUsersMessage"},
783
- "output":{
784
- "shape":"DescribeUsersResult",
785
- "resultWrapper":"DescribeUsersResult"
786
- },
787
- "errors":[
788
- {"shape":"UserNotFoundFault"},
789
- {"shape":"InvalidParameterCombinationException"}
790
- ]
791
- },
792
- "DisassociateGlobalReplicationGroup":{
793
- "name":"DisassociateGlobalReplicationGroup",
794
- "http":{
795
- "method":"POST",
796
- "requestUri":"/"
797
- },
798
- "input":{"shape":"DisassociateGlobalReplicationGroupMessage"},
799
- "output":{
800
- "shape":"DisassociateGlobalReplicationGroupResult",
801
- "resultWrapper":"DisassociateGlobalReplicationGroupResult"
802
- },
803
- "errors":[
804
- {"shape":"GlobalReplicationGroupNotFoundFault"},
805
- {"shape":"InvalidGlobalReplicationGroupStateFault"},
806
- {"shape":"InvalidParameterValueException"},
807
- {"shape":"InvalidParameterCombinationException"}
808
- ]
809
- },
810
- "FailoverGlobalReplicationGroup":{
811
- "name":"FailoverGlobalReplicationGroup",
812
- "http":{
813
- "method":"POST",
814
- "requestUri":"/"
815
- },
816
- "input":{"shape":"FailoverGlobalReplicationGroupMessage"},
817
- "output":{
818
- "shape":"FailoverGlobalReplicationGroupResult",
819
- "resultWrapper":"FailoverGlobalReplicationGroupResult"
820
- },
821
- "errors":[
822
- {"shape":"GlobalReplicationGroupNotFoundFault"},
823
- {"shape":"InvalidGlobalReplicationGroupStateFault"},
824
- {"shape":"InvalidParameterValueException"},
825
- {"shape":"InvalidParameterCombinationException"}
826
- ]
827
- },
828
- "IncreaseNodeGroupsInGlobalReplicationGroup":{
829
- "name":"IncreaseNodeGroupsInGlobalReplicationGroup",
830
- "http":{
831
- "method":"POST",
832
- "requestUri":"/"
833
- },
834
- "input":{"shape":"IncreaseNodeGroupsInGlobalReplicationGroupMessage"},
835
- "output":{
836
- "shape":"IncreaseNodeGroupsInGlobalReplicationGroupResult",
837
- "resultWrapper":"IncreaseNodeGroupsInGlobalReplicationGroupResult"
838
- },
839
- "errors":[
840
- {"shape":"GlobalReplicationGroupNotFoundFault"},
841
- {"shape":"InvalidGlobalReplicationGroupStateFault"},
842
- {"shape":"InvalidParameterValueException"}
843
- ]
844
- },
845
- "IncreaseReplicaCount":{
846
- "name":"IncreaseReplicaCount",
847
- "http":{
848
- "method":"POST",
849
- "requestUri":"/"
850
- },
851
- "input":{"shape":"IncreaseReplicaCountMessage"},
852
- "output":{
853
- "shape":"IncreaseReplicaCountResult",
854
- "resultWrapper":"IncreaseReplicaCountResult"
855
- },
856
- "errors":[
857
- {"shape":"ReplicationGroupNotFoundFault"},
858
- {"shape":"InvalidReplicationGroupStateFault"},
859
- {"shape":"InvalidCacheClusterStateFault"},
860
- {"shape":"InvalidVPCNetworkStateFault"},
861
- {"shape":"InsufficientCacheClusterCapacityFault"},
862
- {"shape":"ClusterQuotaForCustomerExceededFault"},
863
- {"shape":"NodeGroupsPerReplicationGroupQuotaExceededFault"},
864
- {"shape":"NodeQuotaForCustomerExceededFault"},
865
- {"shape":"NoOperationFault"},
866
- {"shape":"InvalidKMSKeyFault"},
867
- {"shape":"InvalidParameterValueException"},
868
- {"shape":"InvalidParameterCombinationException"}
869
- ]
870
- },
871
- "ListAllowedNodeTypeModifications":{
872
- "name":"ListAllowedNodeTypeModifications",
873
- "http":{
874
- "method":"POST",
875
- "requestUri":"/"
876
- },
877
- "input":{"shape":"ListAllowedNodeTypeModificationsMessage"},
878
- "output":{
879
- "shape":"AllowedNodeTypeModificationsMessage",
880
- "resultWrapper":"ListAllowedNodeTypeModificationsResult"
881
- },
882
- "errors":[
883
- {"shape":"CacheClusterNotFoundFault"},
884
- {"shape":"ReplicationGroupNotFoundFault"},
885
- {"shape":"InvalidParameterCombinationException"},
886
- {"shape":"InvalidParameterValueException"}
887
- ]
888
- },
889
- "ListTagsForResource":{
890
- "name":"ListTagsForResource",
891
- "http":{
892
- "method":"POST",
893
- "requestUri":"/"
894
- },
895
- "input":{"shape":"ListTagsForResourceMessage"},
896
- "output":{
897
- "shape":"TagListMessage",
898
- "resultWrapper":"ListTagsForResourceResult"
899
- },
900
- "errors":[
901
- {"shape":"CacheClusterNotFoundFault"},
902
- {"shape":"SnapshotNotFoundFault"},
903
- {"shape":"InvalidARNFault"}
904
- ]
905
- },
906
- "ModifyCacheCluster":{
907
- "name":"ModifyCacheCluster",
908
- "http":{
909
- "method":"POST",
910
- "requestUri":"/"
911
- },
912
- "input":{"shape":"ModifyCacheClusterMessage"},
913
- "output":{
914
- "shape":"ModifyCacheClusterResult",
915
- "resultWrapper":"ModifyCacheClusterResult"
916
- },
917
- "errors":[
918
- {"shape":"InvalidCacheClusterStateFault"},
919
- {"shape":"InvalidCacheSecurityGroupStateFault"},
920
- {"shape":"InsufficientCacheClusterCapacityFault"},
921
- {"shape":"CacheClusterNotFoundFault"},
922
- {"shape":"NodeQuotaForClusterExceededFault"},
923
- {"shape":"NodeQuotaForCustomerExceededFault"},
924
- {"shape":"CacheSecurityGroupNotFoundFault"},
925
- {"shape":"CacheParameterGroupNotFoundFault"},
926
- {"shape":"InvalidVPCNetworkStateFault"},
927
- {"shape":"InvalidParameterValueException"},
928
- {"shape":"InvalidParameterCombinationException"}
929
- ]
930
- },
931
- "ModifyCacheParameterGroup":{
932
- "name":"ModifyCacheParameterGroup",
933
- "http":{
934
- "method":"POST",
935
- "requestUri":"/"
936
- },
937
- "input":{"shape":"ModifyCacheParameterGroupMessage"},
938
- "output":{
939
- "shape":"CacheParameterGroupNameMessage",
940
- "resultWrapper":"ModifyCacheParameterGroupResult"
941
- },
942
- "errors":[
943
- {"shape":"CacheParameterGroupNotFoundFault"},
944
- {"shape":"InvalidCacheParameterGroupStateFault"},
945
- {"shape":"InvalidParameterValueException"},
946
- {"shape":"InvalidParameterCombinationException"},
947
- {"shape":"InvalidGlobalReplicationGroupStateFault"}
948
- ]
949
- },
950
- "ModifyCacheSubnetGroup":{
951
- "name":"ModifyCacheSubnetGroup",
952
- "http":{
953
- "method":"POST",
954
- "requestUri":"/"
955
- },
956
- "input":{"shape":"ModifyCacheSubnetGroupMessage"},
957
- "output":{
958
- "shape":"ModifyCacheSubnetGroupResult",
959
- "resultWrapper":"ModifyCacheSubnetGroupResult"
960
- },
961
- "errors":[
962
- {"shape":"CacheSubnetGroupNotFoundFault"},
963
- {"shape":"CacheSubnetQuotaExceededFault"},
964
- {"shape":"SubnetInUse"},
965
- {"shape":"InvalidSubnet"},
966
- {"shape":"SubnetNotAllowedFault"}
967
- ]
968
- },
969
- "ModifyGlobalReplicationGroup":{
970
- "name":"ModifyGlobalReplicationGroup",
971
- "http":{
972
- "method":"POST",
973
- "requestUri":"/"
974
- },
975
- "input":{"shape":"ModifyGlobalReplicationGroupMessage"},
976
- "output":{
977
- "shape":"ModifyGlobalReplicationGroupResult",
978
- "resultWrapper":"ModifyGlobalReplicationGroupResult"
979
- },
980
- "errors":[
981
- {"shape":"GlobalReplicationGroupNotFoundFault"},
982
- {"shape":"InvalidGlobalReplicationGroupStateFault"},
983
- {"shape":"InvalidParameterValueException"}
984
- ]
985
- },
986
- "ModifyReplicationGroup":{
987
- "name":"ModifyReplicationGroup",
988
- "http":{
989
- "method":"POST",
990
- "requestUri":"/"
991
- },
992
- "input":{"shape":"ModifyReplicationGroupMessage"},
993
- "output":{
994
- "shape":"ModifyReplicationGroupResult",
995
- "resultWrapper":"ModifyReplicationGroupResult"
996
- },
997
- "errors":[
998
- {"shape":"ReplicationGroupNotFoundFault"},
999
- {"shape":"InvalidReplicationGroupStateFault"},
1000
- {"shape":"InvalidUserGroupStateFault"},
1001
- {"shape":"UserGroupNotFoundFault"},
1002
- {"shape":"InvalidCacheClusterStateFault"},
1003
- {"shape":"InvalidCacheSecurityGroupStateFault"},
1004
- {"shape":"InsufficientCacheClusterCapacityFault"},
1005
- {"shape":"CacheClusterNotFoundFault"},
1006
- {"shape":"NodeQuotaForClusterExceededFault"},
1007
- {"shape":"NodeQuotaForCustomerExceededFault"},
1008
- {"shape":"CacheSecurityGroupNotFoundFault"},
1009
- {"shape":"CacheParameterGroupNotFoundFault"},
1010
- {"shape":"InvalidVPCNetworkStateFault"},
1011
- {"shape":"InvalidKMSKeyFault"},
1012
- {"shape":"InvalidParameterValueException"},
1013
- {"shape":"InvalidParameterCombinationException"}
1014
- ]
1015
- },
1016
- "ModifyReplicationGroupShardConfiguration":{
1017
- "name":"ModifyReplicationGroupShardConfiguration",
1018
- "http":{
1019
- "method":"POST",
1020
- "requestUri":"/"
1021
- },
1022
- "input":{"shape":"ModifyReplicationGroupShardConfigurationMessage"},
1023
- "output":{
1024
- "shape":"ModifyReplicationGroupShardConfigurationResult",
1025
- "resultWrapper":"ModifyReplicationGroupShardConfigurationResult"
1026
- },
1027
- "errors":[
1028
- {"shape":"ReplicationGroupNotFoundFault"},
1029
- {"shape":"InvalidReplicationGroupStateFault"},
1030
- {"shape":"InvalidCacheClusterStateFault"},
1031
- {"shape":"InvalidVPCNetworkStateFault"},
1032
- {"shape":"InsufficientCacheClusterCapacityFault"},
1033
- {"shape":"NodeGroupsPerReplicationGroupQuotaExceededFault"},
1034
- {"shape":"NodeQuotaForCustomerExceededFault"},
1035
- {"shape":"InvalidKMSKeyFault"},
1036
- {"shape":"InvalidParameterValueException"},
1037
- {"shape":"InvalidParameterCombinationException"}
1038
- ]
1039
- },
1040
- "ModifyUser":{
1041
- "name":"ModifyUser",
1042
- "http":{
1043
- "method":"POST",
1044
- "requestUri":"/"
1045
- },
1046
- "input":{"shape":"ModifyUserMessage"},
1047
- "output":{
1048
- "shape":"User",
1049
- "resultWrapper":"ModifyUserResult"
1050
- },
1051
- "errors":[
1052
- {"shape":"UserNotFoundFault"},
1053
- {"shape":"InvalidUserStateFault"},
1054
- {"shape":"InvalidParameterValueException"},
1055
- {"shape":"InvalidParameterCombinationException"}
1056
- ]
1057
- },
1058
- "ModifyUserGroup":{
1059
- "name":"ModifyUserGroup",
1060
- "http":{
1061
- "method":"POST",
1062
- "requestUri":"/"
1063
- },
1064
- "input":{"shape":"ModifyUserGroupMessage"},
1065
- "output":{
1066
- "shape":"UserGroup",
1067
- "resultWrapper":"ModifyUserGroupResult"
1068
- },
1069
- "errors":[
1070
- {"shape":"UserGroupNotFoundFault"},
1071
- {"shape":"UserNotFoundFault"},
1072
- {"shape":"DuplicateUserNameFault"},
1073
- {"shape":"DefaultUserRequired"},
1074
- {"shape":"InvalidUserGroupStateFault"},
1075
- {"shape":"InvalidParameterValueException"},
1076
- {"shape":"InvalidParameterCombinationException"}
1077
- ]
1078
- },
1079
- "PurchaseReservedCacheNodesOffering":{
1080
- "name":"PurchaseReservedCacheNodesOffering",
1081
- "http":{
1082
- "method":"POST",
1083
- "requestUri":"/"
1084
- },
1085
- "input":{"shape":"PurchaseReservedCacheNodesOfferingMessage"},
1086
- "output":{
1087
- "shape":"PurchaseReservedCacheNodesOfferingResult",
1088
- "resultWrapper":"PurchaseReservedCacheNodesOfferingResult"
1089
- },
1090
- "errors":[
1091
- {"shape":"ReservedCacheNodesOfferingNotFoundFault"},
1092
- {"shape":"ReservedCacheNodeAlreadyExistsFault"},
1093
- {"shape":"ReservedCacheNodeQuotaExceededFault"},
1094
- {"shape":"InvalidParameterValueException"},
1095
- {"shape":"InvalidParameterCombinationException"}
1096
- ]
1097
- },
1098
- "RebalanceSlotsInGlobalReplicationGroup":{
1099
- "name":"RebalanceSlotsInGlobalReplicationGroup",
1100
- "http":{
1101
- "method":"POST",
1102
- "requestUri":"/"
1103
- },
1104
- "input":{"shape":"RebalanceSlotsInGlobalReplicationGroupMessage"},
1105
- "output":{
1106
- "shape":"RebalanceSlotsInGlobalReplicationGroupResult",
1107
- "resultWrapper":"RebalanceSlotsInGlobalReplicationGroupResult"
1108
- },
1109
- "errors":[
1110
- {"shape":"GlobalReplicationGroupNotFoundFault"},
1111
- {"shape":"InvalidGlobalReplicationGroupStateFault"},
1112
- {"shape":"InvalidParameterValueException"}
1113
- ]
1114
- },
1115
- "RebootCacheCluster":{
1116
- "name":"RebootCacheCluster",
1117
- "http":{
1118
- "method":"POST",
1119
- "requestUri":"/"
1120
- },
1121
- "input":{"shape":"RebootCacheClusterMessage"},
1122
- "output":{
1123
- "shape":"RebootCacheClusterResult",
1124
- "resultWrapper":"RebootCacheClusterResult"
1125
- },
1126
- "errors":[
1127
- {"shape":"InvalidCacheClusterStateFault"},
1128
- {"shape":"CacheClusterNotFoundFault"}
1129
- ]
1130
- },
1131
- "RemoveTagsFromResource":{
1132
- "name":"RemoveTagsFromResource",
1133
- "http":{
1134
- "method":"POST",
1135
- "requestUri":"/"
1136
- },
1137
- "input":{"shape":"RemoveTagsFromResourceMessage"},
1138
- "output":{
1139
- "shape":"TagListMessage",
1140
- "resultWrapper":"RemoveTagsFromResourceResult"
1141
- },
1142
- "errors":[
1143
- {"shape":"CacheClusterNotFoundFault"},
1144
- {"shape":"SnapshotNotFoundFault"},
1145
- {"shape":"InvalidARNFault"},
1146
- {"shape":"TagNotFoundFault"}
1147
- ]
1148
- },
1149
- "ResetCacheParameterGroup":{
1150
- "name":"ResetCacheParameterGroup",
1151
- "http":{
1152
- "method":"POST",
1153
- "requestUri":"/"
1154
- },
1155
- "input":{"shape":"ResetCacheParameterGroupMessage"},
1156
- "output":{
1157
- "shape":"CacheParameterGroupNameMessage",
1158
- "resultWrapper":"ResetCacheParameterGroupResult"
1159
- },
1160
- "errors":[
1161
- {"shape":"InvalidCacheParameterGroupStateFault"},
1162
- {"shape":"CacheParameterGroupNotFoundFault"},
1163
- {"shape":"InvalidParameterValueException"},
1164
- {"shape":"InvalidParameterCombinationException"},
1165
- {"shape":"InvalidGlobalReplicationGroupStateFault"}
1166
- ]
1167
- },
1168
- "RevokeCacheSecurityGroupIngress":{
1169
- "name":"RevokeCacheSecurityGroupIngress",
1170
- "http":{
1171
- "method":"POST",
1172
- "requestUri":"/"
1173
- },
1174
- "input":{"shape":"RevokeCacheSecurityGroupIngressMessage"},
1175
- "output":{
1176
- "shape":"RevokeCacheSecurityGroupIngressResult",
1177
- "resultWrapper":"RevokeCacheSecurityGroupIngressResult"
1178
- },
1179
- "errors":[
1180
- {"shape":"CacheSecurityGroupNotFoundFault"},
1181
- {"shape":"AuthorizationNotFoundFault"},
1182
- {"shape":"InvalidCacheSecurityGroupStateFault"},
1183
- {"shape":"InvalidParameterValueException"},
1184
- {"shape":"InvalidParameterCombinationException"}
1185
- ]
1186
- },
1187
- "StartMigration":{
1188
- "name":"StartMigration",
1189
- "http":{
1190
- "method":"POST",
1191
- "requestUri":"/"
1192
- },
1193
- "input":{"shape":"StartMigrationMessage"},
1194
- "output":{
1195
- "shape":"StartMigrationResponse",
1196
- "resultWrapper":"StartMigrationResult"
1197
- },
1198
- "errors":[
1199
- {"shape":"ReplicationGroupNotFoundFault"},
1200
- {"shape":"InvalidReplicationGroupStateFault"},
1201
- {"shape":"ReplicationGroupAlreadyUnderMigrationFault"},
1202
- {"shape":"InvalidParameterValueException"}
1203
- ]
1204
- },
1205
- "TestFailover":{
1206
- "name":"TestFailover",
1207
- "http":{
1208
- "method":"POST",
1209
- "requestUri":"/"
1210
- },
1211
- "input":{"shape":"TestFailoverMessage"},
1212
- "output":{
1213
- "shape":"TestFailoverResult",
1214
- "resultWrapper":"TestFailoverResult"
1215
- },
1216
- "errors":[
1217
- {"shape":"APICallRateForCustomerExceededFault"},
1218
- {"shape":"InvalidCacheClusterStateFault"},
1219
- {"shape":"InvalidReplicationGroupStateFault"},
1220
- {"shape":"NodeGroupNotFoundFault"},
1221
- {"shape":"ReplicationGroupNotFoundFault"},
1222
- {"shape":"TestFailoverNotAvailableFault"},
1223
- {"shape":"InvalidKMSKeyFault"},
1224
- {"shape":"InvalidParameterValueException"},
1225
- {"shape":"InvalidParameterCombinationException"}
1226
- ]
1227
- }
1228
- },
1229
- "shapes":{
1230
- "APICallRateForCustomerExceededFault":{
1231
- "type":"structure",
1232
- "members":{
1233
- },
1234
- "error":{
1235
- "code":"APICallRateForCustomerExceeded",
1236
- "httpStatusCode":400,
1237
- "senderFault":true
1238
- },
1239
- "exception":true
1240
- },
1241
- "AZMode":{
1242
- "type":"string",
1243
- "enum":[
1244
- "single-az",
1245
- "cross-az"
1246
- ]
1247
- },
1248
- "AccessString":{
1249
- "type":"string",
1250
- "pattern":".*\\S.*"
1251
- },
1252
- "AddTagsToResourceMessage":{
1253
- "type":"structure",
1254
- "required":[
1255
- "ResourceName",
1256
- "Tags"
1257
- ],
1258
- "members":{
1259
- "ResourceName":{"shape":"String"},
1260
- "Tags":{"shape":"TagList"}
1261
- }
1262
- },
1263
- "AllowedNodeGroupId":{
1264
- "type":"string",
1265
- "max":4,
1266
- "min":1,
1267
- "pattern":"\\d+"
1268
- },
1269
- "AllowedNodeTypeModificationsMessage":{
1270
- "type":"structure",
1271
- "members":{
1272
- "ScaleUpModifications":{"shape":"NodeTypeList"},
1273
- "ScaleDownModifications":{"shape":"NodeTypeList"}
1274
- }
1275
- },
1276
- "AuthTokenUpdateStatus":{
1277
- "type":"string",
1278
- "enum":[
1279
- "SETTING",
1280
- "ROTATING"
1281
- ]
1282
- },
1283
- "AuthTokenUpdateStrategyType":{
1284
- "type":"string",
1285
- "enum":[
1286
- "SET",
1287
- "ROTATE",
1288
- "DELETE"
1289
- ]
1290
- },
1291
- "Authentication":{
1292
- "type":"structure",
1293
- "members":{
1294
- "Type":{"shape":"AuthenticationType"},
1295
- "PasswordCount":{"shape":"IntegerOptional"}
1296
- }
1297
- },
1298
- "AuthenticationType":{
1299
- "type":"string",
1300
- "enum":[
1301
- "password",
1302
- "no-password"
1303
- ]
1304
- },
1305
- "AuthorizationAlreadyExistsFault":{
1306
- "type":"structure",
1307
- "members":{
1308
- },
1309
- "error":{
1310
- "code":"AuthorizationAlreadyExists",
1311
- "httpStatusCode":400,
1312
- "senderFault":true
1313
- },
1314
- "exception":true
1315
- },
1316
- "AuthorizationNotFoundFault":{
1317
- "type":"structure",
1318
- "members":{
1319
- },
1320
- "error":{
1321
- "code":"AuthorizationNotFound",
1322
- "httpStatusCode":404,
1323
- "senderFault":true
1324
- },
1325
- "exception":true
1326
- },
1327
- "AuthorizeCacheSecurityGroupIngressMessage":{
1328
- "type":"structure",
1329
- "required":[
1330
- "CacheSecurityGroupName",
1331
- "EC2SecurityGroupName",
1332
- "EC2SecurityGroupOwnerId"
1333
- ],
1334
- "members":{
1335
- "CacheSecurityGroupName":{"shape":"String"},
1336
- "EC2SecurityGroupName":{"shape":"String"},
1337
- "EC2SecurityGroupOwnerId":{"shape":"String"}
1338
- }
1339
- },
1340
- "AuthorizeCacheSecurityGroupIngressResult":{
1341
- "type":"structure",
1342
- "members":{
1343
- "CacheSecurityGroup":{"shape":"CacheSecurityGroup"}
1344
- }
1345
- },
1346
- "AutomaticFailoverStatus":{
1347
- "type":"string",
1348
- "enum":[
1349
- "enabled",
1350
- "disabled",
1351
- "enabling",
1352
- "disabling"
1353
- ]
1354
- },
1355
- "AvailabilityZone":{
1356
- "type":"structure",
1357
- "members":{
1358
- "Name":{"shape":"String"}
1359
- },
1360
- "wrapper":true
1361
- },
1362
- "AvailabilityZonesList":{
1363
- "type":"list",
1364
- "member":{
1365
- "shape":"String",
1366
- "locationName":"AvailabilityZone"
1367
- }
1368
- },
1369
- "AwsQueryErrorMessage":{"type":"string"},
1370
- "BatchApplyUpdateActionMessage":{
1371
- "type":"structure",
1372
- "required":["ServiceUpdateName"],
1373
- "members":{
1374
- "ReplicationGroupIds":{"shape":"ReplicationGroupIdList"},
1375
- "CacheClusterIds":{"shape":"CacheClusterIdList"},
1376
- "ServiceUpdateName":{"shape":"String"}
1377
- }
1378
- },
1379
- "BatchStopUpdateActionMessage":{
1380
- "type":"structure",
1381
- "required":["ServiceUpdateName"],
1382
- "members":{
1383
- "ReplicationGroupIds":{"shape":"ReplicationGroupIdList"},
1384
- "CacheClusterIds":{"shape":"CacheClusterIdList"},
1385
- "ServiceUpdateName":{"shape":"String"}
1386
- }
1387
- },
1388
- "Boolean":{"type":"boolean"},
1389
- "BooleanOptional":{"type":"boolean"},
1390
- "CacheCluster":{
1391
- "type":"structure",
1392
- "members":{
1393
- "CacheClusterId":{"shape":"String"},
1394
- "ConfigurationEndpoint":{"shape":"Endpoint"},
1395
- "ClientDownloadLandingPage":{"shape":"String"},
1396
- "CacheNodeType":{"shape":"String"},
1397
- "Engine":{"shape":"String"},
1398
- "EngineVersion":{"shape":"String"},
1399
- "CacheClusterStatus":{"shape":"String"},
1400
- "NumCacheNodes":{"shape":"IntegerOptional"},
1401
- "PreferredAvailabilityZone":{"shape":"String"},
1402
- "PreferredOutpostArn":{"shape":"String"},
1403
- "CacheClusterCreateTime":{"shape":"TStamp"},
1404
- "PreferredMaintenanceWindow":{"shape":"String"},
1405
- "PendingModifiedValues":{"shape":"PendingModifiedValues"},
1406
- "NotificationConfiguration":{"shape":"NotificationConfiguration"},
1407
- "CacheSecurityGroups":{"shape":"CacheSecurityGroupMembershipList"},
1408
- "CacheParameterGroup":{"shape":"CacheParameterGroupStatus"},
1409
- "CacheSubnetGroupName":{"shape":"String"},
1410
- "CacheNodes":{"shape":"CacheNodeList"},
1411
- "AutoMinorVersionUpgrade":{"shape":"Boolean"},
1412
- "SecurityGroups":{"shape":"SecurityGroupMembershipList"},
1413
- "ReplicationGroupId":{"shape":"String"},
1414
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
1415
- "SnapshotWindow":{"shape":"String"},
1416
- "AuthTokenEnabled":{"shape":"BooleanOptional"},
1417
- "AuthTokenLastModifiedDate":{"shape":"TStamp"},
1418
- "TransitEncryptionEnabled":{"shape":"BooleanOptional"},
1419
- "AtRestEncryptionEnabled":{"shape":"BooleanOptional"},
1420
- "ARN":{"shape":"String"}
1421
- },
1422
- "wrapper":true
1423
- },
1424
- "CacheClusterAlreadyExistsFault":{
1425
- "type":"structure",
1426
- "members":{
1427
- },
1428
- "error":{
1429
- "code":"CacheClusterAlreadyExists",
1430
- "httpStatusCode":400,
1431
- "senderFault":true
1432
- },
1433
- "exception":true
1434
- },
1435
- "CacheClusterIdList":{
1436
- "type":"list",
1437
- "member":{"shape":"String"},
1438
- "max":20
1439
- },
1440
- "CacheClusterList":{
1441
- "type":"list",
1442
- "member":{
1443
- "shape":"CacheCluster",
1444
- "locationName":"CacheCluster"
1445
- }
1446
- },
1447
- "CacheClusterMessage":{
1448
- "type":"structure",
1449
- "members":{
1450
- "Marker":{"shape":"String"},
1451
- "CacheClusters":{"shape":"CacheClusterList"}
1452
- }
1453
- },
1454
- "CacheClusterNotFoundFault":{
1455
- "type":"structure",
1456
- "members":{
1457
- },
1458
- "error":{
1459
- "code":"CacheClusterNotFound",
1460
- "httpStatusCode":404,
1461
- "senderFault":true
1462
- },
1463
- "exception":true
1464
- },
1465
- "CacheEngineVersion":{
1466
- "type":"structure",
1467
- "members":{
1468
- "Engine":{"shape":"String"},
1469
- "EngineVersion":{"shape":"String"},
1470
- "CacheParameterGroupFamily":{"shape":"String"},
1471
- "CacheEngineDescription":{"shape":"String"},
1472
- "CacheEngineVersionDescription":{"shape":"String"}
1473
- }
1474
- },
1475
- "CacheEngineVersionList":{
1476
- "type":"list",
1477
- "member":{
1478
- "shape":"CacheEngineVersion",
1479
- "locationName":"CacheEngineVersion"
1480
- }
1481
- },
1482
- "CacheEngineVersionMessage":{
1483
- "type":"structure",
1484
- "members":{
1485
- "Marker":{"shape":"String"},
1486
- "CacheEngineVersions":{"shape":"CacheEngineVersionList"}
1487
- }
1488
- },
1489
- "CacheNode":{
1490
- "type":"structure",
1491
- "members":{
1492
- "CacheNodeId":{"shape":"String"},
1493
- "CacheNodeStatus":{"shape":"String"},
1494
- "CacheNodeCreateTime":{"shape":"TStamp"},
1495
- "Endpoint":{"shape":"Endpoint"},
1496
- "ParameterGroupStatus":{"shape":"String"},
1497
- "SourceCacheNodeId":{"shape":"String"},
1498
- "CustomerAvailabilityZone":{"shape":"String"},
1499
- "CustomerOutpostArn":{"shape":"String"}
1500
- }
1501
- },
1502
- "CacheNodeIdsList":{
1503
- "type":"list",
1504
- "member":{
1505
- "shape":"String",
1506
- "locationName":"CacheNodeId"
1507
- }
1508
- },
1509
- "CacheNodeList":{
1510
- "type":"list",
1511
- "member":{
1512
- "shape":"CacheNode",
1513
- "locationName":"CacheNode"
1514
- }
1515
- },
1516
- "CacheNodeTypeSpecificParameter":{
1517
- "type":"structure",
1518
- "members":{
1519
- "ParameterName":{"shape":"String"},
1520
- "Description":{"shape":"String"},
1521
- "Source":{"shape":"String"},
1522
- "DataType":{"shape":"String"},
1523
- "AllowedValues":{"shape":"String"},
1524
- "IsModifiable":{"shape":"Boolean"},
1525
- "MinimumEngineVersion":{"shape":"String"},
1526
- "CacheNodeTypeSpecificValues":{"shape":"CacheNodeTypeSpecificValueList"},
1527
- "ChangeType":{"shape":"ChangeType"}
1528
- }
1529
- },
1530
- "CacheNodeTypeSpecificParametersList":{
1531
- "type":"list",
1532
- "member":{
1533
- "shape":"CacheNodeTypeSpecificParameter",
1534
- "locationName":"CacheNodeTypeSpecificParameter"
1535
- }
1536
- },
1537
- "CacheNodeTypeSpecificValue":{
1538
- "type":"structure",
1539
- "members":{
1540
- "CacheNodeType":{"shape":"String"},
1541
- "Value":{"shape":"String"}
1542
- }
1543
- },
1544
- "CacheNodeTypeSpecificValueList":{
1545
- "type":"list",
1546
- "member":{
1547
- "shape":"CacheNodeTypeSpecificValue",
1548
- "locationName":"CacheNodeTypeSpecificValue"
1549
- }
1550
- },
1551
- "CacheNodeUpdateStatus":{
1552
- "type":"structure",
1553
- "members":{
1554
- "CacheNodeId":{"shape":"String"},
1555
- "NodeUpdateStatus":{"shape":"NodeUpdateStatus"},
1556
- "NodeDeletionDate":{"shape":"TStamp"},
1557
- "NodeUpdateStartDate":{"shape":"TStamp"},
1558
- "NodeUpdateEndDate":{"shape":"TStamp"},
1559
- "NodeUpdateInitiatedBy":{"shape":"NodeUpdateInitiatedBy"},
1560
- "NodeUpdateInitiatedDate":{"shape":"TStamp"},
1561
- "NodeUpdateStatusModifiedDate":{"shape":"TStamp"}
1562
- }
1563
- },
1564
- "CacheNodeUpdateStatusList":{
1565
- "type":"list",
1566
- "member":{
1567
- "shape":"CacheNodeUpdateStatus",
1568
- "locationName":"CacheNodeUpdateStatus"
1569
- }
1570
- },
1571
- "CacheParameterGroup":{
1572
- "type":"structure",
1573
- "members":{
1574
- "CacheParameterGroupName":{"shape":"String"},
1575
- "CacheParameterGroupFamily":{"shape":"String"},
1576
- "Description":{"shape":"String"},
1577
- "IsGlobal":{"shape":"Boolean"},
1578
- "ARN":{"shape":"String"}
1579
- },
1580
- "wrapper":true
1581
- },
1582
- "CacheParameterGroupAlreadyExistsFault":{
1583
- "type":"structure",
1584
- "members":{
1585
- },
1586
- "error":{
1587
- "code":"CacheParameterGroupAlreadyExists",
1588
- "httpStatusCode":400,
1589
- "senderFault":true
1590
- },
1591
- "exception":true
1592
- },
1593
- "CacheParameterGroupDetails":{
1594
- "type":"structure",
1595
- "members":{
1596
- "Marker":{"shape":"String"},
1597
- "Parameters":{"shape":"ParametersList"},
1598
- "CacheNodeTypeSpecificParameters":{"shape":"CacheNodeTypeSpecificParametersList"}
1599
- }
1600
- },
1601
- "CacheParameterGroupList":{
1602
- "type":"list",
1603
- "member":{
1604
- "shape":"CacheParameterGroup",
1605
- "locationName":"CacheParameterGroup"
1606
- }
1607
- },
1608
- "CacheParameterGroupNameMessage":{
1609
- "type":"structure",
1610
- "members":{
1611
- "CacheParameterGroupName":{"shape":"String"}
1612
- }
1613
- },
1614
- "CacheParameterGroupNotFoundFault":{
1615
- "type":"structure",
1616
- "members":{
1617
- },
1618
- "error":{
1619
- "code":"CacheParameterGroupNotFound",
1620
- "httpStatusCode":404,
1621
- "senderFault":true
1622
- },
1623
- "exception":true
1624
- },
1625
- "CacheParameterGroupQuotaExceededFault":{
1626
- "type":"structure",
1627
- "members":{
1628
- },
1629
- "error":{
1630
- "code":"CacheParameterGroupQuotaExceeded",
1631
- "httpStatusCode":400,
1632
- "senderFault":true
1633
- },
1634
- "exception":true
1635
- },
1636
- "CacheParameterGroupStatus":{
1637
- "type":"structure",
1638
- "members":{
1639
- "CacheParameterGroupName":{"shape":"String"},
1640
- "ParameterApplyStatus":{"shape":"String"},
1641
- "CacheNodeIdsToReboot":{"shape":"CacheNodeIdsList"}
1642
- }
1643
- },
1644
- "CacheParameterGroupsMessage":{
1645
- "type":"structure",
1646
- "members":{
1647
- "Marker":{"shape":"String"},
1648
- "CacheParameterGroups":{"shape":"CacheParameterGroupList"}
1649
- }
1650
- },
1651
- "CacheSecurityGroup":{
1652
- "type":"structure",
1653
- "members":{
1654
- "OwnerId":{"shape":"String"},
1655
- "CacheSecurityGroupName":{"shape":"String"},
1656
- "Description":{"shape":"String"},
1657
- "EC2SecurityGroups":{"shape":"EC2SecurityGroupList"},
1658
- "ARN":{"shape":"String"}
1659
- },
1660
- "wrapper":true
1661
- },
1662
- "CacheSecurityGroupAlreadyExistsFault":{
1663
- "type":"structure",
1664
- "members":{
1665
- },
1666
- "error":{
1667
- "code":"CacheSecurityGroupAlreadyExists",
1668
- "httpStatusCode":400,
1669
- "senderFault":true
1670
- },
1671
- "exception":true
1672
- },
1673
- "CacheSecurityGroupMembership":{
1674
- "type":"structure",
1675
- "members":{
1676
- "CacheSecurityGroupName":{"shape":"String"},
1677
- "Status":{"shape":"String"}
1678
- }
1679
- },
1680
- "CacheSecurityGroupMembershipList":{
1681
- "type":"list",
1682
- "member":{
1683
- "shape":"CacheSecurityGroupMembership",
1684
- "locationName":"CacheSecurityGroup"
1685
- }
1686
- },
1687
- "CacheSecurityGroupMessage":{
1688
- "type":"structure",
1689
- "members":{
1690
- "Marker":{"shape":"String"},
1691
- "CacheSecurityGroups":{"shape":"CacheSecurityGroups"}
1692
- }
1693
- },
1694
- "CacheSecurityGroupNameList":{
1695
- "type":"list",
1696
- "member":{
1697
- "shape":"String",
1698
- "locationName":"CacheSecurityGroupName"
1699
- }
1700
- },
1701
- "CacheSecurityGroupNotFoundFault":{
1702
- "type":"structure",
1703
- "members":{
1704
- },
1705
- "error":{
1706
- "code":"CacheSecurityGroupNotFound",
1707
- "httpStatusCode":404,
1708
- "senderFault":true
1709
- },
1710
- "exception":true
1711
- },
1712
- "CacheSecurityGroupQuotaExceededFault":{
1713
- "type":"structure",
1714
- "members":{
1715
- },
1716
- "error":{
1717
- "code":"QuotaExceeded.CacheSecurityGroup",
1718
- "httpStatusCode":400,
1719
- "senderFault":true
1720
- },
1721
- "exception":true
1722
- },
1723
- "CacheSecurityGroups":{
1724
- "type":"list",
1725
- "member":{
1726
- "shape":"CacheSecurityGroup",
1727
- "locationName":"CacheSecurityGroup"
1728
- }
1729
- },
1730
- "CacheSubnetGroup":{
1731
- "type":"structure",
1732
- "members":{
1733
- "CacheSubnetGroupName":{"shape":"String"},
1734
- "CacheSubnetGroupDescription":{"shape":"String"},
1735
- "VpcId":{"shape":"String"},
1736
- "Subnets":{"shape":"SubnetList"},
1737
- "ARN":{"shape":"String"}
1738
- },
1739
- "wrapper":true
1740
- },
1741
- "CacheSubnetGroupAlreadyExistsFault":{
1742
- "type":"structure",
1743
- "members":{
1744
- },
1745
- "error":{
1746
- "code":"CacheSubnetGroupAlreadyExists",
1747
- "httpStatusCode":400,
1748
- "senderFault":true
1749
- },
1750
- "exception":true
1751
- },
1752
- "CacheSubnetGroupInUse":{
1753
- "type":"structure",
1754
- "members":{
1755
- },
1756
- "error":{
1757
- "code":"CacheSubnetGroupInUse",
1758
- "httpStatusCode":400,
1759
- "senderFault":true
1760
- },
1761
- "exception":true
1762
- },
1763
- "CacheSubnetGroupMessage":{
1764
- "type":"structure",
1765
- "members":{
1766
- "Marker":{"shape":"String"},
1767
- "CacheSubnetGroups":{"shape":"CacheSubnetGroups"}
1768
- }
1769
- },
1770
- "CacheSubnetGroupNotFoundFault":{
1771
- "type":"structure",
1772
- "members":{
1773
- },
1774
- "error":{
1775
- "code":"CacheSubnetGroupNotFoundFault",
1776
- "httpStatusCode":400,
1777
- "senderFault":true
1778
- },
1779
- "exception":true
1780
- },
1781
- "CacheSubnetGroupQuotaExceededFault":{
1782
- "type":"structure",
1783
- "members":{
1784
- },
1785
- "error":{
1786
- "code":"CacheSubnetGroupQuotaExceeded",
1787
- "httpStatusCode":400,
1788
- "senderFault":true
1789
- },
1790
- "exception":true
1791
- },
1792
- "CacheSubnetGroups":{
1793
- "type":"list",
1794
- "member":{
1795
- "shape":"CacheSubnetGroup",
1796
- "locationName":"CacheSubnetGroup"
1797
- }
1798
- },
1799
- "CacheSubnetQuotaExceededFault":{
1800
- "type":"structure",
1801
- "members":{
1802
- },
1803
- "error":{
1804
- "code":"CacheSubnetQuotaExceededFault",
1805
- "httpStatusCode":400,
1806
- "senderFault":true
1807
- },
1808
- "exception":true
1809
- },
1810
- "ChangeType":{
1811
- "type":"string",
1812
- "enum":[
1813
- "immediate",
1814
- "requires-reboot"
1815
- ]
1816
- },
1817
- "ClusterIdList":{
1818
- "type":"list",
1819
- "member":{
1820
- "shape":"String",
1821
- "locationName":"ClusterId"
1822
- }
1823
- },
1824
- "ClusterQuotaForCustomerExceededFault":{
1825
- "type":"structure",
1826
- "members":{
1827
- },
1828
- "error":{
1829
- "code":"ClusterQuotaForCustomerExceeded",
1830
- "httpStatusCode":400,
1831
- "senderFault":true
1832
- },
1833
- "exception":true
1834
- },
1835
- "CompleteMigrationMessage":{
1836
- "type":"structure",
1837
- "required":["ReplicationGroupId"],
1838
- "members":{
1839
- "ReplicationGroupId":{"shape":"String"},
1840
- "Force":{"shape":"Boolean"}
1841
- }
1842
- },
1843
- "CompleteMigrationResponse":{
1844
- "type":"structure",
1845
- "members":{
1846
- "ReplicationGroup":{"shape":"ReplicationGroup"}
1847
- }
1848
- },
1849
- "ConfigureShard":{
1850
- "type":"structure",
1851
- "required":[
1852
- "NodeGroupId",
1853
- "NewReplicaCount"
1854
- ],
1855
- "members":{
1856
- "NodeGroupId":{"shape":"AllowedNodeGroupId"},
1857
- "NewReplicaCount":{"shape":"Integer"},
1858
- "PreferredAvailabilityZones":{"shape":"PreferredAvailabilityZoneList"},
1859
- "PreferredOutpostArns":{"shape":"PreferredOutpostArnList"}
1860
- }
1861
- },
1862
- "CopySnapshotMessage":{
1863
- "type":"structure",
1864
- "required":[
1865
- "SourceSnapshotName",
1866
- "TargetSnapshotName"
1867
- ],
1868
- "members":{
1869
- "SourceSnapshotName":{"shape":"String"},
1870
- "TargetSnapshotName":{"shape":"String"},
1871
- "TargetBucket":{"shape":"String"},
1872
- "KmsKeyId":{"shape":"String"}
1873
- }
1874
- },
1875
- "CopySnapshotResult":{
1876
- "type":"structure",
1877
- "members":{
1878
- "Snapshot":{"shape":"Snapshot"}
1879
- }
1880
- },
1881
- "CreateCacheClusterMessage":{
1882
- "type":"structure",
1883
- "required":["CacheClusterId"],
1884
- "members":{
1885
- "CacheClusterId":{"shape":"String"},
1886
- "ReplicationGroupId":{"shape":"String"},
1887
- "AZMode":{"shape":"AZMode"},
1888
- "PreferredAvailabilityZone":{"shape":"String"},
1889
- "PreferredAvailabilityZones":{"shape":"PreferredAvailabilityZoneList"},
1890
- "NumCacheNodes":{"shape":"IntegerOptional"},
1891
- "CacheNodeType":{"shape":"String"},
1892
- "Engine":{"shape":"String"},
1893
- "EngineVersion":{"shape":"String"},
1894
- "CacheParameterGroupName":{"shape":"String"},
1895
- "CacheSubnetGroupName":{"shape":"String"},
1896
- "CacheSecurityGroupNames":{"shape":"CacheSecurityGroupNameList"},
1897
- "SecurityGroupIds":{"shape":"SecurityGroupIdsList"},
1898
- "Tags":{"shape":"TagList"},
1899
- "SnapshotArns":{"shape":"SnapshotArnsList"},
1900
- "SnapshotName":{"shape":"String"},
1901
- "PreferredMaintenanceWindow":{"shape":"String"},
1902
- "Port":{"shape":"IntegerOptional"},
1903
- "NotificationTopicArn":{"shape":"String"},
1904
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
1905
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
1906
- "SnapshotWindow":{"shape":"String"},
1907
- "AuthToken":{"shape":"String"},
1908
- "OutpostMode":{"shape":"OutpostMode"},
1909
- "PreferredOutpostArn":{"shape":"String"},
1910
- "PreferredOutpostArns":{"shape":"PreferredOutpostArnList"}
1911
- }
1912
- },
1913
- "CreateCacheClusterResult":{
1914
- "type":"structure",
1915
- "members":{
1916
- "CacheCluster":{"shape":"CacheCluster"}
1917
- }
1918
- },
1919
- "CreateCacheParameterGroupMessage":{
1920
- "type":"structure",
1921
- "required":[
1922
- "CacheParameterGroupName",
1923
- "CacheParameterGroupFamily",
1924
- "Description"
1925
- ],
1926
- "members":{
1927
- "CacheParameterGroupName":{"shape":"String"},
1928
- "CacheParameterGroupFamily":{"shape":"String"},
1929
- "Description":{"shape":"String"}
1930
- }
1931
- },
1932
- "CreateCacheParameterGroupResult":{
1933
- "type":"structure",
1934
- "members":{
1935
- "CacheParameterGroup":{"shape":"CacheParameterGroup"}
1936
- }
1937
- },
1938
- "CreateCacheSecurityGroupMessage":{
1939
- "type":"structure",
1940
- "required":[
1941
- "CacheSecurityGroupName",
1942
- "Description"
1943
- ],
1944
- "members":{
1945
- "CacheSecurityGroupName":{"shape":"String"},
1946
- "Description":{"shape":"String"}
1947
- }
1948
- },
1949
- "CreateCacheSecurityGroupResult":{
1950
- "type":"structure",
1951
- "members":{
1952
- "CacheSecurityGroup":{"shape":"CacheSecurityGroup"}
1953
- }
1954
- },
1955
- "CreateCacheSubnetGroupMessage":{
1956
- "type":"structure",
1957
- "required":[
1958
- "CacheSubnetGroupName",
1959
- "CacheSubnetGroupDescription",
1960
- "SubnetIds"
1961
- ],
1962
- "members":{
1963
- "CacheSubnetGroupName":{"shape":"String"},
1964
- "CacheSubnetGroupDescription":{"shape":"String"},
1965
- "SubnetIds":{"shape":"SubnetIdentifierList"}
1966
- }
1967
- },
1968
- "CreateCacheSubnetGroupResult":{
1969
- "type":"structure",
1970
- "members":{
1971
- "CacheSubnetGroup":{"shape":"CacheSubnetGroup"}
1972
- }
1973
- },
1974
- "CreateGlobalReplicationGroupMessage":{
1975
- "type":"structure",
1976
- "required":[
1977
- "GlobalReplicationGroupIdSuffix",
1978
- "PrimaryReplicationGroupId"
1979
- ],
1980
- "members":{
1981
- "GlobalReplicationGroupIdSuffix":{"shape":"String"},
1982
- "GlobalReplicationGroupDescription":{"shape":"String"},
1983
- "PrimaryReplicationGroupId":{"shape":"String"}
1984
- }
1985
- },
1986
- "CreateGlobalReplicationGroupResult":{
1987
- "type":"structure",
1988
- "members":{
1989
- "GlobalReplicationGroup":{"shape":"GlobalReplicationGroup"}
1990
- }
1991
- },
1992
- "CreateReplicationGroupMessage":{
1993
- "type":"structure",
1994
- "required":[
1995
- "ReplicationGroupId",
1996
- "ReplicationGroupDescription"
1997
- ],
1998
- "members":{
1999
- "ReplicationGroupId":{"shape":"String"},
2000
- "ReplicationGroupDescription":{"shape":"String"},
2001
- "GlobalReplicationGroupId":{"shape":"String"},
2002
- "PrimaryClusterId":{"shape":"String"},
2003
- "AutomaticFailoverEnabled":{"shape":"BooleanOptional"},
2004
- "MultiAZEnabled":{"shape":"BooleanOptional"},
2005
- "NumCacheClusters":{"shape":"IntegerOptional"},
2006
- "PreferredCacheClusterAZs":{"shape":"AvailabilityZonesList"},
2007
- "NumNodeGroups":{"shape":"IntegerOptional"},
2008
- "ReplicasPerNodeGroup":{"shape":"IntegerOptional"},
2009
- "NodeGroupConfiguration":{"shape":"NodeGroupConfigurationList"},
2010
- "CacheNodeType":{"shape":"String"},
2011
- "Engine":{"shape":"String"},
2012
- "EngineVersion":{"shape":"String"},
2013
- "CacheParameterGroupName":{"shape":"String"},
2014
- "CacheSubnetGroupName":{"shape":"String"},
2015
- "CacheSecurityGroupNames":{"shape":"CacheSecurityGroupNameList"},
2016
- "SecurityGroupIds":{"shape":"SecurityGroupIdsList"},
2017
- "Tags":{"shape":"TagList"},
2018
- "SnapshotArns":{"shape":"SnapshotArnsList"},
2019
- "SnapshotName":{"shape":"String"},
2020
- "PreferredMaintenanceWindow":{"shape":"String"},
2021
- "Port":{"shape":"IntegerOptional"},
2022
- "NotificationTopicArn":{"shape":"String"},
2023
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
2024
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
2025
- "SnapshotWindow":{"shape":"String"},
2026
- "AuthToken":{"shape":"String"},
2027
- "TransitEncryptionEnabled":{"shape":"BooleanOptional"},
2028
- "AtRestEncryptionEnabled":{"shape":"BooleanOptional"},
2029
- "KmsKeyId":{"shape":"String"},
2030
- "UserGroupIds":{"shape":"UserGroupIdListInput"}
2031
- }
2032
- },
2033
- "CreateReplicationGroupResult":{
2034
- "type":"structure",
2035
- "members":{
2036
- "ReplicationGroup":{"shape":"ReplicationGroup"}
2037
- }
2038
- },
2039
- "CreateSnapshotMessage":{
2040
- "type":"structure",
2041
- "required":["SnapshotName"],
2042
- "members":{
2043
- "ReplicationGroupId":{"shape":"String"},
2044
- "CacheClusterId":{"shape":"String"},
2045
- "SnapshotName":{"shape":"String"},
2046
- "KmsKeyId":{"shape":"String"}
2047
- }
2048
- },
2049
- "CreateSnapshotResult":{
2050
- "type":"structure",
2051
- "members":{
2052
- "Snapshot":{"shape":"Snapshot"}
2053
- }
2054
- },
2055
- "CreateUserGroupMessage":{
2056
- "type":"structure",
2057
- "required":[
2058
- "UserGroupId",
2059
- "Engine"
2060
- ],
2061
- "members":{
2062
- "UserGroupId":{"shape":"String"},
2063
- "Engine":{"shape":"EngineType"},
2064
- "UserIds":{"shape":"UserIdListInput"}
2065
- }
2066
- },
2067
- "CreateUserMessage":{
2068
- "type":"structure",
2069
- "required":[
2070
- "UserId",
2071
- "UserName",
2072
- "Engine",
2073
- "AccessString"
2074
- ],
2075
- "members":{
2076
- "UserId":{"shape":"UserId"},
2077
- "UserName":{"shape":"UserName"},
2078
- "Engine":{"shape":"EngineType"},
2079
- "Passwords":{"shape":"PasswordListInput"},
2080
- "AccessString":{"shape":"AccessString"},
2081
- "NoPasswordRequired":{"shape":"BooleanOptional"}
2082
- }
2083
- },
2084
- "CustomerNodeEndpoint":{
2085
- "type":"structure",
2086
- "members":{
2087
- "Address":{"shape":"String"},
2088
- "Port":{"shape":"IntegerOptional"}
2089
- }
2090
- },
2091
- "CustomerNodeEndpointList":{
2092
- "type":"list",
2093
- "member":{"shape":"CustomerNodeEndpoint"}
2094
- },
2095
- "DecreaseNodeGroupsInGlobalReplicationGroupMessage":{
2096
- "type":"structure",
2097
- "required":[
2098
- "GlobalReplicationGroupId",
2099
- "NodeGroupCount",
2100
- "ApplyImmediately"
2101
- ],
2102
- "members":{
2103
- "GlobalReplicationGroupId":{"shape":"String"},
2104
- "NodeGroupCount":{"shape":"Integer"},
2105
- "GlobalNodeGroupsToRemove":{"shape":"GlobalNodeGroupIdList"},
2106
- "GlobalNodeGroupsToRetain":{"shape":"GlobalNodeGroupIdList"},
2107
- "ApplyImmediately":{"shape":"Boolean"}
2108
- }
2109
- },
2110
- "DecreaseNodeGroupsInGlobalReplicationGroupResult":{
2111
- "type":"structure",
2112
- "members":{
2113
- "GlobalReplicationGroup":{"shape":"GlobalReplicationGroup"}
2114
- }
2115
- },
2116
- "DecreaseReplicaCountMessage":{
2117
- "type":"structure",
2118
- "required":[
2119
- "ReplicationGroupId",
2120
- "ApplyImmediately"
2121
- ],
2122
- "members":{
2123
- "ReplicationGroupId":{"shape":"String"},
2124
- "NewReplicaCount":{"shape":"IntegerOptional"},
2125
- "ReplicaConfiguration":{"shape":"ReplicaConfigurationList"},
2126
- "ReplicasToRemove":{"shape":"RemoveReplicasList"},
2127
- "ApplyImmediately":{"shape":"Boolean"}
2128
- }
2129
- },
2130
- "DecreaseReplicaCountResult":{
2131
- "type":"structure",
2132
- "members":{
2133
- "ReplicationGroup":{"shape":"ReplicationGroup"}
2134
- }
2135
- },
2136
- "DefaultUserAssociatedToUserGroupFault":{
2137
- "type":"structure",
2138
- "members":{
2139
- },
2140
- "error":{
2141
- "code":"DefaultUserAssociatedToUserGroup",
2142
- "httpStatusCode":400,
2143
- "senderFault":true
2144
- },
2145
- "exception":true
2146
- },
2147
- "DefaultUserRequired":{
2148
- "type":"structure",
2149
- "members":{
2150
- },
2151
- "error":{
2152
- "code":"DefaultUserRequired",
2153
- "httpStatusCode":400,
2154
- "senderFault":true
2155
- },
2156
- "exception":true
2157
- },
2158
- "DeleteCacheClusterMessage":{
2159
- "type":"structure",
2160
- "required":["CacheClusterId"],
2161
- "members":{
2162
- "CacheClusterId":{"shape":"String"},
2163
- "FinalSnapshotIdentifier":{"shape":"String"}
2164
- }
2165
- },
2166
- "DeleteCacheClusterResult":{
2167
- "type":"structure",
2168
- "members":{
2169
- "CacheCluster":{"shape":"CacheCluster"}
2170
- }
2171
- },
2172
- "DeleteCacheParameterGroupMessage":{
2173
- "type":"structure",
2174
- "required":["CacheParameterGroupName"],
2175
- "members":{
2176
- "CacheParameterGroupName":{"shape":"String"}
2177
- }
2178
- },
2179
- "DeleteCacheSecurityGroupMessage":{
2180
- "type":"structure",
2181
- "required":["CacheSecurityGroupName"],
2182
- "members":{
2183
- "CacheSecurityGroupName":{"shape":"String"}
2184
- }
2185
- },
2186
- "DeleteCacheSubnetGroupMessage":{
2187
- "type":"structure",
2188
- "required":["CacheSubnetGroupName"],
2189
- "members":{
2190
- "CacheSubnetGroupName":{"shape":"String"}
2191
- }
2192
- },
2193
- "DeleteGlobalReplicationGroupMessage":{
2194
- "type":"structure",
2195
- "required":[
2196
- "GlobalReplicationGroupId",
2197
- "RetainPrimaryReplicationGroup"
2198
- ],
2199
- "members":{
2200
- "GlobalReplicationGroupId":{"shape":"String"},
2201
- "RetainPrimaryReplicationGroup":{"shape":"Boolean"}
2202
- }
2203
- },
2204
- "DeleteGlobalReplicationGroupResult":{
2205
- "type":"structure",
2206
- "members":{
2207
- "GlobalReplicationGroup":{"shape":"GlobalReplicationGroup"}
2208
- }
2209
- },
2210
- "DeleteReplicationGroupMessage":{
2211
- "type":"structure",
2212
- "required":["ReplicationGroupId"],
2213
- "members":{
2214
- "ReplicationGroupId":{"shape":"String"},
2215
- "RetainPrimaryCluster":{"shape":"BooleanOptional"},
2216
- "FinalSnapshotIdentifier":{"shape":"String"}
2217
- }
2218
- },
2219
- "DeleteReplicationGroupResult":{
2220
- "type":"structure",
2221
- "members":{
2222
- "ReplicationGroup":{"shape":"ReplicationGroup"}
2223
- }
2224
- },
2225
- "DeleteSnapshotMessage":{
2226
- "type":"structure",
2227
- "required":["SnapshotName"],
2228
- "members":{
2229
- "SnapshotName":{"shape":"String"}
2230
- }
2231
- },
2232
- "DeleteSnapshotResult":{
2233
- "type":"structure",
2234
- "members":{
2235
- "Snapshot":{"shape":"Snapshot"}
2236
- }
2237
- },
2238
- "DeleteUserGroupMessage":{
2239
- "type":"structure",
2240
- "required":["UserGroupId"],
2241
- "members":{
2242
- "UserGroupId":{"shape":"String"}
2243
- }
2244
- },
2245
- "DeleteUserMessage":{
2246
- "type":"structure",
2247
- "required":["UserId"],
2248
- "members":{
2249
- "UserId":{"shape":"UserId"}
2250
- }
2251
- },
2252
- "DescribeCacheClustersMessage":{
2253
- "type":"structure",
2254
- "members":{
2255
- "CacheClusterId":{"shape":"String"},
2256
- "MaxRecords":{"shape":"IntegerOptional"},
2257
- "Marker":{"shape":"String"},
2258
- "ShowCacheNodeInfo":{"shape":"BooleanOptional"},
2259
- "ShowCacheClustersNotInReplicationGroups":{"shape":"BooleanOptional"}
2260
- }
2261
- },
2262
- "DescribeCacheEngineVersionsMessage":{
2263
- "type":"structure",
2264
- "members":{
2265
- "Engine":{"shape":"String"},
2266
- "EngineVersion":{"shape":"String"},
2267
- "CacheParameterGroupFamily":{"shape":"String"},
2268
- "MaxRecords":{"shape":"IntegerOptional"},
2269
- "Marker":{"shape":"String"},
2270
- "DefaultOnly":{"shape":"Boolean"}
2271
- }
2272
- },
2273
- "DescribeCacheParameterGroupsMessage":{
2274
- "type":"structure",
2275
- "members":{
2276
- "CacheParameterGroupName":{"shape":"String"},
2277
- "MaxRecords":{"shape":"IntegerOptional"},
2278
- "Marker":{"shape":"String"}
2279
- }
2280
- },
2281
- "DescribeCacheParametersMessage":{
2282
- "type":"structure",
2283
- "required":["CacheParameterGroupName"],
2284
- "members":{
2285
- "CacheParameterGroupName":{"shape":"String"},
2286
- "Source":{"shape":"String"},
2287
- "MaxRecords":{"shape":"IntegerOptional"},
2288
- "Marker":{"shape":"String"}
2289
- }
2290
- },
2291
- "DescribeCacheSecurityGroupsMessage":{
2292
- "type":"structure",
2293
- "members":{
2294
- "CacheSecurityGroupName":{"shape":"String"},
2295
- "MaxRecords":{"shape":"IntegerOptional"},
2296
- "Marker":{"shape":"String"}
2297
- }
2298
- },
2299
- "DescribeCacheSubnetGroupsMessage":{
2300
- "type":"structure",
2301
- "members":{
2302
- "CacheSubnetGroupName":{"shape":"String"},
2303
- "MaxRecords":{"shape":"IntegerOptional"},
2304
- "Marker":{"shape":"String"}
2305
- }
2306
- },
2307
- "DescribeEngineDefaultParametersMessage":{
2308
- "type":"structure",
2309
- "required":["CacheParameterGroupFamily"],
2310
- "members":{
2311
- "CacheParameterGroupFamily":{"shape":"String"},
2312
- "MaxRecords":{"shape":"IntegerOptional"},
2313
- "Marker":{"shape":"String"}
2314
- }
2315
- },
2316
- "DescribeEngineDefaultParametersResult":{
2317
- "type":"structure",
2318
- "members":{
2319
- "EngineDefaults":{"shape":"EngineDefaults"}
2320
- }
2321
- },
2322
- "DescribeEventsMessage":{
2323
- "type":"structure",
2324
- "members":{
2325
- "SourceIdentifier":{"shape":"String"},
2326
- "SourceType":{"shape":"SourceType"},
2327
- "StartTime":{"shape":"TStamp"},
2328
- "EndTime":{"shape":"TStamp"},
2329
- "Duration":{"shape":"IntegerOptional"},
2330
- "MaxRecords":{"shape":"IntegerOptional"},
2331
- "Marker":{"shape":"String"}
2332
- }
2333
- },
2334
- "DescribeGlobalReplicationGroupsMessage":{
2335
- "type":"structure",
2336
- "members":{
2337
- "GlobalReplicationGroupId":{"shape":"String"},
2338
- "MaxRecords":{"shape":"IntegerOptional"},
2339
- "Marker":{"shape":"String"},
2340
- "ShowMemberInfo":{"shape":"BooleanOptional"}
2341
- }
2342
- },
2343
- "DescribeGlobalReplicationGroupsResult":{
2344
- "type":"structure",
2345
- "members":{
2346
- "Marker":{"shape":"String"},
2347
- "GlobalReplicationGroups":{"shape":"GlobalReplicationGroupList"}
2348
- }
2349
- },
2350
- "DescribeReplicationGroupsMessage":{
2351
- "type":"structure",
2352
- "members":{
2353
- "ReplicationGroupId":{"shape":"String"},
2354
- "MaxRecords":{"shape":"IntegerOptional"},
2355
- "Marker":{"shape":"String"}
2356
- }
2357
- },
2358
- "DescribeReservedCacheNodesMessage":{
2359
- "type":"structure",
2360
- "members":{
2361
- "ReservedCacheNodeId":{"shape":"String"},
2362
- "ReservedCacheNodesOfferingId":{"shape":"String"},
2363
- "CacheNodeType":{"shape":"String"},
2364
- "Duration":{"shape":"String"},
2365
- "ProductDescription":{"shape":"String"},
2366
- "OfferingType":{"shape":"String"},
2367
- "MaxRecords":{"shape":"IntegerOptional"},
2368
- "Marker":{"shape":"String"}
2369
- }
2370
- },
2371
- "DescribeReservedCacheNodesOfferingsMessage":{
2372
- "type":"structure",
2373
- "members":{
2374
- "ReservedCacheNodesOfferingId":{"shape":"String"},
2375
- "CacheNodeType":{"shape":"String"},
2376
- "Duration":{"shape":"String"},
2377
- "ProductDescription":{"shape":"String"},
2378
- "OfferingType":{"shape":"String"},
2379
- "MaxRecords":{"shape":"IntegerOptional"},
2380
- "Marker":{"shape":"String"}
2381
- }
2382
- },
2383
- "DescribeServiceUpdatesMessage":{
2384
- "type":"structure",
2385
- "members":{
2386
- "ServiceUpdateName":{"shape":"String"},
2387
- "ServiceUpdateStatus":{"shape":"ServiceUpdateStatusList"},
2388
- "MaxRecords":{"shape":"IntegerOptional"},
2389
- "Marker":{"shape":"String"}
2390
- }
2391
- },
2392
- "DescribeSnapshotsListMessage":{
2393
- "type":"structure",
2394
- "members":{
2395
- "Marker":{"shape":"String"},
2396
- "Snapshots":{"shape":"SnapshotList"}
2397
- }
2398
- },
2399
- "DescribeSnapshotsMessage":{
2400
- "type":"structure",
2401
- "members":{
2402
- "ReplicationGroupId":{"shape":"String"},
2403
- "CacheClusterId":{"shape":"String"},
2404
- "SnapshotName":{"shape":"String"},
2405
- "SnapshotSource":{"shape":"String"},
2406
- "Marker":{"shape":"String"},
2407
- "MaxRecords":{"shape":"IntegerOptional"},
2408
- "ShowNodeGroupConfig":{"shape":"BooleanOptional"}
2409
- }
2410
- },
2411
- "DescribeUpdateActionsMessage":{
2412
- "type":"structure",
2413
- "members":{
2414
- "ServiceUpdateName":{"shape":"String"},
2415
- "ReplicationGroupIds":{"shape":"ReplicationGroupIdList"},
2416
- "CacheClusterIds":{"shape":"CacheClusterIdList"},
2417
- "Engine":{"shape":"String"},
2418
- "ServiceUpdateStatus":{"shape":"ServiceUpdateStatusList"},
2419
- "ServiceUpdateTimeRange":{"shape":"TimeRangeFilter"},
2420
- "UpdateActionStatus":{"shape":"UpdateActionStatusList"},
2421
- "ShowNodeLevelUpdateStatus":{"shape":"BooleanOptional"},
2422
- "MaxRecords":{"shape":"IntegerOptional"},
2423
- "Marker":{"shape":"String"}
2424
- }
2425
- },
2426
- "DescribeUserGroupsMessage":{
2427
- "type":"structure",
2428
- "members":{
2429
- "UserGroupId":{"shape":"String"},
2430
- "MaxRecords":{"shape":"IntegerOptional"},
2431
- "Marker":{"shape":"String"}
2432
- }
2433
- },
2434
- "DescribeUserGroupsResult":{
2435
- "type":"structure",
2436
- "members":{
2437
- "UserGroups":{"shape":"UserGroupList"},
2438
- "Marker":{"shape":"String"}
2439
- }
2440
- },
2441
- "DescribeUsersMessage":{
2442
- "type":"structure",
2443
- "members":{
2444
- "Engine":{"shape":"EngineType"},
2445
- "UserId":{"shape":"UserId"},
2446
- "Filters":{"shape":"FilterList"},
2447
- "MaxRecords":{"shape":"IntegerOptional"},
2448
- "Marker":{"shape":"String"}
2449
- }
2450
- },
2451
- "DescribeUsersResult":{
2452
- "type":"structure",
2453
- "members":{
2454
- "Users":{"shape":"UserList"},
2455
- "Marker":{"shape":"String"}
2456
- }
2457
- },
2458
- "DisassociateGlobalReplicationGroupMessage":{
2459
- "type":"structure",
2460
- "required":[
2461
- "GlobalReplicationGroupId",
2462
- "ReplicationGroupId",
2463
- "ReplicationGroupRegion"
2464
- ],
2465
- "members":{
2466
- "GlobalReplicationGroupId":{"shape":"String"},
2467
- "ReplicationGroupId":{"shape":"String"},
2468
- "ReplicationGroupRegion":{"shape":"String"}
2469
- }
2470
- },
2471
- "DisassociateGlobalReplicationGroupResult":{
2472
- "type":"structure",
2473
- "members":{
2474
- "GlobalReplicationGroup":{"shape":"GlobalReplicationGroup"}
2475
- }
2476
- },
2477
- "Double":{"type":"double"},
2478
- "DuplicateUserNameFault":{
2479
- "type":"structure",
2480
- "members":{
2481
- },
2482
- "error":{
2483
- "code":"DuplicateUserName",
2484
- "httpStatusCode":400,
2485
- "senderFault":true
2486
- },
2487
- "exception":true
2488
- },
2489
- "EC2SecurityGroup":{
2490
- "type":"structure",
2491
- "members":{
2492
- "Status":{"shape":"String"},
2493
- "EC2SecurityGroupName":{"shape":"String"},
2494
- "EC2SecurityGroupOwnerId":{"shape":"String"}
2495
- }
2496
- },
2497
- "EC2SecurityGroupList":{
2498
- "type":"list",
2499
- "member":{
2500
- "shape":"EC2SecurityGroup",
2501
- "locationName":"EC2SecurityGroup"
2502
- }
2503
- },
2504
- "Endpoint":{
2505
- "type":"structure",
2506
- "members":{
2507
- "Address":{"shape":"String"},
2508
- "Port":{"shape":"Integer"}
2509
- }
2510
- },
2511
- "EngineDefaults":{
2512
- "type":"structure",
2513
- "members":{
2514
- "CacheParameterGroupFamily":{"shape":"String"},
2515
- "Marker":{"shape":"String"},
2516
- "Parameters":{"shape":"ParametersList"},
2517
- "CacheNodeTypeSpecificParameters":{"shape":"CacheNodeTypeSpecificParametersList"}
2518
- },
2519
- "wrapper":true
2520
- },
2521
- "EngineType":{
2522
- "type":"string",
2523
- "pattern":"[a-zA-Z]*"
2524
- },
2525
- "Event":{
2526
- "type":"structure",
2527
- "members":{
2528
- "SourceIdentifier":{"shape":"String"},
2529
- "SourceType":{"shape":"SourceType"},
2530
- "Message":{"shape":"String"},
2531
- "Date":{"shape":"TStamp"}
2532
- }
2533
- },
2534
- "EventList":{
2535
- "type":"list",
2536
- "member":{
2537
- "shape":"Event",
2538
- "locationName":"Event"
2539
- }
2540
- },
2541
- "EventsMessage":{
2542
- "type":"structure",
2543
- "members":{
2544
- "Marker":{"shape":"String"},
2545
- "Events":{"shape":"EventList"}
2546
- }
2547
- },
2548
- "FailoverGlobalReplicationGroupMessage":{
2549
- "type":"structure",
2550
- "required":[
2551
- "GlobalReplicationGroupId",
2552
- "PrimaryRegion",
2553
- "PrimaryReplicationGroupId"
2554
- ],
2555
- "members":{
2556
- "GlobalReplicationGroupId":{"shape":"String"},
2557
- "PrimaryRegion":{"shape":"String"},
2558
- "PrimaryReplicationGroupId":{"shape":"String"}
2559
- }
2560
- },
2561
- "FailoverGlobalReplicationGroupResult":{
2562
- "type":"structure",
2563
- "members":{
2564
- "GlobalReplicationGroup":{"shape":"GlobalReplicationGroup"}
2565
- }
2566
- },
2567
- "Filter":{
2568
- "type":"structure",
2569
- "required":[
2570
- "Name",
2571
- "Values"
2572
- ],
2573
- "members":{
2574
- "Name":{"shape":"FilterName"},
2575
- "Values":{"shape":"FilterValueList"}
2576
- }
2577
- },
2578
- "FilterList":{
2579
- "type":"list",
2580
- "member":{"shape":"Filter"}
2581
- },
2582
- "FilterName":{
2583
- "type":"string",
2584
- "pattern":".*\\S.*"
2585
- },
2586
- "FilterValue":{
2587
- "type":"string",
2588
- "pattern":".*\\S.*"
2589
- },
2590
- "FilterValueList":{
2591
- "type":"list",
2592
- "member":{"shape":"FilterValue"},
2593
- "min":1
2594
- },
2595
- "GlobalNodeGroup":{
2596
- "type":"structure",
2597
- "members":{
2598
- "GlobalNodeGroupId":{"shape":"String"},
2599
- "Slots":{"shape":"String"}
2600
- }
2601
- },
2602
- "GlobalNodeGroupIdList":{
2603
- "type":"list",
2604
- "member":{
2605
- "shape":"String",
2606
- "locationName":"GlobalNodeGroupId"
2607
- }
2608
- },
2609
- "GlobalNodeGroupList":{
2610
- "type":"list",
2611
- "member":{
2612
- "shape":"GlobalNodeGroup",
2613
- "locationName":"GlobalNodeGroup"
2614
- }
2615
- },
2616
- "GlobalReplicationGroup":{
2617
- "type":"structure",
2618
- "members":{
2619
- "GlobalReplicationGroupId":{"shape":"String"},
2620
- "GlobalReplicationGroupDescription":{"shape":"String"},
2621
- "Status":{"shape":"String"},
2622
- "CacheNodeType":{"shape":"String"},
2623
- "Engine":{"shape":"String"},
2624
- "EngineVersion":{"shape":"String"},
2625
- "Members":{"shape":"GlobalReplicationGroupMemberList"},
2626
- "ClusterEnabled":{"shape":"BooleanOptional"},
2627
- "GlobalNodeGroups":{"shape":"GlobalNodeGroupList"},
2628
- "AuthTokenEnabled":{"shape":"BooleanOptional"},
2629
- "TransitEncryptionEnabled":{"shape":"BooleanOptional"},
2630
- "AtRestEncryptionEnabled":{"shape":"BooleanOptional"},
2631
- "ARN":{"shape":"String"}
2632
- },
2633
- "wrapper":true
2634
- },
2635
- "GlobalReplicationGroupAlreadyExistsFault":{
2636
- "type":"structure",
2637
- "members":{
2638
- },
2639
- "error":{
2640
- "code":"GlobalReplicationGroupAlreadyExistsFault",
2641
- "httpStatusCode":400,
2642
- "senderFault":true
2643
- },
2644
- "exception":true
2645
- },
2646
- "GlobalReplicationGroupInfo":{
2647
- "type":"structure",
2648
- "members":{
2649
- "GlobalReplicationGroupId":{"shape":"String"},
2650
- "GlobalReplicationGroupMemberRole":{"shape":"String"}
2651
- }
2652
- },
2653
- "GlobalReplicationGroupList":{
2654
- "type":"list",
2655
- "member":{
2656
- "shape":"GlobalReplicationGroup",
2657
- "locationName":"GlobalReplicationGroup"
2658
- }
2659
- },
2660
- "GlobalReplicationGroupMember":{
2661
- "type":"structure",
2662
- "members":{
2663
- "ReplicationGroupId":{"shape":"String"},
2664
- "ReplicationGroupRegion":{"shape":"String"},
2665
- "Role":{"shape":"String"},
2666
- "AutomaticFailover":{"shape":"AutomaticFailoverStatus"},
2667
- "Status":{"shape":"String"}
2668
- },
2669
- "wrapper":true
2670
- },
2671
- "GlobalReplicationGroupMemberList":{
2672
- "type":"list",
2673
- "member":{
2674
- "shape":"GlobalReplicationGroupMember",
2675
- "locationName":"GlobalReplicationGroupMember"
2676
- }
2677
- },
2678
- "GlobalReplicationGroupNotFoundFault":{
2679
- "type":"structure",
2680
- "members":{
2681
- },
2682
- "error":{
2683
- "code":"GlobalReplicationGroupNotFoundFault",
2684
- "httpStatusCode":404,
2685
- "senderFault":true
2686
- },
2687
- "exception":true
2688
- },
2689
- "IncreaseNodeGroupsInGlobalReplicationGroupMessage":{
2690
- "type":"structure",
2691
- "required":[
2692
- "GlobalReplicationGroupId",
2693
- "NodeGroupCount",
2694
- "ApplyImmediately"
2695
- ],
2696
- "members":{
2697
- "GlobalReplicationGroupId":{"shape":"String"},
2698
- "NodeGroupCount":{"shape":"Integer"},
2699
- "RegionalConfigurations":{"shape":"RegionalConfigurationList"},
2700
- "ApplyImmediately":{"shape":"Boolean"}
2701
- }
2702
- },
2703
- "IncreaseNodeGroupsInGlobalReplicationGroupResult":{
2704
- "type":"structure",
2705
- "members":{
2706
- "GlobalReplicationGroup":{"shape":"GlobalReplicationGroup"}
2707
- }
2708
- },
2709
- "IncreaseReplicaCountMessage":{
2710
- "type":"structure",
2711
- "required":[
2712
- "ReplicationGroupId",
2713
- "ApplyImmediately"
2714
- ],
2715
- "members":{
2716
- "ReplicationGroupId":{"shape":"String"},
2717
- "NewReplicaCount":{"shape":"IntegerOptional"},
2718
- "ReplicaConfiguration":{"shape":"ReplicaConfigurationList"},
2719
- "ApplyImmediately":{"shape":"Boolean"}
2720
- }
2721
- },
2722
- "IncreaseReplicaCountResult":{
2723
- "type":"structure",
2724
- "members":{
2725
- "ReplicationGroup":{"shape":"ReplicationGroup"}
2726
- }
2727
- },
2728
- "InsufficientCacheClusterCapacityFault":{
2729
- "type":"structure",
2730
- "members":{
2731
- },
2732
- "error":{
2733
- "code":"InsufficientCacheClusterCapacity",
2734
- "httpStatusCode":400,
2735
- "senderFault":true
2736
- },
2737
- "exception":true
2738
- },
2739
- "Integer":{"type":"integer"},
2740
- "IntegerOptional":{"type":"integer"},
2741
- "InvalidARNFault":{
2742
- "type":"structure",
2743
- "members":{
2744
- },
2745
- "error":{
2746
- "code":"InvalidARN",
2747
- "httpStatusCode":400,
2748
- "senderFault":true
2749
- },
2750
- "exception":true
2751
- },
2752
- "InvalidCacheClusterStateFault":{
2753
- "type":"structure",
2754
- "members":{
2755
- },
2756
- "error":{
2757
- "code":"InvalidCacheClusterState",
2758
- "httpStatusCode":400,
2759
- "senderFault":true
2760
- },
2761
- "exception":true
2762
- },
2763
- "InvalidCacheParameterGroupStateFault":{
2764
- "type":"structure",
2765
- "members":{
2766
- },
2767
- "error":{
2768
- "code":"InvalidCacheParameterGroupState",
2769
- "httpStatusCode":400,
2770
- "senderFault":true
2771
- },
2772
- "exception":true
2773
- },
2774
- "InvalidCacheSecurityGroupStateFault":{
2775
- "type":"structure",
2776
- "members":{
2777
- },
2778
- "error":{
2779
- "code":"InvalidCacheSecurityGroupState",
2780
- "httpStatusCode":400,
2781
- "senderFault":true
2782
- },
2783
- "exception":true
2784
- },
2785
- "InvalidGlobalReplicationGroupStateFault":{
2786
- "type":"structure",
2787
- "members":{
2788
- },
2789
- "error":{
2790
- "code":"InvalidGlobalReplicationGroupState",
2791
- "httpStatusCode":400,
2792
- "senderFault":true
2793
- },
2794
- "exception":true
2795
- },
2796
- "InvalidKMSKeyFault":{
2797
- "type":"structure",
2798
- "members":{
2799
- },
2800
- "error":{
2801
- "code":"InvalidKMSKeyFault",
2802
- "httpStatusCode":400,
2803
- "senderFault":true
2804
- },
2805
- "exception":true
2806
- },
2807
- "InvalidParameterCombinationException":{
2808
- "type":"structure",
2809
- "members":{
2810
- "message":{"shape":"AwsQueryErrorMessage"}
2811
- },
2812
- "error":{
2813
- "code":"InvalidParameterCombination",
2814
- "httpStatusCode":400,
2815
- "senderFault":true
2816
- },
2817
- "exception":true,
2818
- "synthetic":true
2819
- },
2820
- "InvalidParameterValueException":{
2821
- "type":"structure",
2822
- "members":{
2823
- "message":{"shape":"AwsQueryErrorMessage"}
2824
- },
2825
- "error":{
2826
- "code":"InvalidParameterValue",
2827
- "httpStatusCode":400,
2828
- "senderFault":true
2829
- },
2830
- "exception":true,
2831
- "synthetic":true
2832
- },
2833
- "InvalidReplicationGroupStateFault":{
2834
- "type":"structure",
2835
- "members":{
2836
- },
2837
- "error":{
2838
- "code":"InvalidReplicationGroupState",
2839
- "httpStatusCode":400,
2840
- "senderFault":true
2841
- },
2842
- "exception":true
2843
- },
2844
- "InvalidSnapshotStateFault":{
2845
- "type":"structure",
2846
- "members":{
2847
- },
2848
- "error":{
2849
- "code":"InvalidSnapshotState",
2850
- "httpStatusCode":400,
2851
- "senderFault":true
2852
- },
2853
- "exception":true
2854
- },
2855
- "InvalidSubnet":{
2856
- "type":"structure",
2857
- "members":{
2858
- },
2859
- "error":{
2860
- "code":"InvalidSubnet",
2861
- "httpStatusCode":400,
2862
- "senderFault":true
2863
- },
2864
- "exception":true
2865
- },
2866
- "InvalidUserGroupStateFault":{
2867
- "type":"structure",
2868
- "members":{
2869
- },
2870
- "error":{
2871
- "code":"InvalidUserGroupState",
2872
- "httpStatusCode":400,
2873
- "senderFault":true
2874
- },
2875
- "exception":true
2876
- },
2877
- "InvalidUserStateFault":{
2878
- "type":"structure",
2879
- "members":{
2880
- },
2881
- "error":{
2882
- "code":"InvalidUserState",
2883
- "httpStatusCode":400,
2884
- "senderFault":true
2885
- },
2886
- "exception":true
2887
- },
2888
- "InvalidVPCNetworkStateFault":{
2889
- "type":"structure",
2890
- "members":{
2891
- },
2892
- "error":{
2893
- "code":"InvalidVPCNetworkStateFault",
2894
- "httpStatusCode":400,
2895
- "senderFault":true
2896
- },
2897
- "exception":true
2898
- },
2899
- "KeyList":{
2900
- "type":"list",
2901
- "member":{"shape":"String"}
2902
- },
2903
- "ListAllowedNodeTypeModificationsMessage":{
2904
- "type":"structure",
2905
- "members":{
2906
- "CacheClusterId":{"shape":"String"},
2907
- "ReplicationGroupId":{"shape":"String"}
2908
- }
2909
- },
2910
- "ListTagsForResourceMessage":{
2911
- "type":"structure",
2912
- "required":["ResourceName"],
2913
- "members":{
2914
- "ResourceName":{"shape":"String"}
2915
- }
2916
- },
2917
- "ModifyCacheClusterMessage":{
2918
- "type":"structure",
2919
- "required":["CacheClusterId"],
2920
- "members":{
2921
- "CacheClusterId":{"shape":"String"},
2922
- "NumCacheNodes":{"shape":"IntegerOptional"},
2923
- "CacheNodeIdsToRemove":{"shape":"CacheNodeIdsList"},
2924
- "AZMode":{"shape":"AZMode"},
2925
- "NewAvailabilityZones":{"shape":"PreferredAvailabilityZoneList"},
2926
- "CacheSecurityGroupNames":{"shape":"CacheSecurityGroupNameList"},
2927
- "SecurityGroupIds":{"shape":"SecurityGroupIdsList"},
2928
- "PreferredMaintenanceWindow":{"shape":"String"},
2929
- "NotificationTopicArn":{"shape":"String"},
2930
- "CacheParameterGroupName":{"shape":"String"},
2931
- "NotificationTopicStatus":{"shape":"String"},
2932
- "ApplyImmediately":{"shape":"Boolean"},
2933
- "EngineVersion":{"shape":"String"},
2934
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
2935
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
2936
- "SnapshotWindow":{"shape":"String"},
2937
- "CacheNodeType":{"shape":"String"},
2938
- "AuthToken":{"shape":"String"},
2939
- "AuthTokenUpdateStrategy":{"shape":"AuthTokenUpdateStrategyType"}
2940
- }
2941
- },
2942
- "ModifyCacheClusterResult":{
2943
- "type":"structure",
2944
- "members":{
2945
- "CacheCluster":{"shape":"CacheCluster"}
2946
- }
2947
- },
2948
- "ModifyCacheParameterGroupMessage":{
2949
- "type":"structure",
2950
- "required":[
2951
- "CacheParameterGroupName",
2952
- "ParameterNameValues"
2953
- ],
2954
- "members":{
2955
- "CacheParameterGroupName":{"shape":"String"},
2956
- "ParameterNameValues":{"shape":"ParameterNameValueList"}
2957
- }
2958
- },
2959
- "ModifyCacheSubnetGroupMessage":{
2960
- "type":"structure",
2961
- "required":["CacheSubnetGroupName"],
2962
- "members":{
2963
- "CacheSubnetGroupName":{"shape":"String"},
2964
- "CacheSubnetGroupDescription":{"shape":"String"},
2965
- "SubnetIds":{"shape":"SubnetIdentifierList"}
2966
- }
2967
- },
2968
- "ModifyCacheSubnetGroupResult":{
2969
- "type":"structure",
2970
- "members":{
2971
- "CacheSubnetGroup":{"shape":"CacheSubnetGroup"}
2972
- }
2973
- },
2974
- "ModifyGlobalReplicationGroupMessage":{
2975
- "type":"structure",
2976
- "required":[
2977
- "GlobalReplicationGroupId",
2978
- "ApplyImmediately"
2979
- ],
2980
- "members":{
2981
- "GlobalReplicationGroupId":{"shape":"String"},
2982
- "ApplyImmediately":{"shape":"Boolean"},
2983
- "CacheNodeType":{"shape":"String"},
2984
- "EngineVersion":{"shape":"String"},
2985
- "GlobalReplicationGroupDescription":{"shape":"String"},
2986
- "AutomaticFailoverEnabled":{"shape":"BooleanOptional"}
2987
- }
2988
- },
2989
- "ModifyGlobalReplicationGroupResult":{
2990
- "type":"structure",
2991
- "members":{
2992
- "GlobalReplicationGroup":{"shape":"GlobalReplicationGroup"}
2993
- }
2994
- },
2995
- "ModifyReplicationGroupMessage":{
2996
- "type":"structure",
2997
- "required":["ReplicationGroupId"],
2998
- "members":{
2999
- "ReplicationGroupId":{"shape":"String"},
3000
- "ReplicationGroupDescription":{"shape":"String"},
3001
- "PrimaryClusterId":{"shape":"String"},
3002
- "SnapshottingClusterId":{"shape":"String"},
3003
- "AutomaticFailoverEnabled":{"shape":"BooleanOptional"},
3004
- "MultiAZEnabled":{"shape":"BooleanOptional"},
3005
- "NodeGroupId":{
3006
- "shape":"String",
3007
- "deprecated":true
3008
- },
3009
- "CacheSecurityGroupNames":{"shape":"CacheSecurityGroupNameList"},
3010
- "SecurityGroupIds":{"shape":"SecurityGroupIdsList"},
3011
- "PreferredMaintenanceWindow":{"shape":"String"},
3012
- "NotificationTopicArn":{"shape":"String"},
3013
- "CacheParameterGroupName":{"shape":"String"},
3014
- "NotificationTopicStatus":{"shape":"String"},
3015
- "ApplyImmediately":{"shape":"Boolean"},
3016
- "EngineVersion":{"shape":"String"},
3017
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
3018
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
3019
- "SnapshotWindow":{"shape":"String"},
3020
- "CacheNodeType":{"shape":"String"},
3021
- "AuthToken":{"shape":"String"},
3022
- "AuthTokenUpdateStrategy":{"shape":"AuthTokenUpdateStrategyType"},
3023
- "UserGroupIdsToAdd":{"shape":"UserGroupIdList"},
3024
- "UserGroupIdsToRemove":{"shape":"UserGroupIdList"},
3025
- "RemoveUserGroups":{"shape":"BooleanOptional"}
3026
- }
3027
- },
3028
- "ModifyReplicationGroupResult":{
3029
- "type":"structure",
3030
- "members":{
3031
- "ReplicationGroup":{"shape":"ReplicationGroup"}
3032
- }
3033
- },
3034
- "ModifyReplicationGroupShardConfigurationMessage":{
3035
- "type":"structure",
3036
- "required":[
3037
- "ReplicationGroupId",
3038
- "NodeGroupCount",
3039
- "ApplyImmediately"
3040
- ],
3041
- "members":{
3042
- "ReplicationGroupId":{"shape":"String"},
3043
- "NodeGroupCount":{"shape":"Integer"},
3044
- "ApplyImmediately":{"shape":"Boolean"},
3045
- "ReshardingConfiguration":{"shape":"ReshardingConfigurationList"},
3046
- "NodeGroupsToRemove":{"shape":"NodeGroupsToRemoveList"},
3047
- "NodeGroupsToRetain":{"shape":"NodeGroupsToRetainList"}
3048
- }
3049
- },
3050
- "ModifyReplicationGroupShardConfigurationResult":{
3051
- "type":"structure",
3052
- "members":{
3053
- "ReplicationGroup":{"shape":"ReplicationGroup"}
3054
- }
3055
- },
3056
- "ModifyUserGroupMessage":{
3057
- "type":"structure",
3058
- "required":["UserGroupId"],
3059
- "members":{
3060
- "UserGroupId":{"shape":"String"},
3061
- "UserIdsToAdd":{"shape":"UserIdListInput"},
3062
- "UserIdsToRemove":{"shape":"UserIdListInput"}
3063
- }
3064
- },
3065
- "ModifyUserMessage":{
3066
- "type":"structure",
3067
- "required":["UserId"],
3068
- "members":{
3069
- "UserId":{"shape":"UserId"},
3070
- "AccessString":{"shape":"AccessString"},
3071
- "AppendAccessString":{"shape":"AccessString"},
3072
- "Passwords":{"shape":"PasswordListInput"},
3073
- "NoPasswordRequired":{"shape":"BooleanOptional"}
3074
- }
3075
- },
3076
- "MultiAZStatus":{
3077
- "type":"string",
3078
- "enum":[
3079
- "enabled",
3080
- "disabled"
3081
- ]
3082
- },
3083
- "NoOperationFault":{
3084
- "type":"structure",
3085
- "members":{
3086
- },
3087
- "error":{
3088
- "code":"NoOperationFault",
3089
- "httpStatusCode":400,
3090
- "senderFault":true
3091
- },
3092
- "exception":true
3093
- },
3094
- "NodeGroup":{
3095
- "type":"structure",
3096
- "members":{
3097
- "NodeGroupId":{"shape":"String"},
3098
- "Status":{"shape":"String"},
3099
- "PrimaryEndpoint":{"shape":"Endpoint"},
3100
- "ReaderEndpoint":{"shape":"Endpoint"},
3101
- "Slots":{"shape":"String"},
3102
- "NodeGroupMembers":{"shape":"NodeGroupMemberList"}
3103
- }
3104
- },
3105
- "NodeGroupConfiguration":{
3106
- "type":"structure",
3107
- "members":{
3108
- "NodeGroupId":{"shape":"AllowedNodeGroupId"},
3109
- "Slots":{"shape":"String"},
3110
- "ReplicaCount":{"shape":"IntegerOptional"},
3111
- "PrimaryAvailabilityZone":{"shape":"String"},
3112
- "ReplicaAvailabilityZones":{"shape":"AvailabilityZonesList"},
3113
- "PrimaryOutpostArn":{"shape":"String"},
3114
- "ReplicaOutpostArns":{"shape":"OutpostArnsList"}
3115
- }
3116
- },
3117
- "NodeGroupConfigurationList":{
3118
- "type":"list",
3119
- "member":{
3120
- "shape":"NodeGroupConfiguration",
3121
- "locationName":"NodeGroupConfiguration"
3122
- }
3123
- },
3124
- "NodeGroupList":{
3125
- "type":"list",
3126
- "member":{
3127
- "shape":"NodeGroup",
3128
- "locationName":"NodeGroup"
3129
- }
3130
- },
3131
- "NodeGroupMember":{
3132
- "type":"structure",
3133
- "members":{
3134
- "CacheClusterId":{"shape":"String"},
3135
- "CacheNodeId":{"shape":"String"},
3136
- "ReadEndpoint":{"shape":"Endpoint"},
3137
- "PreferredAvailabilityZone":{"shape":"String"},
3138
- "PreferredOutpostArn":{"shape":"String"},
3139
- "CurrentRole":{"shape":"String"}
3140
- }
3141
- },
3142
- "NodeGroupMemberList":{
3143
- "type":"list",
3144
- "member":{
3145
- "shape":"NodeGroupMember",
3146
- "locationName":"NodeGroupMember"
3147
- }
3148
- },
3149
- "NodeGroupMemberUpdateStatus":{
3150
- "type":"structure",
3151
- "members":{
3152
- "CacheClusterId":{"shape":"String"},
3153
- "CacheNodeId":{"shape":"String"},
3154
- "NodeUpdateStatus":{"shape":"NodeUpdateStatus"},
3155
- "NodeDeletionDate":{"shape":"TStamp"},
3156
- "NodeUpdateStartDate":{"shape":"TStamp"},
3157
- "NodeUpdateEndDate":{"shape":"TStamp"},
3158
- "NodeUpdateInitiatedBy":{"shape":"NodeUpdateInitiatedBy"},
3159
- "NodeUpdateInitiatedDate":{"shape":"TStamp"},
3160
- "NodeUpdateStatusModifiedDate":{"shape":"TStamp"}
3161
- }
3162
- },
3163
- "NodeGroupMemberUpdateStatusList":{
3164
- "type":"list",
3165
- "member":{
3166
- "shape":"NodeGroupMemberUpdateStatus",
3167
- "locationName":"NodeGroupMemberUpdateStatus"
3168
- }
3169
- },
3170
- "NodeGroupNotFoundFault":{
3171
- "type":"structure",
3172
- "members":{
3173
- },
3174
- "error":{
3175
- "code":"NodeGroupNotFoundFault",
3176
- "httpStatusCode":404,
3177
- "senderFault":true
3178
- },
3179
- "exception":true
3180
- },
3181
- "NodeGroupUpdateStatus":{
3182
- "type":"structure",
3183
- "members":{
3184
- "NodeGroupId":{"shape":"String"},
3185
- "NodeGroupMemberUpdateStatus":{"shape":"NodeGroupMemberUpdateStatusList"}
3186
- }
3187
- },
3188
- "NodeGroupUpdateStatusList":{
3189
- "type":"list",
3190
- "member":{
3191
- "shape":"NodeGroupUpdateStatus",
3192
- "locationName":"NodeGroupUpdateStatus"
3193
- }
3194
- },
3195
- "NodeGroupsPerReplicationGroupQuotaExceededFault":{
3196
- "type":"structure",
3197
- "members":{
3198
- },
3199
- "error":{
3200
- "code":"NodeGroupsPerReplicationGroupQuotaExceeded",
3201
- "httpStatusCode":400,
3202
- "senderFault":true
3203
- },
3204
- "exception":true
3205
- },
3206
- "NodeGroupsToRemoveList":{
3207
- "type":"list",
3208
- "member":{
3209
- "shape":"AllowedNodeGroupId",
3210
- "locationName":"NodeGroupToRemove"
3211
- }
3212
- },
3213
- "NodeGroupsToRetainList":{
3214
- "type":"list",
3215
- "member":{
3216
- "shape":"AllowedNodeGroupId",
3217
- "locationName":"NodeGroupToRetain"
3218
- }
3219
- },
3220
- "NodeQuotaForClusterExceededFault":{
3221
- "type":"structure",
3222
- "members":{
3223
- },
3224
- "error":{
3225
- "code":"NodeQuotaForClusterExceeded",
3226
- "httpStatusCode":400,
3227
- "senderFault":true
3228
- },
3229
- "exception":true
3230
- },
3231
- "NodeQuotaForCustomerExceededFault":{
3232
- "type":"structure",
3233
- "members":{
3234
- },
3235
- "error":{
3236
- "code":"NodeQuotaForCustomerExceeded",
3237
- "httpStatusCode":400,
3238
- "senderFault":true
3239
- },
3240
- "exception":true
3241
- },
3242
- "NodeSnapshot":{
3243
- "type":"structure",
3244
- "members":{
3245
- "CacheClusterId":{"shape":"String"},
3246
- "NodeGroupId":{"shape":"String"},
3247
- "CacheNodeId":{"shape":"String"},
3248
- "NodeGroupConfiguration":{"shape":"NodeGroupConfiguration"},
3249
- "CacheSize":{"shape":"String"},
3250
- "CacheNodeCreateTime":{"shape":"TStamp"},
3251
- "SnapshotCreateTime":{"shape":"TStamp"}
3252
- },
3253
- "wrapper":true
3254
- },
3255
- "NodeSnapshotList":{
3256
- "type":"list",
3257
- "member":{
3258
- "shape":"NodeSnapshot",
3259
- "locationName":"NodeSnapshot"
3260
- }
3261
- },
3262
- "NodeTypeList":{
3263
- "type":"list",
3264
- "member":{"shape":"String"}
3265
- },
3266
- "NodeUpdateInitiatedBy":{
3267
- "type":"string",
3268
- "enum":[
3269
- "system",
3270
- "customer"
3271
- ]
3272
- },
3273
- "NodeUpdateStatus":{
3274
- "type":"string",
3275
- "enum":[
3276
- "not-applied",
3277
- "waiting-to-start",
3278
- "in-progress",
3279
- "stopping",
3280
- "stopped",
3281
- "complete"
3282
- ]
3283
- },
3284
- "NotificationConfiguration":{
3285
- "type":"structure",
3286
- "members":{
3287
- "TopicArn":{"shape":"String"},
3288
- "TopicStatus":{"shape":"String"}
3289
- }
3290
- },
3291
- "OutpostArnsList":{
3292
- "type":"list",
3293
- "member":{
3294
- "shape":"String",
3295
- "locationName":"OutpostArn"
3296
- }
3297
- },
3298
- "OutpostMode":{
3299
- "type":"string",
3300
- "enum":[
3301
- "single-outpost",
3302
- "cross-outpost"
3303
- ]
3304
- },
3305
- "Parameter":{
3306
- "type":"structure",
3307
- "members":{
3308
- "ParameterName":{"shape":"String"},
3309
- "ParameterValue":{"shape":"String"},
3310
- "Description":{"shape":"String"},
3311
- "Source":{"shape":"String"},
3312
- "DataType":{"shape":"String"},
3313
- "AllowedValues":{"shape":"String"},
3314
- "IsModifiable":{"shape":"Boolean"},
3315
- "MinimumEngineVersion":{"shape":"String"},
3316
- "ChangeType":{"shape":"ChangeType"}
3317
- }
3318
- },
3319
- "ParameterNameValue":{
3320
- "type":"structure",
3321
- "members":{
3322
- "ParameterName":{"shape":"String"},
3323
- "ParameterValue":{"shape":"String"}
3324
- }
3325
- },
3326
- "ParameterNameValueList":{
3327
- "type":"list",
3328
- "member":{
3329
- "shape":"ParameterNameValue",
3330
- "locationName":"ParameterNameValue"
3331
- }
3332
- },
3333
- "ParametersList":{
3334
- "type":"list",
3335
- "member":{
3336
- "shape":"Parameter",
3337
- "locationName":"Parameter"
3338
- }
3339
- },
3340
- "PasswordListInput":{
3341
- "type":"list",
3342
- "member":{"shape":"String"},
3343
- "min":1
3344
- },
3345
- "PendingAutomaticFailoverStatus":{
3346
- "type":"string",
3347
- "enum":[
3348
- "enabled",
3349
- "disabled"
3350
- ]
3351
- },
3352
- "PendingModifiedValues":{
3353
- "type":"structure",
3354
- "members":{
3355
- "NumCacheNodes":{"shape":"IntegerOptional"},
3356
- "CacheNodeIdsToRemove":{"shape":"CacheNodeIdsList"},
3357
- "EngineVersion":{"shape":"String"},
3358
- "CacheNodeType":{"shape":"String"},
3359
- "AuthTokenStatus":{"shape":"AuthTokenUpdateStatus"}
3360
- }
3361
- },
3362
- "PreferredAvailabilityZoneList":{
3363
- "type":"list",
3364
- "member":{
3365
- "shape":"String",
3366
- "locationName":"PreferredAvailabilityZone"
3367
- }
3368
- },
3369
- "PreferredOutpostArnList":{
3370
- "type":"list",
3371
- "member":{
3372
- "shape":"String",
3373
- "locationName":"PreferredOutpostArn"
3374
- }
3375
- },
3376
- "ProcessedUpdateAction":{
3377
- "type":"structure",
3378
- "members":{
3379
- "ReplicationGroupId":{"shape":"String"},
3380
- "CacheClusterId":{"shape":"String"},
3381
- "ServiceUpdateName":{"shape":"String"},
3382
- "UpdateActionStatus":{"shape":"UpdateActionStatus"}
3383
- }
3384
- },
3385
- "ProcessedUpdateActionList":{
3386
- "type":"list",
3387
- "member":{
3388
- "shape":"ProcessedUpdateAction",
3389
- "locationName":"ProcessedUpdateAction"
3390
- }
3391
- },
3392
- "PurchaseReservedCacheNodesOfferingMessage":{
3393
- "type":"structure",
3394
- "required":["ReservedCacheNodesOfferingId"],
3395
- "members":{
3396
- "ReservedCacheNodesOfferingId":{"shape":"String"},
3397
- "ReservedCacheNodeId":{"shape":"String"},
3398
- "CacheNodeCount":{"shape":"IntegerOptional"}
3399
- }
3400
- },
3401
- "PurchaseReservedCacheNodesOfferingResult":{
3402
- "type":"structure",
3403
- "members":{
3404
- "ReservedCacheNode":{"shape":"ReservedCacheNode"}
3405
- }
3406
- },
3407
- "RebalanceSlotsInGlobalReplicationGroupMessage":{
3408
- "type":"structure",
3409
- "required":[
3410
- "GlobalReplicationGroupId",
3411
- "ApplyImmediately"
3412
- ],
3413
- "members":{
3414
- "GlobalReplicationGroupId":{"shape":"String"},
3415
- "ApplyImmediately":{"shape":"Boolean"}
3416
- }
3417
- },
3418
- "RebalanceSlotsInGlobalReplicationGroupResult":{
3419
- "type":"structure",
3420
- "members":{
3421
- "GlobalReplicationGroup":{"shape":"GlobalReplicationGroup"}
3422
- }
3423
- },
3424
- "RebootCacheClusterMessage":{
3425
- "type":"structure",
3426
- "required":[
3427
- "CacheClusterId",
3428
- "CacheNodeIdsToReboot"
3429
- ],
3430
- "members":{
3431
- "CacheClusterId":{"shape":"String"},
3432
- "CacheNodeIdsToReboot":{"shape":"CacheNodeIdsList"}
3433
- }
3434
- },
3435
- "RebootCacheClusterResult":{
3436
- "type":"structure",
3437
- "members":{
3438
- "CacheCluster":{"shape":"CacheCluster"}
3439
- }
3440
- },
3441
- "RecurringCharge":{
3442
- "type":"structure",
3443
- "members":{
3444
- "RecurringChargeAmount":{"shape":"Double"},
3445
- "RecurringChargeFrequency":{"shape":"String"}
3446
- },
3447
- "wrapper":true
3448
- },
3449
- "RecurringChargeList":{
3450
- "type":"list",
3451
- "member":{
3452
- "shape":"RecurringCharge",
3453
- "locationName":"RecurringCharge"
3454
- }
3455
- },
3456
- "RegionalConfiguration":{
3457
- "type":"structure",
3458
- "required":[
3459
- "ReplicationGroupId",
3460
- "ReplicationGroupRegion",
3461
- "ReshardingConfiguration"
3462
- ],
3463
- "members":{
3464
- "ReplicationGroupId":{"shape":"String"},
3465
- "ReplicationGroupRegion":{"shape":"String"},
3466
- "ReshardingConfiguration":{"shape":"ReshardingConfigurationList"}
3467
- }
3468
- },
3469
- "RegionalConfigurationList":{
3470
- "type":"list",
3471
- "member":{
3472
- "shape":"RegionalConfiguration",
3473
- "locationName":"RegionalConfiguration"
3474
- }
3475
- },
3476
- "RemoveReplicasList":{
3477
- "type":"list",
3478
- "member":{"shape":"String"}
3479
- },
3480
- "RemoveTagsFromResourceMessage":{
3481
- "type":"structure",
3482
- "required":[
3483
- "ResourceName",
3484
- "TagKeys"
3485
- ],
3486
- "members":{
3487
- "ResourceName":{"shape":"String"},
3488
- "TagKeys":{"shape":"KeyList"}
3489
- }
3490
- },
3491
- "ReplicaConfigurationList":{
3492
- "type":"list",
3493
- "member":{
3494
- "shape":"ConfigureShard",
3495
- "locationName":"ConfigureShard"
3496
- }
3497
- },
3498
- "ReplicationGroup":{
3499
- "type":"structure",
3500
- "members":{
3501
- "ReplicationGroupId":{"shape":"String"},
3502
- "Description":{"shape":"String"},
3503
- "GlobalReplicationGroupInfo":{"shape":"GlobalReplicationGroupInfo"},
3504
- "Status":{"shape":"String"},
3505
- "PendingModifiedValues":{"shape":"ReplicationGroupPendingModifiedValues"},
3506
- "MemberClusters":{"shape":"ClusterIdList"},
3507
- "NodeGroups":{"shape":"NodeGroupList"},
3508
- "SnapshottingClusterId":{"shape":"String"},
3509
- "AutomaticFailover":{"shape":"AutomaticFailoverStatus"},
3510
- "MultiAZ":{"shape":"MultiAZStatus"},
3511
- "ConfigurationEndpoint":{"shape":"Endpoint"},
3512
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
3513
- "SnapshotWindow":{"shape":"String"},
3514
- "ClusterEnabled":{"shape":"BooleanOptional"},
3515
- "CacheNodeType":{"shape":"String"},
3516
- "AuthTokenEnabled":{"shape":"BooleanOptional"},
3517
- "AuthTokenLastModifiedDate":{"shape":"TStamp"},
3518
- "TransitEncryptionEnabled":{"shape":"BooleanOptional"},
3519
- "AtRestEncryptionEnabled":{"shape":"BooleanOptional"},
3520
- "MemberClustersOutpostArns":{"shape":"ReplicationGroupOutpostArnList"},
3521
- "KmsKeyId":{"shape":"String"},
3522
- "ARN":{"shape":"String"},
3523
- "UserGroupIds":{"shape":"UserGroupIdList"}
3524
- },
3525
- "wrapper":true
3526
- },
3527
- "ReplicationGroupAlreadyExistsFault":{
3528
- "type":"structure",
3529
- "members":{
3530
- },
3531
- "error":{
3532
- "code":"ReplicationGroupAlreadyExists",
3533
- "httpStatusCode":400,
3534
- "senderFault":true
3535
- },
3536
- "exception":true
3537
- },
3538
- "ReplicationGroupAlreadyUnderMigrationFault":{
3539
- "type":"structure",
3540
- "members":{
3541
- },
3542
- "error":{
3543
- "code":"ReplicationGroupAlreadyUnderMigrationFault",
3544
- "httpStatusCode":400,
3545
- "senderFault":true
3546
- },
3547
- "exception":true
3548
- },
3549
- "ReplicationGroupIdList":{
3550
- "type":"list",
3551
- "member":{"shape":"String"},
3552
- "max":20
3553
- },
3554
- "ReplicationGroupList":{
3555
- "type":"list",
3556
- "member":{
3557
- "shape":"ReplicationGroup",
3558
- "locationName":"ReplicationGroup"
3559
- }
3560
- },
3561
- "ReplicationGroupMessage":{
3562
- "type":"structure",
3563
- "members":{
3564
- "Marker":{"shape":"String"},
3565
- "ReplicationGroups":{"shape":"ReplicationGroupList"}
3566
- }
3567
- },
3568
- "ReplicationGroupNotFoundFault":{
3569
- "type":"structure",
3570
- "members":{
3571
- },
3572
- "error":{
3573
- "code":"ReplicationGroupNotFoundFault",
3574
- "httpStatusCode":404,
3575
- "senderFault":true
3576
- },
3577
- "exception":true
3578
- },
3579
- "ReplicationGroupNotUnderMigrationFault":{
3580
- "type":"structure",
3581
- "members":{
3582
- },
3583
- "error":{
3584
- "code":"ReplicationGroupNotUnderMigrationFault",
3585
- "httpStatusCode":400,
3586
- "senderFault":true
3587
- },
3588
- "exception":true
3589
- },
3590
- "ReplicationGroupOutpostArnList":{
3591
- "type":"list",
3592
- "member":{
3593
- "shape":"String",
3594
- "locationName":"ReplicationGroupOutpostArn"
3595
- }
3596
- },
3597
- "ReplicationGroupPendingModifiedValues":{
3598
- "type":"structure",
3599
- "members":{
3600
- "PrimaryClusterId":{"shape":"String"},
3601
- "AutomaticFailoverStatus":{"shape":"PendingAutomaticFailoverStatus"},
3602
- "Resharding":{"shape":"ReshardingStatus"},
3603
- "AuthTokenStatus":{"shape":"AuthTokenUpdateStatus"},
3604
- "UserGroups":{"shape":"UserGroupsUpdateStatus"}
3605
- }
3606
- },
3607
- "ReservedCacheNode":{
3608
- "type":"structure",
3609
- "members":{
3610
- "ReservedCacheNodeId":{"shape":"String"},
3611
- "ReservedCacheNodesOfferingId":{"shape":"String"},
3612
- "CacheNodeType":{"shape":"String"},
3613
- "StartTime":{"shape":"TStamp"},
3614
- "Duration":{"shape":"Integer"},
3615
- "FixedPrice":{"shape":"Double"},
3616
- "UsagePrice":{"shape":"Double"},
3617
- "CacheNodeCount":{"shape":"Integer"},
3618
- "ProductDescription":{"shape":"String"},
3619
- "OfferingType":{"shape":"String"},
3620
- "State":{"shape":"String"},
3621
- "RecurringCharges":{"shape":"RecurringChargeList"},
3622
- "ReservationARN":{"shape":"String"}
3623
- },
3624
- "wrapper":true
3625
- },
3626
- "ReservedCacheNodeAlreadyExistsFault":{
3627
- "type":"structure",
3628
- "members":{
3629
- },
3630
- "error":{
3631
- "code":"ReservedCacheNodeAlreadyExists",
3632
- "httpStatusCode":404,
3633
- "senderFault":true
3634
- },
3635
- "exception":true
3636
- },
3637
- "ReservedCacheNodeList":{
3638
- "type":"list",
3639
- "member":{
3640
- "shape":"ReservedCacheNode",
3641
- "locationName":"ReservedCacheNode"
3642
- }
3643
- },
3644
- "ReservedCacheNodeMessage":{
3645
- "type":"structure",
3646
- "members":{
3647
- "Marker":{"shape":"String"},
3648
- "ReservedCacheNodes":{"shape":"ReservedCacheNodeList"}
3649
- }
3650
- },
3651
- "ReservedCacheNodeNotFoundFault":{
3652
- "type":"structure",
3653
- "members":{
3654
- },
3655
- "error":{
3656
- "code":"ReservedCacheNodeNotFound",
3657
- "httpStatusCode":404,
3658
- "senderFault":true
3659
- },
3660
- "exception":true
3661
- },
3662
- "ReservedCacheNodeQuotaExceededFault":{
3663
- "type":"structure",
3664
- "members":{
3665
- },
3666
- "error":{
3667
- "code":"ReservedCacheNodeQuotaExceeded",
3668
- "httpStatusCode":400,
3669
- "senderFault":true
3670
- },
3671
- "exception":true
3672
- },
3673
- "ReservedCacheNodesOffering":{
3674
- "type":"structure",
3675
- "members":{
3676
- "ReservedCacheNodesOfferingId":{"shape":"String"},
3677
- "CacheNodeType":{"shape":"String"},
3678
- "Duration":{"shape":"Integer"},
3679
- "FixedPrice":{"shape":"Double"},
3680
- "UsagePrice":{"shape":"Double"},
3681
- "ProductDescription":{"shape":"String"},
3682
- "OfferingType":{"shape":"String"},
3683
- "RecurringCharges":{"shape":"RecurringChargeList"}
3684
- },
3685
- "wrapper":true
3686
- },
3687
- "ReservedCacheNodesOfferingList":{
3688
- "type":"list",
3689
- "member":{
3690
- "shape":"ReservedCacheNodesOffering",
3691
- "locationName":"ReservedCacheNodesOffering"
3692
- }
3693
- },
3694
- "ReservedCacheNodesOfferingMessage":{
3695
- "type":"structure",
3696
- "members":{
3697
- "Marker":{"shape":"String"},
3698
- "ReservedCacheNodesOfferings":{"shape":"ReservedCacheNodesOfferingList"}
3699
- }
3700
- },
3701
- "ReservedCacheNodesOfferingNotFoundFault":{
3702
- "type":"structure",
3703
- "members":{
3704
- },
3705
- "error":{
3706
- "code":"ReservedCacheNodesOfferingNotFound",
3707
- "httpStatusCode":404,
3708
- "senderFault":true
3709
- },
3710
- "exception":true
3711
- },
3712
- "ResetCacheParameterGroupMessage":{
3713
- "type":"structure",
3714
- "required":["CacheParameterGroupName"],
3715
- "members":{
3716
- "CacheParameterGroupName":{"shape":"String"},
3717
- "ResetAllParameters":{"shape":"Boolean"},
3718
- "ParameterNameValues":{"shape":"ParameterNameValueList"}
3719
- }
3720
- },
3721
- "ReshardingConfiguration":{
3722
- "type":"structure",
3723
- "members":{
3724
- "NodeGroupId":{"shape":"AllowedNodeGroupId"},
3725
- "PreferredAvailabilityZones":{"shape":"AvailabilityZonesList"}
3726
- }
3727
- },
3728
- "ReshardingConfigurationList":{
3729
- "type":"list",
3730
- "member":{
3731
- "shape":"ReshardingConfiguration",
3732
- "locationName":"ReshardingConfiguration"
3733
- }
3734
- },
3735
- "ReshardingStatus":{
3736
- "type":"structure",
3737
- "members":{
3738
- "SlotMigration":{"shape":"SlotMigration"}
3739
- }
3740
- },
3741
- "RevokeCacheSecurityGroupIngressMessage":{
3742
- "type":"structure",
3743
- "required":[
3744
- "CacheSecurityGroupName",
3745
- "EC2SecurityGroupName",
3746
- "EC2SecurityGroupOwnerId"
3747
- ],
3748
- "members":{
3749
- "CacheSecurityGroupName":{"shape":"String"},
3750
- "EC2SecurityGroupName":{"shape":"String"},
3751
- "EC2SecurityGroupOwnerId":{"shape":"String"}
3752
- }
3753
- },
3754
- "RevokeCacheSecurityGroupIngressResult":{
3755
- "type":"structure",
3756
- "members":{
3757
- "CacheSecurityGroup":{"shape":"CacheSecurityGroup"}
3758
- }
3759
- },
3760
- "SecurityGroupIdsList":{
3761
- "type":"list",
3762
- "member":{
3763
- "shape":"String",
3764
- "locationName":"SecurityGroupId"
3765
- }
3766
- },
3767
- "SecurityGroupMembership":{
3768
- "type":"structure",
3769
- "members":{
3770
- "SecurityGroupId":{"shape":"String"},
3771
- "Status":{"shape":"String"}
3772
- }
3773
- },
3774
- "SecurityGroupMembershipList":{
3775
- "type":"list",
3776
- "member":{"shape":"SecurityGroupMembership"}
3777
- },
3778
- "ServiceLinkedRoleNotFoundFault":{
3779
- "type":"structure",
3780
- "members":{
3781
- },
3782
- "error":{
3783
- "code":"ServiceLinkedRoleNotFoundFault",
3784
- "httpStatusCode":400,
3785
- "senderFault":true
3786
- },
3787
- "exception":true
3788
- },
3789
- "ServiceUpdate":{
3790
- "type":"structure",
3791
- "members":{
3792
- "ServiceUpdateName":{"shape":"String"},
3793
- "ServiceUpdateReleaseDate":{"shape":"TStamp"},
3794
- "ServiceUpdateEndDate":{"shape":"TStamp"},
3795
- "ServiceUpdateSeverity":{"shape":"ServiceUpdateSeverity"},
3796
- "ServiceUpdateRecommendedApplyByDate":{"shape":"TStamp"},
3797
- "ServiceUpdateStatus":{"shape":"ServiceUpdateStatus"},
3798
- "ServiceUpdateDescription":{"shape":"String"},
3799
- "ServiceUpdateType":{"shape":"ServiceUpdateType"},
3800
- "Engine":{"shape":"String"},
3801
- "EngineVersion":{"shape":"String"},
3802
- "AutoUpdateAfterRecommendedApplyByDate":{"shape":"BooleanOptional"},
3803
- "EstimatedUpdateTime":{"shape":"String"}
3804
- }
3805
- },
3806
- "ServiceUpdateList":{
3807
- "type":"list",
3808
- "member":{
3809
- "shape":"ServiceUpdate",
3810
- "locationName":"ServiceUpdate"
3811
- }
3812
- },
3813
- "ServiceUpdateNotFoundFault":{
3814
- "type":"structure",
3815
- "members":{
3816
- },
3817
- "error":{
3818
- "code":"ServiceUpdateNotFoundFault",
3819
- "httpStatusCode":404,
3820
- "senderFault":true
3821
- },
3822
- "exception":true
3823
- },
3824
- "ServiceUpdateSeverity":{
3825
- "type":"string",
3826
- "enum":[
3827
- "critical",
3828
- "important",
3829
- "medium",
3830
- "low"
3831
- ]
3832
- },
3833
- "ServiceUpdateStatus":{
3834
- "type":"string",
3835
- "enum":[
3836
- "available",
3837
- "cancelled",
3838
- "expired"
3839
- ]
3840
- },
3841
- "ServiceUpdateStatusList":{
3842
- "type":"list",
3843
- "member":{"shape":"ServiceUpdateStatus"},
3844
- "max":3
3845
- },
3846
- "ServiceUpdateType":{
3847
- "type":"string",
3848
- "enum":["security-update"]
3849
- },
3850
- "ServiceUpdatesMessage":{
3851
- "type":"structure",
3852
- "members":{
3853
- "Marker":{"shape":"String"},
3854
- "ServiceUpdates":{"shape":"ServiceUpdateList"}
3855
- }
3856
- },
3857
- "SlaMet":{
3858
- "type":"string",
3859
- "enum":[
3860
- "yes",
3861
- "no",
3862
- "n/a"
3863
- ]
3864
- },
3865
- "SlotMigration":{
3866
- "type":"structure",
3867
- "members":{
3868
- "ProgressPercentage":{"shape":"Double"}
3869
- }
3870
- },
3871
- "Snapshot":{
3872
- "type":"structure",
3873
- "members":{
3874
- "SnapshotName":{"shape":"String"},
3875
- "ReplicationGroupId":{"shape":"String"},
3876
- "ReplicationGroupDescription":{"shape":"String"},
3877
- "CacheClusterId":{"shape":"String"},
3878
- "SnapshotStatus":{"shape":"String"},
3879
- "SnapshotSource":{"shape":"String"},
3880
- "CacheNodeType":{"shape":"String"},
3881
- "Engine":{"shape":"String"},
3882
- "EngineVersion":{"shape":"String"},
3883
- "NumCacheNodes":{"shape":"IntegerOptional"},
3884
- "PreferredAvailabilityZone":{"shape":"String"},
3885
- "PreferredOutpostArn":{"shape":"String"},
3886
- "CacheClusterCreateTime":{"shape":"TStamp"},
3887
- "PreferredMaintenanceWindow":{"shape":"String"},
3888
- "TopicArn":{"shape":"String"},
3889
- "Port":{"shape":"IntegerOptional"},
3890
- "CacheParameterGroupName":{"shape":"String"},
3891
- "CacheSubnetGroupName":{"shape":"String"},
3892
- "VpcId":{"shape":"String"},
3893
- "AutoMinorVersionUpgrade":{"shape":"Boolean"},
3894
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
3895
- "SnapshotWindow":{"shape":"String"},
3896
- "NumNodeGroups":{"shape":"IntegerOptional"},
3897
- "AutomaticFailover":{"shape":"AutomaticFailoverStatus"},
3898
- "NodeSnapshots":{"shape":"NodeSnapshotList"},
3899
- "KmsKeyId":{"shape":"String"},
3900
- "ARN":{"shape":"String"}
3901
- },
3902
- "wrapper":true
3903
- },
3904
- "SnapshotAlreadyExistsFault":{
3905
- "type":"structure",
3906
- "members":{
3907
- },
3908
- "error":{
3909
- "code":"SnapshotAlreadyExistsFault",
3910
- "httpStatusCode":400,
3911
- "senderFault":true
3912
- },
3913
- "exception":true
3914
- },
3915
- "SnapshotArnsList":{
3916
- "type":"list",
3917
- "member":{
3918
- "shape":"String",
3919
- "locationName":"SnapshotArn"
3920
- }
3921
- },
3922
- "SnapshotFeatureNotSupportedFault":{
3923
- "type":"structure",
3924
- "members":{
3925
- },
3926
- "error":{
3927
- "code":"SnapshotFeatureNotSupportedFault",
3928
- "httpStatusCode":400,
3929
- "senderFault":true
3930
- },
3931
- "exception":true
3932
- },
3933
- "SnapshotList":{
3934
- "type":"list",
3935
- "member":{
3936
- "shape":"Snapshot",
3937
- "locationName":"Snapshot"
3938
- }
3939
- },
3940
- "SnapshotNotFoundFault":{
3941
- "type":"structure",
3942
- "members":{
3943
- },
3944
- "error":{
3945
- "code":"SnapshotNotFoundFault",
3946
- "httpStatusCode":404,
3947
- "senderFault":true
3948
- },
3949
- "exception":true
3950
- },
3951
- "SnapshotQuotaExceededFault":{
3952
- "type":"structure",
3953
- "members":{
3954
- },
3955
- "error":{
3956
- "code":"SnapshotQuotaExceededFault",
3957
- "httpStatusCode":400,
3958
- "senderFault":true
3959
- },
3960
- "exception":true
3961
- },
3962
- "SourceType":{
3963
- "type":"string",
3964
- "enum":[
3965
- "cache-cluster",
3966
- "cache-parameter-group",
3967
- "cache-security-group",
3968
- "cache-subnet-group",
3969
- "replication-group",
3970
- "user",
3971
- "user-group"
3972
- ]
3973
- },
3974
- "StartMigrationMessage":{
3975
- "type":"structure",
3976
- "required":[
3977
- "ReplicationGroupId",
3978
- "CustomerNodeEndpointList"
3979
- ],
3980
- "members":{
3981
- "ReplicationGroupId":{"shape":"String"},
3982
- "CustomerNodeEndpointList":{"shape":"CustomerNodeEndpointList"}
3983
- }
3984
- },
3985
- "StartMigrationResponse":{
3986
- "type":"structure",
3987
- "members":{
3988
- "ReplicationGroup":{"shape":"ReplicationGroup"}
3989
- }
3990
- },
3991
- "String":{"type":"string"},
3992
- "Subnet":{
3993
- "type":"structure",
3994
- "members":{
3995
- "SubnetIdentifier":{"shape":"String"},
3996
- "SubnetAvailabilityZone":{"shape":"AvailabilityZone"},
3997
- "SubnetOutpost":{"shape":"SubnetOutpost"}
3998
- }
3999
- },
4000
- "SubnetIdentifierList":{
4001
- "type":"list",
4002
- "member":{
4003
- "shape":"String",
4004
- "locationName":"SubnetIdentifier"
4005
- }
4006
- },
4007
- "SubnetInUse":{
4008
- "type":"structure",
4009
- "members":{
4010
- },
4011
- "error":{
4012
- "code":"SubnetInUse",
4013
- "httpStatusCode":400,
4014
- "senderFault":true
4015
- },
4016
- "exception":true
4017
- },
4018
- "SubnetList":{
4019
- "type":"list",
4020
- "member":{
4021
- "shape":"Subnet",
4022
- "locationName":"Subnet"
4023
- }
4024
- },
4025
- "SubnetNotAllowedFault":{
4026
- "type":"structure",
4027
- "members":{
4028
- },
4029
- "error":{
4030
- "code":"SubnetNotAllowedFault",
4031
- "httpStatusCode":400,
4032
- "senderFault":true
4033
- },
4034
- "exception":true
4035
- },
4036
- "SubnetOutpost":{
4037
- "type":"structure",
4038
- "members":{
4039
- "SubnetOutpostArn":{"shape":"String"}
4040
- }
4041
- },
4042
- "TStamp":{"type":"timestamp"},
4043
- "Tag":{
4044
- "type":"structure",
4045
- "members":{
4046
- "Key":{"shape":"String"},
4047
- "Value":{"shape":"String"}
4048
- }
4049
- },
4050
- "TagList":{
4051
- "type":"list",
4052
- "member":{
4053
- "shape":"Tag",
4054
- "locationName":"Tag"
4055
- }
4056
- },
4057
- "TagListMessage":{
4058
- "type":"structure",
4059
- "members":{
4060
- "TagList":{"shape":"TagList"}
4061
- }
4062
- },
4063
- "TagNotFoundFault":{
4064
- "type":"structure",
4065
- "members":{
4066
- },
4067
- "error":{
4068
- "code":"TagNotFound",
4069
- "httpStatusCode":404,
4070
- "senderFault":true
4071
- },
4072
- "exception":true
4073
- },
4074
- "TagQuotaPerResourceExceeded":{
4075
- "type":"structure",
4076
- "members":{
4077
- },
4078
- "error":{
4079
- "code":"TagQuotaPerResourceExceeded",
4080
- "httpStatusCode":400,
4081
- "senderFault":true
4082
- },
4083
- "exception":true
4084
- },
4085
- "TestFailoverMessage":{
4086
- "type":"structure",
4087
- "required":[
4088
- "ReplicationGroupId",
4089
- "NodeGroupId"
4090
- ],
4091
- "members":{
4092
- "ReplicationGroupId":{"shape":"String"},
4093
- "NodeGroupId":{"shape":"AllowedNodeGroupId"}
4094
- }
4095
- },
4096
- "TestFailoverNotAvailableFault":{
4097
- "type":"structure",
4098
- "members":{
4099
- },
4100
- "error":{
4101
- "code":"TestFailoverNotAvailableFault",
4102
- "httpStatusCode":400,
4103
- "senderFault":true
4104
- },
4105
- "exception":true
4106
- },
4107
- "TestFailoverResult":{
4108
- "type":"structure",
4109
- "members":{
4110
- "ReplicationGroup":{"shape":"ReplicationGroup"}
4111
- }
4112
- },
4113
- "TimeRangeFilter":{
4114
- "type":"structure",
4115
- "members":{
4116
- "StartTime":{"shape":"TStamp"},
4117
- "EndTime":{"shape":"TStamp"}
4118
- }
4119
- },
4120
- "UGReplicationGroupIdList":{
4121
- "type":"list",
4122
- "member":{"shape":"String"}
4123
- },
4124
- "UnprocessedUpdateAction":{
4125
- "type":"structure",
4126
- "members":{
4127
- "ReplicationGroupId":{"shape":"String"},
4128
- "CacheClusterId":{"shape":"String"},
4129
- "ServiceUpdateName":{"shape":"String"},
4130
- "ErrorType":{"shape":"String"},
4131
- "ErrorMessage":{"shape":"String"}
4132
- }
4133
- },
4134
- "UnprocessedUpdateActionList":{
4135
- "type":"list",
4136
- "member":{
4137
- "shape":"UnprocessedUpdateAction",
4138
- "locationName":"UnprocessedUpdateAction"
4139
- }
4140
- },
4141
- "UpdateAction":{
4142
- "type":"structure",
4143
- "members":{
4144
- "ReplicationGroupId":{"shape":"String"},
4145
- "CacheClusterId":{"shape":"String"},
4146
- "ServiceUpdateName":{"shape":"String"},
4147
- "ServiceUpdateReleaseDate":{"shape":"TStamp"},
4148
- "ServiceUpdateSeverity":{"shape":"ServiceUpdateSeverity"},
4149
- "ServiceUpdateStatus":{"shape":"ServiceUpdateStatus"},
4150
- "ServiceUpdateRecommendedApplyByDate":{"shape":"TStamp"},
4151
- "ServiceUpdateType":{"shape":"ServiceUpdateType"},
4152
- "UpdateActionAvailableDate":{"shape":"TStamp"},
4153
- "UpdateActionStatus":{"shape":"UpdateActionStatus"},
4154
- "NodesUpdated":{"shape":"String"},
4155
- "UpdateActionStatusModifiedDate":{"shape":"TStamp"},
4156
- "SlaMet":{"shape":"SlaMet"},
4157
- "NodeGroupUpdateStatus":{"shape":"NodeGroupUpdateStatusList"},
4158
- "CacheNodeUpdateStatus":{"shape":"CacheNodeUpdateStatusList"},
4159
- "EstimatedUpdateTime":{"shape":"String"},
4160
- "Engine":{"shape":"String"}
4161
- }
4162
- },
4163
- "UpdateActionList":{
4164
- "type":"list",
4165
- "member":{
4166
- "shape":"UpdateAction",
4167
- "locationName":"UpdateAction"
4168
- }
4169
- },
4170
- "UpdateActionResultsMessage":{
4171
- "type":"structure",
4172
- "members":{
4173
- "ProcessedUpdateActions":{"shape":"ProcessedUpdateActionList"},
4174
- "UnprocessedUpdateActions":{"shape":"UnprocessedUpdateActionList"}
4175
- }
4176
- },
4177
- "UpdateActionStatus":{
4178
- "type":"string",
4179
- "enum":[
4180
- "not-applied",
4181
- "waiting-to-start",
4182
- "in-progress",
4183
- "stopping",
4184
- "stopped",
4185
- "complete",
4186
- "scheduling",
4187
- "scheduled",
4188
- "not-applicable"
4189
- ]
4190
- },
4191
- "UpdateActionStatusList":{
4192
- "type":"list",
4193
- "member":{"shape":"UpdateActionStatus"},
4194
- "max":9
4195
- },
4196
- "UpdateActionsMessage":{
4197
- "type":"structure",
4198
- "members":{
4199
- "Marker":{"shape":"String"},
4200
- "UpdateActions":{"shape":"UpdateActionList"}
4201
- }
4202
- },
4203
- "User":{
4204
- "type":"structure",
4205
- "members":{
4206
- "UserId":{"shape":"String"},
4207
- "UserName":{"shape":"String"},
4208
- "Status":{"shape":"String"},
4209
- "Engine":{"shape":"EngineType"},
4210
- "AccessString":{"shape":"String"},
4211
- "UserGroupIds":{"shape":"UserGroupIdList"},
4212
- "Authentication":{"shape":"Authentication"},
4213
- "ARN":{"shape":"String"}
4214
- }
4215
- },
4216
- "UserAlreadyExistsFault":{
4217
- "type":"structure",
4218
- "members":{
4219
- },
4220
- "error":{
4221
- "code":"UserAlreadyExists",
4222
- "httpStatusCode":400,
4223
- "senderFault":true
4224
- },
4225
- "exception":true
4226
- },
4227
- "UserGroup":{
4228
- "type":"structure",
4229
- "members":{
4230
- "UserGroupId":{"shape":"String"},
4231
- "Status":{"shape":"String"},
4232
- "Engine":{"shape":"EngineType"},
4233
- "UserIds":{"shape":"UserIdList"},
4234
- "PendingChanges":{"shape":"UserGroupPendingChanges"},
4235
- "ReplicationGroups":{"shape":"UGReplicationGroupIdList"},
4236
- "ARN":{"shape":"String"}
4237
- }
4238
- },
4239
- "UserGroupAlreadyExistsFault":{
4240
- "type":"structure",
4241
- "members":{
4242
- },
4243
- "error":{
4244
- "code":"UserGroupAlreadyExists",
4245
- "httpStatusCode":400,
4246
- "senderFault":true
4247
- },
4248
- "exception":true
4249
- },
4250
- "UserGroupId":{
4251
- "type":"string",
4252
- "min":1,
4253
- "pattern":"[a-zA-Z][a-zA-Z0-9\\-]*"
4254
- },
4255
- "UserGroupIdList":{
4256
- "type":"list",
4257
- "member":{"shape":"UserGroupId"}
4258
- },
4259
- "UserGroupIdListInput":{
4260
- "type":"list",
4261
- "member":{"shape":"UserGroupId"},
4262
- "min":1
4263
- },
4264
- "UserGroupList":{
4265
- "type":"list",
4266
- "member":{"shape":"UserGroup"}
4267
- },
4268
- "UserGroupNotFoundFault":{
4269
- "type":"structure",
4270
- "members":{
4271
- },
4272
- "error":{
4273
- "code":"UserGroupNotFound",
4274
- "httpStatusCode":404,
4275
- "senderFault":true
4276
- },
4277
- "exception":true
4278
- },
4279
- "UserGroupPendingChanges":{
4280
- "type":"structure",
4281
- "members":{
4282
- "UserIdsToRemove":{"shape":"UserIdList"},
4283
- "UserIdsToAdd":{"shape":"UserIdList"}
4284
- }
4285
- },
4286
- "UserGroupQuotaExceededFault":{
4287
- "type":"structure",
4288
- "members":{
4289
- },
4290
- "error":{
4291
- "code":"UserGroupQuotaExceeded",
4292
- "httpStatusCode":400,
4293
- "senderFault":true
4294
- },
4295
- "exception":true
4296
- },
4297
- "UserGroupsUpdateStatus":{
4298
- "type":"structure",
4299
- "members":{
4300
- "UserGroupIdsToAdd":{"shape":"UserGroupIdList"},
4301
- "UserGroupIdsToRemove":{"shape":"UserGroupIdList"}
4302
- }
4303
- },
4304
- "UserId":{
4305
- "type":"string",
4306
- "min":1,
4307
- "pattern":"[a-zA-Z][a-zA-Z0-9\\-]*"
4308
- },
4309
- "UserIdList":{
4310
- "type":"list",
4311
- "member":{"shape":"UserId"}
4312
- },
4313
- "UserIdListInput":{
4314
- "type":"list",
4315
- "member":{"shape":"UserId"},
4316
- "min":1
4317
- },
4318
- "UserList":{
4319
- "type":"list",
4320
- "member":{"shape":"User"}
4321
- },
4322
- "UserName":{
4323
- "type":"string",
4324
- "min":1
4325
- },
4326
- "UserNotFoundFault":{
4327
- "type":"structure",
4328
- "members":{
4329
- },
4330
- "error":{
4331
- "code":"UserNotFound",
4332
- "httpStatusCode":404,
4333
- "senderFault":true
4334
- },
4335
- "exception":true
4336
- },
4337
- "UserQuotaExceededFault":{
4338
- "type":"structure",
4339
- "members":{
4340
- },
4341
- "error":{
4342
- "code":"UserQuotaExceeded",
4343
- "httpStatusCode":400,
4344
- "senderFault":true
4345
- },
4346
- "exception":true
4347
- }
4348
- }
4349
- }