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,102 +0,0 @@
1
- {
2
- "version": 2,
3
- "waiters": {
4
- "DBInstanceAvailable": {
5
- "delay": 30,
6
- "operation": "DescribeDBInstances",
7
- "maxAttempts": 60,
8
- "acceptors": [
9
- {
10
- "expected": "available",
11
- "matcher": "pathAll",
12
- "state": "success",
13
- "argument": "DBInstances[].DBInstanceStatus"
14
- },
15
- {
16
- "expected": "deleted",
17
- "matcher": "pathAny",
18
- "state": "failure",
19
- "argument": "DBInstances[].DBInstanceStatus"
20
- },
21
- {
22
- "expected": "deleting",
23
- "matcher": "pathAny",
24
- "state": "failure",
25
- "argument": "DBInstances[].DBInstanceStatus"
26
- },
27
- {
28
- "expected": "failed",
29
- "matcher": "pathAny",
30
- "state": "failure",
31
- "argument": "DBInstances[].DBInstanceStatus"
32
- },
33
- {
34
- "expected": "incompatible-restore",
35
- "matcher": "pathAny",
36
- "state": "failure",
37
- "argument": "DBInstances[].DBInstanceStatus"
38
- },
39
- {
40
- "expected": "incompatible-parameters",
41
- "matcher": "pathAny",
42
- "state": "failure",
43
- "argument": "DBInstances[].DBInstanceStatus"
44
- },
45
- {
46
- "expected": "incompatible-parameters",
47
- "matcher": "pathAny",
48
- "state": "failure",
49
- "argument": "DBInstances[].DBInstanceStatus"
50
- },
51
- {
52
- "expected": "incompatible-restore",
53
- "matcher": "pathAny",
54
- "state": "failure",
55
- "argument": "DBInstances[].DBInstanceStatus"
56
- }
57
- ]
58
- },
59
- "DBInstanceDeleted": {
60
- "delay": 30,
61
- "operation": "DescribeDBInstances",
62
- "maxAttempts": 60,
63
- "acceptors": [
64
- {
65
- "expected": "deleted",
66
- "matcher": "pathAll",
67
- "state": "success",
68
- "argument": "DBInstances[].DBInstanceStatus"
69
- },
70
- {
71
- "expected": "DBInstanceNotFound",
72
- "matcher": "error",
73
- "state": "success"
74
- },
75
- {
76
- "expected": "creating",
77
- "matcher": "pathAny",
78
- "state": "failure",
79
- "argument": "DBInstances[].DBInstanceStatus"
80
- },
81
- {
82
- "expected": "modifying",
83
- "matcher": "pathAny",
84
- "state": "failure",
85
- "argument": "DBInstances[].DBInstanceStatus"
86
- },
87
- {
88
- "expected": "rebooting",
89
- "matcher": "pathAny",
90
- "state": "failure",
91
- "argument": "DBInstances[].DBInstanceStatus"
92
- },
93
- {
94
- "expected": "resetting-master-credentials",
95
- "matcher": "pathAny",
96
- "state": "failure",
97
- "argument": "DBInstances[].DBInstanceStatus"
98
- }
99
- ]
100
- }
101
- }
102
- }
@@ -1,3768 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2012-12-01",
5
- "endpointPrefix":"redshift",
6
- "protocol":"query",
7
- "serviceFullName":"Amazon Redshift",
8
- "signatureVersion":"v4",
9
- "xmlNamespace":"http://redshift.amazonaws.com/doc/2012-12-01/"
10
- },
11
- "operations":{
12
- "AuthorizeClusterSecurityGroupIngress":{
13
- "name":"AuthorizeClusterSecurityGroupIngress",
14
- "http":{
15
- "method":"POST",
16
- "requestUri":"/"
17
- },
18
- "input":{"shape":"AuthorizeClusterSecurityGroupIngressMessage"},
19
- "output":{
20
- "shape":"AuthorizeClusterSecurityGroupIngressResult",
21
- "resultWrapper":"AuthorizeClusterSecurityGroupIngressResult"
22
- },
23
- "errors":[
24
- {"shape":"ClusterSecurityGroupNotFoundFault"},
25
- {"shape":"InvalidClusterSecurityGroupStateFault"},
26
- {"shape":"AuthorizationAlreadyExistsFault"},
27
- {"shape":"AuthorizationQuotaExceededFault"}
28
- ]
29
- },
30
- "AuthorizeSnapshotAccess":{
31
- "name":"AuthorizeSnapshotAccess",
32
- "http":{
33
- "method":"POST",
34
- "requestUri":"/"
35
- },
36
- "input":{"shape":"AuthorizeSnapshotAccessMessage"},
37
- "output":{
38
- "shape":"AuthorizeSnapshotAccessResult",
39
- "resultWrapper":"AuthorizeSnapshotAccessResult"
40
- },
41
- "errors":[
42
- {"shape":"ClusterSnapshotNotFoundFault"},
43
- {"shape":"AuthorizationAlreadyExistsFault"},
44
- {"shape":"AuthorizationQuotaExceededFault"},
45
- {"shape":"DependentServiceRequestThrottlingFault"},
46
- {"shape":"InvalidClusterSnapshotStateFault"},
47
- {"shape":"LimitExceededFault"}
48
- ]
49
- },
50
- "CopyClusterSnapshot":{
51
- "name":"CopyClusterSnapshot",
52
- "http":{
53
- "method":"POST",
54
- "requestUri":"/"
55
- },
56
- "input":{"shape":"CopyClusterSnapshotMessage"},
57
- "output":{
58
- "shape":"CopyClusterSnapshotResult",
59
- "resultWrapper":"CopyClusterSnapshotResult"
60
- },
61
- "errors":[
62
- {"shape":"ClusterSnapshotAlreadyExistsFault"},
63
- {"shape":"ClusterSnapshotNotFoundFault"},
64
- {"shape":"InvalidClusterSnapshotStateFault"},
65
- {"shape":"ClusterSnapshotQuotaExceededFault"}
66
- ]
67
- },
68
- "CreateCluster":{
69
- "name":"CreateCluster",
70
- "http":{
71
- "method":"POST",
72
- "requestUri":"/"
73
- },
74
- "input":{"shape":"CreateClusterMessage"},
75
- "output":{
76
- "shape":"CreateClusterResult",
77
- "resultWrapper":"CreateClusterResult"
78
- },
79
- "errors":[
80
- {"shape":"ClusterAlreadyExistsFault"},
81
- {"shape":"InsufficientClusterCapacityFault"},
82
- {"shape":"ClusterParameterGroupNotFoundFault"},
83
- {"shape":"ClusterSecurityGroupNotFoundFault"},
84
- {"shape":"ClusterQuotaExceededFault"},
85
- {"shape":"NumberOfNodesQuotaExceededFault"},
86
- {"shape":"NumberOfNodesPerClusterLimitExceededFault"},
87
- {"shape":"ClusterSubnetGroupNotFoundFault"},
88
- {"shape":"InvalidVPCNetworkStateFault"},
89
- {"shape":"InvalidClusterSubnetGroupStateFault"},
90
- {"shape":"InvalidSubnet"},
91
- {"shape":"UnauthorizedOperation"},
92
- {"shape":"HsmClientCertificateNotFoundFault"},
93
- {"shape":"HsmConfigurationNotFoundFault"},
94
- {"shape":"InvalidElasticIpFault"},
95
- {"shape":"TagLimitExceededFault"},
96
- {"shape":"InvalidTagFault"},
97
- {"shape":"LimitExceededFault"},
98
- {"shape":"DependentServiceRequestThrottlingFault"}
99
- ]
100
- },
101
- "CreateClusterParameterGroup":{
102
- "name":"CreateClusterParameterGroup",
103
- "http":{
104
- "method":"POST",
105
- "requestUri":"/"
106
- },
107
- "input":{"shape":"CreateClusterParameterGroupMessage"},
108
- "output":{
109
- "shape":"CreateClusterParameterGroupResult",
110
- "resultWrapper":"CreateClusterParameterGroupResult"
111
- },
112
- "errors":[
113
- {"shape":"ClusterParameterGroupQuotaExceededFault"},
114
- {"shape":"ClusterParameterGroupAlreadyExistsFault"},
115
- {"shape":"TagLimitExceededFault"},
116
- {"shape":"InvalidTagFault"}
117
- ]
118
- },
119
- "CreateClusterSecurityGroup":{
120
- "name":"CreateClusterSecurityGroup",
121
- "http":{
122
- "method":"POST",
123
- "requestUri":"/"
124
- },
125
- "input":{"shape":"CreateClusterSecurityGroupMessage"},
126
- "output":{
127
- "shape":"CreateClusterSecurityGroupResult",
128
- "resultWrapper":"CreateClusterSecurityGroupResult"
129
- },
130
- "errors":[
131
- {"shape":"ClusterSecurityGroupAlreadyExistsFault"},
132
- {"shape":"ClusterSecurityGroupQuotaExceededFault"},
133
- {"shape":"TagLimitExceededFault"},
134
- {"shape":"InvalidTagFault"}
135
- ]
136
- },
137
- "CreateClusterSnapshot":{
138
- "name":"CreateClusterSnapshot",
139
- "http":{
140
- "method":"POST",
141
- "requestUri":"/"
142
- },
143
- "input":{"shape":"CreateClusterSnapshotMessage"},
144
- "output":{
145
- "shape":"CreateClusterSnapshotResult",
146
- "resultWrapper":"CreateClusterSnapshotResult"
147
- },
148
- "errors":[
149
- {"shape":"ClusterSnapshotAlreadyExistsFault"},
150
- {"shape":"InvalidClusterStateFault"},
151
- {"shape":"ClusterNotFoundFault"},
152
- {"shape":"ClusterSnapshotQuotaExceededFault"},
153
- {"shape":"TagLimitExceededFault"},
154
- {"shape":"InvalidTagFault"}
155
- ]
156
- },
157
- "CreateClusterSubnetGroup":{
158
- "name":"CreateClusterSubnetGroup",
159
- "http":{
160
- "method":"POST",
161
- "requestUri":"/"
162
- },
163
- "input":{"shape":"CreateClusterSubnetGroupMessage"},
164
- "output":{
165
- "shape":"CreateClusterSubnetGroupResult",
166
- "resultWrapper":"CreateClusterSubnetGroupResult"
167
- },
168
- "errors":[
169
- {"shape":"ClusterSubnetGroupAlreadyExistsFault"},
170
- {"shape":"ClusterSubnetGroupQuotaExceededFault"},
171
- {"shape":"ClusterSubnetQuotaExceededFault"},
172
- {"shape":"InvalidSubnet"},
173
- {"shape":"UnauthorizedOperation"},
174
- {"shape":"TagLimitExceededFault"},
175
- {"shape":"InvalidTagFault"},
176
- {"shape":"DependentServiceRequestThrottlingFault"}
177
- ]
178
- },
179
- "CreateEventSubscription":{
180
- "name":"CreateEventSubscription",
181
- "http":{
182
- "method":"POST",
183
- "requestUri":"/"
184
- },
185
- "input":{"shape":"CreateEventSubscriptionMessage"},
186
- "output":{
187
- "shape":"CreateEventSubscriptionResult",
188
- "resultWrapper":"CreateEventSubscriptionResult"
189
- },
190
- "errors":[
191
- {"shape":"EventSubscriptionQuotaExceededFault"},
192
- {"shape":"SubscriptionAlreadyExistFault"},
193
- {"shape":"SNSInvalidTopicFault"},
194
- {"shape":"SNSNoAuthorizationFault"},
195
- {"shape":"SNSTopicArnNotFoundFault"},
196
- {"shape":"SubscriptionEventIdNotFoundFault"},
197
- {"shape":"SubscriptionCategoryNotFoundFault"},
198
- {"shape":"SubscriptionSeverityNotFoundFault"},
199
- {"shape":"SourceNotFoundFault"},
200
- {"shape":"TagLimitExceededFault"},
201
- {"shape":"InvalidTagFault"}
202
- ]
203
- },
204
- "CreateHsmClientCertificate":{
205
- "name":"CreateHsmClientCertificate",
206
- "http":{
207
- "method":"POST",
208
- "requestUri":"/"
209
- },
210
- "input":{"shape":"CreateHsmClientCertificateMessage"},
211
- "output":{
212
- "shape":"CreateHsmClientCertificateResult",
213
- "resultWrapper":"CreateHsmClientCertificateResult"
214
- },
215
- "errors":[
216
- {"shape":"HsmClientCertificateAlreadyExistsFault"},
217
- {"shape":"HsmClientCertificateQuotaExceededFault"},
218
- {"shape":"TagLimitExceededFault"},
219
- {"shape":"InvalidTagFault"}
220
- ]
221
- },
222
- "CreateHsmConfiguration":{
223
- "name":"CreateHsmConfiguration",
224
- "http":{
225
- "method":"POST",
226
- "requestUri":"/"
227
- },
228
- "input":{"shape":"CreateHsmConfigurationMessage"},
229
- "output":{
230
- "shape":"CreateHsmConfigurationResult",
231
- "resultWrapper":"CreateHsmConfigurationResult"
232
- },
233
- "errors":[
234
- {"shape":"HsmConfigurationAlreadyExistsFault"},
235
- {"shape":"HsmConfigurationQuotaExceededFault"},
236
- {"shape":"TagLimitExceededFault"},
237
- {"shape":"InvalidTagFault"}
238
- ]
239
- },
240
- "CreateSnapshotCopyGrant":{
241
- "name":"CreateSnapshotCopyGrant",
242
- "http":{
243
- "method":"POST",
244
- "requestUri":"/"
245
- },
246
- "input":{"shape":"CreateSnapshotCopyGrantMessage"},
247
- "output":{
248
- "shape":"CreateSnapshotCopyGrantResult",
249
- "resultWrapper":"CreateSnapshotCopyGrantResult"
250
- },
251
- "errors":[
252
- {"shape":"SnapshotCopyGrantAlreadyExistsFault"},
253
- {"shape":"SnapshotCopyGrantQuotaExceededFault"},
254
- {"shape":"LimitExceededFault"},
255
- {"shape":"TagLimitExceededFault"},
256
- {"shape":"InvalidTagFault"},
257
- {"shape":"DependentServiceRequestThrottlingFault"}
258
- ]
259
- },
260
- "CreateTags":{
261
- "name":"CreateTags",
262
- "http":{
263
- "method":"POST",
264
- "requestUri":"/"
265
- },
266
- "input":{"shape":"CreateTagsMessage"},
267
- "errors":[
268
- {"shape":"TagLimitExceededFault"},
269
- {"shape":"ResourceNotFoundFault"},
270
- {"shape":"InvalidTagFault"}
271
- ]
272
- },
273
- "DeleteCluster":{
274
- "name":"DeleteCluster",
275
- "http":{
276
- "method":"POST",
277
- "requestUri":"/"
278
- },
279
- "input":{"shape":"DeleteClusterMessage"},
280
- "output":{
281
- "shape":"DeleteClusterResult",
282
- "resultWrapper":"DeleteClusterResult"
283
- },
284
- "errors":[
285
- {"shape":"ClusterNotFoundFault"},
286
- {"shape":"InvalidClusterStateFault"},
287
- {"shape":"ClusterSnapshotAlreadyExistsFault"},
288
- {"shape":"ClusterSnapshotQuotaExceededFault"}
289
- ]
290
- },
291
- "DeleteClusterParameterGroup":{
292
- "name":"DeleteClusterParameterGroup",
293
- "http":{
294
- "method":"POST",
295
- "requestUri":"/"
296
- },
297
- "input":{"shape":"DeleteClusterParameterGroupMessage"},
298
- "errors":[
299
- {"shape":"InvalidClusterParameterGroupStateFault"},
300
- {"shape":"ClusterParameterGroupNotFoundFault"}
301
- ]
302
- },
303
- "DeleteClusterSecurityGroup":{
304
- "name":"DeleteClusterSecurityGroup",
305
- "http":{
306
- "method":"POST",
307
- "requestUri":"/"
308
- },
309
- "input":{"shape":"DeleteClusterSecurityGroupMessage"},
310
- "errors":[
311
- {"shape":"InvalidClusterSecurityGroupStateFault"},
312
- {"shape":"ClusterSecurityGroupNotFoundFault"}
313
- ]
314
- },
315
- "DeleteClusterSnapshot":{
316
- "name":"DeleteClusterSnapshot",
317
- "http":{
318
- "method":"POST",
319
- "requestUri":"/"
320
- },
321
- "input":{"shape":"DeleteClusterSnapshotMessage"},
322
- "output":{
323
- "shape":"DeleteClusterSnapshotResult",
324
- "resultWrapper":"DeleteClusterSnapshotResult"
325
- },
326
- "errors":[
327
- {"shape":"InvalidClusterSnapshotStateFault"},
328
- {"shape":"ClusterSnapshotNotFoundFault"}
329
- ]
330
- },
331
- "DeleteClusterSubnetGroup":{
332
- "name":"DeleteClusterSubnetGroup",
333
- "http":{
334
- "method":"POST",
335
- "requestUri":"/"
336
- },
337
- "input":{"shape":"DeleteClusterSubnetGroupMessage"},
338
- "errors":[
339
- {"shape":"InvalidClusterSubnetGroupStateFault"},
340
- {"shape":"InvalidClusterSubnetStateFault"},
341
- {"shape":"ClusterSubnetGroupNotFoundFault"}
342
- ]
343
- },
344
- "DeleteEventSubscription":{
345
- "name":"DeleteEventSubscription",
346
- "http":{
347
- "method":"POST",
348
- "requestUri":"/"
349
- },
350
- "input":{"shape":"DeleteEventSubscriptionMessage"},
351
- "errors":[
352
- {"shape":"SubscriptionNotFoundFault"},
353
- {"shape":"InvalidSubscriptionStateFault"}
354
- ]
355
- },
356
- "DeleteHsmClientCertificate":{
357
- "name":"DeleteHsmClientCertificate",
358
- "http":{
359
- "method":"POST",
360
- "requestUri":"/"
361
- },
362
- "input":{"shape":"DeleteHsmClientCertificateMessage"},
363
- "errors":[
364
- {"shape":"InvalidHsmClientCertificateStateFault"},
365
- {"shape":"HsmClientCertificateNotFoundFault"}
366
- ]
367
- },
368
- "DeleteHsmConfiguration":{
369
- "name":"DeleteHsmConfiguration",
370
- "http":{
371
- "method":"POST",
372
- "requestUri":"/"
373
- },
374
- "input":{"shape":"DeleteHsmConfigurationMessage"},
375
- "errors":[
376
- {"shape":"InvalidHsmConfigurationStateFault"},
377
- {"shape":"HsmConfigurationNotFoundFault"}
378
- ]
379
- },
380
- "DeleteSnapshotCopyGrant":{
381
- "name":"DeleteSnapshotCopyGrant",
382
- "http":{
383
- "method":"POST",
384
- "requestUri":"/"
385
- },
386
- "input":{"shape":"DeleteSnapshotCopyGrantMessage"},
387
- "errors":[
388
- {"shape":"InvalidSnapshotCopyGrantStateFault"},
389
- {"shape":"SnapshotCopyGrantNotFoundFault"}
390
- ]
391
- },
392
- "DeleteTags":{
393
- "name":"DeleteTags",
394
- "http":{
395
- "method":"POST",
396
- "requestUri":"/"
397
- },
398
- "input":{"shape":"DeleteTagsMessage"},
399
- "errors":[
400
- {"shape":"ResourceNotFoundFault"},
401
- {"shape":"InvalidTagFault"}
402
- ]
403
- },
404
- "DescribeClusterParameterGroups":{
405
- "name":"DescribeClusterParameterGroups",
406
- "http":{
407
- "method":"POST",
408
- "requestUri":"/"
409
- },
410
- "input":{"shape":"DescribeClusterParameterGroupsMessage"},
411
- "output":{
412
- "shape":"ClusterParameterGroupsMessage",
413
- "resultWrapper":"DescribeClusterParameterGroupsResult"
414
- },
415
- "errors":[
416
- {"shape":"ClusterParameterGroupNotFoundFault"},
417
- {"shape":"InvalidTagFault"}
418
- ]
419
- },
420
- "DescribeClusterParameters":{
421
- "name":"DescribeClusterParameters",
422
- "http":{
423
- "method":"POST",
424
- "requestUri":"/"
425
- },
426
- "input":{"shape":"DescribeClusterParametersMessage"},
427
- "output":{
428
- "shape":"ClusterParameterGroupDetails",
429
- "resultWrapper":"DescribeClusterParametersResult"
430
- },
431
- "errors":[
432
- {"shape":"ClusterParameterGroupNotFoundFault"}
433
- ]
434
- },
435
- "DescribeClusterSecurityGroups":{
436
- "name":"DescribeClusterSecurityGroups",
437
- "http":{
438
- "method":"POST",
439
- "requestUri":"/"
440
- },
441
- "input":{"shape":"DescribeClusterSecurityGroupsMessage"},
442
- "output":{
443
- "shape":"ClusterSecurityGroupMessage",
444
- "resultWrapper":"DescribeClusterSecurityGroupsResult"
445
- },
446
- "errors":[
447
- {"shape":"ClusterSecurityGroupNotFoundFault"},
448
- {"shape":"InvalidTagFault"}
449
- ]
450
- },
451
- "DescribeClusterSnapshots":{
452
- "name":"DescribeClusterSnapshots",
453
- "http":{
454
- "method":"POST",
455
- "requestUri":"/"
456
- },
457
- "input":{"shape":"DescribeClusterSnapshotsMessage"},
458
- "output":{
459
- "shape":"SnapshotMessage",
460
- "resultWrapper":"DescribeClusterSnapshotsResult"
461
- },
462
- "errors":[
463
- {"shape":"ClusterSnapshotNotFoundFault"},
464
- {"shape":"InvalidTagFault"}
465
- ]
466
- },
467
- "DescribeClusterSubnetGroups":{
468
- "name":"DescribeClusterSubnetGroups",
469
- "http":{
470
- "method":"POST",
471
- "requestUri":"/"
472
- },
473
- "input":{"shape":"DescribeClusterSubnetGroupsMessage"},
474
- "output":{
475
- "shape":"ClusterSubnetGroupMessage",
476
- "resultWrapper":"DescribeClusterSubnetGroupsResult"
477
- },
478
- "errors":[
479
- {"shape":"ClusterSubnetGroupNotFoundFault"},
480
- {"shape":"InvalidTagFault"}
481
- ]
482
- },
483
- "DescribeClusterVersions":{
484
- "name":"DescribeClusterVersions",
485
- "http":{
486
- "method":"POST",
487
- "requestUri":"/"
488
- },
489
- "input":{"shape":"DescribeClusterVersionsMessage"},
490
- "output":{
491
- "shape":"ClusterVersionsMessage",
492
- "resultWrapper":"DescribeClusterVersionsResult"
493
- }
494
- },
495
- "DescribeClusters":{
496
- "name":"DescribeClusters",
497
- "http":{
498
- "method":"POST",
499
- "requestUri":"/"
500
- },
501
- "input":{"shape":"DescribeClustersMessage"},
502
- "output":{
503
- "shape":"ClustersMessage",
504
- "resultWrapper":"DescribeClustersResult"
505
- },
506
- "errors":[
507
- {"shape":"ClusterNotFoundFault"},
508
- {"shape":"InvalidTagFault"}
509
- ]
510
- },
511
- "DescribeDefaultClusterParameters":{
512
- "name":"DescribeDefaultClusterParameters",
513
- "http":{
514
- "method":"POST",
515
- "requestUri":"/"
516
- },
517
- "input":{"shape":"DescribeDefaultClusterParametersMessage"},
518
- "output":{
519
- "shape":"DescribeDefaultClusterParametersResult",
520
- "resultWrapper":"DescribeDefaultClusterParametersResult"
521
- }
522
- },
523
- "DescribeEventCategories":{
524
- "name":"DescribeEventCategories",
525
- "http":{
526
- "method":"POST",
527
- "requestUri":"/"
528
- },
529
- "input":{"shape":"DescribeEventCategoriesMessage"},
530
- "output":{
531
- "shape":"EventCategoriesMessage",
532
- "resultWrapper":"DescribeEventCategoriesResult"
533
- }
534
- },
535
- "DescribeEventSubscriptions":{
536
- "name":"DescribeEventSubscriptions",
537
- "http":{
538
- "method":"POST",
539
- "requestUri":"/"
540
- },
541
- "input":{"shape":"DescribeEventSubscriptionsMessage"},
542
- "output":{
543
- "shape":"EventSubscriptionsMessage",
544
- "resultWrapper":"DescribeEventSubscriptionsResult"
545
- },
546
- "errors":[
547
- {"shape":"SubscriptionNotFoundFault"}
548
- ]
549
- },
550
- "DescribeEvents":{
551
- "name":"DescribeEvents",
552
- "http":{
553
- "method":"POST",
554
- "requestUri":"/"
555
- },
556
- "input":{"shape":"DescribeEventsMessage"},
557
- "output":{
558
- "shape":"EventsMessage",
559
- "resultWrapper":"DescribeEventsResult"
560
- }
561
- },
562
- "DescribeHsmClientCertificates":{
563
- "name":"DescribeHsmClientCertificates",
564
- "http":{
565
- "method":"POST",
566
- "requestUri":"/"
567
- },
568
- "input":{"shape":"DescribeHsmClientCertificatesMessage"},
569
- "output":{
570
- "shape":"HsmClientCertificateMessage",
571
- "resultWrapper":"DescribeHsmClientCertificatesResult"
572
- },
573
- "errors":[
574
- {"shape":"HsmClientCertificateNotFoundFault"},
575
- {"shape":"InvalidTagFault"}
576
- ]
577
- },
578
- "DescribeHsmConfigurations":{
579
- "name":"DescribeHsmConfigurations",
580
- "http":{
581
- "method":"POST",
582
- "requestUri":"/"
583
- },
584
- "input":{"shape":"DescribeHsmConfigurationsMessage"},
585
- "output":{
586
- "shape":"HsmConfigurationMessage",
587
- "resultWrapper":"DescribeHsmConfigurationsResult"
588
- },
589
- "errors":[
590
- {"shape":"HsmConfigurationNotFoundFault"},
591
- {"shape":"InvalidTagFault"}
592
- ]
593
- },
594
- "DescribeLoggingStatus":{
595
- "name":"DescribeLoggingStatus",
596
- "http":{
597
- "method":"POST",
598
- "requestUri":"/"
599
- },
600
- "input":{"shape":"DescribeLoggingStatusMessage"},
601
- "output":{
602
- "shape":"LoggingStatus",
603
- "resultWrapper":"DescribeLoggingStatusResult"
604
- },
605
- "errors":[
606
- {"shape":"ClusterNotFoundFault"}
607
- ]
608
- },
609
- "DescribeOrderableClusterOptions":{
610
- "name":"DescribeOrderableClusterOptions",
611
- "http":{
612
- "method":"POST",
613
- "requestUri":"/"
614
- },
615
- "input":{"shape":"DescribeOrderableClusterOptionsMessage"},
616
- "output":{
617
- "shape":"OrderableClusterOptionsMessage",
618
- "resultWrapper":"DescribeOrderableClusterOptionsResult"
619
- }
620
- },
621
- "DescribeReservedNodeOfferings":{
622
- "name":"DescribeReservedNodeOfferings",
623
- "http":{
624
- "method":"POST",
625
- "requestUri":"/"
626
- },
627
- "input":{"shape":"DescribeReservedNodeOfferingsMessage"},
628
- "output":{
629
- "shape":"ReservedNodeOfferingsMessage",
630
- "resultWrapper":"DescribeReservedNodeOfferingsResult"
631
- },
632
- "errors":[
633
- {"shape":"ReservedNodeOfferingNotFoundFault"},
634
- {"shape":"UnsupportedOperationFault"}
635
- ]
636
- },
637
- "DescribeReservedNodes":{
638
- "name":"DescribeReservedNodes",
639
- "http":{
640
- "method":"POST",
641
- "requestUri":"/"
642
- },
643
- "input":{"shape":"DescribeReservedNodesMessage"},
644
- "output":{
645
- "shape":"ReservedNodesMessage",
646
- "resultWrapper":"DescribeReservedNodesResult"
647
- },
648
- "errors":[
649
- {"shape":"ReservedNodeNotFoundFault"}
650
- ]
651
- },
652
- "DescribeResize":{
653
- "name":"DescribeResize",
654
- "http":{
655
- "method":"POST",
656
- "requestUri":"/"
657
- },
658
- "input":{"shape":"DescribeResizeMessage"},
659
- "output":{
660
- "shape":"ResizeProgressMessage",
661
- "resultWrapper":"DescribeResizeResult"
662
- },
663
- "errors":[
664
- {"shape":"ClusterNotFoundFault"},
665
- {"shape":"ResizeNotFoundFault"}
666
- ]
667
- },
668
- "DescribeSnapshotCopyGrants":{
669
- "name":"DescribeSnapshotCopyGrants",
670
- "http":{
671
- "method":"POST",
672
- "requestUri":"/"
673
- },
674
- "input":{"shape":"DescribeSnapshotCopyGrantsMessage"},
675
- "output":{
676
- "shape":"SnapshotCopyGrantMessage",
677
- "resultWrapper":"DescribeSnapshotCopyGrantsResult"
678
- },
679
- "errors":[
680
- {"shape":"SnapshotCopyGrantNotFoundFault"},
681
- {"shape":"InvalidTagFault"}
682
- ]
683
- },
684
- "DescribeTableRestoreStatus":{
685
- "name":"DescribeTableRestoreStatus",
686
- "http":{
687
- "method":"POST",
688
- "requestUri":"/"
689
- },
690
- "input":{"shape":"DescribeTableRestoreStatusMessage"},
691
- "output":{
692
- "shape":"TableRestoreStatusMessage",
693
- "resultWrapper":"DescribeTableRestoreStatusResult"
694
- },
695
- "errors":[
696
- {"shape":"TableRestoreNotFoundFault"},
697
- {"shape":"ClusterNotFoundFault"}
698
- ]
699
- },
700
- "DescribeTags":{
701
- "name":"DescribeTags",
702
- "http":{
703
- "method":"POST",
704
- "requestUri":"/"
705
- },
706
- "input":{"shape":"DescribeTagsMessage"},
707
- "output":{
708
- "shape":"TaggedResourceListMessage",
709
- "resultWrapper":"DescribeTagsResult"
710
- },
711
- "errors":[
712
- {"shape":"ResourceNotFoundFault"},
713
- {"shape":"InvalidTagFault"}
714
- ]
715
- },
716
- "DisableLogging":{
717
- "name":"DisableLogging",
718
- "http":{
719
- "method":"POST",
720
- "requestUri":"/"
721
- },
722
- "input":{"shape":"DisableLoggingMessage"},
723
- "output":{
724
- "shape":"LoggingStatus",
725
- "resultWrapper":"DisableLoggingResult"
726
- },
727
- "errors":[
728
- {"shape":"ClusterNotFoundFault"}
729
- ]
730
- },
731
- "DisableSnapshotCopy":{
732
- "name":"DisableSnapshotCopy",
733
- "http":{
734
- "method":"POST",
735
- "requestUri":"/"
736
- },
737
- "input":{"shape":"DisableSnapshotCopyMessage"},
738
- "output":{
739
- "shape":"DisableSnapshotCopyResult",
740
- "resultWrapper":"DisableSnapshotCopyResult"
741
- },
742
- "errors":[
743
- {"shape":"ClusterNotFoundFault"},
744
- {"shape":"SnapshotCopyAlreadyDisabledFault"},
745
- {"shape":"InvalidClusterStateFault"},
746
- {"shape":"UnauthorizedOperation"}
747
- ]
748
- },
749
- "EnableLogging":{
750
- "name":"EnableLogging",
751
- "http":{
752
- "method":"POST",
753
- "requestUri":"/"
754
- },
755
- "input":{"shape":"EnableLoggingMessage"},
756
- "output":{
757
- "shape":"LoggingStatus",
758
- "resultWrapper":"EnableLoggingResult"
759
- },
760
- "errors":[
761
- {"shape":"ClusterNotFoundFault"},
762
- {"shape":"BucketNotFoundFault"},
763
- {"shape":"InsufficientS3BucketPolicyFault"},
764
- {"shape":"InvalidS3KeyPrefixFault"},
765
- {"shape":"InvalidS3BucketNameFault"}
766
- ]
767
- },
768
- "EnableSnapshotCopy":{
769
- "name":"EnableSnapshotCopy",
770
- "http":{
771
- "method":"POST",
772
- "requestUri":"/"
773
- },
774
- "input":{"shape":"EnableSnapshotCopyMessage"},
775
- "output":{
776
- "shape":"EnableSnapshotCopyResult",
777
- "resultWrapper":"EnableSnapshotCopyResult"
778
- },
779
- "errors":[
780
- {"shape":"IncompatibleOrderableOptions"},
781
- {"shape":"InvalidClusterStateFault"},
782
- {"shape":"ClusterNotFoundFault"},
783
- {"shape":"CopyToRegionDisabledFault"},
784
- {"shape":"SnapshotCopyAlreadyEnabledFault"},
785
- {"shape":"UnknownSnapshotCopyRegionFault"},
786
- {"shape":"UnauthorizedOperation"},
787
- {"shape":"SnapshotCopyGrantNotFoundFault"},
788
- {"shape":"LimitExceededFault"},
789
- {"shape":"DependentServiceRequestThrottlingFault"}
790
- ]
791
- },
792
- "ModifyCluster":{
793
- "name":"ModifyCluster",
794
- "http":{
795
- "method":"POST",
796
- "requestUri":"/"
797
- },
798
- "input":{"shape":"ModifyClusterMessage"},
799
- "output":{
800
- "shape":"ModifyClusterResult",
801
- "resultWrapper":"ModifyClusterResult"
802
- },
803
- "errors":[
804
- {"shape":"InvalidClusterStateFault"},
805
- {"shape":"InvalidClusterSecurityGroupStateFault"},
806
- {"shape":"ClusterNotFoundFault"},
807
- {"shape":"NumberOfNodesQuotaExceededFault"},
808
- {"shape":"ClusterSecurityGroupNotFoundFault"},
809
- {"shape":"ClusterParameterGroupNotFoundFault"},
810
- {"shape":"InsufficientClusterCapacityFault"},
811
- {"shape":"UnsupportedOptionFault"},
812
- {"shape":"UnauthorizedOperation"},
813
- {"shape":"HsmClientCertificateNotFoundFault"},
814
- {"shape":"HsmConfigurationNotFoundFault"},
815
- {"shape":"ClusterAlreadyExistsFault"},
816
- {"shape":"LimitExceededFault"},
817
- {"shape":"DependentServiceRequestThrottlingFault"},
818
- {"shape":"InvalidElasticIpFault"}
819
- ]
820
- },
821
- "ModifyClusterIamRoles":{
822
- "name":"ModifyClusterIamRoles",
823
- "http":{
824
- "method":"POST",
825
- "requestUri":"/"
826
- },
827
- "input":{"shape":"ModifyClusterIamRolesMessage"},
828
- "output":{
829
- "shape":"ModifyClusterIamRolesResult",
830
- "resultWrapper":"ModifyClusterIamRolesResult"
831
- },
832
- "errors":[
833
- {"shape":"InvalidClusterStateFault"},
834
- {"shape":"ClusterNotFoundFault"}
835
- ]
836
- },
837
- "ModifyClusterParameterGroup":{
838
- "name":"ModifyClusterParameterGroup",
839
- "http":{
840
- "method":"POST",
841
- "requestUri":"/"
842
- },
843
- "input":{"shape":"ModifyClusterParameterGroupMessage"},
844
- "output":{
845
- "shape":"ClusterParameterGroupNameMessage",
846
- "resultWrapper":"ModifyClusterParameterGroupResult"
847
- },
848
- "errors":[
849
- {"shape":"ClusterParameterGroupNotFoundFault"},
850
- {"shape":"InvalidClusterParameterGroupStateFault"}
851
- ]
852
- },
853
- "ModifyClusterSubnetGroup":{
854
- "name":"ModifyClusterSubnetGroup",
855
- "http":{
856
- "method":"POST",
857
- "requestUri":"/"
858
- },
859
- "input":{"shape":"ModifyClusterSubnetGroupMessage"},
860
- "output":{
861
- "shape":"ModifyClusterSubnetGroupResult",
862
- "resultWrapper":"ModifyClusterSubnetGroupResult"
863
- },
864
- "errors":[
865
- {"shape":"ClusterSubnetGroupNotFoundFault"},
866
- {"shape":"ClusterSubnetQuotaExceededFault"},
867
- {"shape":"SubnetAlreadyInUse"},
868
- {"shape":"InvalidSubnet"},
869
- {"shape":"UnauthorizedOperation"},
870
- {"shape":"DependentServiceRequestThrottlingFault"}
871
- ]
872
- },
873
- "ModifyEventSubscription":{
874
- "name":"ModifyEventSubscription",
875
- "http":{
876
- "method":"POST",
877
- "requestUri":"/"
878
- },
879
- "input":{"shape":"ModifyEventSubscriptionMessage"},
880
- "output":{
881
- "shape":"ModifyEventSubscriptionResult",
882
- "resultWrapper":"ModifyEventSubscriptionResult"
883
- },
884
- "errors":[
885
- {"shape":"SubscriptionNotFoundFault"},
886
- {"shape":"SNSInvalidTopicFault"},
887
- {"shape":"SNSNoAuthorizationFault"},
888
- {"shape":"SNSTopicArnNotFoundFault"},
889
- {"shape":"SubscriptionEventIdNotFoundFault"},
890
- {"shape":"SubscriptionCategoryNotFoundFault"},
891
- {"shape":"SubscriptionSeverityNotFoundFault"},
892
- {"shape":"SourceNotFoundFault"},
893
- {"shape":"InvalidSubscriptionStateFault"}
894
- ]
895
- },
896
- "ModifySnapshotCopyRetentionPeriod":{
897
- "name":"ModifySnapshotCopyRetentionPeriod",
898
- "http":{
899
- "method":"POST",
900
- "requestUri":"/"
901
- },
902
- "input":{"shape":"ModifySnapshotCopyRetentionPeriodMessage"},
903
- "output":{
904
- "shape":"ModifySnapshotCopyRetentionPeriodResult",
905
- "resultWrapper":"ModifySnapshotCopyRetentionPeriodResult"
906
- },
907
- "errors":[
908
- {"shape":"ClusterNotFoundFault"},
909
- {"shape":"SnapshotCopyDisabledFault"},
910
- {"shape":"UnauthorizedOperation"},
911
- {"shape":"InvalidClusterStateFault"}
912
- ]
913
- },
914
- "PurchaseReservedNodeOffering":{
915
- "name":"PurchaseReservedNodeOffering",
916
- "http":{
917
- "method":"POST",
918
- "requestUri":"/"
919
- },
920
- "input":{"shape":"PurchaseReservedNodeOfferingMessage"},
921
- "output":{
922
- "shape":"PurchaseReservedNodeOfferingResult",
923
- "resultWrapper":"PurchaseReservedNodeOfferingResult"
924
- },
925
- "errors":[
926
- {"shape":"ReservedNodeOfferingNotFoundFault"},
927
- {"shape":"ReservedNodeAlreadyExistsFault"},
928
- {"shape":"ReservedNodeQuotaExceededFault"},
929
- {"shape":"UnsupportedOperationFault"}
930
- ]
931
- },
932
- "RebootCluster":{
933
- "name":"RebootCluster",
934
- "http":{
935
- "method":"POST",
936
- "requestUri":"/"
937
- },
938
- "input":{"shape":"RebootClusterMessage"},
939
- "output":{
940
- "shape":"RebootClusterResult",
941
- "resultWrapper":"RebootClusterResult"
942
- },
943
- "errors":[
944
- {"shape":"InvalidClusterStateFault"},
945
- {"shape":"ClusterNotFoundFault"}
946
- ]
947
- },
948
- "ResetClusterParameterGroup":{
949
- "name":"ResetClusterParameterGroup",
950
- "http":{
951
- "method":"POST",
952
- "requestUri":"/"
953
- },
954
- "input":{"shape":"ResetClusterParameterGroupMessage"},
955
- "output":{
956
- "shape":"ClusterParameterGroupNameMessage",
957
- "resultWrapper":"ResetClusterParameterGroupResult"
958
- },
959
- "errors":[
960
- {"shape":"InvalidClusterParameterGroupStateFault"},
961
- {"shape":"ClusterParameterGroupNotFoundFault"}
962
- ]
963
- },
964
- "RestoreFromClusterSnapshot":{
965
- "name":"RestoreFromClusterSnapshot",
966
- "http":{
967
- "method":"POST",
968
- "requestUri":"/"
969
- },
970
- "input":{"shape":"RestoreFromClusterSnapshotMessage"},
971
- "output":{
972
- "shape":"RestoreFromClusterSnapshotResult",
973
- "resultWrapper":"RestoreFromClusterSnapshotResult"
974
- },
975
- "errors":[
976
- {"shape":"AccessToSnapshotDeniedFault"},
977
- {"shape":"ClusterAlreadyExistsFault"},
978
- {"shape":"ClusterSnapshotNotFoundFault"},
979
- {"shape":"ClusterQuotaExceededFault"},
980
- {"shape":"InsufficientClusterCapacityFault"},
981
- {"shape":"InvalidClusterSnapshotStateFault"},
982
- {"shape":"InvalidRestoreFault"},
983
- {"shape":"NumberOfNodesQuotaExceededFault"},
984
- {"shape":"NumberOfNodesPerClusterLimitExceededFault"},
985
- {"shape":"InvalidVPCNetworkStateFault"},
986
- {"shape":"InvalidClusterSubnetGroupStateFault"},
987
- {"shape":"InvalidSubnet"},
988
- {"shape":"ClusterSubnetGroupNotFoundFault"},
989
- {"shape":"UnauthorizedOperation"},
990
- {"shape":"HsmClientCertificateNotFoundFault"},
991
- {"shape":"HsmConfigurationNotFoundFault"},
992
- {"shape":"InvalidElasticIpFault"},
993
- {"shape":"ClusterParameterGroupNotFoundFault"},
994
- {"shape":"ClusterSecurityGroupNotFoundFault"},
995
- {"shape":"LimitExceededFault"},
996
- {"shape":"DependentServiceRequestThrottlingFault"}
997
- ]
998
- },
999
- "RestoreTableFromClusterSnapshot":{
1000
- "name":"RestoreTableFromClusterSnapshot",
1001
- "http":{
1002
- "method":"POST",
1003
- "requestUri":"/"
1004
- },
1005
- "input":{"shape":"RestoreTableFromClusterSnapshotMessage"},
1006
- "output":{
1007
- "shape":"RestoreTableFromClusterSnapshotResult",
1008
- "resultWrapper":"RestoreTableFromClusterSnapshotResult"
1009
- },
1010
- "errors":[
1011
- {"shape":"ClusterSnapshotNotFoundFault"},
1012
- {"shape":"InProgressTableRestoreQuotaExceededFault"},
1013
- {"shape":"InvalidClusterSnapshotStateFault"},
1014
- {"shape":"InvalidTableRestoreArgumentFault"},
1015
- {"shape":"ClusterNotFoundFault"},
1016
- {"shape":"InvalidClusterStateFault"},
1017
- {"shape":"UnsupportedOperationFault"}
1018
- ]
1019
- },
1020
- "RevokeClusterSecurityGroupIngress":{
1021
- "name":"RevokeClusterSecurityGroupIngress",
1022
- "http":{
1023
- "method":"POST",
1024
- "requestUri":"/"
1025
- },
1026
- "input":{"shape":"RevokeClusterSecurityGroupIngressMessage"},
1027
- "output":{
1028
- "shape":"RevokeClusterSecurityGroupIngressResult",
1029
- "resultWrapper":"RevokeClusterSecurityGroupIngressResult"
1030
- },
1031
- "errors":[
1032
- {"shape":"ClusterSecurityGroupNotFoundFault"},
1033
- {"shape":"AuthorizationNotFoundFault"},
1034
- {"shape":"InvalidClusterSecurityGroupStateFault"}
1035
- ]
1036
- },
1037
- "RevokeSnapshotAccess":{
1038
- "name":"RevokeSnapshotAccess",
1039
- "http":{
1040
- "method":"POST",
1041
- "requestUri":"/"
1042
- },
1043
- "input":{"shape":"RevokeSnapshotAccessMessage"},
1044
- "output":{
1045
- "shape":"RevokeSnapshotAccessResult",
1046
- "resultWrapper":"RevokeSnapshotAccessResult"
1047
- },
1048
- "errors":[
1049
- {"shape":"AccessToSnapshotDeniedFault"},
1050
- {"shape":"AuthorizationNotFoundFault"},
1051
- {"shape":"ClusterSnapshotNotFoundFault"}
1052
- ]
1053
- },
1054
- "RotateEncryptionKey":{
1055
- "name":"RotateEncryptionKey",
1056
- "http":{
1057
- "method":"POST",
1058
- "requestUri":"/"
1059
- },
1060
- "input":{"shape":"RotateEncryptionKeyMessage"},
1061
- "output":{
1062
- "shape":"RotateEncryptionKeyResult",
1063
- "resultWrapper":"RotateEncryptionKeyResult"
1064
- },
1065
- "errors":[
1066
- {"shape":"ClusterNotFoundFault"},
1067
- {"shape":"InvalidClusterStateFault"},
1068
- {"shape":"DependentServiceRequestThrottlingFault"}
1069
- ]
1070
- }
1071
- },
1072
- "shapes":{
1073
- "AccessToSnapshotDeniedFault":{
1074
- "type":"structure",
1075
- "members":{
1076
- },
1077
- "error":{
1078
- "code":"AccessToSnapshotDenied",
1079
- "httpStatusCode":400,
1080
- "senderFault":true
1081
- },
1082
- "exception":true
1083
- },
1084
- "AccountWithRestoreAccess":{
1085
- "type":"structure",
1086
- "members":{
1087
- "AccountId":{"shape":"String"}
1088
- }
1089
- },
1090
- "AccountsWithRestoreAccessList":{
1091
- "type":"list",
1092
- "member":{
1093
- "shape":"AccountWithRestoreAccess",
1094
- "locationName":"AccountWithRestoreAccess"
1095
- }
1096
- },
1097
- "AuthorizationAlreadyExistsFault":{
1098
- "type":"structure",
1099
- "members":{
1100
- },
1101
- "error":{
1102
- "code":"AuthorizationAlreadyExists",
1103
- "httpStatusCode":400,
1104
- "senderFault":true
1105
- },
1106
- "exception":true
1107
- },
1108
- "AuthorizationNotFoundFault":{
1109
- "type":"structure",
1110
- "members":{
1111
- },
1112
- "error":{
1113
- "code":"AuthorizationNotFound",
1114
- "httpStatusCode":404,
1115
- "senderFault":true
1116
- },
1117
- "exception":true
1118
- },
1119
- "AuthorizationQuotaExceededFault":{
1120
- "type":"structure",
1121
- "members":{
1122
- },
1123
- "error":{
1124
- "code":"AuthorizationQuotaExceeded",
1125
- "httpStatusCode":400,
1126
- "senderFault":true
1127
- },
1128
- "exception":true
1129
- },
1130
- "AuthorizeClusterSecurityGroupIngressMessage":{
1131
- "type":"structure",
1132
- "required":["ClusterSecurityGroupName"],
1133
- "members":{
1134
- "ClusterSecurityGroupName":{"shape":"String"},
1135
- "CIDRIP":{"shape":"String"},
1136
- "EC2SecurityGroupName":{"shape":"String"},
1137
- "EC2SecurityGroupOwnerId":{"shape":"String"}
1138
- }
1139
- },
1140
- "AuthorizeClusterSecurityGroupIngressResult":{
1141
- "type":"structure",
1142
- "members":{
1143
- "ClusterSecurityGroup":{"shape":"ClusterSecurityGroup"}
1144
- }
1145
- },
1146
- "AuthorizeSnapshotAccessMessage":{
1147
- "type":"structure",
1148
- "required":[
1149
- "SnapshotIdentifier",
1150
- "AccountWithRestoreAccess"
1151
- ],
1152
- "members":{
1153
- "SnapshotIdentifier":{"shape":"String"},
1154
- "SnapshotClusterIdentifier":{"shape":"String"},
1155
- "AccountWithRestoreAccess":{"shape":"String"}
1156
- }
1157
- },
1158
- "AuthorizeSnapshotAccessResult":{
1159
- "type":"structure",
1160
- "members":{
1161
- "Snapshot":{"shape":"Snapshot"}
1162
- }
1163
- },
1164
- "AvailabilityZone":{
1165
- "type":"structure",
1166
- "members":{
1167
- "Name":{"shape":"String"}
1168
- },
1169
- "wrapper":true
1170
- },
1171
- "AvailabilityZoneList":{
1172
- "type":"list",
1173
- "member":{
1174
- "shape":"AvailabilityZone",
1175
- "locationName":"AvailabilityZone"
1176
- }
1177
- },
1178
- "Boolean":{"type":"boolean"},
1179
- "BooleanOptional":{"type":"boolean"},
1180
- "BucketNotFoundFault":{
1181
- "type":"structure",
1182
- "members":{
1183
- },
1184
- "error":{
1185
- "code":"BucketNotFoundFault",
1186
- "httpStatusCode":400,
1187
- "senderFault":true
1188
- },
1189
- "exception":true
1190
- },
1191
- "Cluster":{
1192
- "type":"structure",
1193
- "members":{
1194
- "ClusterIdentifier":{"shape":"String"},
1195
- "NodeType":{"shape":"String"},
1196
- "ClusterStatus":{"shape":"String"},
1197
- "ModifyStatus":{"shape":"String"},
1198
- "MasterUsername":{"shape":"String"},
1199
- "DBName":{"shape":"String"},
1200
- "Endpoint":{"shape":"Endpoint"},
1201
- "ClusterCreateTime":{"shape":"TStamp"},
1202
- "AutomatedSnapshotRetentionPeriod":{"shape":"Integer"},
1203
- "ClusterSecurityGroups":{"shape":"ClusterSecurityGroupMembershipList"},
1204
- "VpcSecurityGroups":{"shape":"VpcSecurityGroupMembershipList"},
1205
- "ClusterParameterGroups":{"shape":"ClusterParameterGroupStatusList"},
1206
- "ClusterSubnetGroupName":{"shape":"String"},
1207
- "VpcId":{"shape":"String"},
1208
- "AvailabilityZone":{"shape":"String"},
1209
- "PreferredMaintenanceWindow":{"shape":"String"},
1210
- "PendingModifiedValues":{"shape":"PendingModifiedValues"},
1211
- "ClusterVersion":{"shape":"String"},
1212
- "AllowVersionUpgrade":{"shape":"Boolean"},
1213
- "NumberOfNodes":{"shape":"Integer"},
1214
- "PubliclyAccessible":{"shape":"Boolean"},
1215
- "Encrypted":{"shape":"Boolean"},
1216
- "RestoreStatus":{"shape":"RestoreStatus"},
1217
- "HsmStatus":{"shape":"HsmStatus"},
1218
- "ClusterSnapshotCopyStatus":{"shape":"ClusterSnapshotCopyStatus"},
1219
- "ClusterPublicKey":{"shape":"String"},
1220
- "ClusterNodes":{"shape":"ClusterNodesList"},
1221
- "ElasticIpStatus":{"shape":"ElasticIpStatus"},
1222
- "ClusterRevisionNumber":{"shape":"String"},
1223
- "Tags":{"shape":"TagList"},
1224
- "KmsKeyId":{"shape":"String"},
1225
- "IamRoles":{"shape":"ClusterIamRoleList"}
1226
- },
1227
- "wrapper":true
1228
- },
1229
- "ClusterAlreadyExistsFault":{
1230
- "type":"structure",
1231
- "members":{
1232
- },
1233
- "error":{
1234
- "code":"ClusterAlreadyExists",
1235
- "httpStatusCode":400,
1236
- "senderFault":true
1237
- },
1238
- "exception":true
1239
- },
1240
- "ClusterIamRole":{
1241
- "type":"structure",
1242
- "members":{
1243
- "IamRoleArn":{"shape":"String"},
1244
- "ApplyStatus":{"shape":"String"}
1245
- }
1246
- },
1247
- "ClusterIamRoleList":{
1248
- "type":"list",
1249
- "member":{
1250
- "shape":"ClusterIamRole",
1251
- "locationName":"ClusterIamRole"
1252
- }
1253
- },
1254
- "ClusterList":{
1255
- "type":"list",
1256
- "member":{
1257
- "shape":"Cluster",
1258
- "locationName":"Cluster"
1259
- }
1260
- },
1261
- "ClusterNode":{
1262
- "type":"structure",
1263
- "members":{
1264
- "NodeRole":{"shape":"String"},
1265
- "PrivateIPAddress":{"shape":"String"},
1266
- "PublicIPAddress":{"shape":"String"}
1267
- }
1268
- },
1269
- "ClusterNodesList":{
1270
- "type":"list",
1271
- "member":{"shape":"ClusterNode"}
1272
- },
1273
- "ClusterNotFoundFault":{
1274
- "type":"structure",
1275
- "members":{
1276
- },
1277
- "error":{
1278
- "code":"ClusterNotFound",
1279
- "httpStatusCode":404,
1280
- "senderFault":true
1281
- },
1282
- "exception":true
1283
- },
1284
- "ClusterParameterGroup":{
1285
- "type":"structure",
1286
- "members":{
1287
- "ParameterGroupName":{"shape":"String"},
1288
- "ParameterGroupFamily":{"shape":"String"},
1289
- "Description":{"shape":"String"},
1290
- "Tags":{"shape":"TagList"}
1291
- },
1292
- "wrapper":true
1293
- },
1294
- "ClusterParameterGroupAlreadyExistsFault":{
1295
- "type":"structure",
1296
- "members":{
1297
- },
1298
- "error":{
1299
- "code":"ClusterParameterGroupAlreadyExists",
1300
- "httpStatusCode":400,
1301
- "senderFault":true
1302
- },
1303
- "exception":true
1304
- },
1305
- "ClusterParameterGroupDetails":{
1306
- "type":"structure",
1307
- "members":{
1308
- "Parameters":{"shape":"ParametersList"},
1309
- "Marker":{"shape":"String"}
1310
- }
1311
- },
1312
- "ClusterParameterGroupNameMessage":{
1313
- "type":"structure",
1314
- "members":{
1315
- "ParameterGroupName":{"shape":"String"},
1316
- "ParameterGroupStatus":{"shape":"String"}
1317
- }
1318
- },
1319
- "ClusterParameterGroupNotFoundFault":{
1320
- "type":"structure",
1321
- "members":{
1322
- },
1323
- "error":{
1324
- "code":"ClusterParameterGroupNotFound",
1325
- "httpStatusCode":404,
1326
- "senderFault":true
1327
- },
1328
- "exception":true
1329
- },
1330
- "ClusterParameterGroupQuotaExceededFault":{
1331
- "type":"structure",
1332
- "members":{
1333
- },
1334
- "error":{
1335
- "code":"ClusterParameterGroupQuotaExceeded",
1336
- "httpStatusCode":400,
1337
- "senderFault":true
1338
- },
1339
- "exception":true
1340
- },
1341
- "ClusterParameterGroupStatus":{
1342
- "type":"structure",
1343
- "members":{
1344
- "ParameterGroupName":{"shape":"String"},
1345
- "ParameterApplyStatus":{"shape":"String"},
1346
- "ClusterParameterStatusList":{"shape":"ClusterParameterStatusList"}
1347
- }
1348
- },
1349
- "ClusterParameterGroupStatusList":{
1350
- "type":"list",
1351
- "member":{
1352
- "shape":"ClusterParameterGroupStatus",
1353
- "locationName":"ClusterParameterGroup"
1354
- }
1355
- },
1356
- "ClusterParameterGroupsMessage":{
1357
- "type":"structure",
1358
- "members":{
1359
- "Marker":{"shape":"String"},
1360
- "ParameterGroups":{"shape":"ParameterGroupList"}
1361
- }
1362
- },
1363
- "ClusterParameterStatus":{
1364
- "type":"structure",
1365
- "members":{
1366
- "ParameterName":{"shape":"String"},
1367
- "ParameterApplyStatus":{"shape":"String"},
1368
- "ParameterApplyErrorDescription":{"shape":"String"}
1369
- }
1370
- },
1371
- "ClusterParameterStatusList":{
1372
- "type":"list",
1373
- "member":{"shape":"ClusterParameterStatus"}
1374
- },
1375
- "ClusterQuotaExceededFault":{
1376
- "type":"structure",
1377
- "members":{
1378
- },
1379
- "error":{
1380
- "code":"ClusterQuotaExceeded",
1381
- "httpStatusCode":400,
1382
- "senderFault":true
1383
- },
1384
- "exception":true
1385
- },
1386
- "ClusterSecurityGroup":{
1387
- "type":"structure",
1388
- "members":{
1389
- "ClusterSecurityGroupName":{"shape":"String"},
1390
- "Description":{"shape":"String"},
1391
- "EC2SecurityGroups":{"shape":"EC2SecurityGroupList"},
1392
- "IPRanges":{"shape":"IPRangeList"},
1393
- "Tags":{"shape":"TagList"}
1394
- },
1395
- "wrapper":true
1396
- },
1397
- "ClusterSecurityGroupAlreadyExistsFault":{
1398
- "type":"structure",
1399
- "members":{
1400
- },
1401
- "error":{
1402
- "code":"ClusterSecurityGroupAlreadyExists",
1403
- "httpStatusCode":400,
1404
- "senderFault":true
1405
- },
1406
- "exception":true
1407
- },
1408
- "ClusterSecurityGroupMembership":{
1409
- "type":"structure",
1410
- "members":{
1411
- "ClusterSecurityGroupName":{"shape":"String"},
1412
- "Status":{"shape":"String"}
1413
- }
1414
- },
1415
- "ClusterSecurityGroupMembershipList":{
1416
- "type":"list",
1417
- "member":{
1418
- "shape":"ClusterSecurityGroupMembership",
1419
- "locationName":"ClusterSecurityGroup"
1420
- }
1421
- },
1422
- "ClusterSecurityGroupMessage":{
1423
- "type":"structure",
1424
- "members":{
1425
- "Marker":{"shape":"String"},
1426
- "ClusterSecurityGroups":{"shape":"ClusterSecurityGroups"}
1427
- }
1428
- },
1429
- "ClusterSecurityGroupNameList":{
1430
- "type":"list",
1431
- "member":{
1432
- "shape":"String",
1433
- "locationName":"ClusterSecurityGroupName"
1434
- }
1435
- },
1436
- "ClusterSecurityGroupNotFoundFault":{
1437
- "type":"structure",
1438
- "members":{
1439
- },
1440
- "error":{
1441
- "code":"ClusterSecurityGroupNotFound",
1442
- "httpStatusCode":404,
1443
- "senderFault":true
1444
- },
1445
- "exception":true
1446
- },
1447
- "ClusterSecurityGroupQuotaExceededFault":{
1448
- "type":"structure",
1449
- "members":{
1450
- },
1451
- "error":{
1452
- "code":"QuotaExceeded.ClusterSecurityGroup",
1453
- "httpStatusCode":400,
1454
- "senderFault":true
1455
- },
1456
- "exception":true
1457
- },
1458
- "ClusterSecurityGroups":{
1459
- "type":"list",
1460
- "member":{
1461
- "shape":"ClusterSecurityGroup",
1462
- "locationName":"ClusterSecurityGroup"
1463
- }
1464
- },
1465
- "ClusterSnapshotAlreadyExistsFault":{
1466
- "type":"structure",
1467
- "members":{
1468
- },
1469
- "error":{
1470
- "code":"ClusterSnapshotAlreadyExists",
1471
- "httpStatusCode":400,
1472
- "senderFault":true
1473
- },
1474
- "exception":true
1475
- },
1476
- "ClusterSnapshotCopyStatus":{
1477
- "type":"structure",
1478
- "members":{
1479
- "DestinationRegion":{"shape":"String"},
1480
- "RetentionPeriod":{"shape":"Long"},
1481
- "SnapshotCopyGrantName":{"shape":"String"}
1482
- }
1483
- },
1484
- "ClusterSnapshotNotFoundFault":{
1485
- "type":"structure",
1486
- "members":{
1487
- },
1488
- "error":{
1489
- "code":"ClusterSnapshotNotFound",
1490
- "httpStatusCode":404,
1491
- "senderFault":true
1492
- },
1493
- "exception":true
1494
- },
1495
- "ClusterSnapshotQuotaExceededFault":{
1496
- "type":"structure",
1497
- "members":{
1498
- },
1499
- "error":{
1500
- "code":"ClusterSnapshotQuotaExceeded",
1501
- "httpStatusCode":400,
1502
- "senderFault":true
1503
- },
1504
- "exception":true
1505
- },
1506
- "ClusterSubnetGroup":{
1507
- "type":"structure",
1508
- "members":{
1509
- "ClusterSubnetGroupName":{"shape":"String"},
1510
- "Description":{"shape":"String"},
1511
- "VpcId":{"shape":"String"},
1512
- "SubnetGroupStatus":{"shape":"String"},
1513
- "Subnets":{"shape":"SubnetList"},
1514
- "Tags":{"shape":"TagList"}
1515
- },
1516
- "wrapper":true
1517
- },
1518
- "ClusterSubnetGroupAlreadyExistsFault":{
1519
- "type":"structure",
1520
- "members":{
1521
- },
1522
- "error":{
1523
- "code":"ClusterSubnetGroupAlreadyExists",
1524
- "httpStatusCode":400,
1525
- "senderFault":true
1526
- },
1527
- "exception":true
1528
- },
1529
- "ClusterSubnetGroupMessage":{
1530
- "type":"structure",
1531
- "members":{
1532
- "Marker":{"shape":"String"},
1533
- "ClusterSubnetGroups":{"shape":"ClusterSubnetGroups"}
1534
- }
1535
- },
1536
- "ClusterSubnetGroupNotFoundFault":{
1537
- "type":"structure",
1538
- "members":{
1539
- },
1540
- "error":{
1541
- "code":"ClusterSubnetGroupNotFoundFault",
1542
- "httpStatusCode":400,
1543
- "senderFault":true
1544
- },
1545
- "exception":true
1546
- },
1547
- "ClusterSubnetGroupQuotaExceededFault":{
1548
- "type":"structure",
1549
- "members":{
1550
- },
1551
- "error":{
1552
- "code":"ClusterSubnetGroupQuotaExceeded",
1553
- "httpStatusCode":400,
1554
- "senderFault":true
1555
- },
1556
- "exception":true
1557
- },
1558
- "ClusterSubnetGroups":{
1559
- "type":"list",
1560
- "member":{
1561
- "shape":"ClusterSubnetGroup",
1562
- "locationName":"ClusterSubnetGroup"
1563
- }
1564
- },
1565
- "ClusterSubnetQuotaExceededFault":{
1566
- "type":"structure",
1567
- "members":{
1568
- },
1569
- "error":{
1570
- "code":"ClusterSubnetQuotaExceededFault",
1571
- "httpStatusCode":400,
1572
- "senderFault":true
1573
- },
1574
- "exception":true
1575
- },
1576
- "ClusterVersion":{
1577
- "type":"structure",
1578
- "members":{
1579
- "ClusterVersion":{"shape":"String"},
1580
- "ClusterParameterGroupFamily":{"shape":"String"},
1581
- "Description":{"shape":"String"}
1582
- }
1583
- },
1584
- "ClusterVersionList":{
1585
- "type":"list",
1586
- "member":{
1587
- "shape":"ClusterVersion",
1588
- "locationName":"ClusterVersion"
1589
- }
1590
- },
1591
- "ClusterVersionsMessage":{
1592
- "type":"structure",
1593
- "members":{
1594
- "Marker":{"shape":"String"},
1595
- "ClusterVersions":{"shape":"ClusterVersionList"}
1596
- }
1597
- },
1598
- "ClustersMessage":{
1599
- "type":"structure",
1600
- "members":{
1601
- "Marker":{"shape":"String"},
1602
- "Clusters":{"shape":"ClusterList"}
1603
- }
1604
- },
1605
- "CopyClusterSnapshotMessage":{
1606
- "type":"structure",
1607
- "required":[
1608
- "SourceSnapshotIdentifier",
1609
- "TargetSnapshotIdentifier"
1610
- ],
1611
- "members":{
1612
- "SourceSnapshotIdentifier":{"shape":"String"},
1613
- "SourceSnapshotClusterIdentifier":{"shape":"String"},
1614
- "TargetSnapshotIdentifier":{"shape":"String"}
1615
- }
1616
- },
1617
- "CopyClusterSnapshotResult":{
1618
- "type":"structure",
1619
- "members":{
1620
- "Snapshot":{"shape":"Snapshot"}
1621
- }
1622
- },
1623
- "CopyToRegionDisabledFault":{
1624
- "type":"structure",
1625
- "members":{
1626
- },
1627
- "error":{
1628
- "code":"CopyToRegionDisabledFault",
1629
- "httpStatusCode":400,
1630
- "senderFault":true
1631
- },
1632
- "exception":true
1633
- },
1634
- "CreateClusterMessage":{
1635
- "type":"structure",
1636
- "required":[
1637
- "ClusterIdentifier",
1638
- "NodeType",
1639
- "MasterUsername",
1640
- "MasterUserPassword"
1641
- ],
1642
- "members":{
1643
- "DBName":{"shape":"String"},
1644
- "ClusterIdentifier":{"shape":"String"},
1645
- "ClusterType":{"shape":"String"},
1646
- "NodeType":{"shape":"String"},
1647
- "MasterUsername":{"shape":"String"},
1648
- "MasterUserPassword":{"shape":"String"},
1649
- "ClusterSecurityGroups":{"shape":"ClusterSecurityGroupNameList"},
1650
- "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"},
1651
- "ClusterSubnetGroupName":{"shape":"String"},
1652
- "AvailabilityZone":{"shape":"String"},
1653
- "PreferredMaintenanceWindow":{"shape":"String"},
1654
- "ClusterParameterGroupName":{"shape":"String"},
1655
- "AutomatedSnapshotRetentionPeriod":{"shape":"IntegerOptional"},
1656
- "Port":{"shape":"IntegerOptional"},
1657
- "ClusterVersion":{"shape":"String"},
1658
- "AllowVersionUpgrade":{"shape":"BooleanOptional"},
1659
- "NumberOfNodes":{"shape":"IntegerOptional"},
1660
- "PubliclyAccessible":{"shape":"BooleanOptional"},
1661
- "Encrypted":{"shape":"BooleanOptional"},
1662
- "HsmClientCertificateIdentifier":{"shape":"String"},
1663
- "HsmConfigurationIdentifier":{"shape":"String"},
1664
- "ElasticIp":{"shape":"String"},
1665
- "Tags":{"shape":"TagList"},
1666
- "KmsKeyId":{"shape":"String"},
1667
- "AdditionalInfo":{"shape":"String"},
1668
- "IamRoles":{"shape":"IamRoleArnList"}
1669
- }
1670
- },
1671
- "CreateClusterParameterGroupMessage":{
1672
- "type":"structure",
1673
- "required":[
1674
- "ParameterGroupName",
1675
- "ParameterGroupFamily",
1676
- "Description"
1677
- ],
1678
- "members":{
1679
- "ParameterGroupName":{"shape":"String"},
1680
- "ParameterGroupFamily":{"shape":"String"},
1681
- "Description":{"shape":"String"},
1682
- "Tags":{"shape":"TagList"}
1683
- }
1684
- },
1685
- "CreateClusterParameterGroupResult":{
1686
- "type":"structure",
1687
- "members":{
1688
- "ClusterParameterGroup":{"shape":"ClusterParameterGroup"}
1689
- }
1690
- },
1691
- "CreateClusterResult":{
1692
- "type":"structure",
1693
- "members":{
1694
- "Cluster":{"shape":"Cluster"}
1695
- }
1696
- },
1697
- "CreateClusterSecurityGroupMessage":{
1698
- "type":"structure",
1699
- "required":[
1700
- "ClusterSecurityGroupName",
1701
- "Description"
1702
- ],
1703
- "members":{
1704
- "ClusterSecurityGroupName":{"shape":"String"},
1705
- "Description":{"shape":"String"},
1706
- "Tags":{"shape":"TagList"}
1707
- }
1708
- },
1709
- "CreateClusterSecurityGroupResult":{
1710
- "type":"structure",
1711
- "members":{
1712
- "ClusterSecurityGroup":{"shape":"ClusterSecurityGroup"}
1713
- }
1714
- },
1715
- "CreateClusterSnapshotMessage":{
1716
- "type":"structure",
1717
- "required":[
1718
- "SnapshotIdentifier",
1719
- "ClusterIdentifier"
1720
- ],
1721
- "members":{
1722
- "SnapshotIdentifier":{"shape":"String"},
1723
- "ClusterIdentifier":{"shape":"String"},
1724
- "Tags":{"shape":"TagList"}
1725
- }
1726
- },
1727
- "CreateClusterSnapshotResult":{
1728
- "type":"structure",
1729
- "members":{
1730
- "Snapshot":{"shape":"Snapshot"}
1731
- }
1732
- },
1733
- "CreateClusterSubnetGroupMessage":{
1734
- "type":"structure",
1735
- "required":[
1736
- "ClusterSubnetGroupName",
1737
- "Description",
1738
- "SubnetIds"
1739
- ],
1740
- "members":{
1741
- "ClusterSubnetGroupName":{"shape":"String"},
1742
- "Description":{"shape":"String"},
1743
- "SubnetIds":{"shape":"SubnetIdentifierList"},
1744
- "Tags":{"shape":"TagList"}
1745
- }
1746
- },
1747
- "CreateClusterSubnetGroupResult":{
1748
- "type":"structure",
1749
- "members":{
1750
- "ClusterSubnetGroup":{"shape":"ClusterSubnetGroup"}
1751
- }
1752
- },
1753
- "CreateEventSubscriptionMessage":{
1754
- "type":"structure",
1755
- "required":[
1756
- "SubscriptionName",
1757
- "SnsTopicArn"
1758
- ],
1759
- "members":{
1760
- "SubscriptionName":{"shape":"String"},
1761
- "SnsTopicArn":{"shape":"String"},
1762
- "SourceType":{"shape":"String"},
1763
- "SourceIds":{"shape":"SourceIdsList"},
1764
- "EventCategories":{"shape":"EventCategoriesList"},
1765
- "Severity":{"shape":"String"},
1766
- "Enabled":{"shape":"BooleanOptional"},
1767
- "Tags":{"shape":"TagList"}
1768
- }
1769
- },
1770
- "CreateEventSubscriptionResult":{
1771
- "type":"structure",
1772
- "members":{
1773
- "EventSubscription":{"shape":"EventSubscription"}
1774
- }
1775
- },
1776
- "CreateHsmClientCertificateMessage":{
1777
- "type":"structure",
1778
- "required":["HsmClientCertificateIdentifier"],
1779
- "members":{
1780
- "HsmClientCertificateIdentifier":{"shape":"String"},
1781
- "Tags":{"shape":"TagList"}
1782
- }
1783
- },
1784
- "CreateHsmClientCertificateResult":{
1785
- "type":"structure",
1786
- "members":{
1787
- "HsmClientCertificate":{"shape":"HsmClientCertificate"}
1788
- }
1789
- },
1790
- "CreateHsmConfigurationMessage":{
1791
- "type":"structure",
1792
- "required":[
1793
- "HsmConfigurationIdentifier",
1794
- "Description",
1795
- "HsmIpAddress",
1796
- "HsmPartitionName",
1797
- "HsmPartitionPassword",
1798
- "HsmServerPublicCertificate"
1799
- ],
1800
- "members":{
1801
- "HsmConfigurationIdentifier":{"shape":"String"},
1802
- "Description":{"shape":"String"},
1803
- "HsmIpAddress":{"shape":"String"},
1804
- "HsmPartitionName":{"shape":"String"},
1805
- "HsmPartitionPassword":{"shape":"String"},
1806
- "HsmServerPublicCertificate":{"shape":"String"},
1807
- "Tags":{"shape":"TagList"}
1808
- }
1809
- },
1810
- "CreateHsmConfigurationResult":{
1811
- "type":"structure",
1812
- "members":{
1813
- "HsmConfiguration":{"shape":"HsmConfiguration"}
1814
- }
1815
- },
1816
- "CreateSnapshotCopyGrantMessage":{
1817
- "type":"structure",
1818
- "required":["SnapshotCopyGrantName"],
1819
- "members":{
1820
- "SnapshotCopyGrantName":{"shape":"String"},
1821
- "KmsKeyId":{"shape":"String"},
1822
- "Tags":{"shape":"TagList"}
1823
- }
1824
- },
1825
- "CreateSnapshotCopyGrantResult":{
1826
- "type":"structure",
1827
- "members":{
1828
- "SnapshotCopyGrant":{"shape":"SnapshotCopyGrant"}
1829
- }
1830
- },
1831
- "CreateTagsMessage":{
1832
- "type":"structure",
1833
- "required":[
1834
- "ResourceName",
1835
- "Tags"
1836
- ],
1837
- "members":{
1838
- "ResourceName":{"shape":"String"},
1839
- "Tags":{"shape":"TagList"}
1840
- }
1841
- },
1842
- "DefaultClusterParameters":{
1843
- "type":"structure",
1844
- "members":{
1845
- "ParameterGroupFamily":{"shape":"String"},
1846
- "Marker":{"shape":"String"},
1847
- "Parameters":{"shape":"ParametersList"}
1848
- },
1849
- "wrapper":true
1850
- },
1851
- "DeleteClusterMessage":{
1852
- "type":"structure",
1853
- "required":["ClusterIdentifier"],
1854
- "members":{
1855
- "ClusterIdentifier":{"shape":"String"},
1856
- "SkipFinalClusterSnapshot":{"shape":"Boolean"},
1857
- "FinalClusterSnapshotIdentifier":{"shape":"String"}
1858
- }
1859
- },
1860
- "DeleteClusterParameterGroupMessage":{
1861
- "type":"structure",
1862
- "required":["ParameterGroupName"],
1863
- "members":{
1864
- "ParameterGroupName":{"shape":"String"}
1865
- }
1866
- },
1867
- "DeleteClusterResult":{
1868
- "type":"structure",
1869
- "members":{
1870
- "Cluster":{"shape":"Cluster"}
1871
- }
1872
- },
1873
- "DeleteClusterSecurityGroupMessage":{
1874
- "type":"structure",
1875
- "required":["ClusterSecurityGroupName"],
1876
- "members":{
1877
- "ClusterSecurityGroupName":{"shape":"String"}
1878
- }
1879
- },
1880
- "DeleteClusterSnapshotMessage":{
1881
- "type":"structure",
1882
- "required":["SnapshotIdentifier"],
1883
- "members":{
1884
- "SnapshotIdentifier":{"shape":"String"},
1885
- "SnapshotClusterIdentifier":{"shape":"String"}
1886
- }
1887
- },
1888
- "DeleteClusterSnapshotResult":{
1889
- "type":"structure",
1890
- "members":{
1891
- "Snapshot":{"shape":"Snapshot"}
1892
- }
1893
- },
1894
- "DeleteClusterSubnetGroupMessage":{
1895
- "type":"structure",
1896
- "required":["ClusterSubnetGroupName"],
1897
- "members":{
1898
- "ClusterSubnetGroupName":{"shape":"String"}
1899
- }
1900
- },
1901
- "DeleteEventSubscriptionMessage":{
1902
- "type":"structure",
1903
- "required":["SubscriptionName"],
1904
- "members":{
1905
- "SubscriptionName":{"shape":"String"}
1906
- }
1907
- },
1908
- "DeleteHsmClientCertificateMessage":{
1909
- "type":"structure",
1910
- "required":["HsmClientCertificateIdentifier"],
1911
- "members":{
1912
- "HsmClientCertificateIdentifier":{"shape":"String"}
1913
- }
1914
- },
1915
- "DeleteHsmConfigurationMessage":{
1916
- "type":"structure",
1917
- "required":["HsmConfigurationIdentifier"],
1918
- "members":{
1919
- "HsmConfigurationIdentifier":{"shape":"String"}
1920
- }
1921
- },
1922
- "DeleteSnapshotCopyGrantMessage":{
1923
- "type":"structure",
1924
- "required":["SnapshotCopyGrantName"],
1925
- "members":{
1926
- "SnapshotCopyGrantName":{"shape":"String"}
1927
- }
1928
- },
1929
- "DeleteTagsMessage":{
1930
- "type":"structure",
1931
- "required":[
1932
- "ResourceName",
1933
- "TagKeys"
1934
- ],
1935
- "members":{
1936
- "ResourceName":{"shape":"String"},
1937
- "TagKeys":{"shape":"TagKeyList"}
1938
- }
1939
- },
1940
- "DependentServiceRequestThrottlingFault":{
1941
- "type":"structure",
1942
- "members":{
1943
- },
1944
- "error":{
1945
- "code":"DependentServiceRequestThrottlingFault",
1946
- "httpStatusCode":400,
1947
- "senderFault":true
1948
- },
1949
- "exception":true
1950
- },
1951
- "DescribeClusterParameterGroupsMessage":{
1952
- "type":"structure",
1953
- "members":{
1954
- "ParameterGroupName":{"shape":"String"},
1955
- "MaxRecords":{"shape":"IntegerOptional"},
1956
- "Marker":{"shape":"String"},
1957
- "TagKeys":{"shape":"TagKeyList"},
1958
- "TagValues":{"shape":"TagValueList"}
1959
- }
1960
- },
1961
- "DescribeClusterParametersMessage":{
1962
- "type":"structure",
1963
- "required":["ParameterGroupName"],
1964
- "members":{
1965
- "ParameterGroupName":{"shape":"String"},
1966
- "Source":{"shape":"String"},
1967
- "MaxRecords":{"shape":"IntegerOptional"},
1968
- "Marker":{"shape":"String"}
1969
- }
1970
- },
1971
- "DescribeClusterSecurityGroupsMessage":{
1972
- "type":"structure",
1973
- "members":{
1974
- "ClusterSecurityGroupName":{"shape":"String"},
1975
- "MaxRecords":{"shape":"IntegerOptional"},
1976
- "Marker":{"shape":"String"},
1977
- "TagKeys":{"shape":"TagKeyList"},
1978
- "TagValues":{"shape":"TagValueList"}
1979
- }
1980
- },
1981
- "DescribeClusterSnapshotsMessage":{
1982
- "type":"structure",
1983
- "members":{
1984
- "ClusterIdentifier":{"shape":"String"},
1985
- "SnapshotIdentifier":{"shape":"String"},
1986
- "SnapshotType":{"shape":"String"},
1987
- "StartTime":{"shape":"TStamp"},
1988
- "EndTime":{"shape":"TStamp"},
1989
- "MaxRecords":{"shape":"IntegerOptional"},
1990
- "Marker":{"shape":"String"},
1991
- "OwnerAccount":{"shape":"String"},
1992
- "TagKeys":{"shape":"TagKeyList"},
1993
- "TagValues":{"shape":"TagValueList"}
1994
- }
1995
- },
1996
- "DescribeClusterSubnetGroupsMessage":{
1997
- "type":"structure",
1998
- "members":{
1999
- "ClusterSubnetGroupName":{"shape":"String"},
2000
- "MaxRecords":{"shape":"IntegerOptional"},
2001
- "Marker":{"shape":"String"},
2002
- "TagKeys":{"shape":"TagKeyList"},
2003
- "TagValues":{"shape":"TagValueList"}
2004
- }
2005
- },
2006
- "DescribeClusterVersionsMessage":{
2007
- "type":"structure",
2008
- "members":{
2009
- "ClusterVersion":{"shape":"String"},
2010
- "ClusterParameterGroupFamily":{"shape":"String"},
2011
- "MaxRecords":{"shape":"IntegerOptional"},
2012
- "Marker":{"shape":"String"}
2013
- }
2014
- },
2015
- "DescribeClustersMessage":{
2016
- "type":"structure",
2017
- "members":{
2018
- "ClusterIdentifier":{"shape":"String"},
2019
- "MaxRecords":{"shape":"IntegerOptional"},
2020
- "Marker":{"shape":"String"},
2021
- "TagKeys":{"shape":"TagKeyList"},
2022
- "TagValues":{"shape":"TagValueList"}
2023
- }
2024
- },
2025
- "DescribeDefaultClusterParametersMessage":{
2026
- "type":"structure",
2027
- "required":["ParameterGroupFamily"],
2028
- "members":{
2029
- "ParameterGroupFamily":{"shape":"String"},
2030
- "MaxRecords":{"shape":"IntegerOptional"},
2031
- "Marker":{"shape":"String"}
2032
- }
2033
- },
2034
- "DescribeDefaultClusterParametersResult":{
2035
- "type":"structure",
2036
- "members":{
2037
- "DefaultClusterParameters":{"shape":"DefaultClusterParameters"}
2038
- }
2039
- },
2040
- "DescribeEventCategoriesMessage":{
2041
- "type":"structure",
2042
- "members":{
2043
- "SourceType":{"shape":"String"}
2044
- }
2045
- },
2046
- "DescribeEventSubscriptionsMessage":{
2047
- "type":"structure",
2048
- "members":{
2049
- "SubscriptionName":{"shape":"String"},
2050
- "MaxRecords":{"shape":"IntegerOptional"},
2051
- "Marker":{"shape":"String"}
2052
- }
2053
- },
2054
- "DescribeEventsMessage":{
2055
- "type":"structure",
2056
- "members":{
2057
- "SourceIdentifier":{"shape":"String"},
2058
- "SourceType":{"shape":"SourceType"},
2059
- "StartTime":{"shape":"TStamp"},
2060
- "EndTime":{"shape":"TStamp"},
2061
- "Duration":{"shape":"IntegerOptional"},
2062
- "MaxRecords":{"shape":"IntegerOptional"},
2063
- "Marker":{"shape":"String"}
2064
- }
2065
- },
2066
- "DescribeHsmClientCertificatesMessage":{
2067
- "type":"structure",
2068
- "members":{
2069
- "HsmClientCertificateIdentifier":{"shape":"String"},
2070
- "MaxRecords":{"shape":"IntegerOptional"},
2071
- "Marker":{"shape":"String"},
2072
- "TagKeys":{"shape":"TagKeyList"},
2073
- "TagValues":{"shape":"TagValueList"}
2074
- }
2075
- },
2076
- "DescribeHsmConfigurationsMessage":{
2077
- "type":"structure",
2078
- "members":{
2079
- "HsmConfigurationIdentifier":{"shape":"String"},
2080
- "MaxRecords":{"shape":"IntegerOptional"},
2081
- "Marker":{"shape":"String"},
2082
- "TagKeys":{"shape":"TagKeyList"},
2083
- "TagValues":{"shape":"TagValueList"}
2084
- }
2085
- },
2086
- "DescribeLoggingStatusMessage":{
2087
- "type":"structure",
2088
- "required":["ClusterIdentifier"],
2089
- "members":{
2090
- "ClusterIdentifier":{"shape":"String"}
2091
- }
2092
- },
2093
- "DescribeOrderableClusterOptionsMessage":{
2094
- "type":"structure",
2095
- "members":{
2096
- "ClusterVersion":{"shape":"String"},
2097
- "NodeType":{"shape":"String"},
2098
- "MaxRecords":{"shape":"IntegerOptional"},
2099
- "Marker":{"shape":"String"}
2100
- }
2101
- },
2102
- "DescribeReservedNodeOfferingsMessage":{
2103
- "type":"structure",
2104
- "members":{
2105
- "ReservedNodeOfferingId":{"shape":"String"},
2106
- "MaxRecords":{"shape":"IntegerOptional"},
2107
- "Marker":{"shape":"String"}
2108
- }
2109
- },
2110
- "DescribeReservedNodesMessage":{
2111
- "type":"structure",
2112
- "members":{
2113
- "ReservedNodeId":{"shape":"String"},
2114
- "MaxRecords":{"shape":"IntegerOptional"},
2115
- "Marker":{"shape":"String"}
2116
- }
2117
- },
2118
- "DescribeResizeMessage":{
2119
- "type":"structure",
2120
- "required":["ClusterIdentifier"],
2121
- "members":{
2122
- "ClusterIdentifier":{"shape":"String"}
2123
- }
2124
- },
2125
- "DescribeSnapshotCopyGrantsMessage":{
2126
- "type":"structure",
2127
- "members":{
2128
- "SnapshotCopyGrantName":{"shape":"String"},
2129
- "MaxRecords":{"shape":"IntegerOptional"},
2130
- "Marker":{"shape":"String"},
2131
- "TagKeys":{"shape":"TagKeyList"},
2132
- "TagValues":{"shape":"TagValueList"}
2133
- }
2134
- },
2135
- "DescribeTableRestoreStatusMessage":{
2136
- "type":"structure",
2137
- "members":{
2138
- "ClusterIdentifier":{"shape":"String"},
2139
- "TableRestoreRequestId":{"shape":"String"},
2140
- "MaxRecords":{"shape":"IntegerOptional"},
2141
- "Marker":{"shape":"String"}
2142
- }
2143
- },
2144
- "DescribeTagsMessage":{
2145
- "type":"structure",
2146
- "members":{
2147
- "ResourceName":{"shape":"String"},
2148
- "ResourceType":{"shape":"String"},
2149
- "MaxRecords":{"shape":"IntegerOptional"},
2150
- "Marker":{"shape":"String"},
2151
- "TagKeys":{"shape":"TagKeyList"},
2152
- "TagValues":{"shape":"TagValueList"}
2153
- }
2154
- },
2155
- "DisableLoggingMessage":{
2156
- "type":"structure",
2157
- "required":["ClusterIdentifier"],
2158
- "members":{
2159
- "ClusterIdentifier":{"shape":"String"}
2160
- }
2161
- },
2162
- "DisableSnapshotCopyMessage":{
2163
- "type":"structure",
2164
- "required":["ClusterIdentifier"],
2165
- "members":{
2166
- "ClusterIdentifier":{"shape":"String"}
2167
- }
2168
- },
2169
- "DisableSnapshotCopyResult":{
2170
- "type":"structure",
2171
- "members":{
2172
- "Cluster":{"shape":"Cluster"}
2173
- }
2174
- },
2175
- "Double":{"type":"double"},
2176
- "DoubleOptional":{"type":"double"},
2177
- "EC2SecurityGroup":{
2178
- "type":"structure",
2179
- "members":{
2180
- "Status":{"shape":"String"},
2181
- "EC2SecurityGroupName":{"shape":"String"},
2182
- "EC2SecurityGroupOwnerId":{"shape":"String"},
2183
- "Tags":{"shape":"TagList"}
2184
- }
2185
- },
2186
- "EC2SecurityGroupList":{
2187
- "type":"list",
2188
- "member":{
2189
- "shape":"EC2SecurityGroup",
2190
- "locationName":"EC2SecurityGroup"
2191
- }
2192
- },
2193
- "ElasticIpStatus":{
2194
- "type":"structure",
2195
- "members":{
2196
- "ElasticIp":{"shape":"String"},
2197
- "Status":{"shape":"String"}
2198
- }
2199
- },
2200
- "EnableLoggingMessage":{
2201
- "type":"structure",
2202
- "required":[
2203
- "ClusterIdentifier",
2204
- "BucketName"
2205
- ],
2206
- "members":{
2207
- "ClusterIdentifier":{"shape":"String"},
2208
- "BucketName":{"shape":"String"},
2209
- "S3KeyPrefix":{"shape":"String"}
2210
- }
2211
- },
2212
- "EnableSnapshotCopyMessage":{
2213
- "type":"structure",
2214
- "required":[
2215
- "ClusterIdentifier",
2216
- "DestinationRegion"
2217
- ],
2218
- "members":{
2219
- "ClusterIdentifier":{"shape":"String"},
2220
- "DestinationRegion":{"shape":"String"},
2221
- "RetentionPeriod":{"shape":"IntegerOptional"},
2222
- "SnapshotCopyGrantName":{"shape":"String"}
2223
- }
2224
- },
2225
- "EnableSnapshotCopyResult":{
2226
- "type":"structure",
2227
- "members":{
2228
- "Cluster":{"shape":"Cluster"}
2229
- }
2230
- },
2231
- "Endpoint":{
2232
- "type":"structure",
2233
- "members":{
2234
- "Address":{"shape":"String"},
2235
- "Port":{"shape":"Integer"}
2236
- }
2237
- },
2238
- "Event":{
2239
- "type":"structure",
2240
- "members":{
2241
- "SourceIdentifier":{"shape":"String"},
2242
- "SourceType":{"shape":"SourceType"},
2243
- "Message":{"shape":"String"},
2244
- "EventCategories":{"shape":"EventCategoriesList"},
2245
- "Severity":{"shape":"String"},
2246
- "Date":{"shape":"TStamp"},
2247
- "EventId":{"shape":"String"}
2248
- }
2249
- },
2250
- "EventCategoriesList":{
2251
- "type":"list",
2252
- "member":{
2253
- "shape":"String",
2254
- "locationName":"EventCategory"
2255
- }
2256
- },
2257
- "EventCategoriesMap":{
2258
- "type":"structure",
2259
- "members":{
2260
- "SourceType":{"shape":"String"},
2261
- "Events":{"shape":"EventInfoMapList"}
2262
- },
2263
- "wrapper":true
2264
- },
2265
- "EventCategoriesMapList":{
2266
- "type":"list",
2267
- "member":{
2268
- "shape":"EventCategoriesMap",
2269
- "locationName":"EventCategoriesMap"
2270
- }
2271
- },
2272
- "EventCategoriesMessage":{
2273
- "type":"structure",
2274
- "members":{
2275
- "EventCategoriesMapList":{"shape":"EventCategoriesMapList"}
2276
- }
2277
- },
2278
- "EventInfoMap":{
2279
- "type":"structure",
2280
- "members":{
2281
- "EventId":{"shape":"String"},
2282
- "EventCategories":{"shape":"EventCategoriesList"},
2283
- "EventDescription":{"shape":"String"},
2284
- "Severity":{"shape":"String"}
2285
- },
2286
- "wrapper":true
2287
- },
2288
- "EventInfoMapList":{
2289
- "type":"list",
2290
- "member":{
2291
- "shape":"EventInfoMap",
2292
- "locationName":"EventInfoMap"
2293
- }
2294
- },
2295
- "EventList":{
2296
- "type":"list",
2297
- "member":{
2298
- "shape":"Event",
2299
- "locationName":"Event"
2300
- }
2301
- },
2302
- "EventSubscription":{
2303
- "type":"structure",
2304
- "members":{
2305
- "CustomerAwsId":{"shape":"String"},
2306
- "CustSubscriptionId":{"shape":"String"},
2307
- "SnsTopicArn":{"shape":"String"},
2308
- "Status":{"shape":"String"},
2309
- "SubscriptionCreationTime":{"shape":"TStamp"},
2310
- "SourceType":{"shape":"String"},
2311
- "SourceIdsList":{"shape":"SourceIdsList"},
2312
- "EventCategoriesList":{"shape":"EventCategoriesList"},
2313
- "Severity":{"shape":"String"},
2314
- "Enabled":{"shape":"Boolean"},
2315
- "Tags":{"shape":"TagList"}
2316
- },
2317
- "wrapper":true
2318
- },
2319
- "EventSubscriptionQuotaExceededFault":{
2320
- "type":"structure",
2321
- "members":{
2322
- },
2323
- "error":{
2324
- "code":"EventSubscriptionQuotaExceeded",
2325
- "httpStatusCode":400,
2326
- "senderFault":true
2327
- },
2328
- "exception":true
2329
- },
2330
- "EventSubscriptionsList":{
2331
- "type":"list",
2332
- "member":{
2333
- "shape":"EventSubscription",
2334
- "locationName":"EventSubscription"
2335
- }
2336
- },
2337
- "EventSubscriptionsMessage":{
2338
- "type":"structure",
2339
- "members":{
2340
- "Marker":{"shape":"String"},
2341
- "EventSubscriptionsList":{"shape":"EventSubscriptionsList"}
2342
- }
2343
- },
2344
- "EventsMessage":{
2345
- "type":"structure",
2346
- "members":{
2347
- "Marker":{"shape":"String"},
2348
- "Events":{"shape":"EventList"}
2349
- }
2350
- },
2351
- "HsmClientCertificate":{
2352
- "type":"structure",
2353
- "members":{
2354
- "HsmClientCertificateIdentifier":{"shape":"String"},
2355
- "HsmClientCertificatePublicKey":{"shape":"String"},
2356
- "Tags":{"shape":"TagList"}
2357
- },
2358
- "wrapper":true
2359
- },
2360
- "HsmClientCertificateAlreadyExistsFault":{
2361
- "type":"structure",
2362
- "members":{
2363
- },
2364
- "error":{
2365
- "code":"HsmClientCertificateAlreadyExistsFault",
2366
- "httpStatusCode":400,
2367
- "senderFault":true
2368
- },
2369
- "exception":true
2370
- },
2371
- "HsmClientCertificateList":{
2372
- "type":"list",
2373
- "member":{
2374
- "shape":"HsmClientCertificate",
2375
- "locationName":"HsmClientCertificate"
2376
- }
2377
- },
2378
- "HsmClientCertificateMessage":{
2379
- "type":"structure",
2380
- "members":{
2381
- "Marker":{"shape":"String"},
2382
- "HsmClientCertificates":{"shape":"HsmClientCertificateList"}
2383
- }
2384
- },
2385
- "HsmClientCertificateNotFoundFault":{
2386
- "type":"structure",
2387
- "members":{
2388
- },
2389
- "error":{
2390
- "code":"HsmClientCertificateNotFoundFault",
2391
- "httpStatusCode":400,
2392
- "senderFault":true
2393
- },
2394
- "exception":true
2395
- },
2396
- "HsmClientCertificateQuotaExceededFault":{
2397
- "type":"structure",
2398
- "members":{
2399
- },
2400
- "error":{
2401
- "code":"HsmClientCertificateQuotaExceededFault",
2402
- "httpStatusCode":400,
2403
- "senderFault":true
2404
- },
2405
- "exception":true
2406
- },
2407
- "HsmConfiguration":{
2408
- "type":"structure",
2409
- "members":{
2410
- "HsmConfigurationIdentifier":{"shape":"String"},
2411
- "Description":{"shape":"String"},
2412
- "HsmIpAddress":{"shape":"String"},
2413
- "HsmPartitionName":{"shape":"String"},
2414
- "Tags":{"shape":"TagList"}
2415
- },
2416
- "wrapper":true
2417
- },
2418
- "HsmConfigurationAlreadyExistsFault":{
2419
- "type":"structure",
2420
- "members":{
2421
- },
2422
- "error":{
2423
- "code":"HsmConfigurationAlreadyExistsFault",
2424
- "httpStatusCode":400,
2425
- "senderFault":true
2426
- },
2427
- "exception":true
2428
- },
2429
- "HsmConfigurationList":{
2430
- "type":"list",
2431
- "member":{
2432
- "shape":"HsmConfiguration",
2433
- "locationName":"HsmConfiguration"
2434
- }
2435
- },
2436
- "HsmConfigurationMessage":{
2437
- "type":"structure",
2438
- "members":{
2439
- "Marker":{"shape":"String"},
2440
- "HsmConfigurations":{"shape":"HsmConfigurationList"}
2441
- }
2442
- },
2443
- "HsmConfigurationNotFoundFault":{
2444
- "type":"structure",
2445
- "members":{
2446
- },
2447
- "error":{
2448
- "code":"HsmConfigurationNotFoundFault",
2449
- "httpStatusCode":400,
2450
- "senderFault":true
2451
- },
2452
- "exception":true
2453
- },
2454
- "HsmConfigurationQuotaExceededFault":{
2455
- "type":"structure",
2456
- "members":{
2457
- },
2458
- "error":{
2459
- "code":"HsmConfigurationQuotaExceededFault",
2460
- "httpStatusCode":400,
2461
- "senderFault":true
2462
- },
2463
- "exception":true
2464
- },
2465
- "HsmStatus":{
2466
- "type":"structure",
2467
- "members":{
2468
- "HsmClientCertificateIdentifier":{"shape":"String"},
2469
- "HsmConfigurationIdentifier":{"shape":"String"},
2470
- "Status":{"shape":"String"}
2471
- }
2472
- },
2473
- "IPRange":{
2474
- "type":"structure",
2475
- "members":{
2476
- "Status":{"shape":"String"},
2477
- "CIDRIP":{"shape":"String"},
2478
- "Tags":{"shape":"TagList"}
2479
- }
2480
- },
2481
- "IPRangeList":{
2482
- "type":"list",
2483
- "member":{
2484
- "shape":"IPRange",
2485
- "locationName":"IPRange"
2486
- }
2487
- },
2488
- "IamRoleArnList":{
2489
- "type":"list",
2490
- "member":{
2491
- "shape":"String",
2492
- "locationName":"IamRoleArn"
2493
- }
2494
- },
2495
- "ImportTablesCompleted":{
2496
- "type":"list",
2497
- "member":{"shape":"String"}
2498
- },
2499
- "ImportTablesInProgress":{
2500
- "type":"list",
2501
- "member":{"shape":"String"}
2502
- },
2503
- "ImportTablesNotStarted":{
2504
- "type":"list",
2505
- "member":{"shape":"String"}
2506
- },
2507
- "InProgressTableRestoreQuotaExceededFault":{
2508
- "type":"structure",
2509
- "members":{
2510
- },
2511
- "error":{
2512
- "code":"InProgressTableRestoreQuotaExceededFault",
2513
- "httpStatusCode":400,
2514
- "senderFault":true
2515
- },
2516
- "exception":true
2517
- },
2518
- "IncompatibleOrderableOptions":{
2519
- "type":"structure",
2520
- "members":{
2521
- },
2522
- "error":{
2523
- "code":"IncompatibleOrderableOptions",
2524
- "httpStatusCode":400,
2525
- "senderFault":true
2526
- },
2527
- "exception":true
2528
- },
2529
- "InsufficientClusterCapacityFault":{
2530
- "type":"structure",
2531
- "members":{
2532
- },
2533
- "error":{
2534
- "code":"InsufficientClusterCapacity",
2535
- "httpStatusCode":400,
2536
- "senderFault":true
2537
- },
2538
- "exception":true
2539
- },
2540
- "InsufficientS3BucketPolicyFault":{
2541
- "type":"structure",
2542
- "members":{
2543
- },
2544
- "error":{
2545
- "code":"InsufficientS3BucketPolicyFault",
2546
- "httpStatusCode":400,
2547
- "senderFault":true
2548
- },
2549
- "exception":true
2550
- },
2551
- "Integer":{"type":"integer"},
2552
- "IntegerOptional":{"type":"integer"},
2553
- "InvalidClusterParameterGroupStateFault":{
2554
- "type":"structure",
2555
- "members":{
2556
- },
2557
- "error":{
2558
- "code":"InvalidClusterParameterGroupState",
2559
- "httpStatusCode":400,
2560
- "senderFault":true
2561
- },
2562
- "exception":true
2563
- },
2564
- "InvalidClusterSecurityGroupStateFault":{
2565
- "type":"structure",
2566
- "members":{
2567
- },
2568
- "error":{
2569
- "code":"InvalidClusterSecurityGroupState",
2570
- "httpStatusCode":400,
2571
- "senderFault":true
2572
- },
2573
- "exception":true
2574
- },
2575
- "InvalidClusterSnapshotStateFault":{
2576
- "type":"structure",
2577
- "members":{
2578
- },
2579
- "error":{
2580
- "code":"InvalidClusterSnapshotState",
2581
- "httpStatusCode":400,
2582
- "senderFault":true
2583
- },
2584
- "exception":true
2585
- },
2586
- "InvalidClusterStateFault":{
2587
- "type":"structure",
2588
- "members":{
2589
- },
2590
- "error":{
2591
- "code":"InvalidClusterState",
2592
- "httpStatusCode":400,
2593
- "senderFault":true
2594
- },
2595
- "exception":true
2596
- },
2597
- "InvalidClusterSubnetGroupStateFault":{
2598
- "type":"structure",
2599
- "members":{
2600
- },
2601
- "error":{
2602
- "code":"InvalidClusterSubnetGroupStateFault",
2603
- "httpStatusCode":400,
2604
- "senderFault":true
2605
- },
2606
- "exception":true
2607
- },
2608
- "InvalidClusterSubnetStateFault":{
2609
- "type":"structure",
2610
- "members":{
2611
- },
2612
- "error":{
2613
- "code":"InvalidClusterSubnetStateFault",
2614
- "httpStatusCode":400,
2615
- "senderFault":true
2616
- },
2617
- "exception":true
2618
- },
2619
- "InvalidElasticIpFault":{
2620
- "type":"structure",
2621
- "members":{
2622
- },
2623
- "error":{
2624
- "code":"InvalidElasticIpFault",
2625
- "httpStatusCode":400,
2626
- "senderFault":true
2627
- },
2628
- "exception":true
2629
- },
2630
- "InvalidHsmClientCertificateStateFault":{
2631
- "type":"structure",
2632
- "members":{
2633
- },
2634
- "error":{
2635
- "code":"InvalidHsmClientCertificateStateFault",
2636
- "httpStatusCode":400,
2637
- "senderFault":true
2638
- },
2639
- "exception":true
2640
- },
2641
- "InvalidHsmConfigurationStateFault":{
2642
- "type":"structure",
2643
- "members":{
2644
- },
2645
- "error":{
2646
- "code":"InvalidHsmConfigurationStateFault",
2647
- "httpStatusCode":400,
2648
- "senderFault":true
2649
- },
2650
- "exception":true
2651
- },
2652
- "InvalidRestoreFault":{
2653
- "type":"structure",
2654
- "members":{
2655
- },
2656
- "error":{
2657
- "code":"InvalidRestore",
2658
- "httpStatusCode":406,
2659
- "senderFault":true
2660
- },
2661
- "exception":true
2662
- },
2663
- "InvalidS3BucketNameFault":{
2664
- "type":"structure",
2665
- "members":{
2666
- },
2667
- "error":{
2668
- "code":"InvalidS3BucketNameFault",
2669
- "httpStatusCode":400,
2670
- "senderFault":true
2671
- },
2672
- "exception":true
2673
- },
2674
- "InvalidS3KeyPrefixFault":{
2675
- "type":"structure",
2676
- "members":{
2677
- },
2678
- "error":{
2679
- "code":"InvalidS3KeyPrefixFault",
2680
- "httpStatusCode":400,
2681
- "senderFault":true
2682
- },
2683
- "exception":true
2684
- },
2685
- "InvalidSnapshotCopyGrantStateFault":{
2686
- "type":"structure",
2687
- "members":{
2688
- },
2689
- "error":{
2690
- "code":"InvalidSnapshotCopyGrantStateFault",
2691
- "httpStatusCode":400,
2692
- "senderFault":true
2693
- },
2694
- "exception":true
2695
- },
2696
- "InvalidSubnet":{
2697
- "type":"structure",
2698
- "members":{
2699
- },
2700
- "error":{
2701
- "code":"InvalidSubnet",
2702
- "httpStatusCode":400,
2703
- "senderFault":true
2704
- },
2705
- "exception":true
2706
- },
2707
- "InvalidSubscriptionStateFault":{
2708
- "type":"structure",
2709
- "members":{
2710
- },
2711
- "error":{
2712
- "code":"InvalidSubscriptionStateFault",
2713
- "httpStatusCode":400,
2714
- "senderFault":true
2715
- },
2716
- "exception":true
2717
- },
2718
- "InvalidTableRestoreArgumentFault":{
2719
- "type":"structure",
2720
- "members":{
2721
- },
2722
- "error":{
2723
- "code":"InvalidTableRestoreArgument",
2724
- "httpStatusCode":400,
2725
- "senderFault":true
2726
- },
2727
- "exception":true
2728
- },
2729
- "InvalidTagFault":{
2730
- "type":"structure",
2731
- "members":{
2732
- },
2733
- "error":{
2734
- "code":"InvalidTagFault",
2735
- "httpStatusCode":400,
2736
- "senderFault":true
2737
- },
2738
- "exception":true
2739
- },
2740
- "InvalidVPCNetworkStateFault":{
2741
- "type":"structure",
2742
- "members":{
2743
- },
2744
- "error":{
2745
- "code":"InvalidVPCNetworkStateFault",
2746
- "httpStatusCode":400,
2747
- "senderFault":true
2748
- },
2749
- "exception":true
2750
- },
2751
- "LimitExceededFault":{
2752
- "type":"structure",
2753
- "members":{
2754
- },
2755
- "error":{
2756
- "code":"LimitExceededFault",
2757
- "httpStatusCode":400,
2758
- "senderFault":true
2759
- },
2760
- "exception":true
2761
- },
2762
- "LoggingStatus":{
2763
- "type":"structure",
2764
- "members":{
2765
- "LoggingEnabled":{"shape":"Boolean"},
2766
- "BucketName":{"shape":"String"},
2767
- "S3KeyPrefix":{"shape":"String"},
2768
- "LastSuccessfulDeliveryTime":{"shape":"TStamp"},
2769
- "LastFailureTime":{"shape":"TStamp"},
2770
- "LastFailureMessage":{"shape":"String"}
2771
- }
2772
- },
2773
- "Long":{"type":"long"},
2774
- "LongOptional":{"type":"long"},
2775
- "ModifyClusterIamRolesMessage":{
2776
- "type":"structure",
2777
- "required":["ClusterIdentifier"],
2778
- "members":{
2779
- "ClusterIdentifier":{"shape":"String"},
2780
- "AddIamRoles":{"shape":"IamRoleArnList"},
2781
- "RemoveIamRoles":{"shape":"IamRoleArnList"}
2782
- }
2783
- },
2784
- "ModifyClusterIamRolesResult":{
2785
- "type":"structure",
2786
- "members":{
2787
- "Cluster":{"shape":"Cluster"}
2788
- }
2789
- },
2790
- "ModifyClusterMessage":{
2791
- "type":"structure",
2792
- "required":["ClusterIdentifier"],
2793
- "members":{
2794
- "ClusterIdentifier":{"shape":"String"},
2795
- "ClusterType":{"shape":"String"},
2796
- "NodeType":{"shape":"String"},
2797
- "NumberOfNodes":{"shape":"IntegerOptional"},
2798
- "ClusterSecurityGroups":{"shape":"ClusterSecurityGroupNameList"},
2799
- "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"},
2800
- "MasterUserPassword":{"shape":"String"},
2801
- "ClusterParameterGroupName":{"shape":"String"},
2802
- "AutomatedSnapshotRetentionPeriod":{"shape":"IntegerOptional"},
2803
- "PreferredMaintenanceWindow":{"shape":"String"},
2804
- "ClusterVersion":{"shape":"String"},
2805
- "AllowVersionUpgrade":{"shape":"BooleanOptional"},
2806
- "HsmClientCertificateIdentifier":{"shape":"String"},
2807
- "HsmConfigurationIdentifier":{"shape":"String"},
2808
- "NewClusterIdentifier":{"shape":"String"},
2809
- "PubliclyAccessible":{"shape":"BooleanOptional"},
2810
- "ElasticIp":{"shape":"String"}
2811
- }
2812
- },
2813
- "ModifyClusterParameterGroupMessage":{
2814
- "type":"structure",
2815
- "required":[
2816
- "ParameterGroupName",
2817
- "Parameters"
2818
- ],
2819
- "members":{
2820
- "ParameterGroupName":{"shape":"String"},
2821
- "Parameters":{"shape":"ParametersList"}
2822
- }
2823
- },
2824
- "ModifyClusterResult":{
2825
- "type":"structure",
2826
- "members":{
2827
- "Cluster":{"shape":"Cluster"}
2828
- }
2829
- },
2830
- "ModifyClusterSubnetGroupMessage":{
2831
- "type":"structure",
2832
- "required":[
2833
- "ClusterSubnetGroupName",
2834
- "SubnetIds"
2835
- ],
2836
- "members":{
2837
- "ClusterSubnetGroupName":{"shape":"String"},
2838
- "Description":{"shape":"String"},
2839
- "SubnetIds":{"shape":"SubnetIdentifierList"}
2840
- }
2841
- },
2842
- "ModifyClusterSubnetGroupResult":{
2843
- "type":"structure",
2844
- "members":{
2845
- "ClusterSubnetGroup":{"shape":"ClusterSubnetGroup"}
2846
- }
2847
- },
2848
- "ModifyEventSubscriptionMessage":{
2849
- "type":"structure",
2850
- "required":["SubscriptionName"],
2851
- "members":{
2852
- "SubscriptionName":{"shape":"String"},
2853
- "SnsTopicArn":{"shape":"String"},
2854
- "SourceType":{"shape":"String"},
2855
- "SourceIds":{"shape":"SourceIdsList"},
2856
- "EventCategories":{"shape":"EventCategoriesList"},
2857
- "Severity":{"shape":"String"},
2858
- "Enabled":{"shape":"BooleanOptional"}
2859
- }
2860
- },
2861
- "ModifyEventSubscriptionResult":{
2862
- "type":"structure",
2863
- "members":{
2864
- "EventSubscription":{"shape":"EventSubscription"}
2865
- }
2866
- },
2867
- "ModifySnapshotCopyRetentionPeriodMessage":{
2868
- "type":"structure",
2869
- "required":[
2870
- "ClusterIdentifier",
2871
- "RetentionPeriod"
2872
- ],
2873
- "members":{
2874
- "ClusterIdentifier":{"shape":"String"},
2875
- "RetentionPeriod":{"shape":"Integer"}
2876
- }
2877
- },
2878
- "ModifySnapshotCopyRetentionPeriodResult":{
2879
- "type":"structure",
2880
- "members":{
2881
- "Cluster":{"shape":"Cluster"}
2882
- }
2883
- },
2884
- "NumberOfNodesPerClusterLimitExceededFault":{
2885
- "type":"structure",
2886
- "members":{
2887
- },
2888
- "error":{
2889
- "code":"NumberOfNodesPerClusterLimitExceeded",
2890
- "httpStatusCode":400,
2891
- "senderFault":true
2892
- },
2893
- "exception":true
2894
- },
2895
- "NumberOfNodesQuotaExceededFault":{
2896
- "type":"structure",
2897
- "members":{
2898
- },
2899
- "error":{
2900
- "code":"NumberOfNodesQuotaExceeded",
2901
- "httpStatusCode":400,
2902
- "senderFault":true
2903
- },
2904
- "exception":true
2905
- },
2906
- "OrderableClusterOption":{
2907
- "type":"structure",
2908
- "members":{
2909
- "ClusterVersion":{"shape":"String"},
2910
- "ClusterType":{"shape":"String"},
2911
- "NodeType":{"shape":"String"},
2912
- "AvailabilityZones":{"shape":"AvailabilityZoneList"}
2913
- },
2914
- "wrapper":true
2915
- },
2916
- "OrderableClusterOptionsList":{
2917
- "type":"list",
2918
- "member":{
2919
- "shape":"OrderableClusterOption",
2920
- "locationName":"OrderableClusterOption"
2921
- }
2922
- },
2923
- "OrderableClusterOptionsMessage":{
2924
- "type":"structure",
2925
- "members":{
2926
- "OrderableClusterOptions":{"shape":"OrderableClusterOptionsList"},
2927
- "Marker":{"shape":"String"}
2928
- }
2929
- },
2930
- "Parameter":{
2931
- "type":"structure",
2932
- "members":{
2933
- "ParameterName":{"shape":"String"},
2934
- "ParameterValue":{"shape":"String"},
2935
- "Description":{"shape":"String"},
2936
- "Source":{"shape":"String"},
2937
- "DataType":{"shape":"String"},
2938
- "AllowedValues":{"shape":"String"},
2939
- "ApplyType":{"shape":"ParameterApplyType"},
2940
- "IsModifiable":{"shape":"Boolean"},
2941
- "MinimumEngineVersion":{"shape":"String"}
2942
- }
2943
- },
2944
- "ParameterApplyType":{
2945
- "type":"string",
2946
- "enum":[
2947
- "static",
2948
- "dynamic"
2949
- ]
2950
- },
2951
- "ParameterGroupList":{
2952
- "type":"list",
2953
- "member":{
2954
- "shape":"ClusterParameterGroup",
2955
- "locationName":"ClusterParameterGroup"
2956
- }
2957
- },
2958
- "ParametersList":{
2959
- "type":"list",
2960
- "member":{
2961
- "shape":"Parameter",
2962
- "locationName":"Parameter"
2963
- }
2964
- },
2965
- "PendingModifiedValues":{
2966
- "type":"structure",
2967
- "members":{
2968
- "MasterUserPassword":{"shape":"String"},
2969
- "NodeType":{"shape":"String"},
2970
- "NumberOfNodes":{"shape":"IntegerOptional"},
2971
- "ClusterType":{"shape":"String"},
2972
- "ClusterVersion":{"shape":"String"},
2973
- "AutomatedSnapshotRetentionPeriod":{"shape":"IntegerOptional"},
2974
- "ClusterIdentifier":{"shape":"String"},
2975
- "PubliclyAccessible":{"shape":"BooleanOptional"}
2976
- }
2977
- },
2978
- "PurchaseReservedNodeOfferingMessage":{
2979
- "type":"structure",
2980
- "required":["ReservedNodeOfferingId"],
2981
- "members":{
2982
- "ReservedNodeOfferingId":{"shape":"String"},
2983
- "NodeCount":{"shape":"IntegerOptional"}
2984
- }
2985
- },
2986
- "PurchaseReservedNodeOfferingResult":{
2987
- "type":"structure",
2988
- "members":{
2989
- "ReservedNode":{"shape":"ReservedNode"}
2990
- }
2991
- },
2992
- "RebootClusterMessage":{
2993
- "type":"structure",
2994
- "required":["ClusterIdentifier"],
2995
- "members":{
2996
- "ClusterIdentifier":{"shape":"String"}
2997
- }
2998
- },
2999
- "RebootClusterResult":{
3000
- "type":"structure",
3001
- "members":{
3002
- "Cluster":{"shape":"Cluster"}
3003
- }
3004
- },
3005
- "RecurringCharge":{
3006
- "type":"structure",
3007
- "members":{
3008
- "RecurringChargeAmount":{"shape":"Double"},
3009
- "RecurringChargeFrequency":{"shape":"String"}
3010
- },
3011
- "wrapper":true
3012
- },
3013
- "RecurringChargeList":{
3014
- "type":"list",
3015
- "member":{
3016
- "shape":"RecurringCharge",
3017
- "locationName":"RecurringCharge"
3018
- }
3019
- },
3020
- "ReservedNode":{
3021
- "type":"structure",
3022
- "members":{
3023
- "ReservedNodeId":{"shape":"String"},
3024
- "ReservedNodeOfferingId":{"shape":"String"},
3025
- "NodeType":{"shape":"String"},
3026
- "StartTime":{"shape":"TStamp"},
3027
- "Duration":{"shape":"Integer"},
3028
- "FixedPrice":{"shape":"Double"},
3029
- "UsagePrice":{"shape":"Double"},
3030
- "CurrencyCode":{"shape":"String"},
3031
- "NodeCount":{"shape":"Integer"},
3032
- "State":{"shape":"String"},
3033
- "OfferingType":{"shape":"String"},
3034
- "RecurringCharges":{"shape":"RecurringChargeList"}
3035
- },
3036
- "wrapper":true
3037
- },
3038
- "ReservedNodeAlreadyExistsFault":{
3039
- "type":"structure",
3040
- "members":{
3041
- },
3042
- "error":{
3043
- "code":"ReservedNodeAlreadyExists",
3044
- "httpStatusCode":404,
3045
- "senderFault":true
3046
- },
3047
- "exception":true
3048
- },
3049
- "ReservedNodeList":{
3050
- "type":"list",
3051
- "member":{
3052
- "shape":"ReservedNode",
3053
- "locationName":"ReservedNode"
3054
- }
3055
- },
3056
- "ReservedNodeNotFoundFault":{
3057
- "type":"structure",
3058
- "members":{
3059
- },
3060
- "error":{
3061
- "code":"ReservedNodeNotFound",
3062
- "httpStatusCode":404,
3063
- "senderFault":true
3064
- },
3065
- "exception":true
3066
- },
3067
- "ReservedNodeOffering":{
3068
- "type":"structure",
3069
- "members":{
3070
- "ReservedNodeOfferingId":{"shape":"String"},
3071
- "NodeType":{"shape":"String"},
3072
- "Duration":{"shape":"Integer"},
3073
- "FixedPrice":{"shape":"Double"},
3074
- "UsagePrice":{"shape":"Double"},
3075
- "CurrencyCode":{"shape":"String"},
3076
- "OfferingType":{"shape":"String"},
3077
- "RecurringCharges":{"shape":"RecurringChargeList"}
3078
- },
3079
- "wrapper":true
3080
- },
3081
- "ReservedNodeOfferingList":{
3082
- "type":"list",
3083
- "member":{
3084
- "shape":"ReservedNodeOffering",
3085
- "locationName":"ReservedNodeOffering"
3086
- }
3087
- },
3088
- "ReservedNodeOfferingNotFoundFault":{
3089
- "type":"structure",
3090
- "members":{
3091
- },
3092
- "error":{
3093
- "code":"ReservedNodeOfferingNotFound",
3094
- "httpStatusCode":404,
3095
- "senderFault":true
3096
- },
3097
- "exception":true
3098
- },
3099
- "ReservedNodeOfferingsMessage":{
3100
- "type":"structure",
3101
- "members":{
3102
- "Marker":{"shape":"String"},
3103
- "ReservedNodeOfferings":{"shape":"ReservedNodeOfferingList"}
3104
- }
3105
- },
3106
- "ReservedNodeQuotaExceededFault":{
3107
- "type":"structure",
3108
- "members":{
3109
- },
3110
- "error":{
3111
- "code":"ReservedNodeQuotaExceeded",
3112
- "httpStatusCode":400,
3113
- "senderFault":true
3114
- },
3115
- "exception":true
3116
- },
3117
- "ReservedNodesMessage":{
3118
- "type":"structure",
3119
- "members":{
3120
- "Marker":{"shape":"String"},
3121
- "ReservedNodes":{"shape":"ReservedNodeList"}
3122
- }
3123
- },
3124
- "ResetClusterParameterGroupMessage":{
3125
- "type":"structure",
3126
- "required":["ParameterGroupName"],
3127
- "members":{
3128
- "ParameterGroupName":{"shape":"String"},
3129
- "ResetAllParameters":{"shape":"Boolean"},
3130
- "Parameters":{"shape":"ParametersList"}
3131
- }
3132
- },
3133
- "ResizeNotFoundFault":{
3134
- "type":"structure",
3135
- "members":{
3136
- },
3137
- "error":{
3138
- "code":"ResizeNotFound",
3139
- "httpStatusCode":404,
3140
- "senderFault":true
3141
- },
3142
- "exception":true
3143
- },
3144
- "ResizeProgressMessage":{
3145
- "type":"structure",
3146
- "members":{
3147
- "TargetNodeType":{"shape":"String"},
3148
- "TargetNumberOfNodes":{"shape":"IntegerOptional"},
3149
- "TargetClusterType":{"shape":"String"},
3150
- "Status":{"shape":"String"},
3151
- "ImportTablesCompleted":{"shape":"ImportTablesCompleted"},
3152
- "ImportTablesInProgress":{"shape":"ImportTablesInProgress"},
3153
- "ImportTablesNotStarted":{"shape":"ImportTablesNotStarted"},
3154
- "AvgResizeRateInMegaBytesPerSecond":{"shape":"DoubleOptional"},
3155
- "TotalResizeDataInMegaBytes":{"shape":"LongOptional"},
3156
- "ProgressInMegaBytes":{"shape":"LongOptional"},
3157
- "ElapsedTimeInSeconds":{"shape":"LongOptional"},
3158
- "EstimatedTimeToCompletionInSeconds":{"shape":"LongOptional"}
3159
- }
3160
- },
3161
- "ResourceNotFoundFault":{
3162
- "type":"structure",
3163
- "members":{
3164
- },
3165
- "error":{
3166
- "code":"ResourceNotFoundFault",
3167
- "httpStatusCode":404,
3168
- "senderFault":true
3169
- },
3170
- "exception":true
3171
- },
3172
- "RestorableNodeTypeList":{
3173
- "type":"list",
3174
- "member":{
3175
- "shape":"String",
3176
- "locationName":"NodeType"
3177
- }
3178
- },
3179
- "RestoreFromClusterSnapshotMessage":{
3180
- "type":"structure",
3181
- "required":[
3182
- "ClusterIdentifier",
3183
- "SnapshotIdentifier"
3184
- ],
3185
- "members":{
3186
- "ClusterIdentifier":{"shape":"String"},
3187
- "SnapshotIdentifier":{"shape":"String"},
3188
- "SnapshotClusterIdentifier":{"shape":"String"},
3189
- "Port":{"shape":"IntegerOptional"},
3190
- "AvailabilityZone":{"shape":"String"},
3191
- "AllowVersionUpgrade":{"shape":"BooleanOptional"},
3192
- "ClusterSubnetGroupName":{"shape":"String"},
3193
- "PubliclyAccessible":{"shape":"BooleanOptional"},
3194
- "OwnerAccount":{"shape":"String"},
3195
- "HsmClientCertificateIdentifier":{"shape":"String"},
3196
- "HsmConfigurationIdentifier":{"shape":"String"},
3197
- "ElasticIp":{"shape":"String"},
3198
- "ClusterParameterGroupName":{"shape":"String"},
3199
- "ClusterSecurityGroups":{"shape":"ClusterSecurityGroupNameList"},
3200
- "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"},
3201
- "PreferredMaintenanceWindow":{"shape":"String"},
3202
- "AutomatedSnapshotRetentionPeriod":{"shape":"IntegerOptional"},
3203
- "KmsKeyId":{"shape":"String"},
3204
- "NodeType":{"shape":"String"},
3205
- "AdditionalInfo":{"shape":"String"},
3206
- "IamRoles":{"shape":"IamRoleArnList"}
3207
- }
3208
- },
3209
- "RestoreFromClusterSnapshotResult":{
3210
- "type":"structure",
3211
- "members":{
3212
- "Cluster":{"shape":"Cluster"}
3213
- }
3214
- },
3215
- "RestoreStatus":{
3216
- "type":"structure",
3217
- "members":{
3218
- "Status":{"shape":"String"},
3219
- "CurrentRestoreRateInMegaBytesPerSecond":{"shape":"Double"},
3220
- "SnapshotSizeInMegaBytes":{"shape":"Long"},
3221
- "ProgressInMegaBytes":{"shape":"Long"},
3222
- "ElapsedTimeInSeconds":{"shape":"Long"},
3223
- "EstimatedTimeToCompletionInSeconds":{"shape":"Long"}
3224
- }
3225
- },
3226
- "RestoreTableFromClusterSnapshotMessage":{
3227
- "type":"structure",
3228
- "required":[
3229
- "ClusterIdentifier",
3230
- "SnapshotIdentifier",
3231
- "SourceDatabaseName",
3232
- "SourceTableName",
3233
- "NewTableName"
3234
- ],
3235
- "members":{
3236
- "ClusterIdentifier":{"shape":"String"},
3237
- "SnapshotIdentifier":{"shape":"String"},
3238
- "SourceDatabaseName":{"shape":"String"},
3239
- "SourceSchemaName":{"shape":"String"},
3240
- "SourceTableName":{"shape":"String"},
3241
- "TargetDatabaseName":{"shape":"String"},
3242
- "TargetSchemaName":{"shape":"String"},
3243
- "NewTableName":{"shape":"String"}
3244
- }
3245
- },
3246
- "RestoreTableFromClusterSnapshotResult":{
3247
- "type":"structure",
3248
- "members":{
3249
- "TableRestoreStatus":{"shape":"TableRestoreStatus"}
3250
- }
3251
- },
3252
- "RevokeClusterSecurityGroupIngressMessage":{
3253
- "type":"structure",
3254
- "required":["ClusterSecurityGroupName"],
3255
- "members":{
3256
- "ClusterSecurityGroupName":{"shape":"String"},
3257
- "CIDRIP":{"shape":"String"},
3258
- "EC2SecurityGroupName":{"shape":"String"},
3259
- "EC2SecurityGroupOwnerId":{"shape":"String"}
3260
- }
3261
- },
3262
- "RevokeClusterSecurityGroupIngressResult":{
3263
- "type":"structure",
3264
- "members":{
3265
- "ClusterSecurityGroup":{"shape":"ClusterSecurityGroup"}
3266
- }
3267
- },
3268
- "RevokeSnapshotAccessMessage":{
3269
- "type":"structure",
3270
- "required":[
3271
- "SnapshotIdentifier",
3272
- "AccountWithRestoreAccess"
3273
- ],
3274
- "members":{
3275
- "SnapshotIdentifier":{"shape":"String"},
3276
- "SnapshotClusterIdentifier":{"shape":"String"},
3277
- "AccountWithRestoreAccess":{"shape":"String"}
3278
- }
3279
- },
3280
- "RevokeSnapshotAccessResult":{
3281
- "type":"structure",
3282
- "members":{
3283
- "Snapshot":{"shape":"Snapshot"}
3284
- }
3285
- },
3286
- "RotateEncryptionKeyMessage":{
3287
- "type":"structure",
3288
- "required":["ClusterIdentifier"],
3289
- "members":{
3290
- "ClusterIdentifier":{"shape":"String"}
3291
- }
3292
- },
3293
- "RotateEncryptionKeyResult":{
3294
- "type":"structure",
3295
- "members":{
3296
- "Cluster":{"shape":"Cluster"}
3297
- }
3298
- },
3299
- "SNSInvalidTopicFault":{
3300
- "type":"structure",
3301
- "members":{
3302
- },
3303
- "error":{
3304
- "code":"SNSInvalidTopic",
3305
- "httpStatusCode":400,
3306
- "senderFault":true
3307
- },
3308
- "exception":true
3309
- },
3310
- "SNSNoAuthorizationFault":{
3311
- "type":"structure",
3312
- "members":{
3313
- },
3314
- "error":{
3315
- "code":"SNSNoAuthorization",
3316
- "httpStatusCode":400,
3317
- "senderFault":true
3318
- },
3319
- "exception":true
3320
- },
3321
- "SNSTopicArnNotFoundFault":{
3322
- "type":"structure",
3323
- "members":{
3324
- },
3325
- "error":{
3326
- "code":"SNSTopicArnNotFound",
3327
- "httpStatusCode":404,
3328
- "senderFault":true
3329
- },
3330
- "exception":true
3331
- },
3332
- "Snapshot":{
3333
- "type":"structure",
3334
- "members":{
3335
- "SnapshotIdentifier":{"shape":"String"},
3336
- "ClusterIdentifier":{"shape":"String"},
3337
- "SnapshotCreateTime":{"shape":"TStamp"},
3338
- "Status":{"shape":"String"},
3339
- "Port":{"shape":"Integer"},
3340
- "AvailabilityZone":{"shape":"String"},
3341
- "ClusterCreateTime":{"shape":"TStamp"},
3342
- "MasterUsername":{"shape":"String"},
3343
- "ClusterVersion":{"shape":"String"},
3344
- "SnapshotType":{"shape":"String"},
3345
- "NodeType":{"shape":"String"},
3346
- "NumberOfNodes":{"shape":"Integer"},
3347
- "DBName":{"shape":"String"},
3348
- "VpcId":{"shape":"String"},
3349
- "Encrypted":{"shape":"Boolean"},
3350
- "KmsKeyId":{"shape":"String"},
3351
- "EncryptedWithHSM":{"shape":"Boolean"},
3352
- "AccountsWithRestoreAccess":{"shape":"AccountsWithRestoreAccessList"},
3353
- "OwnerAccount":{"shape":"String"},
3354
- "TotalBackupSizeInMegaBytes":{"shape":"Double"},
3355
- "ActualIncrementalBackupSizeInMegaBytes":{"shape":"Double"},
3356
- "BackupProgressInMegaBytes":{"shape":"Double"},
3357
- "CurrentBackupRateInMegaBytesPerSecond":{"shape":"Double"},
3358
- "EstimatedSecondsToCompletion":{"shape":"Long"},
3359
- "ElapsedTimeInSeconds":{"shape":"Long"},
3360
- "SourceRegion":{"shape":"String"},
3361
- "Tags":{"shape":"TagList"},
3362
- "RestorableNodeTypes":{"shape":"RestorableNodeTypeList"}
3363
- },
3364
- "wrapper":true
3365
- },
3366
- "SnapshotCopyAlreadyDisabledFault":{
3367
- "type":"structure",
3368
- "members":{
3369
- },
3370
- "error":{
3371
- "code":"SnapshotCopyAlreadyDisabledFault",
3372
- "httpStatusCode":400,
3373
- "senderFault":true
3374
- },
3375
- "exception":true
3376
- },
3377
- "SnapshotCopyAlreadyEnabledFault":{
3378
- "type":"structure",
3379
- "members":{
3380
- },
3381
- "error":{
3382
- "code":"SnapshotCopyAlreadyEnabledFault",
3383
- "httpStatusCode":400,
3384
- "senderFault":true
3385
- },
3386
- "exception":true
3387
- },
3388
- "SnapshotCopyDisabledFault":{
3389
- "type":"structure",
3390
- "members":{
3391
- },
3392
- "error":{
3393
- "code":"SnapshotCopyDisabledFault",
3394
- "httpStatusCode":400,
3395
- "senderFault":true
3396
- },
3397
- "exception":true
3398
- },
3399
- "SnapshotCopyGrant":{
3400
- "type":"structure",
3401
- "members":{
3402
- "SnapshotCopyGrantName":{"shape":"String"},
3403
- "KmsKeyId":{"shape":"String"},
3404
- "Tags":{"shape":"TagList"}
3405
- },
3406
- "wrapper":true
3407
- },
3408
- "SnapshotCopyGrantAlreadyExistsFault":{
3409
- "type":"structure",
3410
- "members":{
3411
- },
3412
- "error":{
3413
- "code":"SnapshotCopyGrantAlreadyExistsFault",
3414
- "httpStatusCode":400,
3415
- "senderFault":true
3416
- },
3417
- "exception":true
3418
- },
3419
- "SnapshotCopyGrantList":{
3420
- "type":"list",
3421
- "member":{
3422
- "shape":"SnapshotCopyGrant",
3423
- "locationName":"SnapshotCopyGrant"
3424
- }
3425
- },
3426
- "SnapshotCopyGrantMessage":{
3427
- "type":"structure",
3428
- "members":{
3429
- "Marker":{"shape":"String"},
3430
- "SnapshotCopyGrants":{"shape":"SnapshotCopyGrantList"}
3431
- }
3432
- },
3433
- "SnapshotCopyGrantNotFoundFault":{
3434
- "type":"structure",
3435
- "members":{
3436
- },
3437
- "error":{
3438
- "code":"SnapshotCopyGrantNotFoundFault",
3439
- "httpStatusCode":400,
3440
- "senderFault":true
3441
- },
3442
- "exception":true
3443
- },
3444
- "SnapshotCopyGrantQuotaExceededFault":{
3445
- "type":"structure",
3446
- "members":{
3447
- },
3448
- "error":{
3449
- "code":"SnapshotCopyGrantQuotaExceededFault",
3450
- "httpStatusCode":400,
3451
- "senderFault":true
3452
- },
3453
- "exception":true
3454
- },
3455
- "SnapshotList":{
3456
- "type":"list",
3457
- "member":{
3458
- "shape":"Snapshot",
3459
- "locationName":"Snapshot"
3460
- }
3461
- },
3462
- "SnapshotMessage":{
3463
- "type":"structure",
3464
- "members":{
3465
- "Marker":{"shape":"String"},
3466
- "Snapshots":{"shape":"SnapshotList"}
3467
- }
3468
- },
3469
- "SourceIdsList":{
3470
- "type":"list",
3471
- "member":{
3472
- "shape":"String",
3473
- "locationName":"SourceId"
3474
- }
3475
- },
3476
- "SourceNotFoundFault":{
3477
- "type":"structure",
3478
- "members":{
3479
- },
3480
- "error":{
3481
- "code":"SourceNotFound",
3482
- "httpStatusCode":404,
3483
- "senderFault":true
3484
- },
3485
- "exception":true
3486
- },
3487
- "SourceType":{
3488
- "type":"string",
3489
- "enum":[
3490
- "cluster",
3491
- "cluster-parameter-group",
3492
- "cluster-security-group",
3493
- "cluster-snapshot"
3494
- ]
3495
- },
3496
- "String":{"type":"string"},
3497
- "Subnet":{
3498
- "type":"structure",
3499
- "members":{
3500
- "SubnetIdentifier":{"shape":"String"},
3501
- "SubnetAvailabilityZone":{"shape":"AvailabilityZone"},
3502
- "SubnetStatus":{"shape":"String"}
3503
- }
3504
- },
3505
- "SubnetAlreadyInUse":{
3506
- "type":"structure",
3507
- "members":{
3508
- },
3509
- "error":{
3510
- "code":"SubnetAlreadyInUse",
3511
- "httpStatusCode":400,
3512
- "senderFault":true
3513
- },
3514
- "exception":true
3515
- },
3516
- "SubnetIdentifierList":{
3517
- "type":"list",
3518
- "member":{
3519
- "shape":"String",
3520
- "locationName":"SubnetIdentifier"
3521
- }
3522
- },
3523
- "SubnetList":{
3524
- "type":"list",
3525
- "member":{
3526
- "shape":"Subnet",
3527
- "locationName":"Subnet"
3528
- }
3529
- },
3530
- "SubscriptionAlreadyExistFault":{
3531
- "type":"structure",
3532
- "members":{
3533
- },
3534
- "error":{
3535
- "code":"SubscriptionAlreadyExist",
3536
- "httpStatusCode":400,
3537
- "senderFault":true
3538
- },
3539
- "exception":true
3540
- },
3541
- "SubscriptionCategoryNotFoundFault":{
3542
- "type":"structure",
3543
- "members":{
3544
- },
3545
- "error":{
3546
- "code":"SubscriptionCategoryNotFound",
3547
- "httpStatusCode":404,
3548
- "senderFault":true
3549
- },
3550
- "exception":true
3551
- },
3552
- "SubscriptionEventIdNotFoundFault":{
3553
- "type":"structure",
3554
- "members":{
3555
- },
3556
- "error":{
3557
- "code":"SubscriptionEventIdNotFound",
3558
- "httpStatusCode":404,
3559
- "senderFault":true
3560
- },
3561
- "exception":true
3562
- },
3563
- "SubscriptionNotFoundFault":{
3564
- "type":"structure",
3565
- "members":{
3566
- },
3567
- "error":{
3568
- "code":"SubscriptionNotFound",
3569
- "httpStatusCode":404,
3570
- "senderFault":true
3571
- },
3572
- "exception":true
3573
- },
3574
- "SubscriptionSeverityNotFoundFault":{
3575
- "type":"structure",
3576
- "members":{
3577
- },
3578
- "error":{
3579
- "code":"SubscriptionSeverityNotFound",
3580
- "httpStatusCode":404,
3581
- "senderFault":true
3582
- },
3583
- "exception":true
3584
- },
3585
- "TStamp":{"type":"timestamp"},
3586
- "TableRestoreNotFoundFault":{
3587
- "type":"structure",
3588
- "members":{
3589
- },
3590
- "error":{
3591
- "code":"TableRestoreNotFoundFault",
3592
- "httpStatusCode":400,
3593
- "senderFault":true
3594
- },
3595
- "exception":true
3596
- },
3597
- "TableRestoreStatus":{
3598
- "type":"structure",
3599
- "members":{
3600
- "TableRestoreRequestId":{"shape":"String"},
3601
- "Status":{"shape":"TableRestoreStatusType"},
3602
- "Message":{"shape":"String"},
3603
- "RequestTime":{"shape":"TStamp"},
3604
- "ProgressInMegaBytes":{"shape":"LongOptional"},
3605
- "TotalDataInMegaBytes":{"shape":"LongOptional"},
3606
- "ClusterIdentifier":{"shape":"String"},
3607
- "SnapshotIdentifier":{"shape":"String"},
3608
- "SourceDatabaseName":{"shape":"String"},
3609
- "SourceSchemaName":{"shape":"String"},
3610
- "SourceTableName":{"shape":"String"},
3611
- "TargetDatabaseName":{"shape":"String"},
3612
- "TargetSchemaName":{"shape":"String"},
3613
- "NewTableName":{"shape":"String"}
3614
- },
3615
- "wrapper":true
3616
- },
3617
- "TableRestoreStatusList":{
3618
- "type":"list",
3619
- "member":{
3620
- "shape":"TableRestoreStatus",
3621
- "locationName":"TableRestoreStatus"
3622
- }
3623
- },
3624
- "TableRestoreStatusMessage":{
3625
- "type":"structure",
3626
- "members":{
3627
- "TableRestoreStatusDetails":{"shape":"TableRestoreStatusList"},
3628
- "Marker":{"shape":"String"}
3629
- }
3630
- },
3631
- "TableRestoreStatusType":{
3632
- "type":"string",
3633
- "enum":[
3634
- "PENDING",
3635
- "IN_PROGRESS",
3636
- "SUCCEEDED",
3637
- "FAILED",
3638
- "CANCELED"
3639
- ]
3640
- },
3641
- "Tag":{
3642
- "type":"structure",
3643
- "members":{
3644
- "Key":{"shape":"String"},
3645
- "Value":{"shape":"String"}
3646
- }
3647
- },
3648
- "TagKeyList":{
3649
- "type":"list",
3650
- "member":{
3651
- "shape":"String",
3652
- "locationName":"TagKey"
3653
- }
3654
- },
3655
- "TagLimitExceededFault":{
3656
- "type":"structure",
3657
- "members":{
3658
- },
3659
- "error":{
3660
- "code":"TagLimitExceededFault",
3661
- "httpStatusCode":400,
3662
- "senderFault":true
3663
- },
3664
- "exception":true
3665
- },
3666
- "TagList":{
3667
- "type":"list",
3668
- "member":{
3669
- "shape":"Tag",
3670
- "locationName":"Tag"
3671
- }
3672
- },
3673
- "TagValueList":{
3674
- "type":"list",
3675
- "member":{
3676
- "shape":"String",
3677
- "locationName":"TagValue"
3678
- }
3679
- },
3680
- "TaggedResource":{
3681
- "type":"structure",
3682
- "members":{
3683
- "Tag":{"shape":"Tag"},
3684
- "ResourceName":{"shape":"String"},
3685
- "ResourceType":{"shape":"String"}
3686
- }
3687
- },
3688
- "TaggedResourceList":{
3689
- "type":"list",
3690
- "member":{
3691
- "shape":"TaggedResource",
3692
- "locationName":"TaggedResource"
3693
- }
3694
- },
3695
- "TaggedResourceListMessage":{
3696
- "type":"structure",
3697
- "members":{
3698
- "TaggedResources":{"shape":"TaggedResourceList"},
3699
- "Marker":{"shape":"String"}
3700
- }
3701
- },
3702
- "UnauthorizedOperation":{
3703
- "type":"structure",
3704
- "members":{
3705
- },
3706
- "error":{
3707
- "code":"UnauthorizedOperation",
3708
- "httpStatusCode":400,
3709
- "senderFault":true
3710
- },
3711
- "exception":true
3712
- },
3713
- "UnknownSnapshotCopyRegionFault":{
3714
- "type":"structure",
3715
- "members":{
3716
- },
3717
- "error":{
3718
- "code":"UnknownSnapshotCopyRegionFault",
3719
- "httpStatusCode":404,
3720
- "senderFault":true
3721
- },
3722
- "exception":true
3723
- },
3724
- "UnsupportedOperationFault":{
3725
- "type":"structure",
3726
- "members":{
3727
- },
3728
- "error":{
3729
- "code":"UnsupportedOperation",
3730
- "httpStatusCode":400,
3731
- "senderFault":true
3732
- },
3733
- "exception":true
3734
- },
3735
- "UnsupportedOptionFault":{
3736
- "type":"structure",
3737
- "members":{
3738
- },
3739
- "error":{
3740
- "code":"UnsupportedOptionFault",
3741
- "httpStatusCode":400,
3742
- "senderFault":true
3743
- },
3744
- "exception":true
3745
- },
3746
- "VpcSecurityGroupIdList":{
3747
- "type":"list",
3748
- "member":{
3749
- "shape":"String",
3750
- "locationName":"VpcSecurityGroupId"
3751
- }
3752
- },
3753
- "VpcSecurityGroupMembership":{
3754
- "type":"structure",
3755
- "members":{
3756
- "VpcSecurityGroupId":{"shape":"String"},
3757
- "Status":{"shape":"String"}
3758
- }
3759
- },
3760
- "VpcSecurityGroupMembershipList":{
3761
- "type":"list",
3762
- "member":{
3763
- "shape":"VpcSecurityGroupMembership",
3764
- "locationName":"VpcSecurityGroup"
3765
- }
3766
- }
3767
- }
3768
- }