aws-sdk-core 2.3.23 → 3.89.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (496) hide show
  1. checksums.yaml +5 -5
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +106 -404
  5. data/lib/aws-sdk-core/arn.rb +77 -0
  6. data/lib/aws-sdk-core/arn_parser.rb +38 -0
  7. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  8. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  9. data/lib/aws-sdk-core/binary.rb +6 -0
  10. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  11. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  12. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  13. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  14. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  15. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  16. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  17. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  18. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  19. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  20. data/lib/aws-sdk-core/credential_provider_chain.rb +56 -6
  21. data/lib/aws-sdk-core/deprecations.rb +16 -10
  22. data/lib/aws-sdk-core/ecs_credentials.rb +14 -10
  23. data/lib/aws-sdk-core/endpoint_cache.rb +191 -0
  24. data/lib/aws-sdk-core/errors.rb +221 -11
  25. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  26. data/lib/aws-sdk-core/ini_parser.rb +41 -0
  27. data/lib/aws-sdk-core/instance_profile_credentials.rb +133 -42
  28. data/lib/aws-sdk-core/json.rb +9 -10
  29. data/lib/aws-sdk-core/json/builder.rb +4 -2
  30. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  31. data/lib/aws-sdk-core/json/handler.rb +22 -3
  32. data/lib/aws-sdk-core/json/parser.rb +1 -1
  33. data/lib/aws-sdk-core/log/formatter.rb +7 -1
  34. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  35. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  36. data/lib/aws-sdk-core/pager.rb +30 -25
  37. data/lib/aws-sdk-core/param_converter.rb +3 -3
  38. data/lib/aws-sdk-core/param_validator.rb +60 -26
  39. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  40. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  41. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  42. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  43. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  44. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  45. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  46. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +160 -0
  47. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  48. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  49. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  50. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +41 -0
  51. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  52. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  53. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  54. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  55. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  56. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  57. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  58. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  59. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  60. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  61. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +48 -19
  62. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  63. data/lib/aws-sdk-core/plugins/retry_errors.rb +102 -24
  64. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  65. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  66. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  67. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  68. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -10
  69. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  70. data/lib/aws-sdk-core/query.rb +5 -0
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  72. data/lib/aws-sdk-core/query/handler.rb +20 -16
  73. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  75. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  76. data/lib/aws-sdk-core/rest.rb +10 -0
  77. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  78. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  79. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  80. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  81. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  82. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  83. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  84. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  85. data/lib/aws-sdk-core/shared_config.rb +451 -0
  86. data/lib/aws-sdk-core/shared_credentials.rb +16 -53
  87. data/lib/aws-sdk-core/structure.rb +22 -13
  88. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  89. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  90. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  91. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  92. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  93. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  94. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  95. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  96. data/lib/aws-sdk-core/util.rb +66 -0
  97. data/lib/aws-sdk-core/waiters.rb +3 -0
  98. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  99. data/lib/aws-sdk-core/waiters/waiter.rb +3 -2
  100. data/lib/aws-sdk-core/xml.rb +9 -0
  101. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  102. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  103. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  104. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  106. data/lib/aws-sdk-sts.rb +45 -0
  107. data/lib/aws-sdk-sts/client.rb +2156 -0
  108. data/lib/aws-sdk-sts/client_api.rb +336 -0
  109. data/lib/aws-sdk-sts/customizations.rb +2 -0
  110. data/lib/aws-sdk-sts/errors.rb +142 -0
  111. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  112. data/lib/aws-sdk-sts/presigner.rb +67 -0
  113. data/lib/aws-sdk-sts/resource.rb +23 -0
  114. data/lib/aws-sdk-sts/types.rb +1504 -0
  115. data/lib/seahorse.rb +60 -60
  116. data/lib/seahorse/client/async_base.rb +50 -0
  117. data/lib/seahorse/client/async_response.rb +62 -0
  118. data/lib/seahorse/client/base.rb +5 -9
  119. data/lib/seahorse/client/configuration.rb +10 -2
  120. data/lib/seahorse/client/events.rb +1 -1
  121. data/lib/seahorse/client/h2/connection.rb +246 -0
  122. data/lib/seahorse/client/h2/handler.rb +151 -0
  123. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  124. data/lib/seahorse/client/http/async_response.rb +42 -0
  125. data/lib/seahorse/client/http/response.rb +13 -8
  126. data/lib/seahorse/client/logging/formatter.rb +7 -1
  127. data/lib/seahorse/client/logging/handler.rb +2 -0
  128. data/lib/seahorse/client/net_http/connection_pool.rb +46 -28
  129. data/lib/seahorse/client/net_http/handler.rb +17 -3
  130. data/lib/seahorse/client/net_http/patches.rb +9 -1
  131. data/lib/seahorse/client/networking_error.rb +28 -0
  132. data/lib/seahorse/client/plugin.rb +67 -6
  133. data/lib/seahorse/client/plugin_list.rb +3 -1
  134. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  135. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  136. data/lib/seahorse/client/plugins/h2.rb +64 -0
  137. data/lib/seahorse/client/plugins/logging.rb +17 -19
  138. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  139. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  140. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  141. data/lib/seahorse/client/request_context.rb +5 -0
  142. data/lib/seahorse/client/response.rb +9 -20
  143. data/lib/seahorse/model/api.rb +37 -0
  144. data/lib/seahorse/model/authorizer.rb +21 -0
  145. data/lib/seahorse/model/operation.rb +20 -0
  146. data/lib/seahorse/model/shapes.rb +44 -2
  147. data/lib/seahorse/util.rb +1 -21
  148. metadata +127 -360
  149. data/apis/acm/2015-12-08/api-2.json +0 -495
  150. data/apis/acm/2015-12-08/examples-1.json +0 -5
  151. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  152. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  153. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  154. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  155. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  156. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  157. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  158. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  159. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  160. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  161. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  162. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  163. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  164. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  165. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  166. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  167. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  168. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  169. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  170. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  171. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  172. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  173. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  174. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  175. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  176. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  177. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  178. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  179. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  180. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  181. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  182. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  183. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  184. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  185. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  186. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  187. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  188. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  189. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  190. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  191. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  192. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  193. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  194. data/apis/config/2014-11-12/api-2.json +0 -1303
  195. data/apis/config/2014-11-12/examples-1.json +0 -5
  196. data/apis/config/2014-11-12/paginators-1.json +0 -10
  197. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  198. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  199. data/apis/devicefarm/2015-06-23/api-2.json +0 -1819
  200. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  201. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  202. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  203. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  204. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  205. data/apis/discovery/2015-11-01/api-2.json +0 -556
  206. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  207. data/apis/dms/2016-01-01/api-2.json +0 -1469
  208. data/apis/dms/2016-01-01/examples-1.json +0 -5
  209. data/apis/ds/2015-04-16/api-2.json +0 -1674
  210. data/apis/ds/2015-04-16/examples-1.json +0 -5
  211. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  212. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  213. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  214. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  215. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  216. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  217. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  218. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  219. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  220. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  221. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  222. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  223. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  224. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  225. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  226. data/apis/ecr/2015-09-21/api-2.json +0 -849
  227. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  228. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  229. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  230. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  231. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  232. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  233. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  234. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  235. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  236. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  237. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  238. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  239. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  240. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  241. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  242. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  243. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  244. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  245. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  246. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  247. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  248. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  249. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  250. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  251. data/apis/email/2010-12-01/api-2.json +0 -1791
  252. data/apis/email/2010-12-01/examples-1.json +0 -5
  253. data/apis/email/2010-12-01/paginators-1.json +0 -13
  254. data/apis/email/2010-12-01/waiters-2.json +0 -18
  255. data/apis/es/2015-01-01/api-2.json +0 -764
  256. data/apis/events/2015-10-07/api-2.json +0 -643
  257. data/apis/events/2015-10-07/examples-1.json +0 -5
  258. data/apis/firehose/2015-08-04/api-2.json +0 -719
  259. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  260. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  261. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  262. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  263. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  264. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  265. data/apis/iam/2010-05-08/api-2.json +0 -4514
  266. data/apis/iam/2010-05-08/examples-1.json +0 -5
  267. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  268. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  269. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  270. data/apis/importexport/2010-06-01/api-2.json +0 -666
  271. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  272. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  273. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  274. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  275. data/apis/iot/2015-05-28/api-2.json +0 -3800
  276. data/apis/iot/2015-05-28/examples-1.json +0 -5
  277. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  278. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  279. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  280. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  281. data/apis/kms/2014-11-01/api-2.json +0 -1209
  282. data/apis/kms/2014-11-01/examples-1.json +0 -5
  283. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  284. data/apis/lambda/2014-11-11/api-2.json +0 -667
  285. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  286. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  287. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  288. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  289. data/apis/logs/2014-03-28/api-2.json +0 -1138
  290. data/apis/logs/2014-03-28/examples-1.json +0 -5
  291. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  292. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  293. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  294. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  295. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  296. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  297. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  298. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  299. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  300. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  301. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  302. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  303. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  304. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  305. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  306. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  307. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  308. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  309. data/apis/rds/2014-10-31/api-2.json +0 -4757
  310. data/apis/rds/2014-10-31/examples-1.json +0 -5
  311. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  312. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  313. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  314. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  315. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  316. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  317. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  318. data/apis/route53/2013-04-01/api-2.json +0 -3245
  319. data/apis/route53/2013-04-01/examples-1.json +0 -5
  320. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  321. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  322. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  323. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  324. data/apis/s3/2006-03-01/api-2.json +0 -4517
  325. data/apis/s3/2006-03-01/examples-1.json +0 -5
  326. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  327. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  328. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  329. data/apis/sdb/2009-04-15/api-2.json +0 -954
  330. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  331. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  332. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  333. data/apis/sns/2010-03-31/api-2.json +0 -1139
  334. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  335. data/apis/sns/2010-03-31/resources-1.json +0 -327
  336. data/apis/sqs/2012-11-05/api-2.json +0 -950
  337. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  338. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  339. data/apis/ssm/2014-11-06/api-2.json +0 -1742
  340. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  341. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  342. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  343. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  344. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  345. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  346. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  347. data/apis/sts/2011-06-15/api-2.json +0 -521
  348. data/apis/sts/2011-06-15/examples-1.json +0 -5
  349. data/apis/support/2013-04-15/api-2.json +0 -869
  350. data/apis/support/2013-04-15/paginators-1.json +0 -25
  351. data/apis/swf/2012-01-25/api-2.json +0 -2838
  352. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  353. data/apis/waf/2015-08-24/api-2.json +0 -1959
  354. data/apis/waf/2015-08-24/examples-1.json +0 -5
  355. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  356. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  357. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  358. data/bin/aws.rb +0 -180
  359. data/endpoints.json +0 -1460
  360. data/lib/aws-sdk-core/acm.rb +0 -6
  361. data/lib/aws-sdk-core/api/builder.rb +0 -106
  362. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  363. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  364. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  365. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  366. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  367. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  368. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  369. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  370. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  371. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  372. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  373. data/lib/aws-sdk-core/apigateway.rb +0 -6
  374. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  375. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  376. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  377. data/lib/aws-sdk-core/checksums.rb +0 -51
  378. data/lib/aws-sdk-core/client.rb +0 -67
  379. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  380. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  381. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  382. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  383. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  384. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  385. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  386. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  387. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  388. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  389. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  390. data/lib/aws-sdk-core/codecommit.rb +0 -6
  391. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  392. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  393. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  394. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  395. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  396. data/lib/aws-sdk-core/configservice.rb +0 -6
  397. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  398. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  399. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  400. data/lib/aws-sdk-core/directconnect.rb +0 -6
  401. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  402. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  403. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  404. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  405. data/lib/aws-sdk-core/ec2.rb +0 -8
  406. data/lib/aws-sdk-core/ecr.rb +0 -5
  407. data/lib/aws-sdk-core/ecs.rb +0 -7
  408. data/lib/aws-sdk-core/efs.rb +0 -5
  409. data/lib/aws-sdk-core/elasticache.rb +0 -7
  410. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  411. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  412. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  413. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  414. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  415. data/lib/aws-sdk-core/emr.rb +0 -7
  416. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  417. data/lib/aws-sdk-core/firehose.rb +0 -4
  418. data/lib/aws-sdk-core/gamelift.rb +0 -5
  419. data/lib/aws-sdk-core/glacier.rb +0 -7
  420. data/lib/aws-sdk-core/iam.rb +0 -8
  421. data/lib/aws-sdk-core/importexport.rb +0 -5
  422. data/lib/aws-sdk-core/inspector.rb +0 -5
  423. data/lib/aws-sdk-core/iot.rb +0 -5
  424. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  425. data/lib/aws-sdk-core/kinesis.rb +0 -7
  426. data/lib/aws-sdk-core/kms.rb +0 -6
  427. data/lib/aws-sdk-core/lambda.rb +0 -6
  428. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  429. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  430. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  431. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  432. data/lib/aws-sdk-core/opsworks.rb +0 -8
  433. data/lib/aws-sdk-core/partitions.rb +0 -174
  434. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  435. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  436. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  437. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  438. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  439. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  440. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  441. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  442. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  443. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  444. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  445. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  446. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  447. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  448. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  449. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  450. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  451. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  452. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  453. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  454. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  455. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  456. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  457. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  458. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  459. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  460. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  461. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  462. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  463. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  464. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  465. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  466. data/lib/aws-sdk-core/rds.rb +0 -8
  467. data/lib/aws-sdk-core/redshift.rb +0 -7
  468. data/lib/aws-sdk-core/route53.rb +0 -7
  469. data/lib/aws-sdk-core/route53domains.rb +0 -5
  470. data/lib/aws-sdk-core/s3.rb +0 -26
  471. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  472. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  473. data/lib/aws-sdk-core/service.rb +0 -4
  474. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  475. data/lib/aws-sdk-core/ses.rb +0 -7
  476. data/lib/aws-sdk-core/signers/base.rb +0 -31
  477. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  478. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  479. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  480. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  481. data/lib/aws-sdk-core/simpledb.rb +0 -5
  482. data/lib/aws-sdk-core/sns.rb +0 -6
  483. data/lib/aws-sdk-core/sqs.rb +0 -6
  484. data/lib/aws-sdk-core/ssm.rb +0 -6
  485. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  486. data/lib/aws-sdk-core/sts.rb +0 -5
  487. data/lib/aws-sdk-core/support.rb +0 -5
  488. data/lib/aws-sdk-core/swf.rb +0 -5
  489. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  490. data/lib/aws-sdk-core/version.rb +0 -3
  491. data/lib/aws-sdk-core/waf.rb +0 -5
  492. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  493. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  494. data/lib/aws-sdk-core/workspaces.rb +0 -6
  495. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  496. data/service-models.json +0 -285
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,40 +0,0 @@
1
- {
2
- "pagination": {
3
- "ListClusters": {
4
- "input_token": "nextToken",
5
- "output_token": "nextToken",
6
- "limit_key": "maxResults",
7
- "result_key": "clusterArns"
8
- },
9
- "ListContainerInstances": {
10
- "input_token": "nextToken",
11
- "output_token": "nextToken",
12
- "limit_key": "maxResults",
13
- "result_key": "containerInstanceArns"
14
- },
15
- "ListTaskDefinitions": {
16
- "input_token": "nextToken",
17
- "output_token": "nextToken",
18
- "limit_key": "maxResults",
19
- "result_key": "taskDefinitionArns"
20
- },
21
- "ListTaskDefinitionFamilies": {
22
- "input_token": "nextToken",
23
- "output_token": "nextToken",
24
- "limit_key": "maxResults",
25
- "result_key": "families"
26
- },
27
- "ListTasks": {
28
- "input_token": "nextToken",
29
- "output_token": "nextToken",
30
- "limit_key": "maxResults",
31
- "result_key": "taskArns"
32
- },
33
- "ListServices": {
34
- "input_token": "nextToken",
35
- "output_token": "nextToken",
36
- "limit_key": "maxResults",
37
- "result_key": "serviceArns"
38
- }
39
- }
40
- }
@@ -1,93 +0,0 @@
1
- {
2
- "version": 2,
3
- "waiters": {
4
- "TasksRunning": {
5
- "delay": 6,
6
- "operation": "DescribeTasks",
7
- "maxAttempts": 100,
8
- "acceptors": [
9
- {
10
- "expected": "STOPPED",
11
- "matcher": "pathAny",
12
- "state": "failure",
13
- "argument": "tasks[].lastStatus"
14
- },
15
- {
16
- "expected": "MISSING",
17
- "matcher": "pathAny",
18
- "state": "failure",
19
- "argument": "failures[].reason"
20
- },
21
- {
22
- "expected": "RUNNING",
23
- "matcher": "pathAll",
24
- "state": "success",
25
- "argument": "tasks[].lastStatus"
26
- }
27
- ]
28
- },
29
- "TasksStopped": {
30
- "delay": 6,
31
- "operation": "DescribeTasks",
32
- "maxAttempts": 100,
33
- "acceptors": [
34
- {
35
- "expected": "STOPPED",
36
- "matcher": "pathAll",
37
- "state": "success",
38
- "argument": "tasks[].lastStatus"
39
- }
40
- ]
41
- },
42
- "ServicesStable": {
43
- "delay": 15,
44
- "operation": "DescribeServices",
45
- "maxAttempts": 40,
46
- "acceptors": [
47
- {
48
- "expected": "MISSING",
49
- "matcher": "pathAny",
50
- "state": "failure",
51
- "argument": "failures[].reason"
52
- },
53
- {
54
- "expected": "DRAINING",
55
- "matcher": "pathAny",
56
- "state": "failure",
57
- "argument": "services[].status"
58
- },
59
- {
60
- "expected": "INACTIVE",
61
- "matcher": "pathAny",
62
- "state": "failure",
63
- "argument": "services[].status"
64
- },
65
- {
66
- "expected": true,
67
- "matcher": "path",
68
- "state": "success",
69
- "argument": "services | [@[?length(deployments)!=`1`], @[?desiredCount!=runningCount]][] | length(@) == `0`"
70
- }
71
- ]
72
- },
73
- "ServicesInactive": {
74
- "delay": 15,
75
- "operation": "DescribeServices",
76
- "maxAttempts": 40,
77
- "acceptors": [
78
- {
79
- "expected": "MISSING",
80
- "matcher": "pathAny",
81
- "state": "failure",
82
- "argument": "failures[].reason"
83
- },
84
- {
85
- "expected": "INACTIVE",
86
- "matcher": "pathAny",
87
- "state": "success",
88
- "argument": "services[].status"
89
- }
90
- ]
91
- }
92
- }
93
- }
@@ -1,2426 +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
- "signatureVersion":"v4",
9
- "xmlNamespace":"http://elasticache.amazonaws.com/doc/2015-02-02/"
10
- },
11
- "operations":{
12
- "AddTagsToResource":{
13
- "name":"AddTagsToResource",
14
- "http":{
15
- "method":"POST",
16
- "requestUri":"/"
17
- },
18
- "input":{"shape":"AddTagsToResourceMessage"},
19
- "output":{
20
- "shape":"TagListMessage",
21
- "resultWrapper":"AddTagsToResourceResult"
22
- },
23
- "errors":[
24
- {"shape":"CacheClusterNotFoundFault"},
25
- {"shape":"SnapshotNotFoundFault"},
26
- {"shape":"TagQuotaPerResourceExceeded"},
27
- {"shape":"InvalidARNFault"}
28
- ]
29
- },
30
- "AuthorizeCacheSecurityGroupIngress":{
31
- "name":"AuthorizeCacheSecurityGroupIngress",
32
- "http":{
33
- "method":"POST",
34
- "requestUri":"/"
35
- },
36
- "input":{"shape":"AuthorizeCacheSecurityGroupIngressMessage"},
37
- "output":{
38
- "shape":"AuthorizeCacheSecurityGroupIngressResult",
39
- "resultWrapper":"AuthorizeCacheSecurityGroupIngressResult"
40
- },
41
- "errors":[
42
- {"shape":"CacheSecurityGroupNotFoundFault"},
43
- {"shape":"InvalidCacheSecurityGroupStateFault"},
44
- {"shape":"AuthorizationAlreadyExistsFault"},
45
- {"shape":"InvalidParameterValueException"},
46
- {"shape":"InvalidParameterCombinationException"}
47
- ]
48
- },
49
- "CopySnapshot":{
50
- "name":"CopySnapshot",
51
- "http":{
52
- "method":"POST",
53
- "requestUri":"/"
54
- },
55
- "input":{"shape":"CopySnapshotMessage"},
56
- "output":{
57
- "shape":"CopySnapshotResult",
58
- "resultWrapper":"CopySnapshotResult"
59
- },
60
- "errors":[
61
- {"shape":"SnapshotAlreadyExistsFault"},
62
- {"shape":"SnapshotNotFoundFault"},
63
- {"shape":"SnapshotQuotaExceededFault"},
64
- {"shape":"InvalidSnapshotStateFault"},
65
- {"shape":"InvalidParameterValueException"},
66
- {"shape":"InvalidParameterCombinationException"}
67
- ]
68
- },
69
- "CreateCacheCluster":{
70
- "name":"CreateCacheCluster",
71
- "http":{
72
- "method":"POST",
73
- "requestUri":"/"
74
- },
75
- "input":{"shape":"CreateCacheClusterMessage"},
76
- "output":{
77
- "shape":"CreateCacheClusterResult",
78
- "resultWrapper":"CreateCacheClusterResult"
79
- },
80
- "errors":[
81
- {"shape":"ReplicationGroupNotFoundFault"},
82
- {"shape":"InvalidReplicationGroupStateFault"},
83
- {"shape":"CacheClusterAlreadyExistsFault"},
84
- {"shape":"InsufficientCacheClusterCapacityFault"},
85
- {"shape":"CacheSecurityGroupNotFoundFault"},
86
- {"shape":"CacheSubnetGroupNotFoundFault"},
87
- {"shape":"ClusterQuotaForCustomerExceededFault"},
88
- {"shape":"NodeQuotaForClusterExceededFault"},
89
- {"shape":"NodeQuotaForCustomerExceededFault"},
90
- {"shape":"CacheParameterGroupNotFoundFault"},
91
- {"shape":"InvalidVPCNetworkStateFault"},
92
- {"shape":"TagQuotaPerResourceExceeded"},
93
- {"shape":"InvalidParameterValueException"},
94
- {"shape":"InvalidParameterCombinationException"}
95
- ]
96
- },
97
- "CreateCacheParameterGroup":{
98
- "name":"CreateCacheParameterGroup",
99
- "http":{
100
- "method":"POST",
101
- "requestUri":"/"
102
- },
103
- "input":{"shape":"CreateCacheParameterGroupMessage"},
104
- "output":{
105
- "shape":"CreateCacheParameterGroupResult",
106
- "resultWrapper":"CreateCacheParameterGroupResult"
107
- },
108
- "errors":[
109
- {"shape":"CacheParameterGroupQuotaExceededFault"},
110
- {"shape":"CacheParameterGroupAlreadyExistsFault"},
111
- {"shape":"InvalidCacheParameterGroupStateFault"},
112
- {"shape":"InvalidParameterValueException"},
113
- {"shape":"InvalidParameterCombinationException"}
114
- ]
115
- },
116
- "CreateCacheSecurityGroup":{
117
- "name":"CreateCacheSecurityGroup",
118
- "http":{
119
- "method":"POST",
120
- "requestUri":"/"
121
- },
122
- "input":{"shape":"CreateCacheSecurityGroupMessage"},
123
- "output":{
124
- "shape":"CreateCacheSecurityGroupResult",
125
- "resultWrapper":"CreateCacheSecurityGroupResult"
126
- },
127
- "errors":[
128
- {"shape":"CacheSecurityGroupAlreadyExistsFault"},
129
- {"shape":"CacheSecurityGroupQuotaExceededFault"},
130
- {"shape":"InvalidParameterValueException"},
131
- {"shape":"InvalidParameterCombinationException"}
132
- ]
133
- },
134
- "CreateCacheSubnetGroup":{
135
- "name":"CreateCacheSubnetGroup",
136
- "http":{
137
- "method":"POST",
138
- "requestUri":"/"
139
- },
140
- "input":{"shape":"CreateCacheSubnetGroupMessage"},
141
- "output":{
142
- "shape":"CreateCacheSubnetGroupResult",
143
- "resultWrapper":"CreateCacheSubnetGroupResult"
144
- },
145
- "errors":[
146
- {"shape":"CacheSubnetGroupAlreadyExistsFault"},
147
- {"shape":"CacheSubnetGroupQuotaExceededFault"},
148
- {"shape":"CacheSubnetQuotaExceededFault"},
149
- {"shape":"InvalidSubnet"}
150
- ]
151
- },
152
- "CreateReplicationGroup":{
153
- "name":"CreateReplicationGroup",
154
- "http":{
155
- "method":"POST",
156
- "requestUri":"/"
157
- },
158
- "input":{"shape":"CreateReplicationGroupMessage"},
159
- "output":{
160
- "shape":"CreateReplicationGroupResult",
161
- "resultWrapper":"CreateReplicationGroupResult"
162
- },
163
- "errors":[
164
- {"shape":"CacheClusterNotFoundFault"},
165
- {"shape":"InvalidCacheClusterStateFault"},
166
- {"shape":"ReplicationGroupAlreadyExistsFault"},
167
- {"shape":"InsufficientCacheClusterCapacityFault"},
168
- {"shape":"CacheSecurityGroupNotFoundFault"},
169
- {"shape":"CacheSubnetGroupNotFoundFault"},
170
- {"shape":"ClusterQuotaForCustomerExceededFault"},
171
- {"shape":"NodeQuotaForClusterExceededFault"},
172
- {"shape":"NodeQuotaForCustomerExceededFault"},
173
- {"shape":"CacheParameterGroupNotFoundFault"},
174
- {"shape":"InvalidVPCNetworkStateFault"},
175
- {"shape":"TagQuotaPerResourceExceeded"},
176
- {"shape":"InvalidParameterValueException"},
177
- {"shape":"InvalidParameterCombinationException"}
178
- ]
179
- },
180
- "CreateSnapshot":{
181
- "name":"CreateSnapshot",
182
- "http":{
183
- "method":"POST",
184
- "requestUri":"/"
185
- },
186
- "input":{"shape":"CreateSnapshotMessage"},
187
- "output":{
188
- "shape":"CreateSnapshotResult",
189
- "resultWrapper":"CreateSnapshotResult"
190
- },
191
- "errors":[
192
- {"shape":"SnapshotAlreadyExistsFault"},
193
- {"shape":"CacheClusterNotFoundFault"},
194
- {"shape":"InvalidCacheClusterStateFault"},
195
- {"shape":"SnapshotQuotaExceededFault"},
196
- {"shape":"SnapshotFeatureNotSupportedFault"},
197
- {"shape":"InvalidParameterCombinationException"},
198
- {"shape":"InvalidParameterValueException"}
199
- ]
200
- },
201
- "DeleteCacheCluster":{
202
- "name":"DeleteCacheCluster",
203
- "http":{
204
- "method":"POST",
205
- "requestUri":"/"
206
- },
207
- "input":{"shape":"DeleteCacheClusterMessage"},
208
- "output":{
209
- "shape":"DeleteCacheClusterResult",
210
- "resultWrapper":"DeleteCacheClusterResult"
211
- },
212
- "errors":[
213
- {"shape":"CacheClusterNotFoundFault"},
214
- {"shape":"InvalidCacheClusterStateFault"},
215
- {"shape":"SnapshotAlreadyExistsFault"},
216
- {"shape":"SnapshotFeatureNotSupportedFault"},
217
- {"shape":"SnapshotQuotaExceededFault"},
218
- {"shape":"InvalidParameterValueException"},
219
- {"shape":"InvalidParameterCombinationException"}
220
- ]
221
- },
222
- "DeleteCacheParameterGroup":{
223
- "name":"DeleteCacheParameterGroup",
224
- "http":{
225
- "method":"POST",
226
- "requestUri":"/"
227
- },
228
- "input":{"shape":"DeleteCacheParameterGroupMessage"},
229
- "errors":[
230
- {"shape":"InvalidCacheParameterGroupStateFault"},
231
- {"shape":"CacheParameterGroupNotFoundFault"},
232
- {"shape":"InvalidParameterValueException"},
233
- {"shape":"InvalidParameterCombinationException"}
234
- ]
235
- },
236
- "DeleteCacheSecurityGroup":{
237
- "name":"DeleteCacheSecurityGroup",
238
- "http":{
239
- "method":"POST",
240
- "requestUri":"/"
241
- },
242
- "input":{"shape":"DeleteCacheSecurityGroupMessage"},
243
- "errors":[
244
- {"shape":"InvalidCacheSecurityGroupStateFault"},
245
- {"shape":"CacheSecurityGroupNotFoundFault"},
246
- {"shape":"InvalidParameterValueException"},
247
- {"shape":"InvalidParameterCombinationException"}
248
- ]
249
- },
250
- "DeleteCacheSubnetGroup":{
251
- "name":"DeleteCacheSubnetGroup",
252
- "http":{
253
- "method":"POST",
254
- "requestUri":"/"
255
- },
256
- "input":{"shape":"DeleteCacheSubnetGroupMessage"},
257
- "errors":[
258
- {"shape":"CacheSubnetGroupInUse"},
259
- {"shape":"CacheSubnetGroupNotFoundFault"}
260
- ]
261
- },
262
- "DeleteReplicationGroup":{
263
- "name":"DeleteReplicationGroup",
264
- "http":{
265
- "method":"POST",
266
- "requestUri":"/"
267
- },
268
- "input":{"shape":"DeleteReplicationGroupMessage"},
269
- "output":{
270
- "shape":"DeleteReplicationGroupResult",
271
- "resultWrapper":"DeleteReplicationGroupResult"
272
- },
273
- "errors":[
274
- {"shape":"ReplicationGroupNotFoundFault"},
275
- {"shape":"InvalidReplicationGroupStateFault"},
276
- {"shape":"SnapshotAlreadyExistsFault"},
277
- {"shape":"SnapshotFeatureNotSupportedFault"},
278
- {"shape":"SnapshotQuotaExceededFault"},
279
- {"shape":"InvalidParameterValueException"},
280
- {"shape":"InvalidParameterCombinationException"}
281
- ]
282
- },
283
- "DeleteSnapshot":{
284
- "name":"DeleteSnapshot",
285
- "http":{
286
- "method":"POST",
287
- "requestUri":"/"
288
- },
289
- "input":{"shape":"DeleteSnapshotMessage"},
290
- "output":{
291
- "shape":"DeleteSnapshotResult",
292
- "resultWrapper":"DeleteSnapshotResult"
293
- },
294
- "errors":[
295
- {"shape":"SnapshotNotFoundFault"},
296
- {"shape":"InvalidSnapshotStateFault"},
297
- {"shape":"InvalidParameterValueException"},
298
- {"shape":"InvalidParameterCombinationException"}
299
- ]
300
- },
301
- "DescribeCacheClusters":{
302
- "name":"DescribeCacheClusters",
303
- "http":{
304
- "method":"POST",
305
- "requestUri":"/"
306
- },
307
- "input":{"shape":"DescribeCacheClustersMessage"},
308
- "output":{
309
- "shape":"CacheClusterMessage",
310
- "resultWrapper":"DescribeCacheClustersResult"
311
- },
312
- "errors":[
313
- {"shape":"CacheClusterNotFoundFault"},
314
- {"shape":"InvalidParameterValueException"},
315
- {"shape":"InvalidParameterCombinationException"}
316
- ]
317
- },
318
- "DescribeCacheEngineVersions":{
319
- "name":"DescribeCacheEngineVersions",
320
- "http":{
321
- "method":"POST",
322
- "requestUri":"/"
323
- },
324
- "input":{"shape":"DescribeCacheEngineVersionsMessage"},
325
- "output":{
326
- "shape":"CacheEngineVersionMessage",
327
- "resultWrapper":"DescribeCacheEngineVersionsResult"
328
- }
329
- },
330
- "DescribeCacheParameterGroups":{
331
- "name":"DescribeCacheParameterGroups",
332
- "http":{
333
- "method":"POST",
334
- "requestUri":"/"
335
- },
336
- "input":{"shape":"DescribeCacheParameterGroupsMessage"},
337
- "output":{
338
- "shape":"CacheParameterGroupsMessage",
339
- "resultWrapper":"DescribeCacheParameterGroupsResult"
340
- },
341
- "errors":[
342
- {"shape":"CacheParameterGroupNotFoundFault"},
343
- {"shape":"InvalidParameterValueException"},
344
- {"shape":"InvalidParameterCombinationException"}
345
- ]
346
- },
347
- "DescribeCacheParameters":{
348
- "name":"DescribeCacheParameters",
349
- "http":{
350
- "method":"POST",
351
- "requestUri":"/"
352
- },
353
- "input":{"shape":"DescribeCacheParametersMessage"},
354
- "output":{
355
- "shape":"CacheParameterGroupDetails",
356
- "resultWrapper":"DescribeCacheParametersResult"
357
- },
358
- "errors":[
359
- {"shape":"CacheParameterGroupNotFoundFault"},
360
- {"shape":"InvalidParameterValueException"},
361
- {"shape":"InvalidParameterCombinationException"}
362
- ]
363
- },
364
- "DescribeCacheSecurityGroups":{
365
- "name":"DescribeCacheSecurityGroups",
366
- "http":{
367
- "method":"POST",
368
- "requestUri":"/"
369
- },
370
- "input":{"shape":"DescribeCacheSecurityGroupsMessage"},
371
- "output":{
372
- "shape":"CacheSecurityGroupMessage",
373
- "resultWrapper":"DescribeCacheSecurityGroupsResult"
374
- },
375
- "errors":[
376
- {"shape":"CacheSecurityGroupNotFoundFault"},
377
- {"shape":"InvalidParameterValueException"},
378
- {"shape":"InvalidParameterCombinationException"}
379
- ]
380
- },
381
- "DescribeCacheSubnetGroups":{
382
- "name":"DescribeCacheSubnetGroups",
383
- "http":{
384
- "method":"POST",
385
- "requestUri":"/"
386
- },
387
- "input":{"shape":"DescribeCacheSubnetGroupsMessage"},
388
- "output":{
389
- "shape":"CacheSubnetGroupMessage",
390
- "resultWrapper":"DescribeCacheSubnetGroupsResult"
391
- },
392
- "errors":[
393
- {"shape":"CacheSubnetGroupNotFoundFault"}
394
- ]
395
- },
396
- "DescribeEngineDefaultParameters":{
397
- "name":"DescribeEngineDefaultParameters",
398
- "http":{
399
- "method":"POST",
400
- "requestUri":"/"
401
- },
402
- "input":{"shape":"DescribeEngineDefaultParametersMessage"},
403
- "output":{
404
- "shape":"DescribeEngineDefaultParametersResult",
405
- "resultWrapper":"DescribeEngineDefaultParametersResult"
406
- },
407
- "errors":[
408
- {"shape":"InvalidParameterValueException"},
409
- {"shape":"InvalidParameterCombinationException"}
410
- ]
411
- },
412
- "DescribeEvents":{
413
- "name":"DescribeEvents",
414
- "http":{
415
- "method":"POST",
416
- "requestUri":"/"
417
- },
418
- "input":{"shape":"DescribeEventsMessage"},
419
- "output":{
420
- "shape":"EventsMessage",
421
- "resultWrapper":"DescribeEventsResult"
422
- },
423
- "errors":[
424
- {"shape":"InvalidParameterValueException"},
425
- {"shape":"InvalidParameterCombinationException"}
426
- ]
427
- },
428
- "DescribeReplicationGroups":{
429
- "name":"DescribeReplicationGroups",
430
- "http":{
431
- "method":"POST",
432
- "requestUri":"/"
433
- },
434
- "input":{"shape":"DescribeReplicationGroupsMessage"},
435
- "output":{
436
- "shape":"ReplicationGroupMessage",
437
- "resultWrapper":"DescribeReplicationGroupsResult"
438
- },
439
- "errors":[
440
- {"shape":"ReplicationGroupNotFoundFault"},
441
- {"shape":"InvalidParameterValueException"},
442
- {"shape":"InvalidParameterCombinationException"}
443
- ]
444
- },
445
- "DescribeReservedCacheNodes":{
446
- "name":"DescribeReservedCacheNodes",
447
- "http":{
448
- "method":"POST",
449
- "requestUri":"/"
450
- },
451
- "input":{"shape":"DescribeReservedCacheNodesMessage"},
452
- "output":{
453
- "shape":"ReservedCacheNodeMessage",
454
- "resultWrapper":"DescribeReservedCacheNodesResult"
455
- },
456
- "errors":[
457
- {"shape":"ReservedCacheNodeNotFoundFault"},
458
- {"shape":"InvalidParameterValueException"},
459
- {"shape":"InvalidParameterCombinationException"}
460
- ]
461
- },
462
- "DescribeReservedCacheNodesOfferings":{
463
- "name":"DescribeReservedCacheNodesOfferings",
464
- "http":{
465
- "method":"POST",
466
- "requestUri":"/"
467
- },
468
- "input":{"shape":"DescribeReservedCacheNodesOfferingsMessage"},
469
- "output":{
470
- "shape":"ReservedCacheNodesOfferingMessage",
471
- "resultWrapper":"DescribeReservedCacheNodesOfferingsResult"
472
- },
473
- "errors":[
474
- {"shape":"ReservedCacheNodesOfferingNotFoundFault"},
475
- {"shape":"InvalidParameterValueException"},
476
- {"shape":"InvalidParameterCombinationException"}
477
- ]
478
- },
479
- "DescribeSnapshots":{
480
- "name":"DescribeSnapshots",
481
- "http":{
482
- "method":"POST",
483
- "requestUri":"/"
484
- },
485
- "input":{"shape":"DescribeSnapshotsMessage"},
486
- "output":{
487
- "shape":"DescribeSnapshotsListMessage",
488
- "resultWrapper":"DescribeSnapshotsResult"
489
- },
490
- "errors":[
491
- {"shape":"CacheClusterNotFoundFault"},
492
- {"shape":"SnapshotNotFoundFault"},
493
- {"shape":"InvalidParameterValueException"},
494
- {"shape":"InvalidParameterCombinationException"}
495
- ]
496
- },
497
- "ListAllowedNodeTypeModifications":{
498
- "name":"ListAllowedNodeTypeModifications",
499
- "http":{
500
- "method":"POST",
501
- "requestUri":"/"
502
- },
503
- "input":{"shape":"ListAllowedNodeTypeModificationsMessage"},
504
- "output":{
505
- "shape":"AllowedNodeTypeModificationsMessage",
506
- "resultWrapper":"ListAllowedNodeTypeModificationsResult"
507
- },
508
- "errors":[
509
- {"shape":"CacheClusterNotFoundFault"},
510
- {"shape":"ReplicationGroupNotFoundFault"},
511
- {"shape":"InvalidParameterCombinationException"},
512
- {"shape":"InvalidParameterValueException"}
513
- ]
514
- },
515
- "ListTagsForResource":{
516
- "name":"ListTagsForResource",
517
- "http":{
518
- "method":"POST",
519
- "requestUri":"/"
520
- },
521
- "input":{"shape":"ListTagsForResourceMessage"},
522
- "output":{
523
- "shape":"TagListMessage",
524
- "resultWrapper":"ListTagsForResourceResult"
525
- },
526
- "errors":[
527
- {"shape":"CacheClusterNotFoundFault"},
528
- {"shape":"SnapshotNotFoundFault"},
529
- {"shape":"InvalidARNFault"}
530
- ]
531
- },
532
- "ModifyCacheCluster":{
533
- "name":"ModifyCacheCluster",
534
- "http":{
535
- "method":"POST",
536
- "requestUri":"/"
537
- },
538
- "input":{"shape":"ModifyCacheClusterMessage"},
539
- "output":{
540
- "shape":"ModifyCacheClusterResult",
541
- "resultWrapper":"ModifyCacheClusterResult"
542
- },
543
- "errors":[
544
- {"shape":"InvalidCacheClusterStateFault"},
545
- {"shape":"InvalidCacheSecurityGroupStateFault"},
546
- {"shape":"InsufficientCacheClusterCapacityFault"},
547
- {"shape":"CacheClusterNotFoundFault"},
548
- {"shape":"NodeQuotaForClusterExceededFault"},
549
- {"shape":"NodeQuotaForCustomerExceededFault"},
550
- {"shape":"CacheSecurityGroupNotFoundFault"},
551
- {"shape":"CacheParameterGroupNotFoundFault"},
552
- {"shape":"InvalidVPCNetworkStateFault"},
553
- {"shape":"InvalidParameterValueException"},
554
- {"shape":"InvalidParameterCombinationException"}
555
- ]
556
- },
557
- "ModifyCacheParameterGroup":{
558
- "name":"ModifyCacheParameterGroup",
559
- "http":{
560
- "method":"POST",
561
- "requestUri":"/"
562
- },
563
- "input":{"shape":"ModifyCacheParameterGroupMessage"},
564
- "output":{
565
- "shape":"CacheParameterGroupNameMessage",
566
- "resultWrapper":"ModifyCacheParameterGroupResult"
567
- },
568
- "errors":[
569
- {"shape":"CacheParameterGroupNotFoundFault"},
570
- {"shape":"InvalidCacheParameterGroupStateFault"},
571
- {"shape":"InvalidParameterValueException"},
572
- {"shape":"InvalidParameterCombinationException"}
573
- ]
574
- },
575
- "ModifyCacheSubnetGroup":{
576
- "name":"ModifyCacheSubnetGroup",
577
- "http":{
578
- "method":"POST",
579
- "requestUri":"/"
580
- },
581
- "input":{"shape":"ModifyCacheSubnetGroupMessage"},
582
- "output":{
583
- "shape":"ModifyCacheSubnetGroupResult",
584
- "resultWrapper":"ModifyCacheSubnetGroupResult"
585
- },
586
- "errors":[
587
- {"shape":"CacheSubnetGroupNotFoundFault"},
588
- {"shape":"CacheSubnetQuotaExceededFault"},
589
- {"shape":"SubnetInUse"},
590
- {"shape":"InvalidSubnet"}
591
- ]
592
- },
593
- "ModifyReplicationGroup":{
594
- "name":"ModifyReplicationGroup",
595
- "http":{
596
- "method":"POST",
597
- "requestUri":"/"
598
- },
599
- "input":{"shape":"ModifyReplicationGroupMessage"},
600
- "output":{
601
- "shape":"ModifyReplicationGroupResult",
602
- "resultWrapper":"ModifyReplicationGroupResult"
603
- },
604
- "errors":[
605
- {"shape":"ReplicationGroupNotFoundFault"},
606
- {"shape":"InvalidReplicationGroupStateFault"},
607
- {"shape":"InvalidCacheClusterStateFault"},
608
- {"shape":"InvalidCacheSecurityGroupStateFault"},
609
- {"shape":"InsufficientCacheClusterCapacityFault"},
610
- {"shape":"CacheClusterNotFoundFault"},
611
- {"shape":"NodeQuotaForClusterExceededFault"},
612
- {"shape":"NodeQuotaForCustomerExceededFault"},
613
- {"shape":"CacheSecurityGroupNotFoundFault"},
614
- {"shape":"CacheParameterGroupNotFoundFault"},
615
- {"shape":"InvalidVPCNetworkStateFault"},
616
- {"shape":"InvalidParameterValueException"},
617
- {"shape":"InvalidParameterCombinationException"}
618
- ]
619
- },
620
- "PurchaseReservedCacheNodesOffering":{
621
- "name":"PurchaseReservedCacheNodesOffering",
622
- "http":{
623
- "method":"POST",
624
- "requestUri":"/"
625
- },
626
- "input":{"shape":"PurchaseReservedCacheNodesOfferingMessage"},
627
- "output":{
628
- "shape":"PurchaseReservedCacheNodesOfferingResult",
629
- "resultWrapper":"PurchaseReservedCacheNodesOfferingResult"
630
- },
631
- "errors":[
632
- {"shape":"ReservedCacheNodesOfferingNotFoundFault"},
633
- {"shape":"ReservedCacheNodeAlreadyExistsFault"},
634
- {"shape":"ReservedCacheNodeQuotaExceededFault"},
635
- {"shape":"InvalidParameterValueException"},
636
- {"shape":"InvalidParameterCombinationException"}
637
- ]
638
- },
639
- "RebootCacheCluster":{
640
- "name":"RebootCacheCluster",
641
- "http":{
642
- "method":"POST",
643
- "requestUri":"/"
644
- },
645
- "input":{"shape":"RebootCacheClusterMessage"},
646
- "output":{
647
- "shape":"RebootCacheClusterResult",
648
- "resultWrapper":"RebootCacheClusterResult"
649
- },
650
- "errors":[
651
- {"shape":"InvalidCacheClusterStateFault"},
652
- {"shape":"CacheClusterNotFoundFault"}
653
- ]
654
- },
655
- "RemoveTagsFromResource":{
656
- "name":"RemoveTagsFromResource",
657
- "http":{
658
- "method":"POST",
659
- "requestUri":"/"
660
- },
661
- "input":{"shape":"RemoveTagsFromResourceMessage"},
662
- "output":{
663
- "shape":"TagListMessage",
664
- "resultWrapper":"RemoveTagsFromResourceResult"
665
- },
666
- "errors":[
667
- {"shape":"CacheClusterNotFoundFault"},
668
- {"shape":"SnapshotNotFoundFault"},
669
- {"shape":"InvalidARNFault"},
670
- {"shape":"TagNotFoundFault"}
671
- ]
672
- },
673
- "ResetCacheParameterGroup":{
674
- "name":"ResetCacheParameterGroup",
675
- "http":{
676
- "method":"POST",
677
- "requestUri":"/"
678
- },
679
- "input":{"shape":"ResetCacheParameterGroupMessage"},
680
- "output":{
681
- "shape":"CacheParameterGroupNameMessage",
682
- "resultWrapper":"ResetCacheParameterGroupResult"
683
- },
684
- "errors":[
685
- {"shape":"InvalidCacheParameterGroupStateFault"},
686
- {"shape":"CacheParameterGroupNotFoundFault"},
687
- {"shape":"InvalidParameterValueException"},
688
- {"shape":"InvalidParameterCombinationException"}
689
- ]
690
- },
691
- "RevokeCacheSecurityGroupIngress":{
692
- "name":"RevokeCacheSecurityGroupIngress",
693
- "http":{
694
- "method":"POST",
695
- "requestUri":"/"
696
- },
697
- "input":{"shape":"RevokeCacheSecurityGroupIngressMessage"},
698
- "output":{
699
- "shape":"RevokeCacheSecurityGroupIngressResult",
700
- "resultWrapper":"RevokeCacheSecurityGroupIngressResult"
701
- },
702
- "errors":[
703
- {"shape":"CacheSecurityGroupNotFoundFault"},
704
- {"shape":"AuthorizationNotFoundFault"},
705
- {"shape":"InvalidCacheSecurityGroupStateFault"},
706
- {"shape":"InvalidParameterValueException"},
707
- {"shape":"InvalidParameterCombinationException"}
708
- ]
709
- }
710
- },
711
- "shapes":{
712
- "AZMode":{
713
- "type":"string",
714
- "enum":[
715
- "single-az",
716
- "cross-az"
717
- ]
718
- },
719
- "AddTagsToResourceMessage":{
720
- "type":"structure",
721
- "required":[
722
- "ResourceName",
723
- "Tags"
724
- ],
725
- "members":{
726
- "ResourceName":{"shape":"String"},
727
- "Tags":{"shape":"TagList"}
728
- }
729
- },
730
- "AllowedNodeTypeModificationsMessage":{
731
- "type":"structure",
732
- "members":{
733
- "ScaleUpModifications":{"shape":"NodeTypeList"}
734
- }
735
- },
736
- "AuthorizationAlreadyExistsFault":{
737
- "type":"structure",
738
- "members":{
739
- },
740
- "error":{
741
- "code":"AuthorizationAlreadyExists",
742
- "httpStatusCode":400,
743
- "senderFault":true
744
- },
745
- "exception":true
746
- },
747
- "AuthorizationNotFoundFault":{
748
- "type":"structure",
749
- "members":{
750
- },
751
- "error":{
752
- "code":"AuthorizationNotFound",
753
- "httpStatusCode":404,
754
- "senderFault":true
755
- },
756
- "exception":true
757
- },
758
- "AuthorizeCacheSecurityGroupIngressMessage":{
759
- "type":"structure",
760
- "required":[
761
- "CacheSecurityGroupName",
762
- "EC2SecurityGroupName",
763
- "EC2SecurityGroupOwnerId"
764
- ],
765
- "members":{
766
- "CacheSecurityGroupName":{"shape":"String"},
767
- "EC2SecurityGroupName":{"shape":"String"},
768
- "EC2SecurityGroupOwnerId":{"shape":"String"}
769
- }
770
- },
771
- "AuthorizeCacheSecurityGroupIngressResult":{
772
- "type":"structure",
773
- "members":{
774
- "CacheSecurityGroup":{"shape":"CacheSecurityGroup"}
775
- }
776
- },
777
- "AutomaticFailoverStatus":{
778
- "type":"string",
779
- "enum":[
780
- "enabled",
781
- "disabled",
782
- "enabling",
783
- "disabling"
784
- ]
785
- },
786
- "AvailabilityZone":{
787
- "type":"structure",
788
- "members":{
789
- "Name":{"shape":"String"}
790
- },
791
- "wrapper":true
792
- },
793
- "AvailabilityZonesList":{
794
- "type":"list",
795
- "member":{
796
- "shape":"String",
797
- "locationName":"AvailabilityZone"
798
- }
799
- },
800
- "AwsQueryErrorMessage":{"type":"string"},
801
- "Boolean":{"type":"boolean"},
802
- "BooleanOptional":{"type":"boolean"},
803
- "CacheCluster":{
804
- "type":"structure",
805
- "members":{
806
- "CacheClusterId":{"shape":"String"},
807
- "ConfigurationEndpoint":{"shape":"Endpoint"},
808
- "ClientDownloadLandingPage":{"shape":"String"},
809
- "CacheNodeType":{"shape":"String"},
810
- "Engine":{"shape":"String"},
811
- "EngineVersion":{"shape":"String"},
812
- "CacheClusterStatus":{"shape":"String"},
813
- "NumCacheNodes":{"shape":"IntegerOptional"},
814
- "PreferredAvailabilityZone":{"shape":"String"},
815
- "CacheClusterCreateTime":{"shape":"TStamp"},
816
- "PreferredMaintenanceWindow":{"shape":"String"},
817
- "PendingModifiedValues":{"shape":"PendingModifiedValues"},
818
- "NotificationConfiguration":{"shape":"NotificationConfiguration"},
819
- "CacheSecurityGroups":{"shape":"CacheSecurityGroupMembershipList"},
820
- "CacheParameterGroup":{"shape":"CacheParameterGroupStatus"},
821
- "CacheSubnetGroupName":{"shape":"String"},
822
- "CacheNodes":{"shape":"CacheNodeList"},
823
- "AutoMinorVersionUpgrade":{"shape":"Boolean"},
824
- "SecurityGroups":{"shape":"SecurityGroupMembershipList"},
825
- "ReplicationGroupId":{"shape":"String"},
826
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
827
- "SnapshotWindow":{"shape":"String"}
828
- },
829
- "wrapper":true
830
- },
831
- "CacheClusterAlreadyExistsFault":{
832
- "type":"structure",
833
- "members":{
834
- },
835
- "error":{
836
- "code":"CacheClusterAlreadyExists",
837
- "httpStatusCode":400,
838
- "senderFault":true
839
- },
840
- "exception":true
841
- },
842
- "CacheClusterList":{
843
- "type":"list",
844
- "member":{
845
- "shape":"CacheCluster",
846
- "locationName":"CacheCluster"
847
- }
848
- },
849
- "CacheClusterMessage":{
850
- "type":"structure",
851
- "members":{
852
- "Marker":{"shape":"String"},
853
- "CacheClusters":{"shape":"CacheClusterList"}
854
- }
855
- },
856
- "CacheClusterNotFoundFault":{
857
- "type":"structure",
858
- "members":{
859
- },
860
- "error":{
861
- "code":"CacheClusterNotFound",
862
- "httpStatusCode":404,
863
- "senderFault":true
864
- },
865
- "exception":true
866
- },
867
- "CacheEngineVersion":{
868
- "type":"structure",
869
- "members":{
870
- "Engine":{"shape":"String"},
871
- "EngineVersion":{"shape":"String"},
872
- "CacheParameterGroupFamily":{"shape":"String"},
873
- "CacheEngineDescription":{"shape":"String"},
874
- "CacheEngineVersionDescription":{"shape":"String"}
875
- }
876
- },
877
- "CacheEngineVersionList":{
878
- "type":"list",
879
- "member":{
880
- "shape":"CacheEngineVersion",
881
- "locationName":"CacheEngineVersion"
882
- }
883
- },
884
- "CacheEngineVersionMessage":{
885
- "type":"structure",
886
- "members":{
887
- "Marker":{"shape":"String"},
888
- "CacheEngineVersions":{"shape":"CacheEngineVersionList"}
889
- }
890
- },
891
- "CacheNode":{
892
- "type":"structure",
893
- "members":{
894
- "CacheNodeId":{"shape":"String"},
895
- "CacheNodeStatus":{"shape":"String"},
896
- "CacheNodeCreateTime":{"shape":"TStamp"},
897
- "Endpoint":{"shape":"Endpoint"},
898
- "ParameterGroupStatus":{"shape":"String"},
899
- "SourceCacheNodeId":{"shape":"String"},
900
- "CustomerAvailabilityZone":{"shape":"String"}
901
- }
902
- },
903
- "CacheNodeIdsList":{
904
- "type":"list",
905
- "member":{
906
- "shape":"String",
907
- "locationName":"CacheNodeId"
908
- }
909
- },
910
- "CacheNodeList":{
911
- "type":"list",
912
- "member":{
913
- "shape":"CacheNode",
914
- "locationName":"CacheNode"
915
- }
916
- },
917
- "CacheNodeTypeSpecificParameter":{
918
- "type":"structure",
919
- "members":{
920
- "ParameterName":{"shape":"String"},
921
- "Description":{"shape":"String"},
922
- "Source":{"shape":"String"},
923
- "DataType":{"shape":"String"},
924
- "AllowedValues":{"shape":"String"},
925
- "IsModifiable":{"shape":"Boolean"},
926
- "MinimumEngineVersion":{"shape":"String"},
927
- "CacheNodeTypeSpecificValues":{"shape":"CacheNodeTypeSpecificValueList"},
928
- "ChangeType":{"shape":"ChangeType"}
929
- }
930
- },
931
- "CacheNodeTypeSpecificParametersList":{
932
- "type":"list",
933
- "member":{
934
- "shape":"CacheNodeTypeSpecificParameter",
935
- "locationName":"CacheNodeTypeSpecificParameter"
936
- }
937
- },
938
- "CacheNodeTypeSpecificValue":{
939
- "type":"structure",
940
- "members":{
941
- "CacheNodeType":{"shape":"String"},
942
- "Value":{"shape":"String"}
943
- }
944
- },
945
- "CacheNodeTypeSpecificValueList":{
946
- "type":"list",
947
- "member":{
948
- "shape":"CacheNodeTypeSpecificValue",
949
- "locationName":"CacheNodeTypeSpecificValue"
950
- }
951
- },
952
- "CacheParameterGroup":{
953
- "type":"structure",
954
- "members":{
955
- "CacheParameterGroupName":{"shape":"String"},
956
- "CacheParameterGroupFamily":{"shape":"String"},
957
- "Description":{"shape":"String"}
958
- },
959
- "wrapper":true
960
- },
961
- "CacheParameterGroupAlreadyExistsFault":{
962
- "type":"structure",
963
- "members":{
964
- },
965
- "error":{
966
- "code":"CacheParameterGroupAlreadyExists",
967
- "httpStatusCode":400,
968
- "senderFault":true
969
- },
970
- "exception":true
971
- },
972
- "CacheParameterGroupDetails":{
973
- "type":"structure",
974
- "members":{
975
- "Marker":{"shape":"String"},
976
- "Parameters":{"shape":"ParametersList"},
977
- "CacheNodeTypeSpecificParameters":{"shape":"CacheNodeTypeSpecificParametersList"}
978
- }
979
- },
980
- "CacheParameterGroupList":{
981
- "type":"list",
982
- "member":{
983
- "shape":"CacheParameterGroup",
984
- "locationName":"CacheParameterGroup"
985
- }
986
- },
987
- "CacheParameterGroupNameMessage":{
988
- "type":"structure",
989
- "members":{
990
- "CacheParameterGroupName":{"shape":"String"}
991
- }
992
- },
993
- "CacheParameterGroupNotFoundFault":{
994
- "type":"structure",
995
- "members":{
996
- },
997
- "error":{
998
- "code":"CacheParameterGroupNotFound",
999
- "httpStatusCode":404,
1000
- "senderFault":true
1001
- },
1002
- "exception":true
1003
- },
1004
- "CacheParameterGroupQuotaExceededFault":{
1005
- "type":"structure",
1006
- "members":{
1007
- },
1008
- "error":{
1009
- "code":"CacheParameterGroupQuotaExceeded",
1010
- "httpStatusCode":400,
1011
- "senderFault":true
1012
- },
1013
- "exception":true
1014
- },
1015
- "CacheParameterGroupStatus":{
1016
- "type":"structure",
1017
- "members":{
1018
- "CacheParameterGroupName":{"shape":"String"},
1019
- "ParameterApplyStatus":{"shape":"String"},
1020
- "CacheNodeIdsToReboot":{"shape":"CacheNodeIdsList"}
1021
- }
1022
- },
1023
- "CacheParameterGroupsMessage":{
1024
- "type":"structure",
1025
- "members":{
1026
- "Marker":{"shape":"String"},
1027
- "CacheParameterGroups":{"shape":"CacheParameterGroupList"}
1028
- }
1029
- },
1030
- "CacheSecurityGroup":{
1031
- "type":"structure",
1032
- "members":{
1033
- "OwnerId":{"shape":"String"},
1034
- "CacheSecurityGroupName":{"shape":"String"},
1035
- "Description":{"shape":"String"},
1036
- "EC2SecurityGroups":{"shape":"EC2SecurityGroupList"}
1037
- },
1038
- "wrapper":true
1039
- },
1040
- "CacheSecurityGroupAlreadyExistsFault":{
1041
- "type":"structure",
1042
- "members":{
1043
- },
1044
- "error":{
1045
- "code":"CacheSecurityGroupAlreadyExists",
1046
- "httpStatusCode":400,
1047
- "senderFault":true
1048
- },
1049
- "exception":true
1050
- },
1051
- "CacheSecurityGroupMembership":{
1052
- "type":"structure",
1053
- "members":{
1054
- "CacheSecurityGroupName":{"shape":"String"},
1055
- "Status":{"shape":"String"}
1056
- }
1057
- },
1058
- "CacheSecurityGroupMembershipList":{
1059
- "type":"list",
1060
- "member":{
1061
- "shape":"CacheSecurityGroupMembership",
1062
- "locationName":"CacheSecurityGroup"
1063
- }
1064
- },
1065
- "CacheSecurityGroupMessage":{
1066
- "type":"structure",
1067
- "members":{
1068
- "Marker":{"shape":"String"},
1069
- "CacheSecurityGroups":{"shape":"CacheSecurityGroups"}
1070
- }
1071
- },
1072
- "CacheSecurityGroupNameList":{
1073
- "type":"list",
1074
- "member":{
1075
- "shape":"String",
1076
- "locationName":"CacheSecurityGroupName"
1077
- }
1078
- },
1079
- "CacheSecurityGroupNotFoundFault":{
1080
- "type":"structure",
1081
- "members":{
1082
- },
1083
- "error":{
1084
- "code":"CacheSecurityGroupNotFound",
1085
- "httpStatusCode":404,
1086
- "senderFault":true
1087
- },
1088
- "exception":true
1089
- },
1090
- "CacheSecurityGroupQuotaExceededFault":{
1091
- "type":"structure",
1092
- "members":{
1093
- },
1094
- "error":{
1095
- "code":"QuotaExceeded.CacheSecurityGroup",
1096
- "httpStatusCode":400,
1097
- "senderFault":true
1098
- },
1099
- "exception":true
1100
- },
1101
- "CacheSecurityGroups":{
1102
- "type":"list",
1103
- "member":{
1104
- "shape":"CacheSecurityGroup",
1105
- "locationName":"CacheSecurityGroup"
1106
- }
1107
- },
1108
- "CacheSubnetGroup":{
1109
- "type":"structure",
1110
- "members":{
1111
- "CacheSubnetGroupName":{"shape":"String"},
1112
- "CacheSubnetGroupDescription":{"shape":"String"},
1113
- "VpcId":{"shape":"String"},
1114
- "Subnets":{"shape":"SubnetList"}
1115
- },
1116
- "wrapper":true
1117
- },
1118
- "CacheSubnetGroupAlreadyExistsFault":{
1119
- "type":"structure",
1120
- "members":{
1121
- },
1122
- "error":{
1123
- "code":"CacheSubnetGroupAlreadyExists",
1124
- "httpStatusCode":400,
1125
- "senderFault":true
1126
- },
1127
- "exception":true
1128
- },
1129
- "CacheSubnetGroupInUse":{
1130
- "type":"structure",
1131
- "members":{
1132
- },
1133
- "error":{
1134
- "code":"CacheSubnetGroupInUse",
1135
- "httpStatusCode":400,
1136
- "senderFault":true
1137
- },
1138
- "exception":true
1139
- },
1140
- "CacheSubnetGroupMessage":{
1141
- "type":"structure",
1142
- "members":{
1143
- "Marker":{"shape":"String"},
1144
- "CacheSubnetGroups":{"shape":"CacheSubnetGroups"}
1145
- }
1146
- },
1147
- "CacheSubnetGroupNotFoundFault":{
1148
- "type":"structure",
1149
- "members":{
1150
- },
1151
- "error":{
1152
- "code":"CacheSubnetGroupNotFoundFault",
1153
- "httpStatusCode":400,
1154
- "senderFault":true
1155
- },
1156
- "exception":true
1157
- },
1158
- "CacheSubnetGroupQuotaExceededFault":{
1159
- "type":"structure",
1160
- "members":{
1161
- },
1162
- "error":{
1163
- "code":"CacheSubnetGroupQuotaExceeded",
1164
- "httpStatusCode":400,
1165
- "senderFault":true
1166
- },
1167
- "exception":true
1168
- },
1169
- "CacheSubnetGroups":{
1170
- "type":"list",
1171
- "member":{
1172
- "shape":"CacheSubnetGroup",
1173
- "locationName":"CacheSubnetGroup"
1174
- }
1175
- },
1176
- "CacheSubnetQuotaExceededFault":{
1177
- "type":"structure",
1178
- "members":{
1179
- },
1180
- "error":{
1181
- "code":"CacheSubnetQuotaExceededFault",
1182
- "httpStatusCode":400,
1183
- "senderFault":true
1184
- },
1185
- "exception":true
1186
- },
1187
- "ChangeType":{
1188
- "type":"string",
1189
- "enum":[
1190
- "immediate",
1191
- "requires-reboot"
1192
- ]
1193
- },
1194
- "ClusterIdList":{
1195
- "type":"list",
1196
- "member":{
1197
- "shape":"String",
1198
- "locationName":"ClusterId"
1199
- }
1200
- },
1201
- "ClusterQuotaForCustomerExceededFault":{
1202
- "type":"structure",
1203
- "members":{
1204
- },
1205
- "error":{
1206
- "code":"ClusterQuotaForCustomerExceeded",
1207
- "httpStatusCode":400,
1208
- "senderFault":true
1209
- },
1210
- "exception":true
1211
- },
1212
- "CopySnapshotMessage":{
1213
- "type":"structure",
1214
- "required":[
1215
- "SourceSnapshotName",
1216
- "TargetSnapshotName"
1217
- ],
1218
- "members":{
1219
- "SourceSnapshotName":{"shape":"String"},
1220
- "TargetSnapshotName":{"shape":"String"},
1221
- "TargetBucket":{"shape":"String"}
1222
- }
1223
- },
1224
- "CopySnapshotResult":{
1225
- "type":"structure",
1226
- "members":{
1227
- "Snapshot":{"shape":"Snapshot"}
1228
- }
1229
- },
1230
- "CreateCacheClusterMessage":{
1231
- "type":"structure",
1232
- "required":["CacheClusterId"],
1233
- "members":{
1234
- "CacheClusterId":{"shape":"String"},
1235
- "ReplicationGroupId":{"shape":"String"},
1236
- "AZMode":{"shape":"AZMode"},
1237
- "PreferredAvailabilityZone":{"shape":"String"},
1238
- "PreferredAvailabilityZones":{"shape":"PreferredAvailabilityZoneList"},
1239
- "NumCacheNodes":{"shape":"IntegerOptional"},
1240
- "CacheNodeType":{"shape":"String"},
1241
- "Engine":{"shape":"String"},
1242
- "EngineVersion":{"shape":"String"},
1243
- "CacheParameterGroupName":{"shape":"String"},
1244
- "CacheSubnetGroupName":{"shape":"String"},
1245
- "CacheSecurityGroupNames":{"shape":"CacheSecurityGroupNameList"},
1246
- "SecurityGroupIds":{"shape":"SecurityGroupIdsList"},
1247
- "Tags":{"shape":"TagList"},
1248
- "SnapshotArns":{"shape":"SnapshotArnsList"},
1249
- "SnapshotName":{"shape":"String"},
1250
- "PreferredMaintenanceWindow":{"shape":"String"},
1251
- "Port":{"shape":"IntegerOptional"},
1252
- "NotificationTopicArn":{"shape":"String"},
1253
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
1254
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
1255
- "SnapshotWindow":{"shape":"String"}
1256
- }
1257
- },
1258
- "CreateCacheClusterResult":{
1259
- "type":"structure",
1260
- "members":{
1261
- "CacheCluster":{"shape":"CacheCluster"}
1262
- }
1263
- },
1264
- "CreateCacheParameterGroupMessage":{
1265
- "type":"structure",
1266
- "required":[
1267
- "CacheParameterGroupName",
1268
- "CacheParameterGroupFamily",
1269
- "Description"
1270
- ],
1271
- "members":{
1272
- "CacheParameterGroupName":{"shape":"String"},
1273
- "CacheParameterGroupFamily":{"shape":"String"},
1274
- "Description":{"shape":"String"}
1275
- }
1276
- },
1277
- "CreateCacheParameterGroupResult":{
1278
- "type":"structure",
1279
- "members":{
1280
- "CacheParameterGroup":{"shape":"CacheParameterGroup"}
1281
- }
1282
- },
1283
- "CreateCacheSecurityGroupMessage":{
1284
- "type":"structure",
1285
- "required":[
1286
- "CacheSecurityGroupName",
1287
- "Description"
1288
- ],
1289
- "members":{
1290
- "CacheSecurityGroupName":{"shape":"String"},
1291
- "Description":{"shape":"String"}
1292
- }
1293
- },
1294
- "CreateCacheSecurityGroupResult":{
1295
- "type":"structure",
1296
- "members":{
1297
- "CacheSecurityGroup":{"shape":"CacheSecurityGroup"}
1298
- }
1299
- },
1300
- "CreateCacheSubnetGroupMessage":{
1301
- "type":"structure",
1302
- "required":[
1303
- "CacheSubnetGroupName",
1304
- "CacheSubnetGroupDescription",
1305
- "SubnetIds"
1306
- ],
1307
- "members":{
1308
- "CacheSubnetGroupName":{"shape":"String"},
1309
- "CacheSubnetGroupDescription":{"shape":"String"},
1310
- "SubnetIds":{"shape":"SubnetIdentifierList"}
1311
- }
1312
- },
1313
- "CreateCacheSubnetGroupResult":{
1314
- "type":"structure",
1315
- "members":{
1316
- "CacheSubnetGroup":{"shape":"CacheSubnetGroup"}
1317
- }
1318
- },
1319
- "CreateReplicationGroupMessage":{
1320
- "type":"structure",
1321
- "required":[
1322
- "ReplicationGroupId",
1323
- "ReplicationGroupDescription"
1324
- ],
1325
- "members":{
1326
- "ReplicationGroupId":{"shape":"String"},
1327
- "ReplicationGroupDescription":{"shape":"String"},
1328
- "PrimaryClusterId":{"shape":"String"},
1329
- "AutomaticFailoverEnabled":{"shape":"BooleanOptional"},
1330
- "NumCacheClusters":{"shape":"IntegerOptional"},
1331
- "PreferredCacheClusterAZs":{"shape":"AvailabilityZonesList"},
1332
- "CacheNodeType":{"shape":"String"},
1333
- "Engine":{"shape":"String"},
1334
- "EngineVersion":{"shape":"String"},
1335
- "CacheParameterGroupName":{"shape":"String"},
1336
- "CacheSubnetGroupName":{"shape":"String"},
1337
- "CacheSecurityGroupNames":{"shape":"CacheSecurityGroupNameList"},
1338
- "SecurityGroupIds":{"shape":"SecurityGroupIdsList"},
1339
- "Tags":{"shape":"TagList"},
1340
- "SnapshotArns":{"shape":"SnapshotArnsList"},
1341
- "SnapshotName":{"shape":"String"},
1342
- "PreferredMaintenanceWindow":{"shape":"String"},
1343
- "Port":{"shape":"IntegerOptional"},
1344
- "NotificationTopicArn":{"shape":"String"},
1345
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
1346
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
1347
- "SnapshotWindow":{"shape":"String"}
1348
- }
1349
- },
1350
- "CreateReplicationGroupResult":{
1351
- "type":"structure",
1352
- "members":{
1353
- "ReplicationGroup":{"shape":"ReplicationGroup"}
1354
- }
1355
- },
1356
- "CreateSnapshotMessage":{
1357
- "type":"structure",
1358
- "required":[
1359
- "CacheClusterId",
1360
- "SnapshotName"
1361
- ],
1362
- "members":{
1363
- "CacheClusterId":{"shape":"String"},
1364
- "SnapshotName":{"shape":"String"}
1365
- }
1366
- },
1367
- "CreateSnapshotResult":{
1368
- "type":"structure",
1369
- "members":{
1370
- "Snapshot":{"shape":"Snapshot"}
1371
- }
1372
- },
1373
- "DeleteCacheClusterMessage":{
1374
- "type":"structure",
1375
- "required":["CacheClusterId"],
1376
- "members":{
1377
- "CacheClusterId":{"shape":"String"},
1378
- "FinalSnapshotIdentifier":{"shape":"String"}
1379
- }
1380
- },
1381
- "DeleteCacheClusterResult":{
1382
- "type":"structure",
1383
- "members":{
1384
- "CacheCluster":{"shape":"CacheCluster"}
1385
- }
1386
- },
1387
- "DeleteCacheParameterGroupMessage":{
1388
- "type":"structure",
1389
- "required":["CacheParameterGroupName"],
1390
- "members":{
1391
- "CacheParameterGroupName":{"shape":"String"}
1392
- }
1393
- },
1394
- "DeleteCacheSecurityGroupMessage":{
1395
- "type":"structure",
1396
- "required":["CacheSecurityGroupName"],
1397
- "members":{
1398
- "CacheSecurityGroupName":{"shape":"String"}
1399
- }
1400
- },
1401
- "DeleteCacheSubnetGroupMessage":{
1402
- "type":"structure",
1403
- "required":["CacheSubnetGroupName"],
1404
- "members":{
1405
- "CacheSubnetGroupName":{"shape":"String"}
1406
- }
1407
- },
1408
- "DeleteReplicationGroupMessage":{
1409
- "type":"structure",
1410
- "required":["ReplicationGroupId"],
1411
- "members":{
1412
- "ReplicationGroupId":{"shape":"String"},
1413
- "RetainPrimaryCluster":{"shape":"BooleanOptional"},
1414
- "FinalSnapshotIdentifier":{"shape":"String"}
1415
- }
1416
- },
1417
- "DeleteReplicationGroupResult":{
1418
- "type":"structure",
1419
- "members":{
1420
- "ReplicationGroup":{"shape":"ReplicationGroup"}
1421
- }
1422
- },
1423
- "DeleteSnapshotMessage":{
1424
- "type":"structure",
1425
- "required":["SnapshotName"],
1426
- "members":{
1427
- "SnapshotName":{"shape":"String"}
1428
- }
1429
- },
1430
- "DeleteSnapshotResult":{
1431
- "type":"structure",
1432
- "members":{
1433
- "Snapshot":{"shape":"Snapshot"}
1434
- }
1435
- },
1436
- "DescribeCacheClustersMessage":{
1437
- "type":"structure",
1438
- "members":{
1439
- "CacheClusterId":{"shape":"String"},
1440
- "MaxRecords":{"shape":"IntegerOptional"},
1441
- "Marker":{"shape":"String"},
1442
- "ShowCacheNodeInfo":{"shape":"BooleanOptional"}
1443
- }
1444
- },
1445
- "DescribeCacheEngineVersionsMessage":{
1446
- "type":"structure",
1447
- "members":{
1448
- "Engine":{"shape":"String"},
1449
- "EngineVersion":{"shape":"String"},
1450
- "CacheParameterGroupFamily":{"shape":"String"},
1451
- "MaxRecords":{"shape":"IntegerOptional"},
1452
- "Marker":{"shape":"String"},
1453
- "DefaultOnly":{"shape":"Boolean"}
1454
- }
1455
- },
1456
- "DescribeCacheParameterGroupsMessage":{
1457
- "type":"structure",
1458
- "members":{
1459
- "CacheParameterGroupName":{"shape":"String"},
1460
- "MaxRecords":{"shape":"IntegerOptional"},
1461
- "Marker":{"shape":"String"}
1462
- }
1463
- },
1464
- "DescribeCacheParametersMessage":{
1465
- "type":"structure",
1466
- "required":["CacheParameterGroupName"],
1467
- "members":{
1468
- "CacheParameterGroupName":{"shape":"String"},
1469
- "Source":{"shape":"String"},
1470
- "MaxRecords":{"shape":"IntegerOptional"},
1471
- "Marker":{"shape":"String"}
1472
- }
1473
- },
1474
- "DescribeCacheSecurityGroupsMessage":{
1475
- "type":"structure",
1476
- "members":{
1477
- "CacheSecurityGroupName":{"shape":"String"},
1478
- "MaxRecords":{"shape":"IntegerOptional"},
1479
- "Marker":{"shape":"String"}
1480
- }
1481
- },
1482
- "DescribeCacheSubnetGroupsMessage":{
1483
- "type":"structure",
1484
- "members":{
1485
- "CacheSubnetGroupName":{"shape":"String"},
1486
- "MaxRecords":{"shape":"IntegerOptional"},
1487
- "Marker":{"shape":"String"}
1488
- }
1489
- },
1490
- "DescribeEngineDefaultParametersMessage":{
1491
- "type":"structure",
1492
- "required":["CacheParameterGroupFamily"],
1493
- "members":{
1494
- "CacheParameterGroupFamily":{"shape":"String"},
1495
- "MaxRecords":{"shape":"IntegerOptional"},
1496
- "Marker":{"shape":"String"}
1497
- }
1498
- },
1499
- "DescribeEngineDefaultParametersResult":{
1500
- "type":"structure",
1501
- "members":{
1502
- "EngineDefaults":{"shape":"EngineDefaults"}
1503
- }
1504
- },
1505
- "DescribeEventsMessage":{
1506
- "type":"structure",
1507
- "members":{
1508
- "SourceIdentifier":{"shape":"String"},
1509
- "SourceType":{"shape":"SourceType"},
1510
- "StartTime":{"shape":"TStamp"},
1511
- "EndTime":{"shape":"TStamp"},
1512
- "Duration":{"shape":"IntegerOptional"},
1513
- "MaxRecords":{"shape":"IntegerOptional"},
1514
- "Marker":{"shape":"String"}
1515
- }
1516
- },
1517
- "DescribeReplicationGroupsMessage":{
1518
- "type":"structure",
1519
- "members":{
1520
- "ReplicationGroupId":{"shape":"String"},
1521
- "MaxRecords":{"shape":"IntegerOptional"},
1522
- "Marker":{"shape":"String"}
1523
- }
1524
- },
1525
- "DescribeReservedCacheNodesMessage":{
1526
- "type":"structure",
1527
- "members":{
1528
- "ReservedCacheNodeId":{"shape":"String"},
1529
- "ReservedCacheNodesOfferingId":{"shape":"String"},
1530
- "CacheNodeType":{"shape":"String"},
1531
- "Duration":{"shape":"String"},
1532
- "ProductDescription":{"shape":"String"},
1533
- "OfferingType":{"shape":"String"},
1534
- "MaxRecords":{"shape":"IntegerOptional"},
1535
- "Marker":{"shape":"String"}
1536
- }
1537
- },
1538
- "DescribeReservedCacheNodesOfferingsMessage":{
1539
- "type":"structure",
1540
- "members":{
1541
- "ReservedCacheNodesOfferingId":{"shape":"String"},
1542
- "CacheNodeType":{"shape":"String"},
1543
- "Duration":{"shape":"String"},
1544
- "ProductDescription":{"shape":"String"},
1545
- "OfferingType":{"shape":"String"},
1546
- "MaxRecords":{"shape":"IntegerOptional"},
1547
- "Marker":{"shape":"String"}
1548
- }
1549
- },
1550
- "DescribeSnapshotsListMessage":{
1551
- "type":"structure",
1552
- "members":{
1553
- "Marker":{"shape":"String"},
1554
- "Snapshots":{"shape":"SnapshotList"}
1555
- }
1556
- },
1557
- "DescribeSnapshotsMessage":{
1558
- "type":"structure",
1559
- "members":{
1560
- "CacheClusterId":{"shape":"String"},
1561
- "SnapshotName":{"shape":"String"},
1562
- "SnapshotSource":{"shape":"String"},
1563
- "Marker":{"shape":"String"},
1564
- "MaxRecords":{"shape":"IntegerOptional"}
1565
- }
1566
- },
1567
- "Double":{"type":"double"},
1568
- "EC2SecurityGroup":{
1569
- "type":"structure",
1570
- "members":{
1571
- "Status":{"shape":"String"},
1572
- "EC2SecurityGroupName":{"shape":"String"},
1573
- "EC2SecurityGroupOwnerId":{"shape":"String"}
1574
- }
1575
- },
1576
- "EC2SecurityGroupList":{
1577
- "type":"list",
1578
- "member":{
1579
- "shape":"EC2SecurityGroup",
1580
- "locationName":"EC2SecurityGroup"
1581
- }
1582
- },
1583
- "Endpoint":{
1584
- "type":"structure",
1585
- "members":{
1586
- "Address":{"shape":"String"},
1587
- "Port":{"shape":"Integer"}
1588
- }
1589
- },
1590
- "EngineDefaults":{
1591
- "type":"structure",
1592
- "members":{
1593
- "CacheParameterGroupFamily":{"shape":"String"},
1594
- "Marker":{"shape":"String"},
1595
- "Parameters":{"shape":"ParametersList"},
1596
- "CacheNodeTypeSpecificParameters":{"shape":"CacheNodeTypeSpecificParametersList"}
1597
- },
1598
- "wrapper":true
1599
- },
1600
- "Event":{
1601
- "type":"structure",
1602
- "members":{
1603
- "SourceIdentifier":{"shape":"String"},
1604
- "SourceType":{"shape":"SourceType"},
1605
- "Message":{"shape":"String"},
1606
- "Date":{"shape":"TStamp"}
1607
- }
1608
- },
1609
- "EventList":{
1610
- "type":"list",
1611
- "member":{
1612
- "shape":"Event",
1613
- "locationName":"Event"
1614
- }
1615
- },
1616
- "EventsMessage":{
1617
- "type":"structure",
1618
- "members":{
1619
- "Marker":{"shape":"String"},
1620
- "Events":{"shape":"EventList"}
1621
- }
1622
- },
1623
- "InsufficientCacheClusterCapacityFault":{
1624
- "type":"structure",
1625
- "members":{
1626
- },
1627
- "error":{
1628
- "code":"InsufficientCacheClusterCapacity",
1629
- "httpStatusCode":400,
1630
- "senderFault":true
1631
- },
1632
- "exception":true
1633
- },
1634
- "Integer":{"type":"integer"},
1635
- "IntegerOptional":{"type":"integer"},
1636
- "InvalidARNFault":{
1637
- "type":"structure",
1638
- "members":{
1639
- },
1640
- "error":{
1641
- "code":"InvalidARN",
1642
- "httpStatusCode":400,
1643
- "senderFault":true
1644
- },
1645
- "exception":true
1646
- },
1647
- "InvalidCacheClusterStateFault":{
1648
- "type":"structure",
1649
- "members":{
1650
- },
1651
- "error":{
1652
- "code":"InvalidCacheClusterState",
1653
- "httpStatusCode":400,
1654
- "senderFault":true
1655
- },
1656
- "exception":true
1657
- },
1658
- "InvalidCacheParameterGroupStateFault":{
1659
- "type":"structure",
1660
- "members":{
1661
- },
1662
- "error":{
1663
- "code":"InvalidCacheParameterGroupState",
1664
- "httpStatusCode":400,
1665
- "senderFault":true
1666
- },
1667
- "exception":true
1668
- },
1669
- "InvalidCacheSecurityGroupStateFault":{
1670
- "type":"structure",
1671
- "members":{
1672
- },
1673
- "error":{
1674
- "code":"InvalidCacheSecurityGroupState",
1675
- "httpStatusCode":400,
1676
- "senderFault":true
1677
- },
1678
- "exception":true
1679
- },
1680
- "InvalidParameterCombinationException":{
1681
- "type":"structure",
1682
- "members":{
1683
- "message":{"shape":"AwsQueryErrorMessage"}
1684
- },
1685
- "error":{
1686
- "code":"InvalidParameterCombination",
1687
- "httpStatusCode":400,
1688
- "senderFault":true
1689
- },
1690
- "exception":true
1691
- },
1692
- "InvalidParameterValueException":{
1693
- "type":"structure",
1694
- "members":{
1695
- "message":{"shape":"AwsQueryErrorMessage"}
1696
- },
1697
- "error":{
1698
- "code":"InvalidParameterValue",
1699
- "httpStatusCode":400,
1700
- "senderFault":true
1701
- },
1702
- "exception":true
1703
- },
1704
- "InvalidReplicationGroupStateFault":{
1705
- "type":"structure",
1706
- "members":{
1707
- },
1708
- "error":{
1709
- "code":"InvalidReplicationGroupState",
1710
- "httpStatusCode":400,
1711
- "senderFault":true
1712
- },
1713
- "exception":true
1714
- },
1715
- "InvalidSnapshotStateFault":{
1716
- "type":"structure",
1717
- "members":{
1718
- },
1719
- "error":{
1720
- "code":"InvalidSnapshotState",
1721
- "httpStatusCode":400,
1722
- "senderFault":true
1723
- },
1724
- "exception":true
1725
- },
1726
- "InvalidSubnet":{
1727
- "type":"structure",
1728
- "members":{
1729
- },
1730
- "error":{
1731
- "code":"InvalidSubnet",
1732
- "httpStatusCode":400,
1733
- "senderFault":true
1734
- },
1735
- "exception":true
1736
- },
1737
- "InvalidVPCNetworkStateFault":{
1738
- "type":"structure",
1739
- "members":{
1740
- },
1741
- "error":{
1742
- "code":"InvalidVPCNetworkStateFault",
1743
- "httpStatusCode":400,
1744
- "senderFault":true
1745
- },
1746
- "exception":true
1747
- },
1748
- "KeyList":{
1749
- "type":"list",
1750
- "member":{"shape":"String"}
1751
- },
1752
- "ListAllowedNodeTypeModificationsMessage":{
1753
- "type":"structure",
1754
- "members":{
1755
- "CacheClusterId":{"shape":"String"},
1756
- "ReplicationGroupId":{"shape":"String"}
1757
- }
1758
- },
1759
- "ListTagsForResourceMessage":{
1760
- "type":"structure",
1761
- "required":["ResourceName"],
1762
- "members":{
1763
- "ResourceName":{"shape":"String"}
1764
- }
1765
- },
1766
- "ModifyCacheClusterMessage":{
1767
- "type":"structure",
1768
- "required":["CacheClusterId"],
1769
- "members":{
1770
- "CacheClusterId":{"shape":"String"},
1771
- "NumCacheNodes":{"shape":"IntegerOptional"},
1772
- "CacheNodeIdsToRemove":{"shape":"CacheNodeIdsList"},
1773
- "AZMode":{"shape":"AZMode"},
1774
- "NewAvailabilityZones":{"shape":"PreferredAvailabilityZoneList"},
1775
- "CacheSecurityGroupNames":{"shape":"CacheSecurityGroupNameList"},
1776
- "SecurityGroupIds":{"shape":"SecurityGroupIdsList"},
1777
- "PreferredMaintenanceWindow":{"shape":"String"},
1778
- "NotificationTopicArn":{"shape":"String"},
1779
- "CacheParameterGroupName":{"shape":"String"},
1780
- "NotificationTopicStatus":{"shape":"String"},
1781
- "ApplyImmediately":{"shape":"Boolean"},
1782
- "EngineVersion":{"shape":"String"},
1783
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
1784
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
1785
- "SnapshotWindow":{"shape":"String"},
1786
- "CacheNodeType":{"shape":"String"}
1787
- }
1788
- },
1789
- "ModifyCacheClusterResult":{
1790
- "type":"structure",
1791
- "members":{
1792
- "CacheCluster":{"shape":"CacheCluster"}
1793
- }
1794
- },
1795
- "ModifyCacheParameterGroupMessage":{
1796
- "type":"structure",
1797
- "required":[
1798
- "CacheParameterGroupName",
1799
- "ParameterNameValues"
1800
- ],
1801
- "members":{
1802
- "CacheParameterGroupName":{"shape":"String"},
1803
- "ParameterNameValues":{"shape":"ParameterNameValueList"}
1804
- }
1805
- },
1806
- "ModifyCacheSubnetGroupMessage":{
1807
- "type":"structure",
1808
- "required":["CacheSubnetGroupName"],
1809
- "members":{
1810
- "CacheSubnetGroupName":{"shape":"String"},
1811
- "CacheSubnetGroupDescription":{"shape":"String"},
1812
- "SubnetIds":{"shape":"SubnetIdentifierList"}
1813
- }
1814
- },
1815
- "ModifyCacheSubnetGroupResult":{
1816
- "type":"structure",
1817
- "members":{
1818
- "CacheSubnetGroup":{"shape":"CacheSubnetGroup"}
1819
- }
1820
- },
1821
- "ModifyReplicationGroupMessage":{
1822
- "type":"structure",
1823
- "required":["ReplicationGroupId"],
1824
- "members":{
1825
- "ReplicationGroupId":{"shape":"String"},
1826
- "ReplicationGroupDescription":{"shape":"String"},
1827
- "PrimaryClusterId":{"shape":"String"},
1828
- "SnapshottingClusterId":{"shape":"String"},
1829
- "AutomaticFailoverEnabled":{"shape":"BooleanOptional"},
1830
- "CacheSecurityGroupNames":{"shape":"CacheSecurityGroupNameList"},
1831
- "SecurityGroupIds":{"shape":"SecurityGroupIdsList"},
1832
- "PreferredMaintenanceWindow":{"shape":"String"},
1833
- "NotificationTopicArn":{"shape":"String"},
1834
- "CacheParameterGroupName":{"shape":"String"},
1835
- "NotificationTopicStatus":{"shape":"String"},
1836
- "ApplyImmediately":{"shape":"Boolean"},
1837
- "EngineVersion":{"shape":"String"},
1838
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
1839
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
1840
- "SnapshotWindow":{"shape":"String"},
1841
- "CacheNodeType":{"shape":"String"}
1842
- }
1843
- },
1844
- "ModifyReplicationGroupResult":{
1845
- "type":"structure",
1846
- "members":{
1847
- "ReplicationGroup":{"shape":"ReplicationGroup"}
1848
- }
1849
- },
1850
- "NodeGroup":{
1851
- "type":"structure",
1852
- "members":{
1853
- "NodeGroupId":{"shape":"String"},
1854
- "Status":{"shape":"String"},
1855
- "PrimaryEndpoint":{"shape":"Endpoint"},
1856
- "NodeGroupMembers":{"shape":"NodeGroupMemberList"}
1857
- }
1858
- },
1859
- "NodeGroupList":{
1860
- "type":"list",
1861
- "member":{
1862
- "shape":"NodeGroup",
1863
- "locationName":"NodeGroup"
1864
- }
1865
- },
1866
- "NodeGroupMember":{
1867
- "type":"structure",
1868
- "members":{
1869
- "CacheClusterId":{"shape":"String"},
1870
- "CacheNodeId":{"shape":"String"},
1871
- "ReadEndpoint":{"shape":"Endpoint"},
1872
- "PreferredAvailabilityZone":{"shape":"String"},
1873
- "CurrentRole":{"shape":"String"}
1874
- }
1875
- },
1876
- "NodeGroupMemberList":{
1877
- "type":"list",
1878
- "member":{
1879
- "shape":"NodeGroupMember",
1880
- "locationName":"NodeGroupMember"
1881
- }
1882
- },
1883
- "NodeQuotaForClusterExceededFault":{
1884
- "type":"structure",
1885
- "members":{
1886
- },
1887
- "error":{
1888
- "code":"NodeQuotaForClusterExceeded",
1889
- "httpStatusCode":400,
1890
- "senderFault":true
1891
- },
1892
- "exception":true
1893
- },
1894
- "NodeQuotaForCustomerExceededFault":{
1895
- "type":"structure",
1896
- "members":{
1897
- },
1898
- "error":{
1899
- "code":"NodeQuotaForCustomerExceeded",
1900
- "httpStatusCode":400,
1901
- "senderFault":true
1902
- },
1903
- "exception":true
1904
- },
1905
- "NodeSnapshot":{
1906
- "type":"structure",
1907
- "members":{
1908
- "CacheNodeId":{"shape":"String"},
1909
- "CacheSize":{"shape":"String"},
1910
- "CacheNodeCreateTime":{"shape":"TStamp"},
1911
- "SnapshotCreateTime":{"shape":"TStamp"}
1912
- },
1913
- "wrapper":true
1914
- },
1915
- "NodeSnapshotList":{
1916
- "type":"list",
1917
- "member":{
1918
- "shape":"NodeSnapshot",
1919
- "locationName":"NodeSnapshot"
1920
- }
1921
- },
1922
- "NodeTypeList":{
1923
- "type":"list",
1924
- "member":{"shape":"String"}
1925
- },
1926
- "NotificationConfiguration":{
1927
- "type":"structure",
1928
- "members":{
1929
- "TopicArn":{"shape":"String"},
1930
- "TopicStatus":{"shape":"String"}
1931
- }
1932
- },
1933
- "Parameter":{
1934
- "type":"structure",
1935
- "members":{
1936
- "ParameterName":{"shape":"String"},
1937
- "ParameterValue":{"shape":"String"},
1938
- "Description":{"shape":"String"},
1939
- "Source":{"shape":"String"},
1940
- "DataType":{"shape":"String"},
1941
- "AllowedValues":{"shape":"String"},
1942
- "IsModifiable":{"shape":"Boolean"},
1943
- "MinimumEngineVersion":{"shape":"String"},
1944
- "ChangeType":{"shape":"ChangeType"}
1945
- }
1946
- },
1947
- "ParameterNameValue":{
1948
- "type":"structure",
1949
- "members":{
1950
- "ParameterName":{"shape":"String"},
1951
- "ParameterValue":{"shape":"String"}
1952
- }
1953
- },
1954
- "ParameterNameValueList":{
1955
- "type":"list",
1956
- "member":{
1957
- "shape":"ParameterNameValue",
1958
- "locationName":"ParameterNameValue"
1959
- }
1960
- },
1961
- "ParametersList":{
1962
- "type":"list",
1963
- "member":{
1964
- "shape":"Parameter",
1965
- "locationName":"Parameter"
1966
- }
1967
- },
1968
- "PendingAutomaticFailoverStatus":{
1969
- "type":"string",
1970
- "enum":[
1971
- "enabled",
1972
- "disabled"
1973
- ]
1974
- },
1975
- "PendingModifiedValues":{
1976
- "type":"structure",
1977
- "members":{
1978
- "NumCacheNodes":{"shape":"IntegerOptional"},
1979
- "CacheNodeIdsToRemove":{"shape":"CacheNodeIdsList"},
1980
- "EngineVersion":{"shape":"String"},
1981
- "CacheNodeType":{"shape":"String"}
1982
- }
1983
- },
1984
- "PreferredAvailabilityZoneList":{
1985
- "type":"list",
1986
- "member":{
1987
- "shape":"String",
1988
- "locationName":"PreferredAvailabilityZone"
1989
- }
1990
- },
1991
- "PurchaseReservedCacheNodesOfferingMessage":{
1992
- "type":"structure",
1993
- "required":["ReservedCacheNodesOfferingId"],
1994
- "members":{
1995
- "ReservedCacheNodesOfferingId":{"shape":"String"},
1996
- "ReservedCacheNodeId":{"shape":"String"},
1997
- "CacheNodeCount":{"shape":"IntegerOptional"}
1998
- }
1999
- },
2000
- "PurchaseReservedCacheNodesOfferingResult":{
2001
- "type":"structure",
2002
- "members":{
2003
- "ReservedCacheNode":{"shape":"ReservedCacheNode"}
2004
- }
2005
- },
2006
- "RebootCacheClusterMessage":{
2007
- "type":"structure",
2008
- "required":[
2009
- "CacheClusterId",
2010
- "CacheNodeIdsToReboot"
2011
- ],
2012
- "members":{
2013
- "CacheClusterId":{"shape":"String"},
2014
- "CacheNodeIdsToReboot":{"shape":"CacheNodeIdsList"}
2015
- }
2016
- },
2017
- "RebootCacheClusterResult":{
2018
- "type":"structure",
2019
- "members":{
2020
- "CacheCluster":{"shape":"CacheCluster"}
2021
- }
2022
- },
2023
- "RecurringCharge":{
2024
- "type":"structure",
2025
- "members":{
2026
- "RecurringChargeAmount":{"shape":"Double"},
2027
- "RecurringChargeFrequency":{"shape":"String"}
2028
- },
2029
- "wrapper":true
2030
- },
2031
- "RecurringChargeList":{
2032
- "type":"list",
2033
- "member":{
2034
- "shape":"RecurringCharge",
2035
- "locationName":"RecurringCharge"
2036
- }
2037
- },
2038
- "RemoveTagsFromResourceMessage":{
2039
- "type":"structure",
2040
- "required":[
2041
- "ResourceName",
2042
- "TagKeys"
2043
- ],
2044
- "members":{
2045
- "ResourceName":{"shape":"String"},
2046
- "TagKeys":{"shape":"KeyList"}
2047
- }
2048
- },
2049
- "ReplicationGroup":{
2050
- "type":"structure",
2051
- "members":{
2052
- "ReplicationGroupId":{"shape":"String"},
2053
- "Description":{"shape":"String"},
2054
- "Status":{"shape":"String"},
2055
- "PendingModifiedValues":{"shape":"ReplicationGroupPendingModifiedValues"},
2056
- "MemberClusters":{"shape":"ClusterIdList"},
2057
- "NodeGroups":{"shape":"NodeGroupList"},
2058
- "SnapshottingClusterId":{"shape":"String"},
2059
- "AutomaticFailover":{"shape":"AutomaticFailoverStatus"}
2060
- },
2061
- "wrapper":true
2062
- },
2063
- "ReplicationGroupAlreadyExistsFault":{
2064
- "type":"structure",
2065
- "members":{
2066
- },
2067
- "error":{
2068
- "code":"ReplicationGroupAlreadyExists",
2069
- "httpStatusCode":400,
2070
- "senderFault":true
2071
- },
2072
- "exception":true
2073
- },
2074
- "ReplicationGroupList":{
2075
- "type":"list",
2076
- "member":{
2077
- "shape":"ReplicationGroup",
2078
- "locationName":"ReplicationGroup"
2079
- }
2080
- },
2081
- "ReplicationGroupMessage":{
2082
- "type":"structure",
2083
- "members":{
2084
- "Marker":{"shape":"String"},
2085
- "ReplicationGroups":{"shape":"ReplicationGroupList"}
2086
- }
2087
- },
2088
- "ReplicationGroupNotFoundFault":{
2089
- "type":"structure",
2090
- "members":{
2091
- },
2092
- "error":{
2093
- "code":"ReplicationGroupNotFoundFault",
2094
- "httpStatusCode":404,
2095
- "senderFault":true
2096
- },
2097
- "exception":true
2098
- },
2099
- "ReplicationGroupPendingModifiedValues":{
2100
- "type":"structure",
2101
- "members":{
2102
- "PrimaryClusterId":{"shape":"String"},
2103
- "AutomaticFailoverStatus":{"shape":"PendingAutomaticFailoverStatus"}
2104
- }
2105
- },
2106
- "ReservedCacheNode":{
2107
- "type":"structure",
2108
- "members":{
2109
- "ReservedCacheNodeId":{"shape":"String"},
2110
- "ReservedCacheNodesOfferingId":{"shape":"String"},
2111
- "CacheNodeType":{"shape":"String"},
2112
- "StartTime":{"shape":"TStamp"},
2113
- "Duration":{"shape":"Integer"},
2114
- "FixedPrice":{"shape":"Double"},
2115
- "UsagePrice":{"shape":"Double"},
2116
- "CacheNodeCount":{"shape":"Integer"},
2117
- "ProductDescription":{"shape":"String"},
2118
- "OfferingType":{"shape":"String"},
2119
- "State":{"shape":"String"},
2120
- "RecurringCharges":{"shape":"RecurringChargeList"}
2121
- },
2122
- "wrapper":true
2123
- },
2124
- "ReservedCacheNodeAlreadyExistsFault":{
2125
- "type":"structure",
2126
- "members":{
2127
- },
2128
- "error":{
2129
- "code":"ReservedCacheNodeAlreadyExists",
2130
- "httpStatusCode":404,
2131
- "senderFault":true
2132
- },
2133
- "exception":true
2134
- },
2135
- "ReservedCacheNodeList":{
2136
- "type":"list",
2137
- "member":{
2138
- "shape":"ReservedCacheNode",
2139
- "locationName":"ReservedCacheNode"
2140
- }
2141
- },
2142
- "ReservedCacheNodeMessage":{
2143
- "type":"structure",
2144
- "members":{
2145
- "Marker":{"shape":"String"},
2146
- "ReservedCacheNodes":{"shape":"ReservedCacheNodeList"}
2147
- }
2148
- },
2149
- "ReservedCacheNodeNotFoundFault":{
2150
- "type":"structure",
2151
- "members":{
2152
- },
2153
- "error":{
2154
- "code":"ReservedCacheNodeNotFound",
2155
- "httpStatusCode":404,
2156
- "senderFault":true
2157
- },
2158
- "exception":true
2159
- },
2160
- "ReservedCacheNodeQuotaExceededFault":{
2161
- "type":"structure",
2162
- "members":{
2163
- },
2164
- "error":{
2165
- "code":"ReservedCacheNodeQuotaExceeded",
2166
- "httpStatusCode":400,
2167
- "senderFault":true
2168
- },
2169
- "exception":true
2170
- },
2171
- "ReservedCacheNodesOffering":{
2172
- "type":"structure",
2173
- "members":{
2174
- "ReservedCacheNodesOfferingId":{"shape":"String"},
2175
- "CacheNodeType":{"shape":"String"},
2176
- "Duration":{"shape":"Integer"},
2177
- "FixedPrice":{"shape":"Double"},
2178
- "UsagePrice":{"shape":"Double"},
2179
- "ProductDescription":{"shape":"String"},
2180
- "OfferingType":{"shape":"String"},
2181
- "RecurringCharges":{"shape":"RecurringChargeList"}
2182
- },
2183
- "wrapper":true
2184
- },
2185
- "ReservedCacheNodesOfferingList":{
2186
- "type":"list",
2187
- "member":{
2188
- "shape":"ReservedCacheNodesOffering",
2189
- "locationName":"ReservedCacheNodesOffering"
2190
- }
2191
- },
2192
- "ReservedCacheNodesOfferingMessage":{
2193
- "type":"structure",
2194
- "members":{
2195
- "Marker":{"shape":"String"},
2196
- "ReservedCacheNodesOfferings":{"shape":"ReservedCacheNodesOfferingList"}
2197
- }
2198
- },
2199
- "ReservedCacheNodesOfferingNotFoundFault":{
2200
- "type":"structure",
2201
- "members":{
2202
- },
2203
- "error":{
2204
- "code":"ReservedCacheNodesOfferingNotFound",
2205
- "httpStatusCode":404,
2206
- "senderFault":true
2207
- },
2208
- "exception":true
2209
- },
2210
- "ResetCacheParameterGroupMessage":{
2211
- "type":"structure",
2212
- "required":["CacheParameterGroupName"],
2213
- "members":{
2214
- "CacheParameterGroupName":{"shape":"String"},
2215
- "ResetAllParameters":{"shape":"Boolean"},
2216
- "ParameterNameValues":{"shape":"ParameterNameValueList"}
2217
- }
2218
- },
2219
- "RevokeCacheSecurityGroupIngressMessage":{
2220
- "type":"structure",
2221
- "required":[
2222
- "CacheSecurityGroupName",
2223
- "EC2SecurityGroupName",
2224
- "EC2SecurityGroupOwnerId"
2225
- ],
2226
- "members":{
2227
- "CacheSecurityGroupName":{"shape":"String"},
2228
- "EC2SecurityGroupName":{"shape":"String"},
2229
- "EC2SecurityGroupOwnerId":{"shape":"String"}
2230
- }
2231
- },
2232
- "RevokeCacheSecurityGroupIngressResult":{
2233
- "type":"structure",
2234
- "members":{
2235
- "CacheSecurityGroup":{"shape":"CacheSecurityGroup"}
2236
- }
2237
- },
2238
- "SecurityGroupIdsList":{
2239
- "type":"list",
2240
- "member":{
2241
- "shape":"String",
2242
- "locationName":"SecurityGroupId"
2243
- }
2244
- },
2245
- "SecurityGroupMembership":{
2246
- "type":"structure",
2247
- "members":{
2248
- "SecurityGroupId":{"shape":"String"},
2249
- "Status":{"shape":"String"}
2250
- }
2251
- },
2252
- "SecurityGroupMembershipList":{
2253
- "type":"list",
2254
- "member":{"shape":"SecurityGroupMembership"}
2255
- },
2256
- "Snapshot":{
2257
- "type":"structure",
2258
- "members":{
2259
- "SnapshotName":{"shape":"String"},
2260
- "CacheClusterId":{"shape":"String"},
2261
- "SnapshotStatus":{"shape":"String"},
2262
- "SnapshotSource":{"shape":"String"},
2263
- "CacheNodeType":{"shape":"String"},
2264
- "Engine":{"shape":"String"},
2265
- "EngineVersion":{"shape":"String"},
2266
- "NumCacheNodes":{"shape":"IntegerOptional"},
2267
- "PreferredAvailabilityZone":{"shape":"String"},
2268
- "CacheClusterCreateTime":{"shape":"TStamp"},
2269
- "PreferredMaintenanceWindow":{"shape":"String"},
2270
- "TopicArn":{"shape":"String"},
2271
- "Port":{"shape":"IntegerOptional"},
2272
- "CacheParameterGroupName":{"shape":"String"},
2273
- "CacheSubnetGroupName":{"shape":"String"},
2274
- "VpcId":{"shape":"String"},
2275
- "AutoMinorVersionUpgrade":{"shape":"Boolean"},
2276
- "SnapshotRetentionLimit":{"shape":"IntegerOptional"},
2277
- "SnapshotWindow":{"shape":"String"},
2278
- "NodeSnapshots":{"shape":"NodeSnapshotList"}
2279
- },
2280
- "wrapper":true
2281
- },
2282
- "SnapshotAlreadyExistsFault":{
2283
- "type":"structure",
2284
- "members":{
2285
- },
2286
- "error":{
2287
- "code":"SnapshotAlreadyExistsFault",
2288
- "httpStatusCode":400,
2289
- "senderFault":true
2290
- },
2291
- "exception":true
2292
- },
2293
- "SnapshotArnsList":{
2294
- "type":"list",
2295
- "member":{
2296
- "shape":"String",
2297
- "locationName":"SnapshotArn"
2298
- }
2299
- },
2300
- "SnapshotFeatureNotSupportedFault":{
2301
- "type":"structure",
2302
- "members":{
2303
- },
2304
- "error":{
2305
- "code":"SnapshotFeatureNotSupportedFault",
2306
- "httpStatusCode":400,
2307
- "senderFault":true
2308
- },
2309
- "exception":true
2310
- },
2311
- "SnapshotList":{
2312
- "type":"list",
2313
- "member":{
2314
- "shape":"Snapshot",
2315
- "locationName":"Snapshot"
2316
- }
2317
- },
2318
- "SnapshotNotFoundFault":{
2319
- "type":"structure",
2320
- "members":{
2321
- },
2322
- "error":{
2323
- "code":"SnapshotNotFoundFault",
2324
- "httpStatusCode":404,
2325
- "senderFault":true
2326
- },
2327
- "exception":true
2328
- },
2329
- "SnapshotQuotaExceededFault":{
2330
- "type":"structure",
2331
- "members":{
2332
- },
2333
- "error":{
2334
- "code":"SnapshotQuotaExceededFault",
2335
- "httpStatusCode":400,
2336
- "senderFault":true
2337
- },
2338
- "exception":true
2339
- },
2340
- "SourceType":{
2341
- "type":"string",
2342
- "enum":[
2343
- "cache-cluster",
2344
- "cache-parameter-group",
2345
- "cache-security-group",
2346
- "cache-subnet-group"
2347
- ]
2348
- },
2349
- "String":{"type":"string"},
2350
- "Subnet":{
2351
- "type":"structure",
2352
- "members":{
2353
- "SubnetIdentifier":{"shape":"String"},
2354
- "SubnetAvailabilityZone":{"shape":"AvailabilityZone"}
2355
- }
2356
- },
2357
- "SubnetIdentifierList":{
2358
- "type":"list",
2359
- "member":{
2360
- "shape":"String",
2361
- "locationName":"SubnetIdentifier"
2362
- }
2363
- },
2364
- "SubnetInUse":{
2365
- "type":"structure",
2366
- "members":{
2367
- },
2368
- "error":{
2369
- "code":"SubnetInUse",
2370
- "httpStatusCode":400,
2371
- "senderFault":true
2372
- },
2373
- "exception":true
2374
- },
2375
- "SubnetList":{
2376
- "type":"list",
2377
- "member":{
2378
- "shape":"Subnet",
2379
- "locationName":"Subnet"
2380
- }
2381
- },
2382
- "TStamp":{"type":"timestamp"},
2383
- "Tag":{
2384
- "type":"structure",
2385
- "members":{
2386
- "Key":{"shape":"String"},
2387
- "Value":{"shape":"String"}
2388
- }
2389
- },
2390
- "TagList":{
2391
- "type":"list",
2392
- "member":{
2393
- "shape":"Tag",
2394
- "locationName":"Tag"
2395
- }
2396
- },
2397
- "TagListMessage":{
2398
- "type":"structure",
2399
- "members":{
2400
- "TagList":{"shape":"TagList"}
2401
- }
2402
- },
2403
- "TagNotFoundFault":{
2404
- "type":"structure",
2405
- "members":{
2406
- },
2407
- "error":{
2408
- "code":"TagNotFound",
2409
- "httpStatusCode":404,
2410
- "senderFault":true
2411
- },
2412
- "exception":true
2413
- },
2414
- "TagQuotaPerResourceExceeded":{
2415
- "type":"structure",
2416
- "members":{
2417
- },
2418
- "error":{
2419
- "code":"TagQuotaPerResourceExceeded",
2420
- "httpStatusCode":400,
2421
- "senderFault":true
2422
- },
2423
- "exception":true
2424
- }
2425
- }
2426
- }