aws-sdk-core 2.11.408 → 3.77.0

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