aws-sdk-core 2.11.212 → 3.170.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1183) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1589 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/lib/aws-defaults/default_configuration.rb +153 -0
  6. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  7. data/lib/aws-defaults.rb +3 -0
  8. data/lib/aws-sdk-core/arn.rb +105 -0
  9. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  10. data/lib/aws-sdk-core/assume_role_credentials.rb +23 -7
  11. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +108 -0
  12. data/lib/aws-sdk-core/async_client_stubs.rb +82 -0
  13. data/lib/aws-sdk-core/binary/decode_handler.rb +58 -0
  14. data/lib/aws-sdk-core/binary/encode_handler.rb +45 -0
  15. data/lib/aws-sdk-core/binary/event_builder.rb +124 -0
  16. data/lib/aws-sdk-core/binary/event_parser.rb +136 -0
  17. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +64 -0
  18. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +55 -0
  19. data/lib/aws-sdk-core/binary.rb +8 -0
  20. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +51 -0
  21. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +199 -0
  22. data/lib/aws-sdk-core/client_stubs.rb +31 -21
  23. data/lib/aws-sdk-core/credential_provider.rb +2 -29
  24. data/lib/aws-sdk-core/credential_provider_chain.rb +115 -35
  25. data/lib/aws-sdk-core/credentials.rb +2 -0
  26. data/lib/aws-sdk-core/deprecations.rb +17 -11
  27. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  28. data/lib/aws-sdk-core/ec2_metadata.rb +238 -0
  29. data/lib/aws-sdk-core/ecs_credentials.rb +26 -11
  30. data/lib/aws-sdk-core/endpoint_cache.rb +16 -11
  31. data/lib/aws-sdk-core/endpoints/condition.rb +41 -0
  32. data/lib/aws-sdk-core/endpoints/endpoint.rb +17 -0
  33. data/lib/aws-sdk-core/endpoints/endpoint_rule.rb +75 -0
  34. data/lib/aws-sdk-core/endpoints/error_rule.rb +42 -0
  35. data/lib/aws-sdk-core/endpoints/function.rb +80 -0
  36. data/lib/aws-sdk-core/endpoints/matchers.rb +127 -0
  37. data/lib/aws-sdk-core/endpoints/reference.rb +31 -0
  38. data/lib/aws-sdk-core/endpoints/rule.rb +25 -0
  39. data/lib/aws-sdk-core/endpoints/rule_set.rb +52 -0
  40. data/lib/aws-sdk-core/endpoints/rules_provider.rb +37 -0
  41. data/lib/aws-sdk-core/endpoints/templater.rb +58 -0
  42. data/lib/aws-sdk-core/endpoints/tree_rule.rb +45 -0
  43. data/lib/aws-sdk-core/endpoints/url.rb +60 -0
  44. data/lib/aws-sdk-core/endpoints.rb +74 -0
  45. data/lib/aws-sdk-core/errors.rb +229 -31
  46. data/lib/aws-sdk-core/event_emitter.rb +64 -0
  47. data/lib/aws-sdk-core/ini_parser.rb +3 -0
  48. data/lib/aws-sdk-core/instance_profile_credentials.rb +231 -42
  49. data/lib/aws-sdk-core/json/builder.rb +6 -2
  50. data/lib/aws-sdk-core/json/error_handler.rb +31 -3
  51. data/lib/aws-sdk-core/json/handler.rb +24 -3
  52. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  53. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  54. data/lib/aws-sdk-core/json/parser.rb +11 -1
  55. data/lib/aws-sdk-core/json.rb +15 -33
  56. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  57. data/lib/aws-sdk-core/log/handler.rb +2 -0
  58. data/lib/aws-sdk-core/log/param_filter.rb +41 -15
  59. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  60. data/lib/aws-sdk-core/pageable_response.rb +119 -47
  61. data/lib/aws-sdk-core/pager.rb +35 -25
  62. data/lib/aws-sdk-core/param_converter.rb +5 -3
  63. data/lib/aws-sdk-core/param_validator.rb +109 -26
  64. data/lib/aws-sdk-core/plugins/api_key.rb +56 -0
  65. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +32 -0
  66. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +36 -0
  67. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +39 -0
  68. data/lib/aws-sdk-core/plugins/bearer_authorization.rb +67 -0
  69. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  70. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +283 -0
  71. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +86 -0
  72. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +105 -0
  73. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  74. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +58 -53
  75. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +17 -14
  76. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +32 -0
  77. data/lib/aws-sdk-core/plugins/global_configuration.rb +21 -10
  78. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  79. data/lib/aws-sdk-core/plugins/http_checksum.rb +64 -0
  80. data/lib/aws-sdk-core/plugins/idempotency_token.rb +3 -2
  81. data/lib/aws-sdk-core/plugins/invocation_id.rb +35 -0
  82. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +36 -6
  83. data/lib/aws-sdk-core/plugins/logging.rb +20 -18
  84. data/lib/aws-sdk-core/plugins/param_converter.rb +11 -5
  85. data/lib/aws-sdk-core/plugins/param_validator.rb +10 -5
  86. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +29 -0
  87. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +4 -1
  88. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +15 -12
  89. data/lib/aws-sdk-core/plugins/protocols/query.rb +4 -2
  90. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  91. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  92. data/lib/aws-sdk-core/plugins/recursion_detection.rb +38 -0
  93. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +99 -28
  94. data/lib/aws-sdk-core/plugins/response_paging.rb +8 -19
  95. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  96. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  97. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +147 -0
  98. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  99. data/lib/aws-sdk-core/plugins/retry_errors.rb +346 -97
  100. data/lib/aws-sdk-core/plugins/sign.rb +200 -0
  101. data/lib/aws-sdk-core/plugins/signature_v2.rb +54 -0
  102. data/lib/aws-sdk-core/plugins/signature_v4.rb +151 -0
  103. data/lib/aws-sdk-core/plugins/stub_responses.rb +44 -18
  104. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  105. data/lib/aws-sdk-core/plugins/user_agent.rb +25 -10
  106. data/lib/aws-sdk-core/process_credentials.rb +79 -0
  107. data/lib/aws-sdk-core/query/ec2_param_builder.rb +11 -3
  108. data/lib/aws-sdk-core/query/handler.rb +22 -16
  109. data/lib/aws-sdk-core/query/param.rb +2 -0
  110. data/lib/aws-sdk-core/query/param_builder.rb +12 -4
  111. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  112. data/lib/aws-sdk-core/query.rb +7 -0
  113. data/lib/aws-sdk-core/refreshing_credentials.rb +45 -12
  114. data/lib/aws-sdk-core/refreshing_token.rb +71 -0
  115. data/lib/aws-sdk-core/resources/collection.rb +123 -0
  116. data/lib/aws-sdk-core/rest/handler.rb +4 -1
  117. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  118. data/lib/aws-sdk-core/rest/request/builder.rb +4 -1
  119. data/lib/aws-sdk-core/rest/request/endpoint.rb +13 -6
  120. data/lib/aws-sdk-core/rest/request/headers.rb +26 -6
  121. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +17 -2
  122. data/lib/aws-sdk-core/rest/response/body.rb +16 -1
  123. data/lib/aws-sdk-core/rest/response/headers.rb +8 -3
  124. data/lib/aws-sdk-core/rest/response/parser.rb +20 -14
  125. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  126. data/lib/aws-sdk-core/rest.rb +12 -0
  127. data/lib/aws-sdk-core/shared_config.rb +272 -72
  128. data/lib/aws-sdk-core/shared_credentials.rb +11 -1
  129. data/lib/aws-sdk-core/sso_credentials.rb +172 -0
  130. data/lib/aws-sdk-core/sso_token_provider.rb +135 -0
  131. data/lib/aws-sdk-core/static_token_provider.rb +14 -0
  132. data/lib/aws-sdk-core/structure.rb +39 -17
  133. data/lib/aws-sdk-core/stubbing/data_applicator.rb +3 -1
  134. data/lib/aws-sdk-core/stubbing/empty_stub.rb +12 -3
  135. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +10 -0
  136. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +3 -1
  137. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  138. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  139. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +120 -2
  140. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +8 -2
  141. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +11 -7
  142. data/lib/aws-sdk-core/stubbing/stub_data.rb +18 -3
  143. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  144. data/lib/aws-sdk-core/token.rb +31 -0
  145. data/lib/aws-sdk-core/token_provider.rb +15 -0
  146. data/lib/aws-sdk-core/token_provider_chain.rb +51 -0
  147. data/lib/aws-sdk-core/type_builder.rb +2 -0
  148. data/lib/aws-sdk-core/util.rb +72 -0
  149. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  150. data/lib/aws-sdk-core/waiters/poller.rb +7 -9
  151. data/lib/aws-sdk-core/waiters/waiter.rb +5 -2
  152. data/lib/aws-sdk-core/waiters.rb +5 -0
  153. data/lib/aws-sdk-core/xml/builder.rb +15 -7
  154. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  155. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  156. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  157. data/lib/aws-sdk-core/xml/error_handler.rb +37 -6
  158. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  159. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  160. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +4 -0
  161. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +3 -1
  162. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  163. data/lib/aws-sdk-core/xml/parser/frame.rb +31 -6
  164. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  165. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  166. data/lib/aws-sdk-core/xml/parser.rb +8 -11
  167. data/lib/aws-sdk-core/xml.rb +11 -0
  168. data/lib/aws-sdk-core.rb +115 -532
  169. data/lib/aws-sdk-sso/client.rb +610 -0
  170. data/lib/aws-sdk-sso/client_api.rb +190 -0
  171. data/lib/aws-sdk-sso/customizations.rb +1 -0
  172. data/lib/aws-sdk-sso/endpoint_parameters.rb +66 -0
  173. data/lib/aws-sdk-sso/endpoint_provider.rb +51 -0
  174. data/lib/aws-sdk-sso/endpoints.rb +71 -0
  175. data/lib/aws-sdk-sso/errors.rb +102 -0
  176. data/lib/aws-sdk-sso/plugins/endpoints.rb +76 -0
  177. data/lib/aws-sdk-sso/resource.rb +26 -0
  178. data/lib/aws-sdk-sso/types.rb +317 -0
  179. data/lib/aws-sdk-sso.rb +59 -0
  180. data/lib/aws-sdk-ssooidc/client.rb +606 -0
  181. data/lib/aws-sdk-ssooidc/client_api.rb +216 -0
  182. data/lib/aws-sdk-ssooidc/customizations.rb +1 -0
  183. data/lib/aws-sdk-ssooidc/endpoint_parameters.rb +66 -0
  184. data/lib/aws-sdk-ssooidc/endpoint_provider.rb +51 -0
  185. data/lib/aws-sdk-ssooidc/endpoints.rb +57 -0
  186. data/lib/aws-sdk-ssooidc/errors.rb +290 -0
  187. data/lib/aws-sdk-ssooidc/plugins/endpoints.rb +74 -0
  188. data/lib/aws-sdk-ssooidc/resource.rb +26 -0
  189. data/lib/aws-sdk-ssooidc/types.rb +502 -0
  190. data/lib/aws-sdk-ssooidc.rb +59 -0
  191. data/lib/aws-sdk-sts/client.rb +2343 -0
  192. data/lib/aws-sdk-sts/client_api.rb +344 -0
  193. data/lib/aws-sdk-sts/customizations.rb +4 -0
  194. data/lib/aws-sdk-sts/endpoint_parameters.rb +78 -0
  195. data/lib/aws-sdk-sts/endpoint_provider.rb +109 -0
  196. data/lib/aws-sdk-sts/endpoints.rb +135 -0
  197. data/lib/aws-sdk-sts/errors.rb +166 -0
  198. data/lib/aws-sdk-sts/plugins/endpoints.rb +84 -0
  199. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  200. data/lib/aws-sdk-sts/presigner.rb +73 -0
  201. data/lib/aws-sdk-sts/resource.rb +26 -0
  202. data/lib/aws-sdk-sts/types.rb +1566 -0
  203. data/lib/aws-sdk-sts.rb +59 -0
  204. data/lib/seahorse/client/async_base.rb +51 -0
  205. data/lib/seahorse/client/async_response.rb +64 -0
  206. data/lib/seahorse/client/base.rb +8 -9
  207. data/lib/seahorse/client/block_io.rb +6 -2
  208. data/lib/seahorse/client/configuration.rb +12 -4
  209. data/lib/seahorse/client/events.rb +3 -1
  210. data/lib/seahorse/client/h2/connection.rb +247 -0
  211. data/lib/seahorse/client/h2/handler.rb +152 -0
  212. data/lib/seahorse/client/handler.rb +2 -0
  213. data/lib/seahorse/client/handler_builder.rb +2 -0
  214. data/lib/seahorse/client/handler_list.rb +2 -0
  215. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  216. data/lib/seahorse/client/http/async_response.rb +44 -0
  217. data/lib/seahorse/client/http/headers.rb +2 -0
  218. data/lib/seahorse/client/http/request.rb +5 -3
  219. data/lib/seahorse/client/http/response.rb +18 -11
  220. data/lib/seahorse/client/logging/formatter.rb +8 -2
  221. data/lib/seahorse/client/logging/handler.rb +4 -0
  222. data/lib/seahorse/client/managed_file.rb +2 -0
  223. data/lib/seahorse/client/net_http/connection_pool.rb +46 -27
  224. data/lib/seahorse/client/net_http/handler.rb +29 -7
  225. data/lib/seahorse/client/net_http/patches.rb +18 -79
  226. data/lib/seahorse/client/networking_error.rb +30 -0
  227. data/lib/seahorse/client/plugin.rb +69 -6
  228. data/lib/seahorse/client/plugin_list.rb +2 -0
  229. data/lib/seahorse/client/plugins/content_length.rb +14 -3
  230. data/lib/seahorse/client/plugins/endpoint.rb +16 -10
  231. data/lib/seahorse/client/plugins/h2.rb +69 -0
  232. data/lib/seahorse/client/plugins/logging.rb +19 -19
  233. data/lib/seahorse/client/plugins/net_http.rb +58 -14
  234. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  235. data/lib/seahorse/client/plugins/raise_response_errors.rb +6 -4
  236. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  237. data/lib/seahorse/client/plugins/response_target.rb +28 -10
  238. data/lib/seahorse/client/request.rb +2 -0
  239. data/lib/seahorse/client/request_context.rb +7 -0
  240. data/lib/seahorse/client/response.rb +5 -5
  241. data/lib/seahorse/model/api.rb +39 -0
  242. data/lib/seahorse/model/authorizer.rb +23 -0
  243. data/lib/seahorse/model/operation.rb +19 -0
  244. data/lib/seahorse/model/shapes.rb +71 -2
  245. data/lib/seahorse/util.rb +13 -23
  246. data/lib/seahorse/version.rb +2 -0
  247. data/lib/seahorse.rb +63 -60
  248. metadata +177 -951
  249. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  250. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  251. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  252. data/apis/acm/2015-12-08/api-2.json +0 -808
  253. data/apis/acm/2015-12-08/examples-1.json +0 -5
  254. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  255. data/apis/acm/2015-12-08/smoke.json +0 -18
  256. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  257. data/apis/acm-pca/2017-08-22/api-2.json +0 -941
  258. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  259. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -10
  260. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  261. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -3104
  262. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  263. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -79
  264. data/apis/amplify/2017-07-25/api-2.json +0 -1453
  265. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  266. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  267. data/apis/apigateway/2015-07-09/api-2.json +0 -5351
  268. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  269. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  270. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  271. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -96
  272. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  273. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5531
  274. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  275. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -766
  276. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  277. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  278. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  279. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  280. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  281. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  282. data/apis/appstream/2016-12-01/api-2.json +0 -2171
  283. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  284. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  285. data/apis/appstream/2016-12-01/smoke.json +0 -11
  286. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  287. data/apis/appsync/2017-07-25/api-2.json +0 -1812
  288. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  289. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  290. data/apis/athena/2017-05-18/api-2.json +0 -626
  291. data/apis/athena/2017-05-18/examples-1.json +0 -5
  292. data/apis/athena/2017-05-18/paginators-1.json +0 -19
  293. data/apis/athena/2017-05-18/smoke.json +0 -11
  294. data/apis/autoscaling/2011-01-01/api-2.json +0 -2450
  295. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  296. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  297. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  298. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  299. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  300. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  301. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  302. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  303. data/apis/backup/2018-11-15/api-2.json +0 -2150
  304. data/apis/backup/2018-11-15/examples-1.json +0 -5
  305. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  306. data/apis/batch/2016-08-10/api-2.json +0 -1072
  307. data/apis/batch/2016-08-10/examples-1.json +0 -589
  308. data/apis/batch/2016-08-10/paginators-1.json +0 -4
  309. data/apis/batch/2016-08-10/smoke.json +0 -11
  310. data/apis/budgets/2016-10-20/api-2.json +0 -801
  311. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  312. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  313. data/apis/ce/2017-10-25/api-2.json +0 -840
  314. data/apis/ce/2017-10-25/examples-1.json +0 -5
  315. data/apis/ce/2017-10-25/paginators-1.json +0 -4
  316. data/apis/chime/2018-05-01/api-2.json +0 -939
  317. data/apis/chime/2018-05-01/examples-1.json +0 -5
  318. data/apis/chime/2018-05-01/paginators-1.json +0 -14
  319. data/apis/cloud9/2017-09-23/api-2.json +0 -528
  320. data/apis/cloud9/2017-09-23/examples-1.json +0 -308
  321. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  322. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  323. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  324. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  325. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  326. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  327. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  328. data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
  329. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  330. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  331. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  332. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
  333. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  334. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  335. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  336. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  337. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  338. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  339. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  340. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  341. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  342. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  343. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  344. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  345. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  346. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  347. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  348. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  349. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  350. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  351. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  352. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  353. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  354. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  355. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  356. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  357. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  358. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  359. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  360. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  361. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  362. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  363. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  364. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  365. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  366. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  367. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  368. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  369. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  370. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  371. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  372. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  373. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  374. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  375. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  376. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  377. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  378. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  379. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  380. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  381. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  382. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  383. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  384. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  385. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  386. data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
  387. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  388. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  389. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  390. data/apis/codebuild/2016-10-06/api-2.json +0 -1211
  391. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  392. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  393. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  394. data/apis/codecommit/2015-04-13/api-2.json +0 -2842
  395. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  396. data/apis/codecommit/2015-04-13/paginators-1.json +0 -39
  397. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  398. data/apis/codedeploy/2014-10-06/api-2.json +0 -3062
  399. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  400. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  401. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  402. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  403. data/apis/codepipeline/2015-07-09/api-2.json +0 -2085
  404. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  405. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -4
  406. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  407. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  408. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  409. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  410. data/apis/codestar/2017-04-19/smoke.json +0 -11
  411. data/apis/cognito-identity/2014-06-30/api-2.json +0 -943
  412. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  413. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  414. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5194
  415. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  416. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -4
  417. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  418. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  419. data/apis/comprehend/2017-11-27/api-2.json +0 -2106
  420. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  421. data/apis/comprehend/2017-11-27/paginators-1.json +0 -29
  422. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
  423. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  424. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  425. data/apis/config/2014-11-12/api-2.json +0 -2477
  426. data/apis/config/2014-11-12/examples-1.json +0 -5
  427. data/apis/config/2014-11-12/paginators-1.json +0 -10
  428. data/apis/config/2014-11-12/smoke.json +0 -19
  429. data/apis/connect/2017-08-08/api-2.json +0 -1379
  430. data/apis/connect/2017-08-08/examples-1.json +0 -5
  431. data/apis/connect/2017-08-08/paginators-1.json +0 -14
  432. data/apis/cur/2017-01-06/api-2.json +0 -226
  433. data/apis/cur/2017-01-06/examples-1.json +0 -5
  434. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  435. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  436. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  437. data/apis/datasync/2018-11-09/api-2.json +0 -1060
  438. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  439. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  440. data/apis/dax/2017-04-19/api-2.json +0 -1140
  441. data/apis/dax/2017-04-19/examples-1.json +0 -5
  442. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  443. data/apis/devicefarm/2015-06-23/api-2.json +0 -3053
  444. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  445. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  446. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  447. data/apis/directconnect/2012-10-25/api-2.json +0 -1689
  448. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  449. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  450. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  451. data/apis/discovery/2015-11-01/api-2.json +0 -1331
  452. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  453. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  454. data/apis/discovery/2015-11-01/smoke.json +0 -11
  455. data/apis/dlm/2018-01-12/api-2.json +0 -418
  456. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  457. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  458. data/apis/dms/2016-01-01/api-2.json +0 -2040
  459. data/apis/dms/2016-01-01/examples-1.json +0 -1053
  460. data/apis/dms/2016-01-01/paginators-1.json +0 -74
  461. data/apis/dms/2016-01-01/smoke.json +0 -18
  462. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  463. data/apis/docdb/2014-10-31/api-2.json +0 -2413
  464. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  465. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  466. data/apis/docdb/2014-10-31/smoke.json +0 -18
  467. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  468. data/apis/ds/2015-04-16/api-2.json +0 -2631
  469. data/apis/ds/2015-04-16/examples-1.json +0 -5
  470. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  471. data/apis/ds/2015-04-16/smoke.json +0 -20
  472. data/apis/dynamodb/2011-12-05/api-2.json +0 -803
  473. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  474. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  475. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  476. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  477. data/apis/dynamodb/2012-08-10/api-2.json +0 -2801
  478. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  479. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  480. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  481. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  482. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  483. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  484. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  485. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  486. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  487. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  488. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  489. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  490. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  491. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  492. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  493. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  494. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  495. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  496. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  497. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  498. data/apis/ec2/2016-11-15/api-2.json +0 -23190
  499. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  500. data/apis/ec2/2016-11-15/paginators-1.json +0 -153
  501. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  502. data/apis/ec2/2016-11-15/smoke.json +0 -20
  503. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  504. data/apis/ecr/2015-09-21/api-2.json +0 -1328
  505. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  506. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  507. data/apis/ecr/2015-09-21/smoke.json +0 -18
  508. data/apis/ecs/2014-11-13/api-2.json +0 -2414
  509. data/apis/ecs/2014-11-13/examples-1.json +0 -952
  510. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  511. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  512. data/apis/eks/2017-11-01/api-2.json +0 -509
  513. data/apis/eks/2017-11-01/examples-1.json +0 -114
  514. data/apis/eks/2017-11-01/paginators-1.json +0 -4
  515. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  516. data/apis/elasticache/2015-02-02/api-2.json +0 -2793
  517. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  518. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  519. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  520. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  521. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2488
  522. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  523. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  524. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  525. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -805
  526. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -222
  527. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  528. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  529. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  530. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  531. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  532. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  533. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  534. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2241
  535. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  536. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  537. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  538. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  539. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2086
  540. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  541. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -37
  542. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  543. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  544. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  545. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  546. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  547. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  548. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  549. data/apis/email/2010-12-01/api-2.json +0 -3134
  550. data/apis/email/2010-12-01/examples-1.json +0 -1021
  551. data/apis/email/2010-12-01/paginators-1.json +0 -18
  552. data/apis/email/2010-12-01/smoke.json +0 -18
  553. data/apis/email/2010-12-01/waiters-2.json +0 -18
  554. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  555. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  556. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  557. data/apis/es/2015-01-01/api-2.json +0 -1520
  558. data/apis/es/2015-01-01/examples-1.json +0 -5
  559. data/apis/es/2015-01-01/paginators-1.json +0 -29
  560. data/apis/es/2015-01-01/smoke.json +0 -18
  561. data/apis/events/2015-10-07/api-2.json +0 -850
  562. data/apis/events/2015-10-07/examples-1.json +0 -5
  563. data/apis/events/2015-10-07/paginators-1.json +0 -4
  564. data/apis/events/2015-10-07/smoke.json +0 -18
  565. data/apis/firehose/2015-08-04/api-2.json +0 -1376
  566. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  567. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  568. data/apis/firehose/2015-08-04/smoke.json +0 -18
  569. data/apis/fms/2018-01-01/api-2.json +0 -636
  570. data/apis/fms/2018-01-01/examples-1.json +0 -5
  571. data/apis/fms/2018-01-01/paginators-1.json +0 -4
  572. data/apis/fsx/2018-03-01/api-2.json +0 -953
  573. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  574. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  575. data/apis/gamelift/2015-10-01/api-2.json +0 -3243
  576. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  577. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  578. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  579. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  580. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  581. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  582. data/apis/glacier/2012-06-01/smoke.json +0 -18
  583. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  584. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -798
  585. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  586. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  587. data/apis/glue/2017-03-31/api-2.json +0 -4410
  588. data/apis/glue/2017-03-31/examples-1.json +0 -5
  589. data/apis/glue/2017-03-31/paginators-1.json +0 -69
  590. data/apis/glue/2017-03-31/smoke.json +0 -11
  591. data/apis/greengrass/2017-06-07/api-2.json +0 -4936
  592. data/apis/guardduty/2017-11-28/api-2.json +0 -3039
  593. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  594. data/apis/health/2016-08-04/api-2.json +0 -553
  595. data/apis/health/2016-08-04/examples-1.json +0 -5
  596. data/apis/health/2016-08-04/paginators-1.json +0 -31
  597. data/apis/health/2016-08-04/smoke.json +0 -11
  598. data/apis/iam/2010-05-08/api-2.json +0 -5629
  599. data/apis/iam/2010-05-08/examples-1.json +0 -1489
  600. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  601. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  602. data/apis/iam/2010-05-08/smoke.json +0 -18
  603. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  604. data/apis/importexport/2010-06-01/api-2.json +0 -667
  605. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  606. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  607. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  608. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  609. data/apis/inspector/2016-02-16/smoke.json +0 -18
  610. data/apis/iot/2015-05-28/api-2.json +0 -8866
  611. data/apis/iot/2015-05-28/examples-1.json +0 -5
  612. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  613. data/apis/iot/2015-05-28/smoke.json +0 -18
  614. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  615. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  616. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  617. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  618. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -769
  619. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -748
  620. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  621. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -4
  622. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2054
  623. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  624. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  625. data/apis/kafka/2018-11-14/api-2.json +0 -789
  626. data/apis/kafka/2018-11-14/paginators-1.json +0 -3
  627. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  628. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  629. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  630. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  631. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  632. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -318
  633. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  634. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -4
  635. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  636. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  637. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  638. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1378
  639. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  640. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  641. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -1984
  642. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  643. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  644. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -549
  645. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  646. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -4
  647. data/apis/kms/2014-11-01/api-2.json +0 -1833
  648. data/apis/kms/2014-11-01/examples-1.json +0 -906
  649. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  650. data/apis/kms/2014-11-01/smoke.json +0 -19
  651. data/apis/lambda/2014-11-11/api-2.json +0 -668
  652. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  653. data/apis/lambda/2015-03-31/api-2.json +0 -2317
  654. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  655. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  656. data/apis/lambda/2015-03-31/smoke.json +0 -18
  657. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  658. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  659. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  660. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  661. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  662. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  663. data/apis/lightsail/2016-11-28/api-2.json +0 -4732
  664. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  665. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  666. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  667. data/apis/logs/2014-03-28/api-2.json +0 -1689
  668. data/apis/logs/2014-03-28/examples-1.json +0 -5
  669. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  670. data/apis/logs/2014-03-28/smoke.json +0 -19
  671. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  672. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  673. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  674. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  675. data/apis/macie/2017-12-19/api-2.json +0 -365
  676. data/apis/macie/2017-12-19/examples-1.json +0 -5
  677. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  678. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
  679. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  680. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  681. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1586
  682. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -10
  683. data/apis/mediaconvert/2017-08-29/api-2.json +0 -7691
  684. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  685. data/apis/medialive/2017-10-14/api-2.json +0 -7865
  686. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  687. data/apis/mediapackage/2017-10-12/api-2.json +0 -1780
  688. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
  689. data/apis/mediastore/2017-09-01/api-2.json +0 -568
  690. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  691. data/apis/mediastore/2017-09-01/paginators-1.json +0 -4
  692. data/apis/mediastore-data/2017-09-01/api-2.json +0 -392
  693. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  694. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -4
  695. data/apis/mediatailor/2018-04-23/api-2.json +0 -311
  696. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  697. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -347
  698. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  699. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  700. data/apis/mobile/2017-07-01/api-2.json +0 -551
  701. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  702. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  703. data/apis/monitoring/2010-08-01/api-2.json +0 -1199
  704. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  705. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  706. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  707. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  708. data/apis/mq/2017-11-27/api-2.json +0 -2241
  709. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  710. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  711. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  712. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  713. data/apis/neptune/2014-10-31/api-2.json +0 -3506
  714. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  715. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  716. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  717. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  718. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  719. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  720. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  721. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  722. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  723. data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
  724. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  725. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  726. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  727. data/apis/organizations/2016-11-28/api-2.json +0 -2137
  728. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  729. data/apis/organizations/2016-11-28/paginators-1.json +0 -69
  730. data/apis/pi/2018-02-27/api-2.json +0 -253
  731. data/apis/pi/2018-02-27/examples-1.json +0 -5
  732. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  733. data/apis/pinpoint/2016-12-01/api-2.json +0 -6965
  734. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  735. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -1710
  736. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  737. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -29
  738. data/apis/polly/2016-06-10/api-2.json +0 -795
  739. data/apis/polly/2016-06-10/examples-1.json +0 -171
  740. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  741. data/apis/polly/2016-06-10/smoke.json +0 -11
  742. data/apis/pricing/2017-10-15/api-2.json +0 -227
  743. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  744. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  745. data/apis/quicksight/2018-04-01/api-2.json +0 -1158
  746. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  747. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  748. data/apis/ram/2018-01-04/api-2.json +0 -964
  749. data/apis/ram/2018-01-04/examples-1.json +0 -5
  750. data/apis/ram/2018-01-04/paginators-1.json +0 -34
  751. data/apis/rds/2013-01-10/api-2.json +0 -2903
  752. data/apis/rds/2013-01-10/examples-1.json +0 -5
  753. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  754. data/apis/rds/2013-01-10/smoke.json +0 -18
  755. data/apis/rds/2013-02-12/api-2.json +0 -3059
  756. data/apis/rds/2013-02-12/examples-1.json +0 -5
  757. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  758. data/apis/rds/2013-02-12/smoke.json +0 -18
  759. data/apis/rds/2013-09-09/api-2.json +0 -3160
  760. data/apis/rds/2013-09-09/examples-1.json +0 -5
  761. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  762. data/apis/rds/2013-09-09/smoke.json +0 -18
  763. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  764. data/apis/rds/2014-09-01/api-2.json +0 -3273
  765. data/apis/rds/2014-09-01/examples-1.json +0 -5
  766. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  767. data/apis/rds/2014-09-01/smoke.json +0 -18
  768. data/apis/rds/2014-10-31/api-2.json +0 -6455
  769. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  770. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  771. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  772. data/apis/rds/2014-10-31/smoke.json +0 -18
  773. data/apis/rds/2014-10-31/waiters-2.json +0 -175
  774. data/apis/rds/2015-11-12/api-2.json +0 -5509
  775. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  776. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  777. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  778. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  779. data/apis/rds-data/2018-08-01/api-2.json +0 -329
  780. data/apis/rds-data/2018-08-01/examples-1.json +0 -4
  781. data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
  782. data/apis/redshift/2012-12-01/api-2.json +0 -4885
  783. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  784. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  785. data/apis/redshift/2012-12-01/smoke.json +0 -18
  786. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  787. data/apis/rekognition/2016-06-27/api-2.json +0 -2140
  788. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  789. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  790. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  791. data/apis/resource-groups/2017-11-27/api-2.json +0 -731
  792. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  793. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  794. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -328
  795. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  796. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  797. data/apis/robomaker/2018-06-29/api-2.json +0 -1775
  798. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  799. data/apis/robomaker/2018-06-29/paginators-1.json +0 -4
  800. data/apis/route53/2013-04-01/api-2.json +0 -3772
  801. data/apis/route53/2013-04-01/examples-1.json +0 -762
  802. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  803. data/apis/route53/2013-04-01/smoke.json +0 -18
  804. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  805. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  806. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  807. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  808. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  809. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  810. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  811. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  812. data/apis/runtime.lex/2016-11-28/api-2.json +0 -419
  813. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  814. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  815. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  816. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  817. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  818. data/apis/s3/2006-03-01/api-2.json +0 -6519
  819. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  820. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  821. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  822. data/apis/s3/2006-03-01/smoke.json +0 -11
  823. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  824. data/apis/s3control/2018-08-20/api-2.json +0 -126
  825. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  826. data/apis/s3control/2018-08-20/paginators-1.json +0 -4
  827. data/apis/sagemaker/2017-07-24/api-2.json +0 -5070
  828. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  829. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  830. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  831. data/apis/sdb/2009-04-15/api-2.json +0 -955
  832. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  833. data/apis/secretsmanager/2017-10-17/api-2.json +0 -974
  834. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  835. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  836. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  837. data/apis/securityhub/2018-10-26/api-2.json +0 -1660
  838. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  839. data/apis/securityhub/2018-10-26/paginators-1.json +0 -19
  840. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1750
  841. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  842. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3675
  843. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  844. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -79
  845. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  846. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  847. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  848. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  849. data/apis/shield/2016-06-02/api-2.json +0 -890
  850. data/apis/shield/2016-06-02/examples-1.json +0 -5
  851. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  852. data/apis/shield/2016-06-02/smoke.json +0 -11
  853. data/apis/signer/2017-08-25/api-2.json +0 -670
  854. data/apis/signer/2017-08-25/examples-1.json +0 -5
  855. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  856. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  857. data/apis/sms/2016-10-24/api-2.json +0 -1366
  858. data/apis/sms/2016-10-24/examples-1.json +0 -5
  859. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  860. data/apis/sms/2016-10-24/smoke.json +0 -18
  861. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  862. data/apis/snowball/2016-06-30/api-2.json +0 -929
  863. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  864. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  865. data/apis/snowball/2016-06-30/smoke.json +0 -11
  866. data/apis/sns/2010-03-31/api-2.json +0 -1259
  867. data/apis/sns/2010-03-31/examples-1.json +0 -5
  868. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  869. data/apis/sns/2010-03-31/resources-1.json +0 -327
  870. data/apis/sns/2010-03-31/smoke.json +0 -19
  871. data/apis/sqs/2012-11-05/api-2.json +0 -1078
  872. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  873. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  874. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  875. data/apis/sqs/2012-11-05/smoke.json +0 -18
  876. data/apis/ssm/2014-11-06/api-2.json +0 -8149
  877. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  878. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  879. data/apis/ssm/2014-11-06/smoke.json +0 -18
  880. data/apis/states/2016-11-23/api-2.json +0 -1363
  881. data/apis/states/2016-11-23/examples-1.json +0 -5
  882. data/apis/states/2016-11-23/paginators-1.json +0 -28
  883. data/apis/states/2016-11-23/smoke.json +0 -11
  884. data/apis/storagegateway/2013-06-30/api-2.json +0 -3047
  885. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  886. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  887. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  888. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  889. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  890. data/apis/sts/2011-06-15/api-2.json +0 -523
  891. data/apis/sts/2011-06-15/examples-1.json +0 -206
  892. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  893. data/apis/support/2013-04-15/api-2.json +0 -772
  894. data/apis/support/2013-04-15/examples-1.json +0 -5
  895. data/apis/support/2013-04-15/paginators-1.json +0 -25
  896. data/apis/swf/2012-01-25/api-2.json +0 -2613
  897. data/apis/swf/2012-01-25/examples-1.json +0 -5
  898. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  899. data/apis/transcribe/2017-10-26/api-2.json +0 -499
  900. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  901. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  902. data/apis/transfer/2018-11-05/api-2.json +0 -818
  903. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  904. data/apis/transfer/2018-11-05/paginators-1.json +0 -4
  905. data/apis/translate/2017-07-01/api-2.json +0 -408
  906. data/apis/translate/2017-07-01/examples-1.json +0 -5
  907. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  908. data/apis/waf/2015-08-24/api-2.json +0 -3674
  909. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  910. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  911. data/apis/waf/2015-08-24/smoke.json +0 -21
  912. data/apis/waf-regional/2016-11-28/api-2.json +0 -3809
  913. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  914. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  915. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  916. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  917. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  918. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  919. data/apis/worklink/2018-09-25/api-2.json +0 -873
  920. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  921. data/apis/worklink/2018-09-25/paginators-1.json +0 -19
  922. data/apis/workmail/2017-10-01/api-2.json +0 -1482
  923. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  924. data/apis/workmail/2017-10-01/paginators-1.json +0 -39
  925. data/apis/workspaces/2015-04-08/api-2.json +0 -1648
  926. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  927. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  928. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  929. data/apis/xray/2016-04-12/api-2.json +0 -1277
  930. data/apis/xray/2016-04-12/examples-1.json +0 -5
  931. data/apis/xray/2016-04-12/paginators-1.json +0 -24
  932. data/bin/aws.rb +0 -180
  933. data/endpoints.json +0 -3689
  934. data/lib/aws-sdk-core/acm.rb +0 -7
  935. data/lib/aws-sdk-core/acmpca.rb +0 -7
  936. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  937. data/lib/aws-sdk-core/amplify.rb +0 -6
  938. data/lib/aws-sdk-core/api/builder.rb +0 -129
  939. data/lib/aws-sdk-core/api/customizations.rb +0 -299
  940. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  941. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  942. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  943. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  944. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  945. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  946. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  947. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  948. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  949. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  950. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  951. data/lib/aws-sdk-core/apigateway.rb +0 -6
  952. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  953. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  954. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  955. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  956. data/lib/aws-sdk-core/appmesh.rb +0 -6
  957. data/lib/aws-sdk-core/appstream.rb +0 -7
  958. data/lib/aws-sdk-core/appsync.rb +0 -6
  959. data/lib/aws-sdk-core/athena.rb +0 -6
  960. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  961. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  962. data/lib/aws-sdk-core/backup.rb +0 -6
  963. data/lib/aws-sdk-core/batch.rb +0 -6
  964. data/lib/aws-sdk-core/budgets.rb +0 -6
  965. data/lib/aws-sdk-core/checksums.rb +0 -51
  966. data/lib/aws-sdk-core/chime.rb +0 -6
  967. data/lib/aws-sdk-core/client.rb +0 -62
  968. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  969. data/lib/aws-sdk-core/cloud9.rb +0 -6
  970. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  971. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  972. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  973. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  974. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  975. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  976. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  977. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  978. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  979. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  980. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  981. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  982. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  983. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  984. data/lib/aws-sdk-core/codebuild.rb +0 -6
  985. data/lib/aws-sdk-core/codecommit.rb +0 -6
  986. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  987. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  988. data/lib/aws-sdk-core/codestar.rb +0 -6
  989. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  990. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  991. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  992. data/lib/aws-sdk-core/comprehend.rb +0 -6
  993. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  994. data/lib/aws-sdk-core/configservice.rb +0 -6
  995. data/lib/aws-sdk-core/connect.rb +0 -6
  996. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  997. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  998. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  999. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1000. data/lib/aws-sdk-core/datasync.rb +0 -6
  1001. data/lib/aws-sdk-core/dax.rb +0 -6
  1002. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1003. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1004. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1005. data/lib/aws-sdk-core/dlm.rb +0 -6
  1006. data/lib/aws-sdk-core/docdb.rb +0 -7
  1007. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1008. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1009. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1010. data/lib/aws-sdk-core/ec2.rb +0 -8
  1011. data/lib/aws-sdk-core/ecr.rb +0 -6
  1012. data/lib/aws-sdk-core/ecs.rb +0 -7
  1013. data/lib/aws-sdk-core/efs.rb +0 -6
  1014. data/lib/aws-sdk-core/eks.rb +0 -7
  1015. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1016. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1017. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1018. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1019. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1020. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1021. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1022. data/lib/aws-sdk-core/emr.rb +0 -7
  1023. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  1024. data/lib/aws-sdk-core/firehose.rb +0 -6
  1025. data/lib/aws-sdk-core/fms.rb +0 -6
  1026. data/lib/aws-sdk-core/fsx.rb +0 -6
  1027. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1028. data/lib/aws-sdk-core/glacier.rb +0 -8
  1029. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1030. data/lib/aws-sdk-core/glue.rb +0 -6
  1031. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1032. data/lib/aws-sdk-core/guardduty.rb +0 -5
  1033. data/lib/aws-sdk-core/health.rb +0 -6
  1034. data/lib/aws-sdk-core/iam.rb +0 -8
  1035. data/lib/aws-sdk-core/importexport.rb +0 -5
  1036. data/lib/aws-sdk-core/inspector.rb +0 -6
  1037. data/lib/aws-sdk-core/iot.rb +0 -6
  1038. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1039. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1040. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1041. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1042. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1043. data/lib/aws-sdk-core/kafka.rb +0 -5
  1044. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1045. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1046. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1047. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1048. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1049. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1050. data/lib/aws-sdk-core/kms.rb +0 -6
  1051. data/lib/aws-sdk-core/lambda.rb +0 -6
  1052. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1053. data/lib/aws-sdk-core/lex.rb +0 -6
  1054. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1055. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1056. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1057. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1058. data/lib/aws-sdk-core/macie.rb +0 -6
  1059. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1060. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1061. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1062. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1063. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1064. data/lib/aws-sdk-core/medialive.rb +0 -5
  1065. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1066. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1067. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1068. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1069. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1070. data/lib/aws-sdk-core/mobile.rb +0 -6
  1071. data/lib/aws-sdk-core/mq.rb +0 -5
  1072. data/lib/aws-sdk-core/mturk.rb +0 -6
  1073. data/lib/aws-sdk-core/neptune.rb +0 -7
  1074. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1075. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1076. data/lib/aws-sdk-core/organizations.rb +0 -6
  1077. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1078. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1079. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1080. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1081. data/lib/aws-sdk-core/partitions.rb +0 -174
  1082. data/lib/aws-sdk-core/pi.rb +0 -6
  1083. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1084. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1085. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1086. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1087. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1088. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1089. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1090. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1091. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1092. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1093. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1094. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1095. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1096. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1097. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1098. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1099. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1100. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1101. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1102. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1103. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1104. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1105. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1106. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1107. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1108. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1109. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1110. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1111. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1112. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1113. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1114. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1115. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1116. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1117. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1118. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  1119. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1120. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1121. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1122. data/lib/aws-sdk-core/polly.rb +0 -14
  1123. data/lib/aws-sdk-core/pricing.rb +0 -6
  1124. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1125. data/lib/aws-sdk-core/ram.rb +0 -6
  1126. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1127. data/lib/aws-sdk-core/rds.rb +0 -16
  1128. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1129. data/lib/aws-sdk-core/redshift.rb +0 -7
  1130. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1131. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1132. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1133. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1134. data/lib/aws-sdk-core/route53.rb +0 -7
  1135. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1136. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1137. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1138. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1139. data/lib/aws-sdk-core/s3.rb +0 -26
  1140. data/lib/aws-sdk-core/s3control.rb +0 -6
  1141. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1142. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1143. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1144. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1145. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1146. data/lib/aws-sdk-core/service.rb +0 -4
  1147. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1148. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1149. data/lib/aws-sdk-core/ses.rb +0 -7
  1150. data/lib/aws-sdk-core/shield.rb +0 -6
  1151. data/lib/aws-sdk-core/signer.rb +0 -7
  1152. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1153. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1154. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1155. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1156. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1157. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1158. data/lib/aws-sdk-core/sms.rb +0 -6
  1159. data/lib/aws-sdk-core/snowball.rb +0 -6
  1160. data/lib/aws-sdk-core/sns.rb +0 -7
  1161. data/lib/aws-sdk-core/sqs.rb +0 -7
  1162. data/lib/aws-sdk-core/ssm.rb +0 -6
  1163. data/lib/aws-sdk-core/states.rb +0 -6
  1164. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1165. data/lib/aws-sdk-core/sts.rb +0 -6
  1166. data/lib/aws-sdk-core/support.rb +0 -6
  1167. data/lib/aws-sdk-core/swf.rb +0 -6
  1168. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1169. data/lib/aws-sdk-core/transfer.rb +0 -6
  1170. data/lib/aws-sdk-core/translate.rb +0 -6
  1171. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1172. data/lib/aws-sdk-core/version.rb +0 -3
  1173. data/lib/aws-sdk-core/waf.rb +0 -6
  1174. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1175. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1176. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1177. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1178. data/lib/aws-sdk-core/worklink.rb +0 -6
  1179. data/lib/aws-sdk-core/workmail.rb +0 -6
  1180. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1181. data/lib/aws-sdk-core/xray.rb +0 -6
  1182. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1183. data/service-models.json +0 -689
@@ -1,4885 +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
- "serviceId":"Redshift",
9
- "signatureVersion":"v4",
10
- "uid":"redshift-2012-12-01",
11
- "xmlNamespace":"http://redshift.amazonaws.com/doc/2012-12-01/"
12
- },
13
- "operations":{
14
- "AcceptReservedNodeExchange":{
15
- "name":"AcceptReservedNodeExchange",
16
- "http":{
17
- "method":"POST",
18
- "requestUri":"/"
19
- },
20
- "input":{"shape":"AcceptReservedNodeExchangeInputMessage"},
21
- "output":{
22
- "shape":"AcceptReservedNodeExchangeOutputMessage",
23
- "resultWrapper":"AcceptReservedNodeExchangeResult"
24
- },
25
- "errors":[
26
- {"shape":"ReservedNodeNotFoundFault"},
27
- {"shape":"InvalidReservedNodeStateFault"},
28
- {"shape":"ReservedNodeAlreadyMigratedFault"},
29
- {"shape":"ReservedNodeOfferingNotFoundFault"},
30
- {"shape":"UnsupportedOperationFault"},
31
- {"shape":"DependentServiceUnavailableFault"},
32
- {"shape":"ReservedNodeAlreadyExistsFault"}
33
- ]
34
- },
35
- "AuthorizeClusterSecurityGroupIngress":{
36
- "name":"AuthorizeClusterSecurityGroupIngress",
37
- "http":{
38
- "method":"POST",
39
- "requestUri":"/"
40
- },
41
- "input":{"shape":"AuthorizeClusterSecurityGroupIngressMessage"},
42
- "output":{
43
- "shape":"AuthorizeClusterSecurityGroupIngressResult",
44
- "resultWrapper":"AuthorizeClusterSecurityGroupIngressResult"
45
- },
46
- "errors":[
47
- {"shape":"ClusterSecurityGroupNotFoundFault"},
48
- {"shape":"InvalidClusterSecurityGroupStateFault"},
49
- {"shape":"AuthorizationAlreadyExistsFault"},
50
- {"shape":"AuthorizationQuotaExceededFault"}
51
- ]
52
- },
53
- "AuthorizeSnapshotAccess":{
54
- "name":"AuthorizeSnapshotAccess",
55
- "http":{
56
- "method":"POST",
57
- "requestUri":"/"
58
- },
59
- "input":{"shape":"AuthorizeSnapshotAccessMessage"},
60
- "output":{
61
- "shape":"AuthorizeSnapshotAccessResult",
62
- "resultWrapper":"AuthorizeSnapshotAccessResult"
63
- },
64
- "errors":[
65
- {"shape":"ClusterSnapshotNotFoundFault"},
66
- {"shape":"AuthorizationAlreadyExistsFault"},
67
- {"shape":"AuthorizationQuotaExceededFault"},
68
- {"shape":"DependentServiceRequestThrottlingFault"},
69
- {"shape":"InvalidClusterSnapshotStateFault"},
70
- {"shape":"LimitExceededFault"}
71
- ]
72
- },
73
- "BatchDeleteClusterSnapshots":{
74
- "name":"BatchDeleteClusterSnapshots",
75
- "http":{
76
- "method":"POST",
77
- "requestUri":"/"
78
- },
79
- "input":{"shape":"BatchDeleteClusterSnapshotsRequest"},
80
- "output":{
81
- "shape":"BatchDeleteClusterSnapshotsResult",
82
- "resultWrapper":"BatchDeleteClusterSnapshotsResult"
83
- },
84
- "errors":[
85
- {"shape":"BatchDeleteRequestSizeExceededFault"}
86
- ]
87
- },
88
- "BatchModifyClusterSnapshots":{
89
- "name":"BatchModifyClusterSnapshots",
90
- "http":{
91
- "method":"POST",
92
- "requestUri":"/"
93
- },
94
- "input":{"shape":"BatchModifyClusterSnapshotsMessage"},
95
- "output":{
96
- "shape":"BatchModifyClusterSnapshotsOutputMessage",
97
- "resultWrapper":"BatchModifyClusterSnapshotsResult"
98
- },
99
- "errors":[
100
- {"shape":"InvalidRetentionPeriodFault"},
101
- {"shape":"BatchModifyClusterSnapshotsLimitExceededFault"}
102
- ]
103
- },
104
- "CancelResize":{
105
- "name":"CancelResize",
106
- "http":{
107
- "method":"POST",
108
- "requestUri":"/"
109
- },
110
- "input":{"shape":"CancelResizeMessage"},
111
- "output":{
112
- "shape":"ResizeProgressMessage",
113
- "resultWrapper":"CancelResizeResult"
114
- },
115
- "errors":[
116
- {"shape":"ClusterNotFoundFault"},
117
- {"shape":"ResizeNotFoundFault"},
118
- {"shape":"InvalidClusterStateFault"},
119
- {"shape":"UnsupportedOperationFault"}
120
- ]
121
- },
122
- "CopyClusterSnapshot":{
123
- "name":"CopyClusterSnapshot",
124
- "http":{
125
- "method":"POST",
126
- "requestUri":"/"
127
- },
128
- "input":{"shape":"CopyClusterSnapshotMessage"},
129
- "output":{
130
- "shape":"CopyClusterSnapshotResult",
131
- "resultWrapper":"CopyClusterSnapshotResult"
132
- },
133
- "errors":[
134
- {"shape":"ClusterSnapshotAlreadyExistsFault"},
135
- {"shape":"ClusterSnapshotNotFoundFault"},
136
- {"shape":"InvalidClusterSnapshotStateFault"},
137
- {"shape":"ClusterSnapshotQuotaExceededFault"},
138
- {"shape":"InvalidRetentionPeriodFault"}
139
- ]
140
- },
141
- "CreateCluster":{
142
- "name":"CreateCluster",
143
- "http":{
144
- "method":"POST",
145
- "requestUri":"/"
146
- },
147
- "input":{"shape":"CreateClusterMessage"},
148
- "output":{
149
- "shape":"CreateClusterResult",
150
- "resultWrapper":"CreateClusterResult"
151
- },
152
- "errors":[
153
- {"shape":"ClusterAlreadyExistsFault"},
154
- {"shape":"InsufficientClusterCapacityFault"},
155
- {"shape":"ClusterParameterGroupNotFoundFault"},
156
- {"shape":"ClusterSecurityGroupNotFoundFault"},
157
- {"shape":"ClusterQuotaExceededFault"},
158
- {"shape":"NumberOfNodesQuotaExceededFault"},
159
- {"shape":"NumberOfNodesPerClusterLimitExceededFault"},
160
- {"shape":"ClusterSubnetGroupNotFoundFault"},
161
- {"shape":"InvalidVPCNetworkStateFault"},
162
- {"shape":"InvalidClusterSubnetGroupStateFault"},
163
- {"shape":"InvalidSubnet"},
164
- {"shape":"UnauthorizedOperation"},
165
- {"shape":"HsmClientCertificateNotFoundFault"},
166
- {"shape":"HsmConfigurationNotFoundFault"},
167
- {"shape":"InvalidElasticIpFault"},
168
- {"shape":"TagLimitExceededFault"},
169
- {"shape":"InvalidTagFault"},
170
- {"shape":"LimitExceededFault"},
171
- {"shape":"DependentServiceRequestThrottlingFault"},
172
- {"shape":"InvalidClusterTrackFault"},
173
- {"shape":"SnapshotScheduleNotFoundFault"},
174
- {"shape":"InvalidRetentionPeriodFault"}
175
- ]
176
- },
177
- "CreateClusterParameterGroup":{
178
- "name":"CreateClusterParameterGroup",
179
- "http":{
180
- "method":"POST",
181
- "requestUri":"/"
182
- },
183
- "input":{"shape":"CreateClusterParameterGroupMessage"},
184
- "output":{
185
- "shape":"CreateClusterParameterGroupResult",
186
- "resultWrapper":"CreateClusterParameterGroupResult"
187
- },
188
- "errors":[
189
- {"shape":"ClusterParameterGroupQuotaExceededFault"},
190
- {"shape":"ClusterParameterGroupAlreadyExistsFault"},
191
- {"shape":"TagLimitExceededFault"},
192
- {"shape":"InvalidTagFault"}
193
- ]
194
- },
195
- "CreateClusterSecurityGroup":{
196
- "name":"CreateClusterSecurityGroup",
197
- "http":{
198
- "method":"POST",
199
- "requestUri":"/"
200
- },
201
- "input":{"shape":"CreateClusterSecurityGroupMessage"},
202
- "output":{
203
- "shape":"CreateClusterSecurityGroupResult",
204
- "resultWrapper":"CreateClusterSecurityGroupResult"
205
- },
206
- "errors":[
207
- {"shape":"ClusterSecurityGroupAlreadyExistsFault"},
208
- {"shape":"ClusterSecurityGroupQuotaExceededFault"},
209
- {"shape":"TagLimitExceededFault"},
210
- {"shape":"InvalidTagFault"}
211
- ]
212
- },
213
- "CreateClusterSnapshot":{
214
- "name":"CreateClusterSnapshot",
215
- "http":{
216
- "method":"POST",
217
- "requestUri":"/"
218
- },
219
- "input":{"shape":"CreateClusterSnapshotMessage"},
220
- "output":{
221
- "shape":"CreateClusterSnapshotResult",
222
- "resultWrapper":"CreateClusterSnapshotResult"
223
- },
224
- "errors":[
225
- {"shape":"ClusterSnapshotAlreadyExistsFault"},
226
- {"shape":"InvalidClusterStateFault"},
227
- {"shape":"ClusterNotFoundFault"},
228
- {"shape":"ClusterSnapshotQuotaExceededFault"},
229
- {"shape":"TagLimitExceededFault"},
230
- {"shape":"InvalidTagFault"},
231
- {"shape":"InvalidRetentionPeriodFault"}
232
- ]
233
- },
234
- "CreateClusterSubnetGroup":{
235
- "name":"CreateClusterSubnetGroup",
236
- "http":{
237
- "method":"POST",
238
- "requestUri":"/"
239
- },
240
- "input":{"shape":"CreateClusterSubnetGroupMessage"},
241
- "output":{
242
- "shape":"CreateClusterSubnetGroupResult",
243
- "resultWrapper":"CreateClusterSubnetGroupResult"
244
- },
245
- "errors":[
246
- {"shape":"ClusterSubnetGroupAlreadyExistsFault"},
247
- {"shape":"ClusterSubnetGroupQuotaExceededFault"},
248
- {"shape":"ClusterSubnetQuotaExceededFault"},
249
- {"shape":"InvalidSubnet"},
250
- {"shape":"UnauthorizedOperation"},
251
- {"shape":"TagLimitExceededFault"},
252
- {"shape":"InvalidTagFault"},
253
- {"shape":"DependentServiceRequestThrottlingFault"}
254
- ]
255
- },
256
- "CreateEventSubscription":{
257
- "name":"CreateEventSubscription",
258
- "http":{
259
- "method":"POST",
260
- "requestUri":"/"
261
- },
262
- "input":{"shape":"CreateEventSubscriptionMessage"},
263
- "output":{
264
- "shape":"CreateEventSubscriptionResult",
265
- "resultWrapper":"CreateEventSubscriptionResult"
266
- },
267
- "errors":[
268
- {"shape":"EventSubscriptionQuotaExceededFault"},
269
- {"shape":"SubscriptionAlreadyExistFault"},
270
- {"shape":"SNSInvalidTopicFault"},
271
- {"shape":"SNSNoAuthorizationFault"},
272
- {"shape":"SNSTopicArnNotFoundFault"},
273
- {"shape":"SubscriptionEventIdNotFoundFault"},
274
- {"shape":"SubscriptionCategoryNotFoundFault"},
275
- {"shape":"SubscriptionSeverityNotFoundFault"},
276
- {"shape":"SourceNotFoundFault"},
277
- {"shape":"TagLimitExceededFault"},
278
- {"shape":"InvalidTagFault"}
279
- ]
280
- },
281
- "CreateHsmClientCertificate":{
282
- "name":"CreateHsmClientCertificate",
283
- "http":{
284
- "method":"POST",
285
- "requestUri":"/"
286
- },
287
- "input":{"shape":"CreateHsmClientCertificateMessage"},
288
- "output":{
289
- "shape":"CreateHsmClientCertificateResult",
290
- "resultWrapper":"CreateHsmClientCertificateResult"
291
- },
292
- "errors":[
293
- {"shape":"HsmClientCertificateAlreadyExistsFault"},
294
- {"shape":"HsmClientCertificateQuotaExceededFault"},
295
- {"shape":"TagLimitExceededFault"},
296
- {"shape":"InvalidTagFault"}
297
- ]
298
- },
299
- "CreateHsmConfiguration":{
300
- "name":"CreateHsmConfiguration",
301
- "http":{
302
- "method":"POST",
303
- "requestUri":"/"
304
- },
305
- "input":{"shape":"CreateHsmConfigurationMessage"},
306
- "output":{
307
- "shape":"CreateHsmConfigurationResult",
308
- "resultWrapper":"CreateHsmConfigurationResult"
309
- },
310
- "errors":[
311
- {"shape":"HsmConfigurationAlreadyExistsFault"},
312
- {"shape":"HsmConfigurationQuotaExceededFault"},
313
- {"shape":"TagLimitExceededFault"},
314
- {"shape":"InvalidTagFault"}
315
- ]
316
- },
317
- "CreateSnapshotCopyGrant":{
318
- "name":"CreateSnapshotCopyGrant",
319
- "http":{
320
- "method":"POST",
321
- "requestUri":"/"
322
- },
323
- "input":{"shape":"CreateSnapshotCopyGrantMessage"},
324
- "output":{
325
- "shape":"CreateSnapshotCopyGrantResult",
326
- "resultWrapper":"CreateSnapshotCopyGrantResult"
327
- },
328
- "errors":[
329
- {"shape":"SnapshotCopyGrantAlreadyExistsFault"},
330
- {"shape":"SnapshotCopyGrantQuotaExceededFault"},
331
- {"shape":"LimitExceededFault"},
332
- {"shape":"TagLimitExceededFault"},
333
- {"shape":"InvalidTagFault"},
334
- {"shape":"DependentServiceRequestThrottlingFault"}
335
- ]
336
- },
337
- "CreateSnapshotSchedule":{
338
- "name":"CreateSnapshotSchedule",
339
- "http":{
340
- "method":"POST",
341
- "requestUri":"/"
342
- },
343
- "input":{"shape":"CreateSnapshotScheduleMessage"},
344
- "output":{
345
- "shape":"SnapshotSchedule",
346
- "resultWrapper":"CreateSnapshotScheduleResult"
347
- },
348
- "errors":[
349
- {"shape":"SnapshotScheduleAlreadyExistsFault"},
350
- {"shape":"InvalidScheduleFault"},
351
- {"shape":"SnapshotScheduleQuotaExceededFault"},
352
- {"shape":"TagLimitExceededFault"},
353
- {"shape":"ScheduleDefinitionTypeUnsupportedFault"}
354
- ]
355
- },
356
- "CreateTags":{
357
- "name":"CreateTags",
358
- "http":{
359
- "method":"POST",
360
- "requestUri":"/"
361
- },
362
- "input":{"shape":"CreateTagsMessage"},
363
- "errors":[
364
- {"shape":"TagLimitExceededFault"},
365
- {"shape":"ResourceNotFoundFault"},
366
- {"shape":"InvalidTagFault"}
367
- ]
368
- },
369
- "DeleteCluster":{
370
- "name":"DeleteCluster",
371
- "http":{
372
- "method":"POST",
373
- "requestUri":"/"
374
- },
375
- "input":{"shape":"DeleteClusterMessage"},
376
- "output":{
377
- "shape":"DeleteClusterResult",
378
- "resultWrapper":"DeleteClusterResult"
379
- },
380
- "errors":[
381
- {"shape":"ClusterNotFoundFault"},
382
- {"shape":"InvalidClusterStateFault"},
383
- {"shape":"ClusterSnapshotAlreadyExistsFault"},
384
- {"shape":"ClusterSnapshotQuotaExceededFault"},
385
- {"shape":"InvalidRetentionPeriodFault"}
386
- ]
387
- },
388
- "DeleteClusterParameterGroup":{
389
- "name":"DeleteClusterParameterGroup",
390
- "http":{
391
- "method":"POST",
392
- "requestUri":"/"
393
- },
394
- "input":{"shape":"DeleteClusterParameterGroupMessage"},
395
- "errors":[
396
- {"shape":"InvalidClusterParameterGroupStateFault"},
397
- {"shape":"ClusterParameterGroupNotFoundFault"}
398
- ]
399
- },
400
- "DeleteClusterSecurityGroup":{
401
- "name":"DeleteClusterSecurityGroup",
402
- "http":{
403
- "method":"POST",
404
- "requestUri":"/"
405
- },
406
- "input":{"shape":"DeleteClusterSecurityGroupMessage"},
407
- "errors":[
408
- {"shape":"InvalidClusterSecurityGroupStateFault"},
409
- {"shape":"ClusterSecurityGroupNotFoundFault"}
410
- ]
411
- },
412
- "DeleteClusterSnapshot":{
413
- "name":"DeleteClusterSnapshot",
414
- "http":{
415
- "method":"POST",
416
- "requestUri":"/"
417
- },
418
- "input":{"shape":"DeleteClusterSnapshotMessage"},
419
- "output":{
420
- "shape":"DeleteClusterSnapshotResult",
421
- "resultWrapper":"DeleteClusterSnapshotResult"
422
- },
423
- "errors":[
424
- {"shape":"InvalidClusterSnapshotStateFault"},
425
- {"shape":"ClusterSnapshotNotFoundFault"}
426
- ]
427
- },
428
- "DeleteClusterSubnetGroup":{
429
- "name":"DeleteClusterSubnetGroup",
430
- "http":{
431
- "method":"POST",
432
- "requestUri":"/"
433
- },
434
- "input":{"shape":"DeleteClusterSubnetGroupMessage"},
435
- "errors":[
436
- {"shape":"InvalidClusterSubnetGroupStateFault"},
437
- {"shape":"InvalidClusterSubnetStateFault"},
438
- {"shape":"ClusterSubnetGroupNotFoundFault"}
439
- ]
440
- },
441
- "DeleteEventSubscription":{
442
- "name":"DeleteEventSubscription",
443
- "http":{
444
- "method":"POST",
445
- "requestUri":"/"
446
- },
447
- "input":{"shape":"DeleteEventSubscriptionMessage"},
448
- "errors":[
449
- {"shape":"SubscriptionNotFoundFault"},
450
- {"shape":"InvalidSubscriptionStateFault"}
451
- ]
452
- },
453
- "DeleteHsmClientCertificate":{
454
- "name":"DeleteHsmClientCertificate",
455
- "http":{
456
- "method":"POST",
457
- "requestUri":"/"
458
- },
459
- "input":{"shape":"DeleteHsmClientCertificateMessage"},
460
- "errors":[
461
- {"shape":"InvalidHsmClientCertificateStateFault"},
462
- {"shape":"HsmClientCertificateNotFoundFault"}
463
- ]
464
- },
465
- "DeleteHsmConfiguration":{
466
- "name":"DeleteHsmConfiguration",
467
- "http":{
468
- "method":"POST",
469
- "requestUri":"/"
470
- },
471
- "input":{"shape":"DeleteHsmConfigurationMessage"},
472
- "errors":[
473
- {"shape":"InvalidHsmConfigurationStateFault"},
474
- {"shape":"HsmConfigurationNotFoundFault"}
475
- ]
476
- },
477
- "DeleteSnapshotCopyGrant":{
478
- "name":"DeleteSnapshotCopyGrant",
479
- "http":{
480
- "method":"POST",
481
- "requestUri":"/"
482
- },
483
- "input":{"shape":"DeleteSnapshotCopyGrantMessage"},
484
- "errors":[
485
- {"shape":"InvalidSnapshotCopyGrantStateFault"},
486
- {"shape":"SnapshotCopyGrantNotFoundFault"}
487
- ]
488
- },
489
- "DeleteSnapshotSchedule":{
490
- "name":"DeleteSnapshotSchedule",
491
- "http":{
492
- "method":"POST",
493
- "requestUri":"/"
494
- },
495
- "input":{"shape":"DeleteSnapshotScheduleMessage"},
496
- "errors":[
497
- {"shape":"InvalidClusterSnapshotScheduleStateFault"},
498
- {"shape":"SnapshotScheduleNotFoundFault"}
499
- ]
500
- },
501
- "DeleteTags":{
502
- "name":"DeleteTags",
503
- "http":{
504
- "method":"POST",
505
- "requestUri":"/"
506
- },
507
- "input":{"shape":"DeleteTagsMessage"},
508
- "errors":[
509
- {"shape":"ResourceNotFoundFault"},
510
- {"shape":"InvalidTagFault"}
511
- ]
512
- },
513
- "DescribeAccountAttributes":{
514
- "name":"DescribeAccountAttributes",
515
- "http":{
516
- "method":"POST",
517
- "requestUri":"/"
518
- },
519
- "input":{"shape":"DescribeAccountAttributesMessage"},
520
- "output":{
521
- "shape":"AccountAttributeList",
522
- "resultWrapper":"DescribeAccountAttributesResult"
523
- }
524
- },
525
- "DescribeClusterDbRevisions":{
526
- "name":"DescribeClusterDbRevisions",
527
- "http":{
528
- "method":"POST",
529
- "requestUri":"/"
530
- },
531
- "input":{"shape":"DescribeClusterDbRevisionsMessage"},
532
- "output":{
533
- "shape":"ClusterDbRevisionsMessage",
534
- "resultWrapper":"DescribeClusterDbRevisionsResult"
535
- },
536
- "errors":[
537
- {"shape":"ClusterNotFoundFault"},
538
- {"shape":"InvalidClusterStateFault"}
539
- ]
540
- },
541
- "DescribeClusterParameterGroups":{
542
- "name":"DescribeClusterParameterGroups",
543
- "http":{
544
- "method":"POST",
545
- "requestUri":"/"
546
- },
547
- "input":{"shape":"DescribeClusterParameterGroupsMessage"},
548
- "output":{
549
- "shape":"ClusterParameterGroupsMessage",
550
- "resultWrapper":"DescribeClusterParameterGroupsResult"
551
- },
552
- "errors":[
553
- {"shape":"ClusterParameterGroupNotFoundFault"},
554
- {"shape":"InvalidTagFault"}
555
- ]
556
- },
557
- "DescribeClusterParameters":{
558
- "name":"DescribeClusterParameters",
559
- "http":{
560
- "method":"POST",
561
- "requestUri":"/"
562
- },
563
- "input":{"shape":"DescribeClusterParametersMessage"},
564
- "output":{
565
- "shape":"ClusterParameterGroupDetails",
566
- "resultWrapper":"DescribeClusterParametersResult"
567
- },
568
- "errors":[
569
- {"shape":"ClusterParameterGroupNotFoundFault"}
570
- ]
571
- },
572
- "DescribeClusterSecurityGroups":{
573
- "name":"DescribeClusterSecurityGroups",
574
- "http":{
575
- "method":"POST",
576
- "requestUri":"/"
577
- },
578
- "input":{"shape":"DescribeClusterSecurityGroupsMessage"},
579
- "output":{
580
- "shape":"ClusterSecurityGroupMessage",
581
- "resultWrapper":"DescribeClusterSecurityGroupsResult"
582
- },
583
- "errors":[
584
- {"shape":"ClusterSecurityGroupNotFoundFault"},
585
- {"shape":"InvalidTagFault"}
586
- ]
587
- },
588
- "DescribeClusterSnapshots":{
589
- "name":"DescribeClusterSnapshots",
590
- "http":{
591
- "method":"POST",
592
- "requestUri":"/"
593
- },
594
- "input":{"shape":"DescribeClusterSnapshotsMessage"},
595
- "output":{
596
- "shape":"SnapshotMessage",
597
- "resultWrapper":"DescribeClusterSnapshotsResult"
598
- },
599
- "errors":[
600
- {"shape":"ClusterNotFoundFault"},
601
- {"shape":"ClusterSnapshotNotFoundFault"},
602
- {"shape":"InvalidTagFault"}
603
- ]
604
- },
605
- "DescribeClusterSubnetGroups":{
606
- "name":"DescribeClusterSubnetGroups",
607
- "http":{
608
- "method":"POST",
609
- "requestUri":"/"
610
- },
611
- "input":{"shape":"DescribeClusterSubnetGroupsMessage"},
612
- "output":{
613
- "shape":"ClusterSubnetGroupMessage",
614
- "resultWrapper":"DescribeClusterSubnetGroupsResult"
615
- },
616
- "errors":[
617
- {"shape":"ClusterSubnetGroupNotFoundFault"},
618
- {"shape":"InvalidTagFault"}
619
- ]
620
- },
621
- "DescribeClusterTracks":{
622
- "name":"DescribeClusterTracks",
623
- "http":{
624
- "method":"POST",
625
- "requestUri":"/"
626
- },
627
- "input":{"shape":"DescribeClusterTracksMessage"},
628
- "output":{
629
- "shape":"TrackListMessage",
630
- "resultWrapper":"DescribeClusterTracksResult"
631
- },
632
- "errors":[
633
- {"shape":"InvalidClusterTrackFault"},
634
- {"shape":"UnauthorizedOperation"}
635
- ]
636
- },
637
- "DescribeClusterVersions":{
638
- "name":"DescribeClusterVersions",
639
- "http":{
640
- "method":"POST",
641
- "requestUri":"/"
642
- },
643
- "input":{"shape":"DescribeClusterVersionsMessage"},
644
- "output":{
645
- "shape":"ClusterVersionsMessage",
646
- "resultWrapper":"DescribeClusterVersionsResult"
647
- }
648
- },
649
- "DescribeClusters":{
650
- "name":"DescribeClusters",
651
- "http":{
652
- "method":"POST",
653
- "requestUri":"/"
654
- },
655
- "input":{"shape":"DescribeClustersMessage"},
656
- "output":{
657
- "shape":"ClustersMessage",
658
- "resultWrapper":"DescribeClustersResult"
659
- },
660
- "errors":[
661
- {"shape":"ClusterNotFoundFault"},
662
- {"shape":"InvalidTagFault"}
663
- ]
664
- },
665
- "DescribeDefaultClusterParameters":{
666
- "name":"DescribeDefaultClusterParameters",
667
- "http":{
668
- "method":"POST",
669
- "requestUri":"/"
670
- },
671
- "input":{"shape":"DescribeDefaultClusterParametersMessage"},
672
- "output":{
673
- "shape":"DescribeDefaultClusterParametersResult",
674
- "resultWrapper":"DescribeDefaultClusterParametersResult"
675
- }
676
- },
677
- "DescribeEventCategories":{
678
- "name":"DescribeEventCategories",
679
- "http":{
680
- "method":"POST",
681
- "requestUri":"/"
682
- },
683
- "input":{"shape":"DescribeEventCategoriesMessage"},
684
- "output":{
685
- "shape":"EventCategoriesMessage",
686
- "resultWrapper":"DescribeEventCategoriesResult"
687
- }
688
- },
689
- "DescribeEventSubscriptions":{
690
- "name":"DescribeEventSubscriptions",
691
- "http":{
692
- "method":"POST",
693
- "requestUri":"/"
694
- },
695
- "input":{"shape":"DescribeEventSubscriptionsMessage"},
696
- "output":{
697
- "shape":"EventSubscriptionsMessage",
698
- "resultWrapper":"DescribeEventSubscriptionsResult"
699
- },
700
- "errors":[
701
- {"shape":"SubscriptionNotFoundFault"},
702
- {"shape":"InvalidTagFault"}
703
- ]
704
- },
705
- "DescribeEvents":{
706
- "name":"DescribeEvents",
707
- "http":{
708
- "method":"POST",
709
- "requestUri":"/"
710
- },
711
- "input":{"shape":"DescribeEventsMessage"},
712
- "output":{
713
- "shape":"EventsMessage",
714
- "resultWrapper":"DescribeEventsResult"
715
- }
716
- },
717
- "DescribeHsmClientCertificates":{
718
- "name":"DescribeHsmClientCertificates",
719
- "http":{
720
- "method":"POST",
721
- "requestUri":"/"
722
- },
723
- "input":{"shape":"DescribeHsmClientCertificatesMessage"},
724
- "output":{
725
- "shape":"HsmClientCertificateMessage",
726
- "resultWrapper":"DescribeHsmClientCertificatesResult"
727
- },
728
- "errors":[
729
- {"shape":"HsmClientCertificateNotFoundFault"},
730
- {"shape":"InvalidTagFault"}
731
- ]
732
- },
733
- "DescribeHsmConfigurations":{
734
- "name":"DescribeHsmConfigurations",
735
- "http":{
736
- "method":"POST",
737
- "requestUri":"/"
738
- },
739
- "input":{"shape":"DescribeHsmConfigurationsMessage"},
740
- "output":{
741
- "shape":"HsmConfigurationMessage",
742
- "resultWrapper":"DescribeHsmConfigurationsResult"
743
- },
744
- "errors":[
745
- {"shape":"HsmConfigurationNotFoundFault"},
746
- {"shape":"InvalidTagFault"}
747
- ]
748
- },
749
- "DescribeLoggingStatus":{
750
- "name":"DescribeLoggingStatus",
751
- "http":{
752
- "method":"POST",
753
- "requestUri":"/"
754
- },
755
- "input":{"shape":"DescribeLoggingStatusMessage"},
756
- "output":{
757
- "shape":"LoggingStatus",
758
- "resultWrapper":"DescribeLoggingStatusResult"
759
- },
760
- "errors":[
761
- {"shape":"ClusterNotFoundFault"}
762
- ]
763
- },
764
- "DescribeOrderableClusterOptions":{
765
- "name":"DescribeOrderableClusterOptions",
766
- "http":{
767
- "method":"POST",
768
- "requestUri":"/"
769
- },
770
- "input":{"shape":"DescribeOrderableClusterOptionsMessage"},
771
- "output":{
772
- "shape":"OrderableClusterOptionsMessage",
773
- "resultWrapper":"DescribeOrderableClusterOptionsResult"
774
- }
775
- },
776
- "DescribeReservedNodeOfferings":{
777
- "name":"DescribeReservedNodeOfferings",
778
- "http":{
779
- "method":"POST",
780
- "requestUri":"/"
781
- },
782
- "input":{"shape":"DescribeReservedNodeOfferingsMessage"},
783
- "output":{
784
- "shape":"ReservedNodeOfferingsMessage",
785
- "resultWrapper":"DescribeReservedNodeOfferingsResult"
786
- },
787
- "errors":[
788
- {"shape":"ReservedNodeOfferingNotFoundFault"},
789
- {"shape":"UnsupportedOperationFault"},
790
- {"shape":"DependentServiceUnavailableFault"}
791
- ]
792
- },
793
- "DescribeReservedNodes":{
794
- "name":"DescribeReservedNodes",
795
- "http":{
796
- "method":"POST",
797
- "requestUri":"/"
798
- },
799
- "input":{"shape":"DescribeReservedNodesMessage"},
800
- "output":{
801
- "shape":"ReservedNodesMessage",
802
- "resultWrapper":"DescribeReservedNodesResult"
803
- },
804
- "errors":[
805
- {"shape":"ReservedNodeNotFoundFault"},
806
- {"shape":"DependentServiceUnavailableFault"}
807
- ]
808
- },
809
- "DescribeResize":{
810
- "name":"DescribeResize",
811
- "http":{
812
- "method":"POST",
813
- "requestUri":"/"
814
- },
815
- "input":{"shape":"DescribeResizeMessage"},
816
- "output":{
817
- "shape":"ResizeProgressMessage",
818
- "resultWrapper":"DescribeResizeResult"
819
- },
820
- "errors":[
821
- {"shape":"ClusterNotFoundFault"},
822
- {"shape":"ResizeNotFoundFault"}
823
- ]
824
- },
825
- "DescribeSnapshotCopyGrants":{
826
- "name":"DescribeSnapshotCopyGrants",
827
- "http":{
828
- "method":"POST",
829
- "requestUri":"/"
830
- },
831
- "input":{"shape":"DescribeSnapshotCopyGrantsMessage"},
832
- "output":{
833
- "shape":"SnapshotCopyGrantMessage",
834
- "resultWrapper":"DescribeSnapshotCopyGrantsResult"
835
- },
836
- "errors":[
837
- {"shape":"SnapshotCopyGrantNotFoundFault"},
838
- {"shape":"InvalidTagFault"}
839
- ]
840
- },
841
- "DescribeSnapshotSchedules":{
842
- "name":"DescribeSnapshotSchedules",
843
- "http":{
844
- "method":"POST",
845
- "requestUri":"/"
846
- },
847
- "input":{"shape":"DescribeSnapshotSchedulesMessage"},
848
- "output":{
849
- "shape":"DescribeSnapshotSchedulesOutputMessage",
850
- "resultWrapper":"DescribeSnapshotSchedulesResult"
851
- }
852
- },
853
- "DescribeStorage":{
854
- "name":"DescribeStorage",
855
- "http":{
856
- "method":"POST",
857
- "requestUri":"/"
858
- },
859
- "output":{
860
- "shape":"CustomerStorageMessage",
861
- "resultWrapper":"DescribeStorageResult"
862
- }
863
- },
864
- "DescribeTableRestoreStatus":{
865
- "name":"DescribeTableRestoreStatus",
866
- "http":{
867
- "method":"POST",
868
- "requestUri":"/"
869
- },
870
- "input":{"shape":"DescribeTableRestoreStatusMessage"},
871
- "output":{
872
- "shape":"TableRestoreStatusMessage",
873
- "resultWrapper":"DescribeTableRestoreStatusResult"
874
- },
875
- "errors":[
876
- {"shape":"TableRestoreNotFoundFault"},
877
- {"shape":"ClusterNotFoundFault"}
878
- ]
879
- },
880
- "DescribeTags":{
881
- "name":"DescribeTags",
882
- "http":{
883
- "method":"POST",
884
- "requestUri":"/"
885
- },
886
- "input":{"shape":"DescribeTagsMessage"},
887
- "output":{
888
- "shape":"TaggedResourceListMessage",
889
- "resultWrapper":"DescribeTagsResult"
890
- },
891
- "errors":[
892
- {"shape":"ResourceNotFoundFault"},
893
- {"shape":"InvalidTagFault"}
894
- ]
895
- },
896
- "DisableLogging":{
897
- "name":"DisableLogging",
898
- "http":{
899
- "method":"POST",
900
- "requestUri":"/"
901
- },
902
- "input":{"shape":"DisableLoggingMessage"},
903
- "output":{
904
- "shape":"LoggingStatus",
905
- "resultWrapper":"DisableLoggingResult"
906
- },
907
- "errors":[
908
- {"shape":"ClusterNotFoundFault"}
909
- ]
910
- },
911
- "DisableSnapshotCopy":{
912
- "name":"DisableSnapshotCopy",
913
- "http":{
914
- "method":"POST",
915
- "requestUri":"/"
916
- },
917
- "input":{"shape":"DisableSnapshotCopyMessage"},
918
- "output":{
919
- "shape":"DisableSnapshotCopyResult",
920
- "resultWrapper":"DisableSnapshotCopyResult"
921
- },
922
- "errors":[
923
- {"shape":"ClusterNotFoundFault"},
924
- {"shape":"SnapshotCopyAlreadyDisabledFault"},
925
- {"shape":"InvalidClusterStateFault"},
926
- {"shape":"UnauthorizedOperation"}
927
- ]
928
- },
929
- "EnableLogging":{
930
- "name":"EnableLogging",
931
- "http":{
932
- "method":"POST",
933
- "requestUri":"/"
934
- },
935
- "input":{"shape":"EnableLoggingMessage"},
936
- "output":{
937
- "shape":"LoggingStatus",
938
- "resultWrapper":"EnableLoggingResult"
939
- },
940
- "errors":[
941
- {"shape":"ClusterNotFoundFault"},
942
- {"shape":"BucketNotFoundFault"},
943
- {"shape":"InsufficientS3BucketPolicyFault"},
944
- {"shape":"InvalidS3KeyPrefixFault"},
945
- {"shape":"InvalidS3BucketNameFault"}
946
- ]
947
- },
948
- "EnableSnapshotCopy":{
949
- "name":"EnableSnapshotCopy",
950
- "http":{
951
- "method":"POST",
952
- "requestUri":"/"
953
- },
954
- "input":{"shape":"EnableSnapshotCopyMessage"},
955
- "output":{
956
- "shape":"EnableSnapshotCopyResult",
957
- "resultWrapper":"EnableSnapshotCopyResult"
958
- },
959
- "errors":[
960
- {"shape":"IncompatibleOrderableOptions"},
961
- {"shape":"InvalidClusterStateFault"},
962
- {"shape":"ClusterNotFoundFault"},
963
- {"shape":"CopyToRegionDisabledFault"},
964
- {"shape":"SnapshotCopyAlreadyEnabledFault"},
965
- {"shape":"UnknownSnapshotCopyRegionFault"},
966
- {"shape":"UnauthorizedOperation"},
967
- {"shape":"SnapshotCopyGrantNotFoundFault"},
968
- {"shape":"LimitExceededFault"},
969
- {"shape":"DependentServiceRequestThrottlingFault"},
970
- {"shape":"InvalidRetentionPeriodFault"}
971
- ]
972
- },
973
- "GetClusterCredentials":{
974
- "name":"GetClusterCredentials",
975
- "http":{
976
- "method":"POST",
977
- "requestUri":"/"
978
- },
979
- "input":{"shape":"GetClusterCredentialsMessage"},
980
- "output":{
981
- "shape":"ClusterCredentials",
982
- "resultWrapper":"GetClusterCredentialsResult"
983
- },
984
- "errors":[
985
- {"shape":"ClusterNotFoundFault"},
986
- {"shape":"UnsupportedOperationFault"}
987
- ]
988
- },
989
- "GetReservedNodeExchangeOfferings":{
990
- "name":"GetReservedNodeExchangeOfferings",
991
- "http":{
992
- "method":"POST",
993
- "requestUri":"/"
994
- },
995
- "input":{"shape":"GetReservedNodeExchangeOfferingsInputMessage"},
996
- "output":{
997
- "shape":"GetReservedNodeExchangeOfferingsOutputMessage",
998
- "resultWrapper":"GetReservedNodeExchangeOfferingsResult"
999
- },
1000
- "errors":[
1001
- {"shape":"ReservedNodeNotFoundFault"},
1002
- {"shape":"InvalidReservedNodeStateFault"},
1003
- {"shape":"ReservedNodeAlreadyMigratedFault"},
1004
- {"shape":"ReservedNodeOfferingNotFoundFault"},
1005
- {"shape":"UnsupportedOperationFault"},
1006
- {"shape":"DependentServiceUnavailableFault"}
1007
- ]
1008
- },
1009
- "ModifyCluster":{
1010
- "name":"ModifyCluster",
1011
- "http":{
1012
- "method":"POST",
1013
- "requestUri":"/"
1014
- },
1015
- "input":{"shape":"ModifyClusterMessage"},
1016
- "output":{
1017
- "shape":"ModifyClusterResult",
1018
- "resultWrapper":"ModifyClusterResult"
1019
- },
1020
- "errors":[
1021
- {"shape":"InvalidClusterStateFault"},
1022
- {"shape":"InvalidClusterSecurityGroupStateFault"},
1023
- {"shape":"ClusterNotFoundFault"},
1024
- {"shape":"NumberOfNodesQuotaExceededFault"},
1025
- {"shape":"NumberOfNodesPerClusterLimitExceededFault"},
1026
- {"shape":"ClusterSecurityGroupNotFoundFault"},
1027
- {"shape":"ClusterParameterGroupNotFoundFault"},
1028
- {"shape":"InsufficientClusterCapacityFault"},
1029
- {"shape":"UnsupportedOptionFault"},
1030
- {"shape":"UnauthorizedOperation"},
1031
- {"shape":"HsmClientCertificateNotFoundFault"},
1032
- {"shape":"HsmConfigurationNotFoundFault"},
1033
- {"shape":"ClusterAlreadyExistsFault"},
1034
- {"shape":"LimitExceededFault"},
1035
- {"shape":"DependentServiceRequestThrottlingFault"},
1036
- {"shape":"InvalidElasticIpFault"},
1037
- {"shape":"TableLimitExceededFault"},
1038
- {"shape":"InvalidClusterTrackFault"},
1039
- {"shape":"InvalidRetentionPeriodFault"}
1040
- ]
1041
- },
1042
- "ModifyClusterDbRevision":{
1043
- "name":"ModifyClusterDbRevision",
1044
- "http":{
1045
- "method":"POST",
1046
- "requestUri":"/"
1047
- },
1048
- "input":{"shape":"ModifyClusterDbRevisionMessage"},
1049
- "output":{
1050
- "shape":"ModifyClusterDbRevisionResult",
1051
- "resultWrapper":"ModifyClusterDbRevisionResult"
1052
- },
1053
- "errors":[
1054
- {"shape":"ClusterNotFoundFault"},
1055
- {"shape":"ClusterOnLatestRevisionFault"},
1056
- {"shape":"InvalidClusterStateFault"}
1057
- ]
1058
- },
1059
- "ModifyClusterIamRoles":{
1060
- "name":"ModifyClusterIamRoles",
1061
- "http":{
1062
- "method":"POST",
1063
- "requestUri":"/"
1064
- },
1065
- "input":{"shape":"ModifyClusterIamRolesMessage"},
1066
- "output":{
1067
- "shape":"ModifyClusterIamRolesResult",
1068
- "resultWrapper":"ModifyClusterIamRolesResult"
1069
- },
1070
- "errors":[
1071
- {"shape":"InvalidClusterStateFault"},
1072
- {"shape":"ClusterNotFoundFault"}
1073
- ]
1074
- },
1075
- "ModifyClusterMaintenance":{
1076
- "name":"ModifyClusterMaintenance",
1077
- "http":{
1078
- "method":"POST",
1079
- "requestUri":"/"
1080
- },
1081
- "input":{"shape":"ModifyClusterMaintenanceMessage"},
1082
- "output":{
1083
- "shape":"ModifyClusterMaintenanceResult",
1084
- "resultWrapper":"ModifyClusterMaintenanceResult"
1085
- },
1086
- "errors":[
1087
- {"shape":"ClusterNotFoundFault"}
1088
- ]
1089
- },
1090
- "ModifyClusterParameterGroup":{
1091
- "name":"ModifyClusterParameterGroup",
1092
- "http":{
1093
- "method":"POST",
1094
- "requestUri":"/"
1095
- },
1096
- "input":{"shape":"ModifyClusterParameterGroupMessage"},
1097
- "output":{
1098
- "shape":"ClusterParameterGroupNameMessage",
1099
- "resultWrapper":"ModifyClusterParameterGroupResult"
1100
- },
1101
- "errors":[
1102
- {"shape":"ClusterParameterGroupNotFoundFault"},
1103
- {"shape":"InvalidClusterParameterGroupStateFault"}
1104
- ]
1105
- },
1106
- "ModifyClusterSnapshot":{
1107
- "name":"ModifyClusterSnapshot",
1108
- "http":{
1109
- "method":"POST",
1110
- "requestUri":"/"
1111
- },
1112
- "input":{"shape":"ModifyClusterSnapshotMessage"},
1113
- "output":{
1114
- "shape":"ModifyClusterSnapshotResult",
1115
- "resultWrapper":"ModifyClusterSnapshotResult"
1116
- },
1117
- "errors":[
1118
- {"shape":"InvalidClusterSnapshotStateFault"},
1119
- {"shape":"ClusterSnapshotNotFoundFault"},
1120
- {"shape":"InvalidRetentionPeriodFault"}
1121
- ]
1122
- },
1123
- "ModifyClusterSnapshotSchedule":{
1124
- "name":"ModifyClusterSnapshotSchedule",
1125
- "http":{
1126
- "method":"POST",
1127
- "requestUri":"/"
1128
- },
1129
- "input":{"shape":"ModifyClusterSnapshotScheduleMessage"},
1130
- "errors":[
1131
- {"shape":"ClusterNotFoundFault"},
1132
- {"shape":"SnapshotScheduleNotFoundFault"},
1133
- {"shape":"InvalidClusterSnapshotScheduleStateFault"}
1134
- ]
1135
- },
1136
- "ModifyClusterSubnetGroup":{
1137
- "name":"ModifyClusterSubnetGroup",
1138
- "http":{
1139
- "method":"POST",
1140
- "requestUri":"/"
1141
- },
1142
- "input":{"shape":"ModifyClusterSubnetGroupMessage"},
1143
- "output":{
1144
- "shape":"ModifyClusterSubnetGroupResult",
1145
- "resultWrapper":"ModifyClusterSubnetGroupResult"
1146
- },
1147
- "errors":[
1148
- {"shape":"ClusterSubnetGroupNotFoundFault"},
1149
- {"shape":"ClusterSubnetQuotaExceededFault"},
1150
- {"shape":"SubnetAlreadyInUse"},
1151
- {"shape":"InvalidSubnet"},
1152
- {"shape":"UnauthorizedOperation"},
1153
- {"shape":"DependentServiceRequestThrottlingFault"}
1154
- ]
1155
- },
1156
- "ModifyEventSubscription":{
1157
- "name":"ModifyEventSubscription",
1158
- "http":{
1159
- "method":"POST",
1160
- "requestUri":"/"
1161
- },
1162
- "input":{"shape":"ModifyEventSubscriptionMessage"},
1163
- "output":{
1164
- "shape":"ModifyEventSubscriptionResult",
1165
- "resultWrapper":"ModifyEventSubscriptionResult"
1166
- },
1167
- "errors":[
1168
- {"shape":"SubscriptionNotFoundFault"},
1169
- {"shape":"SNSInvalidTopicFault"},
1170
- {"shape":"SNSNoAuthorizationFault"},
1171
- {"shape":"SNSTopicArnNotFoundFault"},
1172
- {"shape":"SubscriptionEventIdNotFoundFault"},
1173
- {"shape":"SubscriptionCategoryNotFoundFault"},
1174
- {"shape":"SubscriptionSeverityNotFoundFault"},
1175
- {"shape":"SourceNotFoundFault"},
1176
- {"shape":"InvalidSubscriptionStateFault"}
1177
- ]
1178
- },
1179
- "ModifySnapshotCopyRetentionPeriod":{
1180
- "name":"ModifySnapshotCopyRetentionPeriod",
1181
- "http":{
1182
- "method":"POST",
1183
- "requestUri":"/"
1184
- },
1185
- "input":{"shape":"ModifySnapshotCopyRetentionPeriodMessage"},
1186
- "output":{
1187
- "shape":"ModifySnapshotCopyRetentionPeriodResult",
1188
- "resultWrapper":"ModifySnapshotCopyRetentionPeriodResult"
1189
- },
1190
- "errors":[
1191
- {"shape":"ClusterNotFoundFault"},
1192
- {"shape":"SnapshotCopyDisabledFault"},
1193
- {"shape":"UnauthorizedOperation"},
1194
- {"shape":"InvalidClusterStateFault"},
1195
- {"shape":"InvalidRetentionPeriodFault"}
1196
- ]
1197
- },
1198
- "ModifySnapshotSchedule":{
1199
- "name":"ModifySnapshotSchedule",
1200
- "http":{
1201
- "method":"POST",
1202
- "requestUri":"/"
1203
- },
1204
- "input":{"shape":"ModifySnapshotScheduleMessage"},
1205
- "output":{
1206
- "shape":"SnapshotSchedule",
1207
- "resultWrapper":"ModifySnapshotScheduleResult"
1208
- },
1209
- "errors":[
1210
- {"shape":"InvalidScheduleFault"},
1211
- {"shape":"SnapshotScheduleNotFoundFault"},
1212
- {"shape":"SnapshotScheduleUpdateInProgressFault"}
1213
- ]
1214
- },
1215
- "PurchaseReservedNodeOffering":{
1216
- "name":"PurchaseReservedNodeOffering",
1217
- "http":{
1218
- "method":"POST",
1219
- "requestUri":"/"
1220
- },
1221
- "input":{"shape":"PurchaseReservedNodeOfferingMessage"},
1222
- "output":{
1223
- "shape":"PurchaseReservedNodeOfferingResult",
1224
- "resultWrapper":"PurchaseReservedNodeOfferingResult"
1225
- },
1226
- "errors":[
1227
- {"shape":"ReservedNodeOfferingNotFoundFault"},
1228
- {"shape":"ReservedNodeAlreadyExistsFault"},
1229
- {"shape":"ReservedNodeQuotaExceededFault"},
1230
- {"shape":"UnsupportedOperationFault"}
1231
- ]
1232
- },
1233
- "RebootCluster":{
1234
- "name":"RebootCluster",
1235
- "http":{
1236
- "method":"POST",
1237
- "requestUri":"/"
1238
- },
1239
- "input":{"shape":"RebootClusterMessage"},
1240
- "output":{
1241
- "shape":"RebootClusterResult",
1242
- "resultWrapper":"RebootClusterResult"
1243
- },
1244
- "errors":[
1245
- {"shape":"InvalidClusterStateFault"},
1246
- {"shape":"ClusterNotFoundFault"}
1247
- ]
1248
- },
1249
- "ResetClusterParameterGroup":{
1250
- "name":"ResetClusterParameterGroup",
1251
- "http":{
1252
- "method":"POST",
1253
- "requestUri":"/"
1254
- },
1255
- "input":{"shape":"ResetClusterParameterGroupMessage"},
1256
- "output":{
1257
- "shape":"ClusterParameterGroupNameMessage",
1258
- "resultWrapper":"ResetClusterParameterGroupResult"
1259
- },
1260
- "errors":[
1261
- {"shape":"InvalidClusterParameterGroupStateFault"},
1262
- {"shape":"ClusterParameterGroupNotFoundFault"}
1263
- ]
1264
- },
1265
- "ResizeCluster":{
1266
- "name":"ResizeCluster",
1267
- "http":{
1268
- "method":"POST",
1269
- "requestUri":"/"
1270
- },
1271
- "input":{"shape":"ResizeClusterMessage"},
1272
- "output":{
1273
- "shape":"ResizeClusterResult",
1274
- "resultWrapper":"ResizeClusterResult"
1275
- },
1276
- "errors":[
1277
- {"shape":"InvalidClusterStateFault"},
1278
- {"shape":"ClusterNotFoundFault"},
1279
- {"shape":"NumberOfNodesQuotaExceededFault"},
1280
- {"shape":"NumberOfNodesPerClusterLimitExceededFault"},
1281
- {"shape":"InsufficientClusterCapacityFault"},
1282
- {"shape":"UnsupportedOptionFault"},
1283
- {"shape":"UnsupportedOperationFault"},
1284
- {"shape":"UnauthorizedOperation"},
1285
- {"shape":"LimitExceededFault"}
1286
- ]
1287
- },
1288
- "RestoreFromClusterSnapshot":{
1289
- "name":"RestoreFromClusterSnapshot",
1290
- "http":{
1291
- "method":"POST",
1292
- "requestUri":"/"
1293
- },
1294
- "input":{"shape":"RestoreFromClusterSnapshotMessage"},
1295
- "output":{
1296
- "shape":"RestoreFromClusterSnapshotResult",
1297
- "resultWrapper":"RestoreFromClusterSnapshotResult"
1298
- },
1299
- "errors":[
1300
- {"shape":"AccessToSnapshotDeniedFault"},
1301
- {"shape":"ClusterAlreadyExistsFault"},
1302
- {"shape":"ClusterSnapshotNotFoundFault"},
1303
- {"shape":"ClusterQuotaExceededFault"},
1304
- {"shape":"InsufficientClusterCapacityFault"},
1305
- {"shape":"InvalidClusterSnapshotStateFault"},
1306
- {"shape":"InvalidRestoreFault"},
1307
- {"shape":"NumberOfNodesQuotaExceededFault"},
1308
- {"shape":"NumberOfNodesPerClusterLimitExceededFault"},
1309
- {"shape":"InvalidVPCNetworkStateFault"},
1310
- {"shape":"InvalidClusterSubnetGroupStateFault"},
1311
- {"shape":"InvalidSubnet"},
1312
- {"shape":"ClusterSubnetGroupNotFoundFault"},
1313
- {"shape":"UnauthorizedOperation"},
1314
- {"shape":"HsmClientCertificateNotFoundFault"},
1315
- {"shape":"HsmConfigurationNotFoundFault"},
1316
- {"shape":"InvalidElasticIpFault"},
1317
- {"shape":"ClusterParameterGroupNotFoundFault"},
1318
- {"shape":"ClusterSecurityGroupNotFoundFault"},
1319
- {"shape":"LimitExceededFault"},
1320
- {"shape":"DependentServiceRequestThrottlingFault"},
1321
- {"shape":"InvalidClusterTrackFault"},
1322
- {"shape":"SnapshotScheduleNotFoundFault"}
1323
- ]
1324
- },
1325
- "RestoreTableFromClusterSnapshot":{
1326
- "name":"RestoreTableFromClusterSnapshot",
1327
- "http":{
1328
- "method":"POST",
1329
- "requestUri":"/"
1330
- },
1331
- "input":{"shape":"RestoreTableFromClusterSnapshotMessage"},
1332
- "output":{
1333
- "shape":"RestoreTableFromClusterSnapshotResult",
1334
- "resultWrapper":"RestoreTableFromClusterSnapshotResult"
1335
- },
1336
- "errors":[
1337
- {"shape":"ClusterSnapshotNotFoundFault"},
1338
- {"shape":"InProgressTableRestoreQuotaExceededFault"},
1339
- {"shape":"InvalidClusterSnapshotStateFault"},
1340
- {"shape":"InvalidTableRestoreArgumentFault"},
1341
- {"shape":"ClusterNotFoundFault"},
1342
- {"shape":"InvalidClusterStateFault"},
1343
- {"shape":"UnsupportedOperationFault"}
1344
- ]
1345
- },
1346
- "RevokeClusterSecurityGroupIngress":{
1347
- "name":"RevokeClusterSecurityGroupIngress",
1348
- "http":{
1349
- "method":"POST",
1350
- "requestUri":"/"
1351
- },
1352
- "input":{"shape":"RevokeClusterSecurityGroupIngressMessage"},
1353
- "output":{
1354
- "shape":"RevokeClusterSecurityGroupIngressResult",
1355
- "resultWrapper":"RevokeClusterSecurityGroupIngressResult"
1356
- },
1357
- "errors":[
1358
- {"shape":"ClusterSecurityGroupNotFoundFault"},
1359
- {"shape":"AuthorizationNotFoundFault"},
1360
- {"shape":"InvalidClusterSecurityGroupStateFault"}
1361
- ]
1362
- },
1363
- "RevokeSnapshotAccess":{
1364
- "name":"RevokeSnapshotAccess",
1365
- "http":{
1366
- "method":"POST",
1367
- "requestUri":"/"
1368
- },
1369
- "input":{"shape":"RevokeSnapshotAccessMessage"},
1370
- "output":{
1371
- "shape":"RevokeSnapshotAccessResult",
1372
- "resultWrapper":"RevokeSnapshotAccessResult"
1373
- },
1374
- "errors":[
1375
- {"shape":"AccessToSnapshotDeniedFault"},
1376
- {"shape":"AuthorizationNotFoundFault"},
1377
- {"shape":"ClusterSnapshotNotFoundFault"}
1378
- ]
1379
- },
1380
- "RotateEncryptionKey":{
1381
- "name":"RotateEncryptionKey",
1382
- "http":{
1383
- "method":"POST",
1384
- "requestUri":"/"
1385
- },
1386
- "input":{"shape":"RotateEncryptionKeyMessage"},
1387
- "output":{
1388
- "shape":"RotateEncryptionKeyResult",
1389
- "resultWrapper":"RotateEncryptionKeyResult"
1390
- },
1391
- "errors":[
1392
- {"shape":"ClusterNotFoundFault"},
1393
- {"shape":"InvalidClusterStateFault"},
1394
- {"shape":"DependentServiceRequestThrottlingFault"}
1395
- ]
1396
- }
1397
- },
1398
- "shapes":{
1399
- "AcceptReservedNodeExchangeInputMessage":{
1400
- "type":"structure",
1401
- "required":[
1402
- "ReservedNodeId",
1403
- "TargetReservedNodeOfferingId"
1404
- ],
1405
- "members":{
1406
- "ReservedNodeId":{"shape":"String"},
1407
- "TargetReservedNodeOfferingId":{"shape":"String"}
1408
- }
1409
- },
1410
- "AcceptReservedNodeExchangeOutputMessage":{
1411
- "type":"structure",
1412
- "members":{
1413
- "ExchangedReservedNode":{"shape":"ReservedNode"}
1414
- }
1415
- },
1416
- "AccessToSnapshotDeniedFault":{
1417
- "type":"structure",
1418
- "members":{
1419
- },
1420
- "error":{
1421
- "code":"AccessToSnapshotDenied",
1422
- "httpStatusCode":400,
1423
- "senderFault":true
1424
- },
1425
- "exception":true
1426
- },
1427
- "AccountAttribute":{
1428
- "type":"structure",
1429
- "members":{
1430
- "AttributeName":{"shape":"String"},
1431
- "AttributeValues":{"shape":"AttributeValueList"}
1432
- }
1433
- },
1434
- "AccountAttributeList":{
1435
- "type":"structure",
1436
- "members":{
1437
- "AccountAttributes":{"shape":"AttributeList"}
1438
- }
1439
- },
1440
- "AccountWithRestoreAccess":{
1441
- "type":"structure",
1442
- "members":{
1443
- "AccountId":{"shape":"String"},
1444
- "AccountAlias":{"shape":"String"}
1445
- }
1446
- },
1447
- "AccountsWithRestoreAccessList":{
1448
- "type":"list",
1449
- "member":{
1450
- "shape":"AccountWithRestoreAccess",
1451
- "locationName":"AccountWithRestoreAccess"
1452
- }
1453
- },
1454
- "AssociatedClusterList":{
1455
- "type":"list",
1456
- "member":{
1457
- "shape":"ClusterAssociatedToSchedule",
1458
- "locationName":"ClusterAssociatedToSchedule"
1459
- }
1460
- },
1461
- "AttributeList":{
1462
- "type":"list",
1463
- "member":{
1464
- "shape":"AccountAttribute",
1465
- "locationName":"AccountAttribute"
1466
- }
1467
- },
1468
- "AttributeNameList":{
1469
- "type":"list",
1470
- "member":{
1471
- "shape":"String",
1472
- "locationName":"AttributeName"
1473
- }
1474
- },
1475
- "AttributeValueList":{
1476
- "type":"list",
1477
- "member":{
1478
- "shape":"AttributeValueTarget",
1479
- "locationName":"AttributeValueTarget"
1480
- }
1481
- },
1482
- "AttributeValueTarget":{
1483
- "type":"structure",
1484
- "members":{
1485
- "AttributeValue":{"shape":"String"}
1486
- }
1487
- },
1488
- "AuthorizationAlreadyExistsFault":{
1489
- "type":"structure",
1490
- "members":{
1491
- },
1492
- "error":{
1493
- "code":"AuthorizationAlreadyExists",
1494
- "httpStatusCode":400,
1495
- "senderFault":true
1496
- },
1497
- "exception":true
1498
- },
1499
- "AuthorizationNotFoundFault":{
1500
- "type":"structure",
1501
- "members":{
1502
- },
1503
- "error":{
1504
- "code":"AuthorizationNotFound",
1505
- "httpStatusCode":404,
1506
- "senderFault":true
1507
- },
1508
- "exception":true
1509
- },
1510
- "AuthorizationQuotaExceededFault":{
1511
- "type":"structure",
1512
- "members":{
1513
- },
1514
- "error":{
1515
- "code":"AuthorizationQuotaExceeded",
1516
- "httpStatusCode":400,
1517
- "senderFault":true
1518
- },
1519
- "exception":true
1520
- },
1521
- "AuthorizeClusterSecurityGroupIngressMessage":{
1522
- "type":"structure",
1523
- "required":["ClusterSecurityGroupName"],
1524
- "members":{
1525
- "ClusterSecurityGroupName":{"shape":"String"},
1526
- "CIDRIP":{"shape":"String"},
1527
- "EC2SecurityGroupName":{"shape":"String"},
1528
- "EC2SecurityGroupOwnerId":{"shape":"String"}
1529
- }
1530
- },
1531
- "AuthorizeClusterSecurityGroupIngressResult":{
1532
- "type":"structure",
1533
- "members":{
1534
- "ClusterSecurityGroup":{"shape":"ClusterSecurityGroup"}
1535
- }
1536
- },
1537
- "AuthorizeSnapshotAccessMessage":{
1538
- "type":"structure",
1539
- "required":[
1540
- "SnapshotIdentifier",
1541
- "AccountWithRestoreAccess"
1542
- ],
1543
- "members":{
1544
- "SnapshotIdentifier":{"shape":"String"},
1545
- "SnapshotClusterIdentifier":{"shape":"String"},
1546
- "AccountWithRestoreAccess":{"shape":"String"}
1547
- }
1548
- },
1549
- "AuthorizeSnapshotAccessResult":{
1550
- "type":"structure",
1551
- "members":{
1552
- "Snapshot":{"shape":"Snapshot"}
1553
- }
1554
- },
1555
- "AvailabilityZone":{
1556
- "type":"structure",
1557
- "members":{
1558
- "Name":{"shape":"String"},
1559
- "SupportedPlatforms":{"shape":"SupportedPlatformsList"}
1560
- },
1561
- "wrapper":true
1562
- },
1563
- "AvailabilityZoneList":{
1564
- "type":"list",
1565
- "member":{
1566
- "shape":"AvailabilityZone",
1567
- "locationName":"AvailabilityZone"
1568
- }
1569
- },
1570
- "BatchDeleteClusterSnapshotsRequest":{
1571
- "type":"structure",
1572
- "required":["Identifiers"],
1573
- "members":{
1574
- "Identifiers":{"shape":"DeleteClusterSnapshotMessageList"}
1575
- }
1576
- },
1577
- "BatchDeleteClusterSnapshotsResult":{
1578
- "type":"structure",
1579
- "members":{
1580
- "Resources":{"shape":"SnapshotIdentifierList"},
1581
- "Errors":{"shape":"BatchSnapshotOperationErrorList"}
1582
- }
1583
- },
1584
- "BatchDeleteRequestSizeExceededFault":{
1585
- "type":"structure",
1586
- "members":{
1587
- },
1588
- "error":{
1589
- "code":"BatchDeleteRequestSizeExceeded",
1590
- "httpStatusCode":400,
1591
- "senderFault":true
1592
- },
1593
- "exception":true
1594
- },
1595
- "BatchModifyClusterSnapshotsLimitExceededFault":{
1596
- "type":"structure",
1597
- "members":{
1598
- },
1599
- "error":{
1600
- "code":"BatchModifyClusterSnapshotsLimitExceededFault",
1601
- "httpStatusCode":400,
1602
- "senderFault":true
1603
- },
1604
- "exception":true
1605
- },
1606
- "BatchModifyClusterSnapshotsMessage":{
1607
- "type":"structure",
1608
- "required":["SnapshotIdentifierList"],
1609
- "members":{
1610
- "SnapshotIdentifierList":{"shape":"SnapshotIdentifierList"},
1611
- "ManualSnapshotRetentionPeriod":{"shape":"IntegerOptional"},
1612
- "Force":{"shape":"Boolean"}
1613
- }
1614
- },
1615
- "BatchModifyClusterSnapshotsOutputMessage":{
1616
- "type":"structure",
1617
- "members":{
1618
- "Resources":{"shape":"SnapshotIdentifierList"},
1619
- "Errors":{"shape":"BatchSnapshotOperationErrors"}
1620
- }
1621
- },
1622
- "BatchSnapshotOperationErrorList":{
1623
- "type":"list",
1624
- "member":{
1625
- "shape":"SnapshotErrorMessage",
1626
- "locationName":"SnapshotErrorMessage"
1627
- }
1628
- },
1629
- "BatchSnapshotOperationErrors":{
1630
- "type":"list",
1631
- "member":{
1632
- "shape":"SnapshotErrorMessage",
1633
- "locationName":"SnapshotErrorMessage"
1634
- }
1635
- },
1636
- "Boolean":{"type":"boolean"},
1637
- "BooleanOptional":{"type":"boolean"},
1638
- "BucketNotFoundFault":{
1639
- "type":"structure",
1640
- "members":{
1641
- },
1642
- "error":{
1643
- "code":"BucketNotFoundFault",
1644
- "httpStatusCode":400,
1645
- "senderFault":true
1646
- },
1647
- "exception":true
1648
- },
1649
- "CancelResizeMessage":{
1650
- "type":"structure",
1651
- "required":["ClusterIdentifier"],
1652
- "members":{
1653
- "ClusterIdentifier":{"shape":"String"}
1654
- }
1655
- },
1656
- "Cluster":{
1657
- "type":"structure",
1658
- "members":{
1659
- "ClusterIdentifier":{"shape":"String"},
1660
- "NodeType":{"shape":"String"},
1661
- "ClusterStatus":{"shape":"String"},
1662
- "ModifyStatus":{"shape":"String"},
1663
- "MasterUsername":{"shape":"String"},
1664
- "DBName":{"shape":"String"},
1665
- "Endpoint":{"shape":"Endpoint"},
1666
- "ClusterCreateTime":{"shape":"TStamp"},
1667
- "AutomatedSnapshotRetentionPeriod":{"shape":"Integer"},
1668
- "ManualSnapshotRetentionPeriod":{"shape":"Integer"},
1669
- "ClusterSecurityGroups":{"shape":"ClusterSecurityGroupMembershipList"},
1670
- "VpcSecurityGroups":{"shape":"VpcSecurityGroupMembershipList"},
1671
- "ClusterParameterGroups":{"shape":"ClusterParameterGroupStatusList"},
1672
- "ClusterSubnetGroupName":{"shape":"String"},
1673
- "VpcId":{"shape":"String"},
1674
- "AvailabilityZone":{"shape":"String"},
1675
- "PreferredMaintenanceWindow":{"shape":"String"},
1676
- "PendingModifiedValues":{"shape":"PendingModifiedValues"},
1677
- "ClusterVersion":{"shape":"String"},
1678
- "AllowVersionUpgrade":{"shape":"Boolean"},
1679
- "NumberOfNodes":{"shape":"Integer"},
1680
- "PubliclyAccessible":{"shape":"Boolean"},
1681
- "Encrypted":{"shape":"Boolean"},
1682
- "RestoreStatus":{"shape":"RestoreStatus"},
1683
- "DataTransferProgress":{"shape":"DataTransferProgress"},
1684
- "HsmStatus":{"shape":"HsmStatus"},
1685
- "ClusterSnapshotCopyStatus":{"shape":"ClusterSnapshotCopyStatus"},
1686
- "ClusterPublicKey":{"shape":"String"},
1687
- "ClusterNodes":{"shape":"ClusterNodesList"},
1688
- "ElasticIpStatus":{"shape":"ElasticIpStatus"},
1689
- "ClusterRevisionNumber":{"shape":"String"},
1690
- "Tags":{"shape":"TagList"},
1691
- "KmsKeyId":{"shape":"String"},
1692
- "EnhancedVpcRouting":{"shape":"Boolean"},
1693
- "IamRoles":{"shape":"ClusterIamRoleList"},
1694
- "PendingActions":{"shape":"PendingActionsList"},
1695
- "MaintenanceTrackName":{"shape":"String"},
1696
- "ElasticResizeNumberOfNodeOptions":{"shape":"String"},
1697
- "DeferredMaintenanceWindows":{"shape":"DeferredMaintenanceWindowsList"},
1698
- "SnapshotScheduleIdentifier":{"shape":"String"},
1699
- "SnapshotScheduleState":{"shape":"ScheduleState"},
1700
- "ResizeInfo":{"shape":"ResizeInfo"}
1701
- },
1702
- "wrapper":true
1703
- },
1704
- "ClusterAlreadyExistsFault":{
1705
- "type":"structure",
1706
- "members":{
1707
- },
1708
- "error":{
1709
- "code":"ClusterAlreadyExists",
1710
- "httpStatusCode":400,
1711
- "senderFault":true
1712
- },
1713
- "exception":true
1714
- },
1715
- "ClusterAssociatedToSchedule":{
1716
- "type":"structure",
1717
- "members":{
1718
- "ClusterIdentifier":{"shape":"String"},
1719
- "ScheduleAssociationState":{"shape":"ScheduleState"}
1720
- }
1721
- },
1722
- "ClusterCredentials":{
1723
- "type":"structure",
1724
- "members":{
1725
- "DbUser":{"shape":"String"},
1726
- "DbPassword":{"shape":"SensitiveString"},
1727
- "Expiration":{"shape":"TStamp"}
1728
- }
1729
- },
1730
- "ClusterDbRevision":{
1731
- "type":"structure",
1732
- "members":{
1733
- "ClusterIdentifier":{"shape":"String"},
1734
- "CurrentDatabaseRevision":{"shape":"String"},
1735
- "DatabaseRevisionReleaseDate":{"shape":"TStamp"},
1736
- "RevisionTargets":{"shape":"RevisionTargetsList"}
1737
- }
1738
- },
1739
- "ClusterDbRevisionsList":{
1740
- "type":"list",
1741
- "member":{
1742
- "shape":"ClusterDbRevision",
1743
- "locationName":"ClusterDbRevision"
1744
- }
1745
- },
1746
- "ClusterDbRevisionsMessage":{
1747
- "type":"structure",
1748
- "members":{
1749
- "Marker":{"shape":"String"},
1750
- "ClusterDbRevisions":{"shape":"ClusterDbRevisionsList"}
1751
- }
1752
- },
1753
- "ClusterIamRole":{
1754
- "type":"structure",
1755
- "members":{
1756
- "IamRoleArn":{"shape":"String"},
1757
- "ApplyStatus":{"shape":"String"}
1758
- }
1759
- },
1760
- "ClusterIamRoleList":{
1761
- "type":"list",
1762
- "member":{
1763
- "shape":"ClusterIamRole",
1764
- "locationName":"ClusterIamRole"
1765
- }
1766
- },
1767
- "ClusterList":{
1768
- "type":"list",
1769
- "member":{
1770
- "shape":"Cluster",
1771
- "locationName":"Cluster"
1772
- }
1773
- },
1774
- "ClusterNode":{
1775
- "type":"structure",
1776
- "members":{
1777
- "NodeRole":{"shape":"String"},
1778
- "PrivateIPAddress":{"shape":"String"},
1779
- "PublicIPAddress":{"shape":"String"}
1780
- }
1781
- },
1782
- "ClusterNodesList":{
1783
- "type":"list",
1784
- "member":{"shape":"ClusterNode"}
1785
- },
1786
- "ClusterNotFoundFault":{
1787
- "type":"structure",
1788
- "members":{
1789
- },
1790
- "error":{
1791
- "code":"ClusterNotFound",
1792
- "httpStatusCode":404,
1793
- "senderFault":true
1794
- },
1795
- "exception":true
1796
- },
1797
- "ClusterOnLatestRevisionFault":{
1798
- "type":"structure",
1799
- "members":{
1800
- },
1801
- "error":{
1802
- "code":"ClusterOnLatestRevision",
1803
- "httpStatusCode":400,
1804
- "senderFault":true
1805
- },
1806
- "exception":true
1807
- },
1808
- "ClusterParameterGroup":{
1809
- "type":"structure",
1810
- "members":{
1811
- "ParameterGroupName":{"shape":"String"},
1812
- "ParameterGroupFamily":{"shape":"String"},
1813
- "Description":{"shape":"String"},
1814
- "Tags":{"shape":"TagList"}
1815
- },
1816
- "wrapper":true
1817
- },
1818
- "ClusterParameterGroupAlreadyExistsFault":{
1819
- "type":"structure",
1820
- "members":{
1821
- },
1822
- "error":{
1823
- "code":"ClusterParameterGroupAlreadyExists",
1824
- "httpStatusCode":400,
1825
- "senderFault":true
1826
- },
1827
- "exception":true
1828
- },
1829
- "ClusterParameterGroupDetails":{
1830
- "type":"structure",
1831
- "members":{
1832
- "Parameters":{"shape":"ParametersList"},
1833
- "Marker":{"shape":"String"}
1834
- }
1835
- },
1836
- "ClusterParameterGroupNameMessage":{
1837
- "type":"structure",
1838
- "members":{
1839
- "ParameterGroupName":{"shape":"String"},
1840
- "ParameterGroupStatus":{"shape":"String"}
1841
- }
1842
- },
1843
- "ClusterParameterGroupNotFoundFault":{
1844
- "type":"structure",
1845
- "members":{
1846
- },
1847
- "error":{
1848
- "code":"ClusterParameterGroupNotFound",
1849
- "httpStatusCode":404,
1850
- "senderFault":true
1851
- },
1852
- "exception":true
1853
- },
1854
- "ClusterParameterGroupQuotaExceededFault":{
1855
- "type":"structure",
1856
- "members":{
1857
- },
1858
- "error":{
1859
- "code":"ClusterParameterGroupQuotaExceeded",
1860
- "httpStatusCode":400,
1861
- "senderFault":true
1862
- },
1863
- "exception":true
1864
- },
1865
- "ClusterParameterGroupStatus":{
1866
- "type":"structure",
1867
- "members":{
1868
- "ParameterGroupName":{"shape":"String"},
1869
- "ParameterApplyStatus":{"shape":"String"},
1870
- "ClusterParameterStatusList":{"shape":"ClusterParameterStatusList"}
1871
- }
1872
- },
1873
- "ClusterParameterGroupStatusList":{
1874
- "type":"list",
1875
- "member":{
1876
- "shape":"ClusterParameterGroupStatus",
1877
- "locationName":"ClusterParameterGroup"
1878
- }
1879
- },
1880
- "ClusterParameterGroupsMessage":{
1881
- "type":"structure",
1882
- "members":{
1883
- "Marker":{"shape":"String"},
1884
- "ParameterGroups":{"shape":"ParameterGroupList"}
1885
- }
1886
- },
1887
- "ClusterParameterStatus":{
1888
- "type":"structure",
1889
- "members":{
1890
- "ParameterName":{"shape":"String"},
1891
- "ParameterApplyStatus":{"shape":"String"},
1892
- "ParameterApplyErrorDescription":{"shape":"String"}
1893
- }
1894
- },
1895
- "ClusterParameterStatusList":{
1896
- "type":"list",
1897
- "member":{"shape":"ClusterParameterStatus"}
1898
- },
1899
- "ClusterQuotaExceededFault":{
1900
- "type":"structure",
1901
- "members":{
1902
- },
1903
- "error":{
1904
- "code":"ClusterQuotaExceeded",
1905
- "httpStatusCode":400,
1906
- "senderFault":true
1907
- },
1908
- "exception":true
1909
- },
1910
- "ClusterSecurityGroup":{
1911
- "type":"structure",
1912
- "members":{
1913
- "ClusterSecurityGroupName":{"shape":"String"},
1914
- "Description":{"shape":"String"},
1915
- "EC2SecurityGroups":{"shape":"EC2SecurityGroupList"},
1916
- "IPRanges":{"shape":"IPRangeList"},
1917
- "Tags":{"shape":"TagList"}
1918
- },
1919
- "wrapper":true
1920
- },
1921
- "ClusterSecurityGroupAlreadyExistsFault":{
1922
- "type":"structure",
1923
- "members":{
1924
- },
1925
- "error":{
1926
- "code":"ClusterSecurityGroupAlreadyExists",
1927
- "httpStatusCode":400,
1928
- "senderFault":true
1929
- },
1930
- "exception":true
1931
- },
1932
- "ClusterSecurityGroupMembership":{
1933
- "type":"structure",
1934
- "members":{
1935
- "ClusterSecurityGroupName":{"shape":"String"},
1936
- "Status":{"shape":"String"}
1937
- }
1938
- },
1939
- "ClusterSecurityGroupMembershipList":{
1940
- "type":"list",
1941
- "member":{
1942
- "shape":"ClusterSecurityGroupMembership",
1943
- "locationName":"ClusterSecurityGroup"
1944
- }
1945
- },
1946
- "ClusterSecurityGroupMessage":{
1947
- "type":"structure",
1948
- "members":{
1949
- "Marker":{"shape":"String"},
1950
- "ClusterSecurityGroups":{"shape":"ClusterSecurityGroups"}
1951
- }
1952
- },
1953
- "ClusterSecurityGroupNameList":{
1954
- "type":"list",
1955
- "member":{
1956
- "shape":"String",
1957
- "locationName":"ClusterSecurityGroupName"
1958
- }
1959
- },
1960
- "ClusterSecurityGroupNotFoundFault":{
1961
- "type":"structure",
1962
- "members":{
1963
- },
1964
- "error":{
1965
- "code":"ClusterSecurityGroupNotFound",
1966
- "httpStatusCode":404,
1967
- "senderFault":true
1968
- },
1969
- "exception":true
1970
- },
1971
- "ClusterSecurityGroupQuotaExceededFault":{
1972
- "type":"structure",
1973
- "members":{
1974
- },
1975
- "error":{
1976
- "code":"QuotaExceeded.ClusterSecurityGroup",
1977
- "httpStatusCode":400,
1978
- "senderFault":true
1979
- },
1980
- "exception":true
1981
- },
1982
- "ClusterSecurityGroups":{
1983
- "type":"list",
1984
- "member":{
1985
- "shape":"ClusterSecurityGroup",
1986
- "locationName":"ClusterSecurityGroup"
1987
- }
1988
- },
1989
- "ClusterSnapshotAlreadyExistsFault":{
1990
- "type":"structure",
1991
- "members":{
1992
- },
1993
- "error":{
1994
- "code":"ClusterSnapshotAlreadyExists",
1995
- "httpStatusCode":400,
1996
- "senderFault":true
1997
- },
1998
- "exception":true
1999
- },
2000
- "ClusterSnapshotCopyStatus":{
2001
- "type":"structure",
2002
- "members":{
2003
- "DestinationRegion":{"shape":"String"},
2004
- "RetentionPeriod":{"shape":"Long"},
2005
- "ManualSnapshotRetentionPeriod":{"shape":"Integer"},
2006
- "SnapshotCopyGrantName":{"shape":"String"}
2007
- }
2008
- },
2009
- "ClusterSnapshotNotFoundFault":{
2010
- "type":"structure",
2011
- "members":{
2012
- },
2013
- "error":{
2014
- "code":"ClusterSnapshotNotFound",
2015
- "httpStatusCode":404,
2016
- "senderFault":true
2017
- },
2018
- "exception":true
2019
- },
2020
- "ClusterSnapshotQuotaExceededFault":{
2021
- "type":"structure",
2022
- "members":{
2023
- },
2024
- "error":{
2025
- "code":"ClusterSnapshotQuotaExceeded",
2026
- "httpStatusCode":400,
2027
- "senderFault":true
2028
- },
2029
- "exception":true
2030
- },
2031
- "ClusterSubnetGroup":{
2032
- "type":"structure",
2033
- "members":{
2034
- "ClusterSubnetGroupName":{"shape":"String"},
2035
- "Description":{"shape":"String"},
2036
- "VpcId":{"shape":"String"},
2037
- "SubnetGroupStatus":{"shape":"String"},
2038
- "Subnets":{"shape":"SubnetList"},
2039
- "Tags":{"shape":"TagList"}
2040
- },
2041
- "wrapper":true
2042
- },
2043
- "ClusterSubnetGroupAlreadyExistsFault":{
2044
- "type":"structure",
2045
- "members":{
2046
- },
2047
- "error":{
2048
- "code":"ClusterSubnetGroupAlreadyExists",
2049
- "httpStatusCode":400,
2050
- "senderFault":true
2051
- },
2052
- "exception":true
2053
- },
2054
- "ClusterSubnetGroupMessage":{
2055
- "type":"structure",
2056
- "members":{
2057
- "Marker":{"shape":"String"},
2058
- "ClusterSubnetGroups":{"shape":"ClusterSubnetGroups"}
2059
- }
2060
- },
2061
- "ClusterSubnetGroupNotFoundFault":{
2062
- "type":"structure",
2063
- "members":{
2064
- },
2065
- "error":{
2066
- "code":"ClusterSubnetGroupNotFoundFault",
2067
- "httpStatusCode":400,
2068
- "senderFault":true
2069
- },
2070
- "exception":true
2071
- },
2072
- "ClusterSubnetGroupQuotaExceededFault":{
2073
- "type":"structure",
2074
- "members":{
2075
- },
2076
- "error":{
2077
- "code":"ClusterSubnetGroupQuotaExceeded",
2078
- "httpStatusCode":400,
2079
- "senderFault":true
2080
- },
2081
- "exception":true
2082
- },
2083
- "ClusterSubnetGroups":{
2084
- "type":"list",
2085
- "member":{
2086
- "shape":"ClusterSubnetGroup",
2087
- "locationName":"ClusterSubnetGroup"
2088
- }
2089
- },
2090
- "ClusterSubnetQuotaExceededFault":{
2091
- "type":"structure",
2092
- "members":{
2093
- },
2094
- "error":{
2095
- "code":"ClusterSubnetQuotaExceededFault",
2096
- "httpStatusCode":400,
2097
- "senderFault":true
2098
- },
2099
- "exception":true
2100
- },
2101
- "ClusterVersion":{
2102
- "type":"structure",
2103
- "members":{
2104
- "ClusterVersion":{"shape":"String"},
2105
- "ClusterParameterGroupFamily":{"shape":"String"},
2106
- "Description":{"shape":"String"}
2107
- }
2108
- },
2109
- "ClusterVersionList":{
2110
- "type":"list",
2111
- "member":{
2112
- "shape":"ClusterVersion",
2113
- "locationName":"ClusterVersion"
2114
- }
2115
- },
2116
- "ClusterVersionsMessage":{
2117
- "type":"structure",
2118
- "members":{
2119
- "Marker":{"shape":"String"},
2120
- "ClusterVersions":{"shape":"ClusterVersionList"}
2121
- }
2122
- },
2123
- "ClustersMessage":{
2124
- "type":"structure",
2125
- "members":{
2126
- "Marker":{"shape":"String"},
2127
- "Clusters":{"shape":"ClusterList"}
2128
- }
2129
- },
2130
- "CopyClusterSnapshotMessage":{
2131
- "type":"structure",
2132
- "required":[
2133
- "SourceSnapshotIdentifier",
2134
- "TargetSnapshotIdentifier"
2135
- ],
2136
- "members":{
2137
- "SourceSnapshotIdentifier":{"shape":"String"},
2138
- "SourceSnapshotClusterIdentifier":{"shape":"String"},
2139
- "TargetSnapshotIdentifier":{"shape":"String"},
2140
- "ManualSnapshotRetentionPeriod":{"shape":"IntegerOptional"}
2141
- }
2142
- },
2143
- "CopyClusterSnapshotResult":{
2144
- "type":"structure",
2145
- "members":{
2146
- "Snapshot":{"shape":"Snapshot"}
2147
- }
2148
- },
2149
- "CopyToRegionDisabledFault":{
2150
- "type":"structure",
2151
- "members":{
2152
- },
2153
- "error":{
2154
- "code":"CopyToRegionDisabledFault",
2155
- "httpStatusCode":400,
2156
- "senderFault":true
2157
- },
2158
- "exception":true
2159
- },
2160
- "CreateClusterMessage":{
2161
- "type":"structure",
2162
- "required":[
2163
- "ClusterIdentifier",
2164
- "NodeType",
2165
- "MasterUsername",
2166
- "MasterUserPassword"
2167
- ],
2168
- "members":{
2169
- "DBName":{"shape":"String"},
2170
- "ClusterIdentifier":{"shape":"String"},
2171
- "ClusterType":{"shape":"String"},
2172
- "NodeType":{"shape":"String"},
2173
- "MasterUsername":{"shape":"String"},
2174
- "MasterUserPassword":{"shape":"String"},
2175
- "ClusterSecurityGroups":{"shape":"ClusterSecurityGroupNameList"},
2176
- "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"},
2177
- "ClusterSubnetGroupName":{"shape":"String"},
2178
- "AvailabilityZone":{"shape":"String"},
2179
- "PreferredMaintenanceWindow":{"shape":"String"},
2180
- "ClusterParameterGroupName":{"shape":"String"},
2181
- "AutomatedSnapshotRetentionPeriod":{"shape":"IntegerOptional"},
2182
- "ManualSnapshotRetentionPeriod":{"shape":"IntegerOptional"},
2183
- "Port":{"shape":"IntegerOptional"},
2184
- "ClusterVersion":{"shape":"String"},
2185
- "AllowVersionUpgrade":{"shape":"BooleanOptional"},
2186
- "NumberOfNodes":{"shape":"IntegerOptional"},
2187
- "PubliclyAccessible":{"shape":"BooleanOptional"},
2188
- "Encrypted":{"shape":"BooleanOptional"},
2189
- "HsmClientCertificateIdentifier":{"shape":"String"},
2190
- "HsmConfigurationIdentifier":{"shape":"String"},
2191
- "ElasticIp":{"shape":"String"},
2192
- "Tags":{"shape":"TagList"},
2193
- "KmsKeyId":{"shape":"String"},
2194
- "EnhancedVpcRouting":{"shape":"BooleanOptional"},
2195
- "AdditionalInfo":{"shape":"String"},
2196
- "IamRoles":{"shape":"IamRoleArnList"},
2197
- "MaintenanceTrackName":{"shape":"String"},
2198
- "SnapshotScheduleIdentifier":{"shape":"String"}
2199
- }
2200
- },
2201
- "CreateClusterParameterGroupMessage":{
2202
- "type":"structure",
2203
- "required":[
2204
- "ParameterGroupName",
2205
- "ParameterGroupFamily",
2206
- "Description"
2207
- ],
2208
- "members":{
2209
- "ParameterGroupName":{"shape":"String"},
2210
- "ParameterGroupFamily":{"shape":"String"},
2211
- "Description":{"shape":"String"},
2212
- "Tags":{"shape":"TagList"}
2213
- }
2214
- },
2215
- "CreateClusterParameterGroupResult":{
2216
- "type":"structure",
2217
- "members":{
2218
- "ClusterParameterGroup":{"shape":"ClusterParameterGroup"}
2219
- }
2220
- },
2221
- "CreateClusterResult":{
2222
- "type":"structure",
2223
- "members":{
2224
- "Cluster":{"shape":"Cluster"}
2225
- }
2226
- },
2227
- "CreateClusterSecurityGroupMessage":{
2228
- "type":"structure",
2229
- "required":[
2230
- "ClusterSecurityGroupName",
2231
- "Description"
2232
- ],
2233
- "members":{
2234
- "ClusterSecurityGroupName":{"shape":"String"},
2235
- "Description":{"shape":"String"},
2236
- "Tags":{"shape":"TagList"}
2237
- }
2238
- },
2239
- "CreateClusterSecurityGroupResult":{
2240
- "type":"structure",
2241
- "members":{
2242
- "ClusterSecurityGroup":{"shape":"ClusterSecurityGroup"}
2243
- }
2244
- },
2245
- "CreateClusterSnapshotMessage":{
2246
- "type":"structure",
2247
- "required":[
2248
- "SnapshotIdentifier",
2249
- "ClusterIdentifier"
2250
- ],
2251
- "members":{
2252
- "SnapshotIdentifier":{"shape":"String"},
2253
- "ClusterIdentifier":{"shape":"String"},
2254
- "ManualSnapshotRetentionPeriod":{"shape":"IntegerOptional"},
2255
- "Tags":{"shape":"TagList"}
2256
- }
2257
- },
2258
- "CreateClusterSnapshotResult":{
2259
- "type":"structure",
2260
- "members":{
2261
- "Snapshot":{"shape":"Snapshot"}
2262
- }
2263
- },
2264
- "CreateClusterSubnetGroupMessage":{
2265
- "type":"structure",
2266
- "required":[
2267
- "ClusterSubnetGroupName",
2268
- "Description",
2269
- "SubnetIds"
2270
- ],
2271
- "members":{
2272
- "ClusterSubnetGroupName":{"shape":"String"},
2273
- "Description":{"shape":"String"},
2274
- "SubnetIds":{"shape":"SubnetIdentifierList"},
2275
- "Tags":{"shape":"TagList"}
2276
- }
2277
- },
2278
- "CreateClusterSubnetGroupResult":{
2279
- "type":"structure",
2280
- "members":{
2281
- "ClusterSubnetGroup":{"shape":"ClusterSubnetGroup"}
2282
- }
2283
- },
2284
- "CreateEventSubscriptionMessage":{
2285
- "type":"structure",
2286
- "required":[
2287
- "SubscriptionName",
2288
- "SnsTopicArn"
2289
- ],
2290
- "members":{
2291
- "SubscriptionName":{"shape":"String"},
2292
- "SnsTopicArn":{"shape":"String"},
2293
- "SourceType":{"shape":"String"},
2294
- "SourceIds":{"shape":"SourceIdsList"},
2295
- "EventCategories":{"shape":"EventCategoriesList"},
2296
- "Severity":{"shape":"String"},
2297
- "Enabled":{"shape":"BooleanOptional"},
2298
- "Tags":{"shape":"TagList"}
2299
- }
2300
- },
2301
- "CreateEventSubscriptionResult":{
2302
- "type":"structure",
2303
- "members":{
2304
- "EventSubscription":{"shape":"EventSubscription"}
2305
- }
2306
- },
2307
- "CreateHsmClientCertificateMessage":{
2308
- "type":"structure",
2309
- "required":["HsmClientCertificateIdentifier"],
2310
- "members":{
2311
- "HsmClientCertificateIdentifier":{"shape":"String"},
2312
- "Tags":{"shape":"TagList"}
2313
- }
2314
- },
2315
- "CreateHsmClientCertificateResult":{
2316
- "type":"structure",
2317
- "members":{
2318
- "HsmClientCertificate":{"shape":"HsmClientCertificate"}
2319
- }
2320
- },
2321
- "CreateHsmConfigurationMessage":{
2322
- "type":"structure",
2323
- "required":[
2324
- "HsmConfigurationIdentifier",
2325
- "Description",
2326
- "HsmIpAddress",
2327
- "HsmPartitionName",
2328
- "HsmPartitionPassword",
2329
- "HsmServerPublicCertificate"
2330
- ],
2331
- "members":{
2332
- "HsmConfigurationIdentifier":{"shape":"String"},
2333
- "Description":{"shape":"String"},
2334
- "HsmIpAddress":{"shape":"String"},
2335
- "HsmPartitionName":{"shape":"String"},
2336
- "HsmPartitionPassword":{"shape":"String"},
2337
- "HsmServerPublicCertificate":{"shape":"String"},
2338
- "Tags":{"shape":"TagList"}
2339
- }
2340
- },
2341
- "CreateHsmConfigurationResult":{
2342
- "type":"structure",
2343
- "members":{
2344
- "HsmConfiguration":{"shape":"HsmConfiguration"}
2345
- }
2346
- },
2347
- "CreateSnapshotCopyGrantMessage":{
2348
- "type":"structure",
2349
- "required":["SnapshotCopyGrantName"],
2350
- "members":{
2351
- "SnapshotCopyGrantName":{"shape":"String"},
2352
- "KmsKeyId":{"shape":"String"},
2353
- "Tags":{"shape":"TagList"}
2354
- }
2355
- },
2356
- "CreateSnapshotCopyGrantResult":{
2357
- "type":"structure",
2358
- "members":{
2359
- "SnapshotCopyGrant":{"shape":"SnapshotCopyGrant"}
2360
- }
2361
- },
2362
- "CreateSnapshotScheduleMessage":{
2363
- "type":"structure",
2364
- "members":{
2365
- "ScheduleDefinitions":{"shape":"ScheduleDefinitionList"},
2366
- "ScheduleIdentifier":{"shape":"String"},
2367
- "ScheduleDescription":{"shape":"String"},
2368
- "Tags":{"shape":"TagList"},
2369
- "DryRun":{"shape":"BooleanOptional"},
2370
- "NextInvocations":{"shape":"IntegerOptional"}
2371
- }
2372
- },
2373
- "CreateTagsMessage":{
2374
- "type":"structure",
2375
- "required":[
2376
- "ResourceName",
2377
- "Tags"
2378
- ],
2379
- "members":{
2380
- "ResourceName":{"shape":"String"},
2381
- "Tags":{"shape":"TagList"}
2382
- }
2383
- },
2384
- "CustomerStorageMessage":{
2385
- "type":"structure",
2386
- "members":{
2387
- "TotalBackupSizeInMegaBytes":{"shape":"Double"},
2388
- "TotalProvisionedStorageInMegaBytes":{"shape":"Double"}
2389
- }
2390
- },
2391
- "DataTransferProgress":{
2392
- "type":"structure",
2393
- "members":{
2394
- "Status":{"shape":"String"},
2395
- "CurrentRateInMegaBytesPerSecond":{"shape":"DoubleOptional"},
2396
- "TotalDataInMegaBytes":{"shape":"Long"},
2397
- "DataTransferredInMegaBytes":{"shape":"Long"},
2398
- "EstimatedTimeToCompletionInSeconds":{"shape":"LongOptional"},
2399
- "ElapsedTimeInSeconds":{"shape":"LongOptional"}
2400
- }
2401
- },
2402
- "DbGroupList":{
2403
- "type":"list",
2404
- "member":{
2405
- "shape":"String",
2406
- "locationName":"DbGroup"
2407
- }
2408
- },
2409
- "DefaultClusterParameters":{
2410
- "type":"structure",
2411
- "members":{
2412
- "ParameterGroupFamily":{"shape":"String"},
2413
- "Marker":{"shape":"String"},
2414
- "Parameters":{"shape":"ParametersList"}
2415
- },
2416
- "wrapper":true
2417
- },
2418
- "DeferredMaintenanceWindow":{
2419
- "type":"structure",
2420
- "members":{
2421
- "DeferMaintenanceIdentifier":{"shape":"String"},
2422
- "DeferMaintenanceStartTime":{"shape":"TStamp"},
2423
- "DeferMaintenanceEndTime":{"shape":"TStamp"}
2424
- }
2425
- },
2426
- "DeferredMaintenanceWindowsList":{
2427
- "type":"list",
2428
- "member":{
2429
- "shape":"DeferredMaintenanceWindow",
2430
- "locationName":"DeferredMaintenanceWindow"
2431
- }
2432
- },
2433
- "DeleteClusterMessage":{
2434
- "type":"structure",
2435
- "required":["ClusterIdentifier"],
2436
- "members":{
2437
- "ClusterIdentifier":{"shape":"String"},
2438
- "SkipFinalClusterSnapshot":{"shape":"Boolean"},
2439
- "FinalClusterSnapshotIdentifier":{"shape":"String"},
2440
- "FinalClusterSnapshotRetentionPeriod":{"shape":"IntegerOptional"}
2441
- }
2442
- },
2443
- "DeleteClusterParameterGroupMessage":{
2444
- "type":"structure",
2445
- "required":["ParameterGroupName"],
2446
- "members":{
2447
- "ParameterGroupName":{"shape":"String"}
2448
- }
2449
- },
2450
- "DeleteClusterResult":{
2451
- "type":"structure",
2452
- "members":{
2453
- "Cluster":{"shape":"Cluster"}
2454
- }
2455
- },
2456
- "DeleteClusterSecurityGroupMessage":{
2457
- "type":"structure",
2458
- "required":["ClusterSecurityGroupName"],
2459
- "members":{
2460
- "ClusterSecurityGroupName":{"shape":"String"}
2461
- }
2462
- },
2463
- "DeleteClusterSnapshotMessage":{
2464
- "type":"structure",
2465
- "required":["SnapshotIdentifier"],
2466
- "members":{
2467
- "SnapshotIdentifier":{"shape":"String"},
2468
- "SnapshotClusterIdentifier":{"shape":"String"}
2469
- }
2470
- },
2471
- "DeleteClusterSnapshotMessageList":{
2472
- "type":"list",
2473
- "member":{
2474
- "shape":"DeleteClusterSnapshotMessage",
2475
- "locationName":"DeleteClusterSnapshotMessage"
2476
- }
2477
- },
2478
- "DeleteClusterSnapshotResult":{
2479
- "type":"structure",
2480
- "members":{
2481
- "Snapshot":{"shape":"Snapshot"}
2482
- }
2483
- },
2484
- "DeleteClusterSubnetGroupMessage":{
2485
- "type":"structure",
2486
- "required":["ClusterSubnetGroupName"],
2487
- "members":{
2488
- "ClusterSubnetGroupName":{"shape":"String"}
2489
- }
2490
- },
2491
- "DeleteEventSubscriptionMessage":{
2492
- "type":"structure",
2493
- "required":["SubscriptionName"],
2494
- "members":{
2495
- "SubscriptionName":{"shape":"String"}
2496
- }
2497
- },
2498
- "DeleteHsmClientCertificateMessage":{
2499
- "type":"structure",
2500
- "required":["HsmClientCertificateIdentifier"],
2501
- "members":{
2502
- "HsmClientCertificateIdentifier":{"shape":"String"}
2503
- }
2504
- },
2505
- "DeleteHsmConfigurationMessage":{
2506
- "type":"structure",
2507
- "required":["HsmConfigurationIdentifier"],
2508
- "members":{
2509
- "HsmConfigurationIdentifier":{"shape":"String"}
2510
- }
2511
- },
2512
- "DeleteSnapshotCopyGrantMessage":{
2513
- "type":"structure",
2514
- "required":["SnapshotCopyGrantName"],
2515
- "members":{
2516
- "SnapshotCopyGrantName":{"shape":"String"}
2517
- }
2518
- },
2519
- "DeleteSnapshotScheduleMessage":{
2520
- "type":"structure",
2521
- "required":["ScheduleIdentifier"],
2522
- "members":{
2523
- "ScheduleIdentifier":{"shape":"String"}
2524
- }
2525
- },
2526
- "DeleteTagsMessage":{
2527
- "type":"structure",
2528
- "required":[
2529
- "ResourceName",
2530
- "TagKeys"
2531
- ],
2532
- "members":{
2533
- "ResourceName":{"shape":"String"},
2534
- "TagKeys":{"shape":"TagKeyList"}
2535
- }
2536
- },
2537
- "DependentServiceRequestThrottlingFault":{
2538
- "type":"structure",
2539
- "members":{
2540
- },
2541
- "error":{
2542
- "code":"DependentServiceRequestThrottlingFault",
2543
- "httpStatusCode":400,
2544
- "senderFault":true
2545
- },
2546
- "exception":true
2547
- },
2548
- "DependentServiceUnavailableFault":{
2549
- "type":"structure",
2550
- "members":{
2551
- },
2552
- "error":{
2553
- "code":"DependentServiceUnavailableFault",
2554
- "httpStatusCode":400,
2555
- "senderFault":true
2556
- },
2557
- "exception":true
2558
- },
2559
- "DescribeAccountAttributesMessage":{
2560
- "type":"structure",
2561
- "members":{
2562
- "AttributeNames":{"shape":"AttributeNameList"}
2563
- }
2564
- },
2565
- "DescribeClusterDbRevisionsMessage":{
2566
- "type":"structure",
2567
- "members":{
2568
- "ClusterIdentifier":{"shape":"String"},
2569
- "MaxRecords":{"shape":"IntegerOptional"},
2570
- "Marker":{"shape":"String"}
2571
- }
2572
- },
2573
- "DescribeClusterParameterGroupsMessage":{
2574
- "type":"structure",
2575
- "members":{
2576
- "ParameterGroupName":{"shape":"String"},
2577
- "MaxRecords":{"shape":"IntegerOptional"},
2578
- "Marker":{"shape":"String"},
2579
- "TagKeys":{"shape":"TagKeyList"},
2580
- "TagValues":{"shape":"TagValueList"}
2581
- }
2582
- },
2583
- "DescribeClusterParametersMessage":{
2584
- "type":"structure",
2585
- "required":["ParameterGroupName"],
2586
- "members":{
2587
- "ParameterGroupName":{"shape":"String"},
2588
- "Source":{"shape":"String"},
2589
- "MaxRecords":{"shape":"IntegerOptional"},
2590
- "Marker":{"shape":"String"}
2591
- }
2592
- },
2593
- "DescribeClusterSecurityGroupsMessage":{
2594
- "type":"structure",
2595
- "members":{
2596
- "ClusterSecurityGroupName":{"shape":"String"},
2597
- "MaxRecords":{"shape":"IntegerOptional"},
2598
- "Marker":{"shape":"String"},
2599
- "TagKeys":{"shape":"TagKeyList"},
2600
- "TagValues":{"shape":"TagValueList"}
2601
- }
2602
- },
2603
- "DescribeClusterSnapshotsMessage":{
2604
- "type":"structure",
2605
- "members":{
2606
- "ClusterIdentifier":{"shape":"String"},
2607
- "SnapshotIdentifier":{"shape":"String"},
2608
- "SnapshotType":{"shape":"String"},
2609
- "StartTime":{"shape":"TStamp"},
2610
- "EndTime":{"shape":"TStamp"},
2611
- "MaxRecords":{"shape":"IntegerOptional"},
2612
- "Marker":{"shape":"String"},
2613
- "OwnerAccount":{"shape":"String"},
2614
- "TagKeys":{"shape":"TagKeyList"},
2615
- "TagValues":{"shape":"TagValueList"},
2616
- "ClusterExists":{"shape":"BooleanOptional"},
2617
- "SortingEntities":{"shape":"SnapshotSortingEntityList"}
2618
- }
2619
- },
2620
- "DescribeClusterSubnetGroupsMessage":{
2621
- "type":"structure",
2622
- "members":{
2623
- "ClusterSubnetGroupName":{"shape":"String"},
2624
- "MaxRecords":{"shape":"IntegerOptional"},
2625
- "Marker":{"shape":"String"},
2626
- "TagKeys":{"shape":"TagKeyList"},
2627
- "TagValues":{"shape":"TagValueList"}
2628
- }
2629
- },
2630
- "DescribeClusterTracksMessage":{
2631
- "type":"structure",
2632
- "members":{
2633
- "MaintenanceTrackName":{"shape":"String"},
2634
- "MaxRecords":{"shape":"IntegerOptional"},
2635
- "Marker":{"shape":"String"}
2636
- }
2637
- },
2638
- "DescribeClusterVersionsMessage":{
2639
- "type":"structure",
2640
- "members":{
2641
- "ClusterVersion":{"shape":"String"},
2642
- "ClusterParameterGroupFamily":{"shape":"String"},
2643
- "MaxRecords":{"shape":"IntegerOptional"},
2644
- "Marker":{"shape":"String"}
2645
- }
2646
- },
2647
- "DescribeClustersMessage":{
2648
- "type":"structure",
2649
- "members":{
2650
- "ClusterIdentifier":{"shape":"String"},
2651
- "MaxRecords":{"shape":"IntegerOptional"},
2652
- "Marker":{"shape":"String"},
2653
- "TagKeys":{"shape":"TagKeyList"},
2654
- "TagValues":{"shape":"TagValueList"}
2655
- }
2656
- },
2657
- "DescribeDefaultClusterParametersMessage":{
2658
- "type":"structure",
2659
- "required":["ParameterGroupFamily"],
2660
- "members":{
2661
- "ParameterGroupFamily":{"shape":"String"},
2662
- "MaxRecords":{"shape":"IntegerOptional"},
2663
- "Marker":{"shape":"String"}
2664
- }
2665
- },
2666
- "DescribeDefaultClusterParametersResult":{
2667
- "type":"structure",
2668
- "members":{
2669
- "DefaultClusterParameters":{"shape":"DefaultClusterParameters"}
2670
- }
2671
- },
2672
- "DescribeEventCategoriesMessage":{
2673
- "type":"structure",
2674
- "members":{
2675
- "SourceType":{"shape":"String"}
2676
- }
2677
- },
2678
- "DescribeEventSubscriptionsMessage":{
2679
- "type":"structure",
2680
- "members":{
2681
- "SubscriptionName":{"shape":"String"},
2682
- "MaxRecords":{"shape":"IntegerOptional"},
2683
- "Marker":{"shape":"String"},
2684
- "TagKeys":{"shape":"TagKeyList"},
2685
- "TagValues":{"shape":"TagValueList"}
2686
- }
2687
- },
2688
- "DescribeEventsMessage":{
2689
- "type":"structure",
2690
- "members":{
2691
- "SourceIdentifier":{"shape":"String"},
2692
- "SourceType":{"shape":"SourceType"},
2693
- "StartTime":{"shape":"TStamp"},
2694
- "EndTime":{"shape":"TStamp"},
2695
- "Duration":{"shape":"IntegerOptional"},
2696
- "MaxRecords":{"shape":"IntegerOptional"},
2697
- "Marker":{"shape":"String"}
2698
- }
2699
- },
2700
- "DescribeHsmClientCertificatesMessage":{
2701
- "type":"structure",
2702
- "members":{
2703
- "HsmClientCertificateIdentifier":{"shape":"String"},
2704
- "MaxRecords":{"shape":"IntegerOptional"},
2705
- "Marker":{"shape":"String"},
2706
- "TagKeys":{"shape":"TagKeyList"},
2707
- "TagValues":{"shape":"TagValueList"}
2708
- }
2709
- },
2710
- "DescribeHsmConfigurationsMessage":{
2711
- "type":"structure",
2712
- "members":{
2713
- "HsmConfigurationIdentifier":{"shape":"String"},
2714
- "MaxRecords":{"shape":"IntegerOptional"},
2715
- "Marker":{"shape":"String"},
2716
- "TagKeys":{"shape":"TagKeyList"},
2717
- "TagValues":{"shape":"TagValueList"}
2718
- }
2719
- },
2720
- "DescribeLoggingStatusMessage":{
2721
- "type":"structure",
2722
- "required":["ClusterIdentifier"],
2723
- "members":{
2724
- "ClusterIdentifier":{"shape":"String"}
2725
- }
2726
- },
2727
- "DescribeOrderableClusterOptionsMessage":{
2728
- "type":"structure",
2729
- "members":{
2730
- "ClusterVersion":{"shape":"String"},
2731
- "NodeType":{"shape":"String"},
2732
- "MaxRecords":{"shape":"IntegerOptional"},
2733
- "Marker":{"shape":"String"}
2734
- }
2735
- },
2736
- "DescribeReservedNodeOfferingsMessage":{
2737
- "type":"structure",
2738
- "members":{
2739
- "ReservedNodeOfferingId":{"shape":"String"},
2740
- "MaxRecords":{"shape":"IntegerOptional"},
2741
- "Marker":{"shape":"String"}
2742
- }
2743
- },
2744
- "DescribeReservedNodesMessage":{
2745
- "type":"structure",
2746
- "members":{
2747
- "ReservedNodeId":{"shape":"String"},
2748
- "MaxRecords":{"shape":"IntegerOptional"},
2749
- "Marker":{"shape":"String"}
2750
- }
2751
- },
2752
- "DescribeResizeMessage":{
2753
- "type":"structure",
2754
- "required":["ClusterIdentifier"],
2755
- "members":{
2756
- "ClusterIdentifier":{"shape":"String"}
2757
- }
2758
- },
2759
- "DescribeSnapshotCopyGrantsMessage":{
2760
- "type":"structure",
2761
- "members":{
2762
- "SnapshotCopyGrantName":{"shape":"String"},
2763
- "MaxRecords":{"shape":"IntegerOptional"},
2764
- "Marker":{"shape":"String"},
2765
- "TagKeys":{"shape":"TagKeyList"},
2766
- "TagValues":{"shape":"TagValueList"}
2767
- }
2768
- },
2769
- "DescribeSnapshotSchedulesMessage":{
2770
- "type":"structure",
2771
- "members":{
2772
- "ClusterIdentifier":{"shape":"String"},
2773
- "ScheduleIdentifier":{"shape":"String"},
2774
- "TagKeys":{"shape":"TagKeyList"},
2775
- "TagValues":{"shape":"TagValueList"},
2776
- "Marker":{"shape":"String"},
2777
- "MaxRecords":{"shape":"IntegerOptional"}
2778
- }
2779
- },
2780
- "DescribeSnapshotSchedulesOutputMessage":{
2781
- "type":"structure",
2782
- "members":{
2783
- "SnapshotSchedules":{"shape":"SnapshotScheduleList"},
2784
- "Marker":{"shape":"String"}
2785
- }
2786
- },
2787
- "DescribeTableRestoreStatusMessage":{
2788
- "type":"structure",
2789
- "members":{
2790
- "ClusterIdentifier":{"shape":"String"},
2791
- "TableRestoreRequestId":{"shape":"String"},
2792
- "MaxRecords":{"shape":"IntegerOptional"},
2793
- "Marker":{"shape":"String"}
2794
- }
2795
- },
2796
- "DescribeTagsMessage":{
2797
- "type":"structure",
2798
- "members":{
2799
- "ResourceName":{"shape":"String"},
2800
- "ResourceType":{"shape":"String"},
2801
- "MaxRecords":{"shape":"IntegerOptional"},
2802
- "Marker":{"shape":"String"},
2803
- "TagKeys":{"shape":"TagKeyList"},
2804
- "TagValues":{"shape":"TagValueList"}
2805
- }
2806
- },
2807
- "DisableLoggingMessage":{
2808
- "type":"structure",
2809
- "required":["ClusterIdentifier"],
2810
- "members":{
2811
- "ClusterIdentifier":{"shape":"String"}
2812
- }
2813
- },
2814
- "DisableSnapshotCopyMessage":{
2815
- "type":"structure",
2816
- "required":["ClusterIdentifier"],
2817
- "members":{
2818
- "ClusterIdentifier":{"shape":"String"}
2819
- }
2820
- },
2821
- "DisableSnapshotCopyResult":{
2822
- "type":"structure",
2823
- "members":{
2824
- "Cluster":{"shape":"Cluster"}
2825
- }
2826
- },
2827
- "Double":{"type":"double"},
2828
- "DoubleOptional":{"type":"double"},
2829
- "EC2SecurityGroup":{
2830
- "type":"structure",
2831
- "members":{
2832
- "Status":{"shape":"String"},
2833
- "EC2SecurityGroupName":{"shape":"String"},
2834
- "EC2SecurityGroupOwnerId":{"shape":"String"},
2835
- "Tags":{"shape":"TagList"}
2836
- }
2837
- },
2838
- "EC2SecurityGroupList":{
2839
- "type":"list",
2840
- "member":{
2841
- "shape":"EC2SecurityGroup",
2842
- "locationName":"EC2SecurityGroup"
2843
- }
2844
- },
2845
- "ElasticIpStatus":{
2846
- "type":"structure",
2847
- "members":{
2848
- "ElasticIp":{"shape":"String"},
2849
- "Status":{"shape":"String"}
2850
- }
2851
- },
2852
- "EligibleTracksToUpdateList":{
2853
- "type":"list",
2854
- "member":{
2855
- "shape":"UpdateTarget",
2856
- "locationName":"UpdateTarget"
2857
- }
2858
- },
2859
- "EnableLoggingMessage":{
2860
- "type":"structure",
2861
- "required":[
2862
- "ClusterIdentifier",
2863
- "BucketName"
2864
- ],
2865
- "members":{
2866
- "ClusterIdentifier":{"shape":"String"},
2867
- "BucketName":{"shape":"String"},
2868
- "S3KeyPrefix":{"shape":"String"}
2869
- }
2870
- },
2871
- "EnableSnapshotCopyMessage":{
2872
- "type":"structure",
2873
- "required":[
2874
- "ClusterIdentifier",
2875
- "DestinationRegion"
2876
- ],
2877
- "members":{
2878
- "ClusterIdentifier":{"shape":"String"},
2879
- "DestinationRegion":{"shape":"String"},
2880
- "RetentionPeriod":{"shape":"IntegerOptional"},
2881
- "SnapshotCopyGrantName":{"shape":"String"},
2882
- "ManualSnapshotRetentionPeriod":{"shape":"IntegerOptional"}
2883
- }
2884
- },
2885
- "EnableSnapshotCopyResult":{
2886
- "type":"structure",
2887
- "members":{
2888
- "Cluster":{"shape":"Cluster"}
2889
- }
2890
- },
2891
- "Endpoint":{
2892
- "type":"structure",
2893
- "members":{
2894
- "Address":{"shape":"String"},
2895
- "Port":{"shape":"Integer"}
2896
- }
2897
- },
2898
- "Event":{
2899
- "type":"structure",
2900
- "members":{
2901
- "SourceIdentifier":{"shape":"String"},
2902
- "SourceType":{"shape":"SourceType"},
2903
- "Message":{"shape":"String"},
2904
- "EventCategories":{"shape":"EventCategoriesList"},
2905
- "Severity":{"shape":"String"},
2906
- "Date":{"shape":"TStamp"},
2907
- "EventId":{"shape":"String"}
2908
- }
2909
- },
2910
- "EventCategoriesList":{
2911
- "type":"list",
2912
- "member":{
2913
- "shape":"String",
2914
- "locationName":"EventCategory"
2915
- }
2916
- },
2917
- "EventCategoriesMap":{
2918
- "type":"structure",
2919
- "members":{
2920
- "SourceType":{"shape":"String"},
2921
- "Events":{"shape":"EventInfoMapList"}
2922
- },
2923
- "wrapper":true
2924
- },
2925
- "EventCategoriesMapList":{
2926
- "type":"list",
2927
- "member":{
2928
- "shape":"EventCategoriesMap",
2929
- "locationName":"EventCategoriesMap"
2930
- }
2931
- },
2932
- "EventCategoriesMessage":{
2933
- "type":"structure",
2934
- "members":{
2935
- "EventCategoriesMapList":{"shape":"EventCategoriesMapList"}
2936
- }
2937
- },
2938
- "EventInfoMap":{
2939
- "type":"structure",
2940
- "members":{
2941
- "EventId":{"shape":"String"},
2942
- "EventCategories":{"shape":"EventCategoriesList"},
2943
- "EventDescription":{"shape":"String"},
2944
- "Severity":{"shape":"String"}
2945
- },
2946
- "wrapper":true
2947
- },
2948
- "EventInfoMapList":{
2949
- "type":"list",
2950
- "member":{
2951
- "shape":"EventInfoMap",
2952
- "locationName":"EventInfoMap"
2953
- }
2954
- },
2955
- "EventList":{
2956
- "type":"list",
2957
- "member":{
2958
- "shape":"Event",
2959
- "locationName":"Event"
2960
- }
2961
- },
2962
- "EventSubscription":{
2963
- "type":"structure",
2964
- "members":{
2965
- "CustomerAwsId":{"shape":"String"},
2966
- "CustSubscriptionId":{"shape":"String"},
2967
- "SnsTopicArn":{"shape":"String"},
2968
- "Status":{"shape":"String"},
2969
- "SubscriptionCreationTime":{"shape":"TStamp"},
2970
- "SourceType":{"shape":"String"},
2971
- "SourceIdsList":{"shape":"SourceIdsList"},
2972
- "EventCategoriesList":{"shape":"EventCategoriesList"},
2973
- "Severity":{"shape":"String"},
2974
- "Enabled":{"shape":"Boolean"},
2975
- "Tags":{"shape":"TagList"}
2976
- },
2977
- "wrapper":true
2978
- },
2979
- "EventSubscriptionQuotaExceededFault":{
2980
- "type":"structure",
2981
- "members":{
2982
- },
2983
- "error":{
2984
- "code":"EventSubscriptionQuotaExceeded",
2985
- "httpStatusCode":400,
2986
- "senderFault":true
2987
- },
2988
- "exception":true
2989
- },
2990
- "EventSubscriptionsList":{
2991
- "type":"list",
2992
- "member":{
2993
- "shape":"EventSubscription",
2994
- "locationName":"EventSubscription"
2995
- }
2996
- },
2997
- "EventSubscriptionsMessage":{
2998
- "type":"structure",
2999
- "members":{
3000
- "Marker":{"shape":"String"},
3001
- "EventSubscriptionsList":{"shape":"EventSubscriptionsList"}
3002
- }
3003
- },
3004
- "EventsMessage":{
3005
- "type":"structure",
3006
- "members":{
3007
- "Marker":{"shape":"String"},
3008
- "Events":{"shape":"EventList"}
3009
- }
3010
- },
3011
- "GetClusterCredentialsMessage":{
3012
- "type":"structure",
3013
- "required":[
3014
- "DbUser",
3015
- "ClusterIdentifier"
3016
- ],
3017
- "members":{
3018
- "DbUser":{"shape":"String"},
3019
- "DbName":{"shape":"String"},
3020
- "ClusterIdentifier":{"shape":"String"},
3021
- "DurationSeconds":{"shape":"IntegerOptional"},
3022
- "AutoCreate":{"shape":"BooleanOptional"},
3023
- "DbGroups":{"shape":"DbGroupList"}
3024
- }
3025
- },
3026
- "GetReservedNodeExchangeOfferingsInputMessage":{
3027
- "type":"structure",
3028
- "required":["ReservedNodeId"],
3029
- "members":{
3030
- "ReservedNodeId":{"shape":"String"},
3031
- "MaxRecords":{"shape":"IntegerOptional"},
3032
- "Marker":{"shape":"String"}
3033
- }
3034
- },
3035
- "GetReservedNodeExchangeOfferingsOutputMessage":{
3036
- "type":"structure",
3037
- "members":{
3038
- "Marker":{"shape":"String"},
3039
- "ReservedNodeOfferings":{"shape":"ReservedNodeOfferingList"}
3040
- }
3041
- },
3042
- "HsmClientCertificate":{
3043
- "type":"structure",
3044
- "members":{
3045
- "HsmClientCertificateIdentifier":{"shape":"String"},
3046
- "HsmClientCertificatePublicKey":{"shape":"String"},
3047
- "Tags":{"shape":"TagList"}
3048
- },
3049
- "wrapper":true
3050
- },
3051
- "HsmClientCertificateAlreadyExistsFault":{
3052
- "type":"structure",
3053
- "members":{
3054
- },
3055
- "error":{
3056
- "code":"HsmClientCertificateAlreadyExistsFault",
3057
- "httpStatusCode":400,
3058
- "senderFault":true
3059
- },
3060
- "exception":true
3061
- },
3062
- "HsmClientCertificateList":{
3063
- "type":"list",
3064
- "member":{
3065
- "shape":"HsmClientCertificate",
3066
- "locationName":"HsmClientCertificate"
3067
- }
3068
- },
3069
- "HsmClientCertificateMessage":{
3070
- "type":"structure",
3071
- "members":{
3072
- "Marker":{"shape":"String"},
3073
- "HsmClientCertificates":{"shape":"HsmClientCertificateList"}
3074
- }
3075
- },
3076
- "HsmClientCertificateNotFoundFault":{
3077
- "type":"structure",
3078
- "members":{
3079
- },
3080
- "error":{
3081
- "code":"HsmClientCertificateNotFoundFault",
3082
- "httpStatusCode":400,
3083
- "senderFault":true
3084
- },
3085
- "exception":true
3086
- },
3087
- "HsmClientCertificateQuotaExceededFault":{
3088
- "type":"structure",
3089
- "members":{
3090
- },
3091
- "error":{
3092
- "code":"HsmClientCertificateQuotaExceededFault",
3093
- "httpStatusCode":400,
3094
- "senderFault":true
3095
- },
3096
- "exception":true
3097
- },
3098
- "HsmConfiguration":{
3099
- "type":"structure",
3100
- "members":{
3101
- "HsmConfigurationIdentifier":{"shape":"String"},
3102
- "Description":{"shape":"String"},
3103
- "HsmIpAddress":{"shape":"String"},
3104
- "HsmPartitionName":{"shape":"String"},
3105
- "Tags":{"shape":"TagList"}
3106
- },
3107
- "wrapper":true
3108
- },
3109
- "HsmConfigurationAlreadyExistsFault":{
3110
- "type":"structure",
3111
- "members":{
3112
- },
3113
- "error":{
3114
- "code":"HsmConfigurationAlreadyExistsFault",
3115
- "httpStatusCode":400,
3116
- "senderFault":true
3117
- },
3118
- "exception":true
3119
- },
3120
- "HsmConfigurationList":{
3121
- "type":"list",
3122
- "member":{
3123
- "shape":"HsmConfiguration",
3124
- "locationName":"HsmConfiguration"
3125
- }
3126
- },
3127
- "HsmConfigurationMessage":{
3128
- "type":"structure",
3129
- "members":{
3130
- "Marker":{"shape":"String"},
3131
- "HsmConfigurations":{"shape":"HsmConfigurationList"}
3132
- }
3133
- },
3134
- "HsmConfigurationNotFoundFault":{
3135
- "type":"structure",
3136
- "members":{
3137
- },
3138
- "error":{
3139
- "code":"HsmConfigurationNotFoundFault",
3140
- "httpStatusCode":400,
3141
- "senderFault":true
3142
- },
3143
- "exception":true
3144
- },
3145
- "HsmConfigurationQuotaExceededFault":{
3146
- "type":"structure",
3147
- "members":{
3148
- },
3149
- "error":{
3150
- "code":"HsmConfigurationQuotaExceededFault",
3151
- "httpStatusCode":400,
3152
- "senderFault":true
3153
- },
3154
- "exception":true
3155
- },
3156
- "HsmStatus":{
3157
- "type":"structure",
3158
- "members":{
3159
- "HsmClientCertificateIdentifier":{"shape":"String"},
3160
- "HsmConfigurationIdentifier":{"shape":"String"},
3161
- "Status":{"shape":"String"}
3162
- }
3163
- },
3164
- "IPRange":{
3165
- "type":"structure",
3166
- "members":{
3167
- "Status":{"shape":"String"},
3168
- "CIDRIP":{"shape":"String"},
3169
- "Tags":{"shape":"TagList"}
3170
- }
3171
- },
3172
- "IPRangeList":{
3173
- "type":"list",
3174
- "member":{
3175
- "shape":"IPRange",
3176
- "locationName":"IPRange"
3177
- }
3178
- },
3179
- "IamRoleArnList":{
3180
- "type":"list",
3181
- "member":{
3182
- "shape":"String",
3183
- "locationName":"IamRoleArn"
3184
- }
3185
- },
3186
- "ImportTablesCompleted":{
3187
- "type":"list",
3188
- "member":{"shape":"String"}
3189
- },
3190
- "ImportTablesInProgress":{
3191
- "type":"list",
3192
- "member":{"shape":"String"}
3193
- },
3194
- "ImportTablesNotStarted":{
3195
- "type":"list",
3196
- "member":{"shape":"String"}
3197
- },
3198
- "InProgressTableRestoreQuotaExceededFault":{
3199
- "type":"structure",
3200
- "members":{
3201
- },
3202
- "error":{
3203
- "code":"InProgressTableRestoreQuotaExceededFault",
3204
- "httpStatusCode":400,
3205
- "senderFault":true
3206
- },
3207
- "exception":true
3208
- },
3209
- "IncompatibleOrderableOptions":{
3210
- "type":"structure",
3211
- "members":{
3212
- },
3213
- "error":{
3214
- "code":"IncompatibleOrderableOptions",
3215
- "httpStatusCode":400,
3216
- "senderFault":true
3217
- },
3218
- "exception":true
3219
- },
3220
- "InsufficientClusterCapacityFault":{
3221
- "type":"structure",
3222
- "members":{
3223
- },
3224
- "error":{
3225
- "code":"InsufficientClusterCapacity",
3226
- "httpStatusCode":400,
3227
- "senderFault":true
3228
- },
3229
- "exception":true
3230
- },
3231
- "InsufficientS3BucketPolicyFault":{
3232
- "type":"structure",
3233
- "members":{
3234
- },
3235
- "error":{
3236
- "code":"InsufficientS3BucketPolicyFault",
3237
- "httpStatusCode":400,
3238
- "senderFault":true
3239
- },
3240
- "exception":true
3241
- },
3242
- "Integer":{"type":"integer"},
3243
- "IntegerOptional":{"type":"integer"},
3244
- "InvalidClusterParameterGroupStateFault":{
3245
- "type":"structure",
3246
- "members":{
3247
- },
3248
- "error":{
3249
- "code":"InvalidClusterParameterGroupState",
3250
- "httpStatusCode":400,
3251
- "senderFault":true
3252
- },
3253
- "exception":true
3254
- },
3255
- "InvalidClusterSecurityGroupStateFault":{
3256
- "type":"structure",
3257
- "members":{
3258
- },
3259
- "error":{
3260
- "code":"InvalidClusterSecurityGroupState",
3261
- "httpStatusCode":400,
3262
- "senderFault":true
3263
- },
3264
- "exception":true
3265
- },
3266
- "InvalidClusterSnapshotScheduleStateFault":{
3267
- "type":"structure",
3268
- "members":{
3269
- },
3270
- "error":{
3271
- "code":"InvalidClusterSnapshotScheduleState",
3272
- "httpStatusCode":400,
3273
- "senderFault":true
3274
- },
3275
- "exception":true
3276
- },
3277
- "InvalidClusterSnapshotStateFault":{
3278
- "type":"structure",
3279
- "members":{
3280
- },
3281
- "error":{
3282
- "code":"InvalidClusterSnapshotState",
3283
- "httpStatusCode":400,
3284
- "senderFault":true
3285
- },
3286
- "exception":true
3287
- },
3288
- "InvalidClusterStateFault":{
3289
- "type":"structure",
3290
- "members":{
3291
- },
3292
- "error":{
3293
- "code":"InvalidClusterState",
3294
- "httpStatusCode":400,
3295
- "senderFault":true
3296
- },
3297
- "exception":true
3298
- },
3299
- "InvalidClusterSubnetGroupStateFault":{
3300
- "type":"structure",
3301
- "members":{
3302
- },
3303
- "error":{
3304
- "code":"InvalidClusterSubnetGroupStateFault",
3305
- "httpStatusCode":400,
3306
- "senderFault":true
3307
- },
3308
- "exception":true
3309
- },
3310
- "InvalidClusterSubnetStateFault":{
3311
- "type":"structure",
3312
- "members":{
3313
- },
3314
- "error":{
3315
- "code":"InvalidClusterSubnetStateFault",
3316
- "httpStatusCode":400,
3317
- "senderFault":true
3318
- },
3319
- "exception":true
3320
- },
3321
- "InvalidClusterTrackFault":{
3322
- "type":"structure",
3323
- "members":{
3324
- },
3325
- "error":{
3326
- "code":"InvalidClusterTrack",
3327
- "httpStatusCode":400,
3328
- "senderFault":true
3329
- },
3330
- "exception":true
3331
- },
3332
- "InvalidElasticIpFault":{
3333
- "type":"structure",
3334
- "members":{
3335
- },
3336
- "error":{
3337
- "code":"InvalidElasticIpFault",
3338
- "httpStatusCode":400,
3339
- "senderFault":true
3340
- },
3341
- "exception":true
3342
- },
3343
- "InvalidHsmClientCertificateStateFault":{
3344
- "type":"structure",
3345
- "members":{
3346
- },
3347
- "error":{
3348
- "code":"InvalidHsmClientCertificateStateFault",
3349
- "httpStatusCode":400,
3350
- "senderFault":true
3351
- },
3352
- "exception":true
3353
- },
3354
- "InvalidHsmConfigurationStateFault":{
3355
- "type":"structure",
3356
- "members":{
3357
- },
3358
- "error":{
3359
- "code":"InvalidHsmConfigurationStateFault",
3360
- "httpStatusCode":400,
3361
- "senderFault":true
3362
- },
3363
- "exception":true
3364
- },
3365
- "InvalidReservedNodeStateFault":{
3366
- "type":"structure",
3367
- "members":{
3368
- },
3369
- "error":{
3370
- "code":"InvalidReservedNodeState",
3371
- "httpStatusCode":400,
3372
- "senderFault":true
3373
- },
3374
- "exception":true
3375
- },
3376
- "InvalidRestoreFault":{
3377
- "type":"structure",
3378
- "members":{
3379
- },
3380
- "error":{
3381
- "code":"InvalidRestore",
3382
- "httpStatusCode":406,
3383
- "senderFault":true
3384
- },
3385
- "exception":true
3386
- },
3387
- "InvalidRetentionPeriodFault":{
3388
- "type":"structure",
3389
- "members":{
3390
- },
3391
- "error":{
3392
- "code":"InvalidRetentionPeriodFault",
3393
- "httpStatusCode":400,
3394
- "senderFault":true
3395
- },
3396
- "exception":true
3397
- },
3398
- "InvalidS3BucketNameFault":{
3399
- "type":"structure",
3400
- "members":{
3401
- },
3402
- "error":{
3403
- "code":"InvalidS3BucketNameFault",
3404
- "httpStatusCode":400,
3405
- "senderFault":true
3406
- },
3407
- "exception":true
3408
- },
3409
- "InvalidS3KeyPrefixFault":{
3410
- "type":"structure",
3411
- "members":{
3412
- },
3413
- "error":{
3414
- "code":"InvalidS3KeyPrefixFault",
3415
- "httpStatusCode":400,
3416
- "senderFault":true
3417
- },
3418
- "exception":true
3419
- },
3420
- "InvalidScheduleFault":{
3421
- "type":"structure",
3422
- "members":{
3423
- },
3424
- "error":{
3425
- "code":"InvalidSchedule",
3426
- "httpStatusCode":400,
3427
- "senderFault":true
3428
- },
3429
- "exception":true
3430
- },
3431
- "InvalidSnapshotCopyGrantStateFault":{
3432
- "type":"structure",
3433
- "members":{
3434
- },
3435
- "error":{
3436
- "code":"InvalidSnapshotCopyGrantStateFault",
3437
- "httpStatusCode":400,
3438
- "senderFault":true
3439
- },
3440
- "exception":true
3441
- },
3442
- "InvalidSubnet":{
3443
- "type":"structure",
3444
- "members":{
3445
- },
3446
- "error":{
3447
- "code":"InvalidSubnet",
3448
- "httpStatusCode":400,
3449
- "senderFault":true
3450
- },
3451
- "exception":true
3452
- },
3453
- "InvalidSubscriptionStateFault":{
3454
- "type":"structure",
3455
- "members":{
3456
- },
3457
- "error":{
3458
- "code":"InvalidSubscriptionStateFault",
3459
- "httpStatusCode":400,
3460
- "senderFault":true
3461
- },
3462
- "exception":true
3463
- },
3464
- "InvalidTableRestoreArgumentFault":{
3465
- "type":"structure",
3466
- "members":{
3467
- },
3468
- "error":{
3469
- "code":"InvalidTableRestoreArgument",
3470
- "httpStatusCode":400,
3471
- "senderFault":true
3472
- },
3473
- "exception":true
3474
- },
3475
- "InvalidTagFault":{
3476
- "type":"structure",
3477
- "members":{
3478
- },
3479
- "error":{
3480
- "code":"InvalidTagFault",
3481
- "httpStatusCode":400,
3482
- "senderFault":true
3483
- },
3484
- "exception":true
3485
- },
3486
- "InvalidVPCNetworkStateFault":{
3487
- "type":"structure",
3488
- "members":{
3489
- },
3490
- "error":{
3491
- "code":"InvalidVPCNetworkStateFault",
3492
- "httpStatusCode":400,
3493
- "senderFault":true
3494
- },
3495
- "exception":true
3496
- },
3497
- "LimitExceededFault":{
3498
- "type":"structure",
3499
- "members":{
3500
- },
3501
- "error":{
3502
- "code":"LimitExceededFault",
3503
- "httpStatusCode":400,
3504
- "senderFault":true
3505
- },
3506
- "exception":true
3507
- },
3508
- "LoggingStatus":{
3509
- "type":"structure",
3510
- "members":{
3511
- "LoggingEnabled":{"shape":"Boolean"},
3512
- "BucketName":{"shape":"String"},
3513
- "S3KeyPrefix":{"shape":"String"},
3514
- "LastSuccessfulDeliveryTime":{"shape":"TStamp"},
3515
- "LastFailureTime":{"shape":"TStamp"},
3516
- "LastFailureMessage":{"shape":"String"}
3517
- }
3518
- },
3519
- "Long":{"type":"long"},
3520
- "LongOptional":{"type":"long"},
3521
- "MaintenanceTrack":{
3522
- "type":"structure",
3523
- "members":{
3524
- "MaintenanceTrackName":{"shape":"String"},
3525
- "DatabaseVersion":{"shape":"String"},
3526
- "UpdateTargets":{"shape":"EligibleTracksToUpdateList"}
3527
- }
3528
- },
3529
- "ModifyClusterDbRevisionMessage":{
3530
- "type":"structure",
3531
- "required":[
3532
- "ClusterIdentifier",
3533
- "RevisionTarget"
3534
- ],
3535
- "members":{
3536
- "ClusterIdentifier":{"shape":"String"},
3537
- "RevisionTarget":{"shape":"String"}
3538
- }
3539
- },
3540
- "ModifyClusterDbRevisionResult":{
3541
- "type":"structure",
3542
- "members":{
3543
- "Cluster":{"shape":"Cluster"}
3544
- }
3545
- },
3546
- "ModifyClusterIamRolesMessage":{
3547
- "type":"structure",
3548
- "required":["ClusterIdentifier"],
3549
- "members":{
3550
- "ClusterIdentifier":{"shape":"String"},
3551
- "AddIamRoles":{"shape":"IamRoleArnList"},
3552
- "RemoveIamRoles":{"shape":"IamRoleArnList"}
3553
- }
3554
- },
3555
- "ModifyClusterIamRolesResult":{
3556
- "type":"structure",
3557
- "members":{
3558
- "Cluster":{"shape":"Cluster"}
3559
- }
3560
- },
3561
- "ModifyClusterMaintenanceMessage":{
3562
- "type":"structure",
3563
- "required":["ClusterIdentifier"],
3564
- "members":{
3565
- "ClusterIdentifier":{"shape":"String"},
3566
- "DeferMaintenance":{"shape":"BooleanOptional"},
3567
- "DeferMaintenanceIdentifier":{"shape":"String"},
3568
- "DeferMaintenanceStartTime":{"shape":"TStamp"},
3569
- "DeferMaintenanceEndTime":{"shape":"TStamp"},
3570
- "DeferMaintenanceDuration":{"shape":"IntegerOptional"}
3571
- }
3572
- },
3573
- "ModifyClusterMaintenanceResult":{
3574
- "type":"structure",
3575
- "members":{
3576
- "Cluster":{"shape":"Cluster"}
3577
- }
3578
- },
3579
- "ModifyClusterMessage":{
3580
- "type":"structure",
3581
- "required":["ClusterIdentifier"],
3582
- "members":{
3583
- "ClusterIdentifier":{"shape":"String"},
3584
- "ClusterType":{"shape":"String"},
3585
- "NodeType":{"shape":"String"},
3586
- "NumberOfNodes":{"shape":"IntegerOptional"},
3587
- "ClusterSecurityGroups":{"shape":"ClusterSecurityGroupNameList"},
3588
- "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"},
3589
- "MasterUserPassword":{"shape":"String"},
3590
- "ClusterParameterGroupName":{"shape":"String"},
3591
- "AutomatedSnapshotRetentionPeriod":{"shape":"IntegerOptional"},
3592
- "ManualSnapshotRetentionPeriod":{"shape":"IntegerOptional"},
3593
- "PreferredMaintenanceWindow":{"shape":"String"},
3594
- "ClusterVersion":{"shape":"String"},
3595
- "AllowVersionUpgrade":{"shape":"BooleanOptional"},
3596
- "HsmClientCertificateIdentifier":{"shape":"String"},
3597
- "HsmConfigurationIdentifier":{"shape":"String"},
3598
- "NewClusterIdentifier":{"shape":"String"},
3599
- "PubliclyAccessible":{"shape":"BooleanOptional"},
3600
- "ElasticIp":{"shape":"String"},
3601
- "EnhancedVpcRouting":{"shape":"BooleanOptional"},
3602
- "MaintenanceTrackName":{"shape":"String"},
3603
- "Encrypted":{"shape":"BooleanOptional"},
3604
- "KmsKeyId":{"shape":"String"}
3605
- }
3606
- },
3607
- "ModifyClusterParameterGroupMessage":{
3608
- "type":"structure",
3609
- "required":[
3610
- "ParameterGroupName",
3611
- "Parameters"
3612
- ],
3613
- "members":{
3614
- "ParameterGroupName":{"shape":"String"},
3615
- "Parameters":{"shape":"ParametersList"}
3616
- }
3617
- },
3618
- "ModifyClusterResult":{
3619
- "type":"structure",
3620
- "members":{
3621
- "Cluster":{"shape":"Cluster"}
3622
- }
3623
- },
3624
- "ModifyClusterSnapshotMessage":{
3625
- "type":"structure",
3626
- "required":["SnapshotIdentifier"],
3627
- "members":{
3628
- "SnapshotIdentifier":{"shape":"String"},
3629
- "ManualSnapshotRetentionPeriod":{"shape":"IntegerOptional"},
3630
- "Force":{"shape":"Boolean"}
3631
- }
3632
- },
3633
- "ModifyClusterSnapshotResult":{
3634
- "type":"structure",
3635
- "members":{
3636
- "Snapshot":{"shape":"Snapshot"}
3637
- }
3638
- },
3639
- "ModifyClusterSnapshotScheduleMessage":{
3640
- "type":"structure",
3641
- "required":["ClusterIdentifier"],
3642
- "members":{
3643
- "ClusterIdentifier":{"shape":"String"},
3644
- "ScheduleIdentifier":{"shape":"String"},
3645
- "DisassociateSchedule":{"shape":"BooleanOptional"}
3646
- }
3647
- },
3648
- "ModifyClusterSubnetGroupMessage":{
3649
- "type":"structure",
3650
- "required":[
3651
- "ClusterSubnetGroupName",
3652
- "SubnetIds"
3653
- ],
3654
- "members":{
3655
- "ClusterSubnetGroupName":{"shape":"String"},
3656
- "Description":{"shape":"String"},
3657
- "SubnetIds":{"shape":"SubnetIdentifierList"}
3658
- }
3659
- },
3660
- "ModifyClusterSubnetGroupResult":{
3661
- "type":"structure",
3662
- "members":{
3663
- "ClusterSubnetGroup":{"shape":"ClusterSubnetGroup"}
3664
- }
3665
- },
3666
- "ModifyEventSubscriptionMessage":{
3667
- "type":"structure",
3668
- "required":["SubscriptionName"],
3669
- "members":{
3670
- "SubscriptionName":{"shape":"String"},
3671
- "SnsTopicArn":{"shape":"String"},
3672
- "SourceType":{"shape":"String"},
3673
- "SourceIds":{"shape":"SourceIdsList"},
3674
- "EventCategories":{"shape":"EventCategoriesList"},
3675
- "Severity":{"shape":"String"},
3676
- "Enabled":{"shape":"BooleanOptional"}
3677
- }
3678
- },
3679
- "ModifyEventSubscriptionResult":{
3680
- "type":"structure",
3681
- "members":{
3682
- "EventSubscription":{"shape":"EventSubscription"}
3683
- }
3684
- },
3685
- "ModifySnapshotCopyRetentionPeriodMessage":{
3686
- "type":"structure",
3687
- "required":[
3688
- "ClusterIdentifier",
3689
- "RetentionPeriod"
3690
- ],
3691
- "members":{
3692
- "ClusterIdentifier":{"shape":"String"},
3693
- "RetentionPeriod":{"shape":"Integer"},
3694
- "Manual":{"shape":"Boolean"}
3695
- }
3696
- },
3697
- "ModifySnapshotCopyRetentionPeriodResult":{
3698
- "type":"structure",
3699
- "members":{
3700
- "Cluster":{"shape":"Cluster"}
3701
- }
3702
- },
3703
- "ModifySnapshotScheduleMessage":{
3704
- "type":"structure",
3705
- "required":[
3706
- "ScheduleIdentifier",
3707
- "ScheduleDefinitions"
3708
- ],
3709
- "members":{
3710
- "ScheduleIdentifier":{"shape":"String"},
3711
- "ScheduleDefinitions":{"shape":"ScheduleDefinitionList"}
3712
- }
3713
- },
3714
- "NumberOfNodesPerClusterLimitExceededFault":{
3715
- "type":"structure",
3716
- "members":{
3717
- },
3718
- "error":{
3719
- "code":"NumberOfNodesPerClusterLimitExceeded",
3720
- "httpStatusCode":400,
3721
- "senderFault":true
3722
- },
3723
- "exception":true
3724
- },
3725
- "NumberOfNodesQuotaExceededFault":{
3726
- "type":"structure",
3727
- "members":{
3728
- },
3729
- "error":{
3730
- "code":"NumberOfNodesQuotaExceeded",
3731
- "httpStatusCode":400,
3732
- "senderFault":true
3733
- },
3734
- "exception":true
3735
- },
3736
- "OrderableClusterOption":{
3737
- "type":"structure",
3738
- "members":{
3739
- "ClusterVersion":{"shape":"String"},
3740
- "ClusterType":{"shape":"String"},
3741
- "NodeType":{"shape":"String"},
3742
- "AvailabilityZones":{"shape":"AvailabilityZoneList"}
3743
- },
3744
- "wrapper":true
3745
- },
3746
- "OrderableClusterOptionsList":{
3747
- "type":"list",
3748
- "member":{
3749
- "shape":"OrderableClusterOption",
3750
- "locationName":"OrderableClusterOption"
3751
- }
3752
- },
3753
- "OrderableClusterOptionsMessage":{
3754
- "type":"structure",
3755
- "members":{
3756
- "OrderableClusterOptions":{"shape":"OrderableClusterOptionsList"},
3757
- "Marker":{"shape":"String"}
3758
- }
3759
- },
3760
- "Parameter":{
3761
- "type":"structure",
3762
- "members":{
3763
- "ParameterName":{"shape":"String"},
3764
- "ParameterValue":{"shape":"String"},
3765
- "Description":{"shape":"String"},
3766
- "Source":{"shape":"String"},
3767
- "DataType":{"shape":"String"},
3768
- "AllowedValues":{"shape":"String"},
3769
- "ApplyType":{"shape":"ParameterApplyType"},
3770
- "IsModifiable":{"shape":"Boolean"},
3771
- "MinimumEngineVersion":{"shape":"String"}
3772
- }
3773
- },
3774
- "ParameterApplyType":{
3775
- "type":"string",
3776
- "enum":[
3777
- "static",
3778
- "dynamic"
3779
- ]
3780
- },
3781
- "ParameterGroupList":{
3782
- "type":"list",
3783
- "member":{
3784
- "shape":"ClusterParameterGroup",
3785
- "locationName":"ClusterParameterGroup"
3786
- }
3787
- },
3788
- "ParametersList":{
3789
- "type":"list",
3790
- "member":{
3791
- "shape":"Parameter",
3792
- "locationName":"Parameter"
3793
- }
3794
- },
3795
- "PendingActionsList":{
3796
- "type":"list",
3797
- "member":{"shape":"String"}
3798
- },
3799
- "PendingModifiedValues":{
3800
- "type":"structure",
3801
- "members":{
3802
- "MasterUserPassword":{"shape":"String"},
3803
- "NodeType":{"shape":"String"},
3804
- "NumberOfNodes":{"shape":"IntegerOptional"},
3805
- "ClusterType":{"shape":"String"},
3806
- "ClusterVersion":{"shape":"String"},
3807
- "AutomatedSnapshotRetentionPeriod":{"shape":"IntegerOptional"},
3808
- "ClusterIdentifier":{"shape":"String"},
3809
- "PubliclyAccessible":{"shape":"BooleanOptional"},
3810
- "EnhancedVpcRouting":{"shape":"BooleanOptional"},
3811
- "MaintenanceTrackName":{"shape":"String"},
3812
- "EncryptionType":{"shape":"String"}
3813
- }
3814
- },
3815
- "PurchaseReservedNodeOfferingMessage":{
3816
- "type":"structure",
3817
- "required":["ReservedNodeOfferingId"],
3818
- "members":{
3819
- "ReservedNodeOfferingId":{"shape":"String"},
3820
- "NodeCount":{"shape":"IntegerOptional"}
3821
- }
3822
- },
3823
- "PurchaseReservedNodeOfferingResult":{
3824
- "type":"structure",
3825
- "members":{
3826
- "ReservedNode":{"shape":"ReservedNode"}
3827
- }
3828
- },
3829
- "RebootClusterMessage":{
3830
- "type":"structure",
3831
- "required":["ClusterIdentifier"],
3832
- "members":{
3833
- "ClusterIdentifier":{"shape":"String"}
3834
- }
3835
- },
3836
- "RebootClusterResult":{
3837
- "type":"structure",
3838
- "members":{
3839
- "Cluster":{"shape":"Cluster"}
3840
- }
3841
- },
3842
- "RecurringCharge":{
3843
- "type":"structure",
3844
- "members":{
3845
- "RecurringChargeAmount":{"shape":"Double"},
3846
- "RecurringChargeFrequency":{"shape":"String"}
3847
- },
3848
- "wrapper":true
3849
- },
3850
- "RecurringChargeList":{
3851
- "type":"list",
3852
- "member":{
3853
- "shape":"RecurringCharge",
3854
- "locationName":"RecurringCharge"
3855
- }
3856
- },
3857
- "ReservedNode":{
3858
- "type":"structure",
3859
- "members":{
3860
- "ReservedNodeId":{"shape":"String"},
3861
- "ReservedNodeOfferingId":{"shape":"String"},
3862
- "NodeType":{"shape":"String"},
3863
- "StartTime":{"shape":"TStamp"},
3864
- "Duration":{"shape":"Integer"},
3865
- "FixedPrice":{"shape":"Double"},
3866
- "UsagePrice":{"shape":"Double"},
3867
- "CurrencyCode":{"shape":"String"},
3868
- "NodeCount":{"shape":"Integer"},
3869
- "State":{"shape":"String"},
3870
- "OfferingType":{"shape":"String"},
3871
- "RecurringCharges":{"shape":"RecurringChargeList"},
3872
- "ReservedNodeOfferingType":{"shape":"ReservedNodeOfferingType"}
3873
- },
3874
- "wrapper":true
3875
- },
3876
- "ReservedNodeAlreadyExistsFault":{
3877
- "type":"structure",
3878
- "members":{
3879
- },
3880
- "error":{
3881
- "code":"ReservedNodeAlreadyExists",
3882
- "httpStatusCode":404,
3883
- "senderFault":true
3884
- },
3885
- "exception":true
3886
- },
3887
- "ReservedNodeAlreadyMigratedFault":{
3888
- "type":"structure",
3889
- "members":{
3890
- },
3891
- "error":{
3892
- "code":"ReservedNodeAlreadyMigrated",
3893
- "httpStatusCode":400,
3894
- "senderFault":true
3895
- },
3896
- "exception":true
3897
- },
3898
- "ReservedNodeList":{
3899
- "type":"list",
3900
- "member":{
3901
- "shape":"ReservedNode",
3902
- "locationName":"ReservedNode"
3903
- }
3904
- },
3905
- "ReservedNodeNotFoundFault":{
3906
- "type":"structure",
3907
- "members":{
3908
- },
3909
- "error":{
3910
- "code":"ReservedNodeNotFound",
3911
- "httpStatusCode":404,
3912
- "senderFault":true
3913
- },
3914
- "exception":true
3915
- },
3916
- "ReservedNodeOffering":{
3917
- "type":"structure",
3918
- "members":{
3919
- "ReservedNodeOfferingId":{"shape":"String"},
3920
- "NodeType":{"shape":"String"},
3921
- "Duration":{"shape":"Integer"},
3922
- "FixedPrice":{"shape":"Double"},
3923
- "UsagePrice":{"shape":"Double"},
3924
- "CurrencyCode":{"shape":"String"},
3925
- "OfferingType":{"shape":"String"},
3926
- "RecurringCharges":{"shape":"RecurringChargeList"},
3927
- "ReservedNodeOfferingType":{"shape":"ReservedNodeOfferingType"}
3928
- },
3929
- "wrapper":true
3930
- },
3931
- "ReservedNodeOfferingList":{
3932
- "type":"list",
3933
- "member":{
3934
- "shape":"ReservedNodeOffering",
3935
- "locationName":"ReservedNodeOffering"
3936
- }
3937
- },
3938
- "ReservedNodeOfferingNotFoundFault":{
3939
- "type":"structure",
3940
- "members":{
3941
- },
3942
- "error":{
3943
- "code":"ReservedNodeOfferingNotFound",
3944
- "httpStatusCode":404,
3945
- "senderFault":true
3946
- },
3947
- "exception":true
3948
- },
3949
- "ReservedNodeOfferingType":{
3950
- "type":"string",
3951
- "enum":[
3952
- "Regular",
3953
- "Upgradable"
3954
- ]
3955
- },
3956
- "ReservedNodeOfferingsMessage":{
3957
- "type":"structure",
3958
- "members":{
3959
- "Marker":{"shape":"String"},
3960
- "ReservedNodeOfferings":{"shape":"ReservedNodeOfferingList"}
3961
- }
3962
- },
3963
- "ReservedNodeQuotaExceededFault":{
3964
- "type":"structure",
3965
- "members":{
3966
- },
3967
- "error":{
3968
- "code":"ReservedNodeQuotaExceeded",
3969
- "httpStatusCode":400,
3970
- "senderFault":true
3971
- },
3972
- "exception":true
3973
- },
3974
- "ReservedNodesMessage":{
3975
- "type":"structure",
3976
- "members":{
3977
- "Marker":{"shape":"String"},
3978
- "ReservedNodes":{"shape":"ReservedNodeList"}
3979
- }
3980
- },
3981
- "ResetClusterParameterGroupMessage":{
3982
- "type":"structure",
3983
- "required":["ParameterGroupName"],
3984
- "members":{
3985
- "ParameterGroupName":{"shape":"String"},
3986
- "ResetAllParameters":{"shape":"Boolean"},
3987
- "Parameters":{"shape":"ParametersList"}
3988
- }
3989
- },
3990
- "ResizeClusterMessage":{
3991
- "type":"structure",
3992
- "required":[
3993
- "ClusterIdentifier",
3994
- "NumberOfNodes"
3995
- ],
3996
- "members":{
3997
- "ClusterIdentifier":{"shape":"String"},
3998
- "ClusterType":{"shape":"String"},
3999
- "NodeType":{"shape":"String"},
4000
- "NumberOfNodes":{"shape":"Integer"},
4001
- "Classic":{"shape":"BooleanOptional"}
4002
- }
4003
- },
4004
- "ResizeClusterResult":{
4005
- "type":"structure",
4006
- "members":{
4007
- "Cluster":{"shape":"Cluster"}
4008
- }
4009
- },
4010
- "ResizeInfo":{
4011
- "type":"structure",
4012
- "members":{
4013
- "ResizeType":{"shape":"String"},
4014
- "AllowCancelResize":{"shape":"Boolean"}
4015
- }
4016
- },
4017
- "ResizeNotFoundFault":{
4018
- "type":"structure",
4019
- "members":{
4020
- },
4021
- "error":{
4022
- "code":"ResizeNotFound",
4023
- "httpStatusCode":404,
4024
- "senderFault":true
4025
- },
4026
- "exception":true
4027
- },
4028
- "ResizeProgressMessage":{
4029
- "type":"structure",
4030
- "members":{
4031
- "TargetNodeType":{"shape":"String"},
4032
- "TargetNumberOfNodes":{"shape":"IntegerOptional"},
4033
- "TargetClusterType":{"shape":"String"},
4034
- "Status":{"shape":"String"},
4035
- "ImportTablesCompleted":{"shape":"ImportTablesCompleted"},
4036
- "ImportTablesInProgress":{"shape":"ImportTablesInProgress"},
4037
- "ImportTablesNotStarted":{"shape":"ImportTablesNotStarted"},
4038
- "AvgResizeRateInMegaBytesPerSecond":{"shape":"DoubleOptional"},
4039
- "TotalResizeDataInMegaBytes":{"shape":"LongOptional"},
4040
- "ProgressInMegaBytes":{"shape":"LongOptional"},
4041
- "ElapsedTimeInSeconds":{"shape":"LongOptional"},
4042
- "EstimatedTimeToCompletionInSeconds":{"shape":"LongOptional"},
4043
- "ResizeType":{"shape":"String"},
4044
- "Message":{"shape":"String"},
4045
- "TargetEncryptionType":{"shape":"String"}
4046
- }
4047
- },
4048
- "ResourceNotFoundFault":{
4049
- "type":"structure",
4050
- "members":{
4051
- },
4052
- "error":{
4053
- "code":"ResourceNotFoundFault",
4054
- "httpStatusCode":404,
4055
- "senderFault":true
4056
- },
4057
- "exception":true
4058
- },
4059
- "RestorableNodeTypeList":{
4060
- "type":"list",
4061
- "member":{
4062
- "shape":"String",
4063
- "locationName":"NodeType"
4064
- }
4065
- },
4066
- "RestoreFromClusterSnapshotMessage":{
4067
- "type":"structure",
4068
- "required":[
4069
- "ClusterIdentifier",
4070
- "SnapshotIdentifier"
4071
- ],
4072
- "members":{
4073
- "ClusterIdentifier":{"shape":"String"},
4074
- "SnapshotIdentifier":{"shape":"String"},
4075
- "SnapshotClusterIdentifier":{"shape":"String"},
4076
- "Port":{"shape":"IntegerOptional"},
4077
- "AvailabilityZone":{"shape":"String"},
4078
- "AllowVersionUpgrade":{"shape":"BooleanOptional"},
4079
- "ClusterSubnetGroupName":{"shape":"String"},
4080
- "PubliclyAccessible":{"shape":"BooleanOptional"},
4081
- "OwnerAccount":{"shape":"String"},
4082
- "HsmClientCertificateIdentifier":{"shape":"String"},
4083
- "HsmConfigurationIdentifier":{"shape":"String"},
4084
- "ElasticIp":{"shape":"String"},
4085
- "ClusterParameterGroupName":{"shape":"String"},
4086
- "ClusterSecurityGroups":{"shape":"ClusterSecurityGroupNameList"},
4087
- "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"},
4088
- "PreferredMaintenanceWindow":{"shape":"String"},
4089
- "AutomatedSnapshotRetentionPeriod":{"shape":"IntegerOptional"},
4090
- "ManualSnapshotRetentionPeriod":{"shape":"IntegerOptional"},
4091
- "KmsKeyId":{"shape":"String"},
4092
- "NodeType":{"shape":"String"},
4093
- "EnhancedVpcRouting":{"shape":"BooleanOptional"},
4094
- "AdditionalInfo":{"shape":"String"},
4095
- "IamRoles":{"shape":"IamRoleArnList"},
4096
- "MaintenanceTrackName":{"shape":"String"},
4097
- "SnapshotScheduleIdentifier":{"shape":"String"}
4098
- }
4099
- },
4100
- "RestoreFromClusterSnapshotResult":{
4101
- "type":"structure",
4102
- "members":{
4103
- "Cluster":{"shape":"Cluster"}
4104
- }
4105
- },
4106
- "RestoreStatus":{
4107
- "type":"structure",
4108
- "members":{
4109
- "Status":{"shape":"String"},
4110
- "CurrentRestoreRateInMegaBytesPerSecond":{"shape":"Double"},
4111
- "SnapshotSizeInMegaBytes":{"shape":"Long"},
4112
- "ProgressInMegaBytes":{"shape":"Long"},
4113
- "ElapsedTimeInSeconds":{"shape":"Long"},
4114
- "EstimatedTimeToCompletionInSeconds":{"shape":"Long"}
4115
- }
4116
- },
4117
- "RestoreTableFromClusterSnapshotMessage":{
4118
- "type":"structure",
4119
- "required":[
4120
- "ClusterIdentifier",
4121
- "SnapshotIdentifier",
4122
- "SourceDatabaseName",
4123
- "SourceTableName",
4124
- "NewTableName"
4125
- ],
4126
- "members":{
4127
- "ClusterIdentifier":{"shape":"String"},
4128
- "SnapshotIdentifier":{"shape":"String"},
4129
- "SourceDatabaseName":{"shape":"String"},
4130
- "SourceSchemaName":{"shape":"String"},
4131
- "SourceTableName":{"shape":"String"},
4132
- "TargetDatabaseName":{"shape":"String"},
4133
- "TargetSchemaName":{"shape":"String"},
4134
- "NewTableName":{"shape":"String"}
4135
- }
4136
- },
4137
- "RestoreTableFromClusterSnapshotResult":{
4138
- "type":"structure",
4139
- "members":{
4140
- "TableRestoreStatus":{"shape":"TableRestoreStatus"}
4141
- }
4142
- },
4143
- "RevisionTarget":{
4144
- "type":"structure",
4145
- "members":{
4146
- "DatabaseRevision":{"shape":"String"},
4147
- "Description":{"shape":"String"},
4148
- "DatabaseRevisionReleaseDate":{"shape":"TStamp"}
4149
- }
4150
- },
4151
- "RevisionTargetsList":{
4152
- "type":"list",
4153
- "member":{
4154
- "shape":"RevisionTarget",
4155
- "locationName":"RevisionTarget"
4156
- }
4157
- },
4158
- "RevokeClusterSecurityGroupIngressMessage":{
4159
- "type":"structure",
4160
- "required":["ClusterSecurityGroupName"],
4161
- "members":{
4162
- "ClusterSecurityGroupName":{"shape":"String"},
4163
- "CIDRIP":{"shape":"String"},
4164
- "EC2SecurityGroupName":{"shape":"String"},
4165
- "EC2SecurityGroupOwnerId":{"shape":"String"}
4166
- }
4167
- },
4168
- "RevokeClusterSecurityGroupIngressResult":{
4169
- "type":"structure",
4170
- "members":{
4171
- "ClusterSecurityGroup":{"shape":"ClusterSecurityGroup"}
4172
- }
4173
- },
4174
- "RevokeSnapshotAccessMessage":{
4175
- "type":"structure",
4176
- "required":[
4177
- "SnapshotIdentifier",
4178
- "AccountWithRestoreAccess"
4179
- ],
4180
- "members":{
4181
- "SnapshotIdentifier":{"shape":"String"},
4182
- "SnapshotClusterIdentifier":{"shape":"String"},
4183
- "AccountWithRestoreAccess":{"shape":"String"}
4184
- }
4185
- },
4186
- "RevokeSnapshotAccessResult":{
4187
- "type":"structure",
4188
- "members":{
4189
- "Snapshot":{"shape":"Snapshot"}
4190
- }
4191
- },
4192
- "RotateEncryptionKeyMessage":{
4193
- "type":"structure",
4194
- "required":["ClusterIdentifier"],
4195
- "members":{
4196
- "ClusterIdentifier":{"shape":"String"}
4197
- }
4198
- },
4199
- "RotateEncryptionKeyResult":{
4200
- "type":"structure",
4201
- "members":{
4202
- "Cluster":{"shape":"Cluster"}
4203
- }
4204
- },
4205
- "SNSInvalidTopicFault":{
4206
- "type":"structure",
4207
- "members":{
4208
- },
4209
- "error":{
4210
- "code":"SNSInvalidTopic",
4211
- "httpStatusCode":400,
4212
- "senderFault":true
4213
- },
4214
- "exception":true
4215
- },
4216
- "SNSNoAuthorizationFault":{
4217
- "type":"structure",
4218
- "members":{
4219
- },
4220
- "error":{
4221
- "code":"SNSNoAuthorization",
4222
- "httpStatusCode":400,
4223
- "senderFault":true
4224
- },
4225
- "exception":true
4226
- },
4227
- "SNSTopicArnNotFoundFault":{
4228
- "type":"structure",
4229
- "members":{
4230
- },
4231
- "error":{
4232
- "code":"SNSTopicArnNotFound",
4233
- "httpStatusCode":404,
4234
- "senderFault":true
4235
- },
4236
- "exception":true
4237
- },
4238
- "ScheduleDefinitionList":{
4239
- "type":"list",
4240
- "member":{
4241
- "shape":"String",
4242
- "locationName":"ScheduleDefinition"
4243
- }
4244
- },
4245
- "ScheduleDefinitionTypeUnsupportedFault":{
4246
- "type":"structure",
4247
- "members":{
4248
- },
4249
- "error":{
4250
- "code":"ScheduleDefinitionTypeUnsupported",
4251
- "httpStatusCode":400,
4252
- "senderFault":true
4253
- },
4254
- "exception":true
4255
- },
4256
- "ScheduleState":{
4257
- "type":"string",
4258
- "enum":[
4259
- "MODIFYING",
4260
- "ACTIVE",
4261
- "FAILED"
4262
- ]
4263
- },
4264
- "ScheduledSnapshotTimeList":{
4265
- "type":"list",
4266
- "member":{
4267
- "shape":"TStamp",
4268
- "locationName":"SnapshotTime"
4269
- }
4270
- },
4271
- "SensitiveString":{
4272
- "type":"string",
4273
- "sensitive":true
4274
- },
4275
- "Snapshot":{
4276
- "type":"structure",
4277
- "members":{
4278
- "SnapshotIdentifier":{"shape":"String"},
4279
- "ClusterIdentifier":{"shape":"String"},
4280
- "SnapshotCreateTime":{"shape":"TStamp"},
4281
- "Status":{"shape":"String"},
4282
- "Port":{"shape":"Integer"},
4283
- "AvailabilityZone":{"shape":"String"},
4284
- "ClusterCreateTime":{"shape":"TStamp"},
4285
- "MasterUsername":{"shape":"String"},
4286
- "ClusterVersion":{"shape":"String"},
4287
- "SnapshotType":{"shape":"String"},
4288
- "NodeType":{"shape":"String"},
4289
- "NumberOfNodes":{"shape":"Integer"},
4290
- "DBName":{"shape":"String"},
4291
- "VpcId":{"shape":"String"},
4292
- "Encrypted":{"shape":"Boolean"},
4293
- "KmsKeyId":{"shape":"String"},
4294
- "EncryptedWithHSM":{"shape":"Boolean"},
4295
- "AccountsWithRestoreAccess":{"shape":"AccountsWithRestoreAccessList"},
4296
- "OwnerAccount":{"shape":"String"},
4297
- "TotalBackupSizeInMegaBytes":{"shape":"Double"},
4298
- "ActualIncrementalBackupSizeInMegaBytes":{"shape":"Double"},
4299
- "BackupProgressInMegaBytes":{"shape":"Double"},
4300
- "CurrentBackupRateInMegaBytesPerSecond":{"shape":"Double"},
4301
- "EstimatedSecondsToCompletion":{"shape":"Long"},
4302
- "ElapsedTimeInSeconds":{"shape":"Long"},
4303
- "SourceRegion":{"shape":"String"},
4304
- "Tags":{"shape":"TagList"},
4305
- "RestorableNodeTypes":{"shape":"RestorableNodeTypeList"},
4306
- "EnhancedVpcRouting":{"shape":"Boolean"},
4307
- "MaintenanceTrackName":{"shape":"String"},
4308
- "ManualSnapshotRetentionPeriod":{"shape":"IntegerOptional"},
4309
- "ManualSnapshotRemainingDays":{"shape":"IntegerOptional"},
4310
- "SnapshotRetentionStartTime":{"shape":"TStamp"}
4311
- },
4312
- "wrapper":true
4313
- },
4314
- "SnapshotAttributeToSortBy":{
4315
- "type":"string",
4316
- "enum":[
4317
- "SOURCE_TYPE",
4318
- "TOTAL_SIZE",
4319
- "CREATE_TIME"
4320
- ]
4321
- },
4322
- "SnapshotCopyAlreadyDisabledFault":{
4323
- "type":"structure",
4324
- "members":{
4325
- },
4326
- "error":{
4327
- "code":"SnapshotCopyAlreadyDisabledFault",
4328
- "httpStatusCode":400,
4329
- "senderFault":true
4330
- },
4331
- "exception":true
4332
- },
4333
- "SnapshotCopyAlreadyEnabledFault":{
4334
- "type":"structure",
4335
- "members":{
4336
- },
4337
- "error":{
4338
- "code":"SnapshotCopyAlreadyEnabledFault",
4339
- "httpStatusCode":400,
4340
- "senderFault":true
4341
- },
4342
- "exception":true
4343
- },
4344
- "SnapshotCopyDisabledFault":{
4345
- "type":"structure",
4346
- "members":{
4347
- },
4348
- "error":{
4349
- "code":"SnapshotCopyDisabledFault",
4350
- "httpStatusCode":400,
4351
- "senderFault":true
4352
- },
4353
- "exception":true
4354
- },
4355
- "SnapshotCopyGrant":{
4356
- "type":"structure",
4357
- "members":{
4358
- "SnapshotCopyGrantName":{"shape":"String"},
4359
- "KmsKeyId":{"shape":"String"},
4360
- "Tags":{"shape":"TagList"}
4361
- },
4362
- "wrapper":true
4363
- },
4364
- "SnapshotCopyGrantAlreadyExistsFault":{
4365
- "type":"structure",
4366
- "members":{
4367
- },
4368
- "error":{
4369
- "code":"SnapshotCopyGrantAlreadyExistsFault",
4370
- "httpStatusCode":400,
4371
- "senderFault":true
4372
- },
4373
- "exception":true
4374
- },
4375
- "SnapshotCopyGrantList":{
4376
- "type":"list",
4377
- "member":{
4378
- "shape":"SnapshotCopyGrant",
4379
- "locationName":"SnapshotCopyGrant"
4380
- }
4381
- },
4382
- "SnapshotCopyGrantMessage":{
4383
- "type":"structure",
4384
- "members":{
4385
- "Marker":{"shape":"String"},
4386
- "SnapshotCopyGrants":{"shape":"SnapshotCopyGrantList"}
4387
- }
4388
- },
4389
- "SnapshotCopyGrantNotFoundFault":{
4390
- "type":"structure",
4391
- "members":{
4392
- },
4393
- "error":{
4394
- "code":"SnapshotCopyGrantNotFoundFault",
4395
- "httpStatusCode":400,
4396
- "senderFault":true
4397
- },
4398
- "exception":true
4399
- },
4400
- "SnapshotCopyGrantQuotaExceededFault":{
4401
- "type":"structure",
4402
- "members":{
4403
- },
4404
- "error":{
4405
- "code":"SnapshotCopyGrantQuotaExceededFault",
4406
- "httpStatusCode":400,
4407
- "senderFault":true
4408
- },
4409
- "exception":true
4410
- },
4411
- "SnapshotErrorMessage":{
4412
- "type":"structure",
4413
- "members":{
4414
- "SnapshotIdentifier":{"shape":"String"},
4415
- "SnapshotClusterIdentifier":{"shape":"String"},
4416
- "FailureCode":{"shape":"String"},
4417
- "FailureReason":{"shape":"String"}
4418
- }
4419
- },
4420
- "SnapshotIdentifierList":{
4421
- "type":"list",
4422
- "member":{
4423
- "shape":"String",
4424
- "locationName":"String"
4425
- }
4426
- },
4427
- "SnapshotList":{
4428
- "type":"list",
4429
- "member":{
4430
- "shape":"Snapshot",
4431
- "locationName":"Snapshot"
4432
- }
4433
- },
4434
- "SnapshotMessage":{
4435
- "type":"structure",
4436
- "members":{
4437
- "Marker":{"shape":"String"},
4438
- "Snapshots":{"shape":"SnapshotList"}
4439
- }
4440
- },
4441
- "SnapshotSchedule":{
4442
- "type":"structure",
4443
- "members":{
4444
- "ScheduleDefinitions":{"shape":"ScheduleDefinitionList"},
4445
- "ScheduleIdentifier":{"shape":"String"},
4446
- "ScheduleDescription":{"shape":"String"},
4447
- "Tags":{"shape":"TagList"},
4448
- "NextInvocations":{"shape":"ScheduledSnapshotTimeList"},
4449
- "AssociatedClusterCount":{"shape":"IntegerOptional"},
4450
- "AssociatedClusters":{"shape":"AssociatedClusterList"}
4451
- }
4452
- },
4453
- "SnapshotScheduleAlreadyExistsFault":{
4454
- "type":"structure",
4455
- "members":{
4456
- },
4457
- "error":{
4458
- "code":"SnapshotScheduleAlreadyExists",
4459
- "httpStatusCode":400,
4460
- "senderFault":true
4461
- },
4462
- "exception":true
4463
- },
4464
- "SnapshotScheduleList":{
4465
- "type":"list",
4466
- "member":{
4467
- "shape":"SnapshotSchedule",
4468
- "locationName":"SnapshotSchedule"
4469
- }
4470
- },
4471
- "SnapshotScheduleNotFoundFault":{
4472
- "type":"structure",
4473
- "members":{
4474
- },
4475
- "error":{
4476
- "code":"SnapshotScheduleNotFound",
4477
- "httpStatusCode":400,
4478
- "senderFault":true
4479
- },
4480
- "exception":true
4481
- },
4482
- "SnapshotScheduleQuotaExceededFault":{
4483
- "type":"structure",
4484
- "members":{
4485
- },
4486
- "error":{
4487
- "code":"SnapshotScheduleQuotaExceeded",
4488
- "httpStatusCode":400,
4489
- "senderFault":true
4490
- },
4491
- "exception":true
4492
- },
4493
- "SnapshotScheduleUpdateInProgressFault":{
4494
- "type":"structure",
4495
- "members":{
4496
- },
4497
- "error":{
4498
- "code":"SnapshotScheduleUpdateInProgress",
4499
- "httpStatusCode":400,
4500
- "senderFault":true
4501
- },
4502
- "exception":true
4503
- },
4504
- "SnapshotSortingEntity":{
4505
- "type":"structure",
4506
- "required":["Attribute"],
4507
- "members":{
4508
- "Attribute":{"shape":"SnapshotAttributeToSortBy"},
4509
- "SortOrder":{"shape":"SortByOrder"}
4510
- }
4511
- },
4512
- "SnapshotSortingEntityList":{
4513
- "type":"list",
4514
- "member":{
4515
- "shape":"SnapshotSortingEntity",
4516
- "locationName":"SnapshotSortingEntity"
4517
- }
4518
- },
4519
- "SortByOrder":{
4520
- "type":"string",
4521
- "enum":[
4522
- "ASC",
4523
- "DESC"
4524
- ]
4525
- },
4526
- "SourceIdsList":{
4527
- "type":"list",
4528
- "member":{
4529
- "shape":"String",
4530
- "locationName":"SourceId"
4531
- }
4532
- },
4533
- "SourceNotFoundFault":{
4534
- "type":"structure",
4535
- "members":{
4536
- },
4537
- "error":{
4538
- "code":"SourceNotFound",
4539
- "httpStatusCode":404,
4540
- "senderFault":true
4541
- },
4542
- "exception":true
4543
- },
4544
- "SourceType":{
4545
- "type":"string",
4546
- "enum":[
4547
- "cluster",
4548
- "cluster-parameter-group",
4549
- "cluster-security-group",
4550
- "cluster-snapshot"
4551
- ]
4552
- },
4553
- "String":{"type":"string"},
4554
- "Subnet":{
4555
- "type":"structure",
4556
- "members":{
4557
- "SubnetIdentifier":{"shape":"String"},
4558
- "SubnetAvailabilityZone":{"shape":"AvailabilityZone"},
4559
- "SubnetStatus":{"shape":"String"}
4560
- }
4561
- },
4562
- "SubnetAlreadyInUse":{
4563
- "type":"structure",
4564
- "members":{
4565
- },
4566
- "error":{
4567
- "code":"SubnetAlreadyInUse",
4568
- "httpStatusCode":400,
4569
- "senderFault":true
4570
- },
4571
- "exception":true
4572
- },
4573
- "SubnetIdentifierList":{
4574
- "type":"list",
4575
- "member":{
4576
- "shape":"String",
4577
- "locationName":"SubnetIdentifier"
4578
- }
4579
- },
4580
- "SubnetList":{
4581
- "type":"list",
4582
- "member":{
4583
- "shape":"Subnet",
4584
- "locationName":"Subnet"
4585
- }
4586
- },
4587
- "SubscriptionAlreadyExistFault":{
4588
- "type":"structure",
4589
- "members":{
4590
- },
4591
- "error":{
4592
- "code":"SubscriptionAlreadyExist",
4593
- "httpStatusCode":400,
4594
- "senderFault":true
4595
- },
4596
- "exception":true
4597
- },
4598
- "SubscriptionCategoryNotFoundFault":{
4599
- "type":"structure",
4600
- "members":{
4601
- },
4602
- "error":{
4603
- "code":"SubscriptionCategoryNotFound",
4604
- "httpStatusCode":404,
4605
- "senderFault":true
4606
- },
4607
- "exception":true
4608
- },
4609
- "SubscriptionEventIdNotFoundFault":{
4610
- "type":"structure",
4611
- "members":{
4612
- },
4613
- "error":{
4614
- "code":"SubscriptionEventIdNotFound",
4615
- "httpStatusCode":404,
4616
- "senderFault":true
4617
- },
4618
- "exception":true
4619
- },
4620
- "SubscriptionNotFoundFault":{
4621
- "type":"structure",
4622
- "members":{
4623
- },
4624
- "error":{
4625
- "code":"SubscriptionNotFound",
4626
- "httpStatusCode":404,
4627
- "senderFault":true
4628
- },
4629
- "exception":true
4630
- },
4631
- "SubscriptionSeverityNotFoundFault":{
4632
- "type":"structure",
4633
- "members":{
4634
- },
4635
- "error":{
4636
- "code":"SubscriptionSeverityNotFound",
4637
- "httpStatusCode":404,
4638
- "senderFault":true
4639
- },
4640
- "exception":true
4641
- },
4642
- "SupportedOperation":{
4643
- "type":"structure",
4644
- "members":{
4645
- "OperationName":{"shape":"String"}
4646
- }
4647
- },
4648
- "SupportedOperationList":{
4649
- "type":"list",
4650
- "member":{
4651
- "shape":"SupportedOperation",
4652
- "locationName":"SupportedOperation"
4653
- }
4654
- },
4655
- "SupportedPlatform":{
4656
- "type":"structure",
4657
- "members":{
4658
- "Name":{"shape":"String"}
4659
- },
4660
- "wrapper":true
4661
- },
4662
- "SupportedPlatformsList":{
4663
- "type":"list",
4664
- "member":{
4665
- "shape":"SupportedPlatform",
4666
- "locationName":"SupportedPlatform"
4667
- }
4668
- },
4669
- "TStamp":{"type":"timestamp"},
4670
- "TableLimitExceededFault":{
4671
- "type":"structure",
4672
- "members":{
4673
- },
4674
- "error":{
4675
- "code":"TableLimitExceeded",
4676
- "httpStatusCode":400,
4677
- "senderFault":true
4678
- },
4679
- "exception":true
4680
- },
4681
- "TableRestoreNotFoundFault":{
4682
- "type":"structure",
4683
- "members":{
4684
- },
4685
- "error":{
4686
- "code":"TableRestoreNotFoundFault",
4687
- "httpStatusCode":400,
4688
- "senderFault":true
4689
- },
4690
- "exception":true
4691
- },
4692
- "TableRestoreStatus":{
4693
- "type":"structure",
4694
- "members":{
4695
- "TableRestoreRequestId":{"shape":"String"},
4696
- "Status":{"shape":"TableRestoreStatusType"},
4697
- "Message":{"shape":"String"},
4698
- "RequestTime":{"shape":"TStamp"},
4699
- "ProgressInMegaBytes":{"shape":"LongOptional"},
4700
- "TotalDataInMegaBytes":{"shape":"LongOptional"},
4701
- "ClusterIdentifier":{"shape":"String"},
4702
- "SnapshotIdentifier":{"shape":"String"},
4703
- "SourceDatabaseName":{"shape":"String"},
4704
- "SourceSchemaName":{"shape":"String"},
4705
- "SourceTableName":{"shape":"String"},
4706
- "TargetDatabaseName":{"shape":"String"},
4707
- "TargetSchemaName":{"shape":"String"},
4708
- "NewTableName":{"shape":"String"}
4709
- },
4710
- "wrapper":true
4711
- },
4712
- "TableRestoreStatusList":{
4713
- "type":"list",
4714
- "member":{
4715
- "shape":"TableRestoreStatus",
4716
- "locationName":"TableRestoreStatus"
4717
- }
4718
- },
4719
- "TableRestoreStatusMessage":{
4720
- "type":"structure",
4721
- "members":{
4722
- "TableRestoreStatusDetails":{"shape":"TableRestoreStatusList"},
4723
- "Marker":{"shape":"String"}
4724
- }
4725
- },
4726
- "TableRestoreStatusType":{
4727
- "type":"string",
4728
- "enum":[
4729
- "PENDING",
4730
- "IN_PROGRESS",
4731
- "SUCCEEDED",
4732
- "FAILED",
4733
- "CANCELED"
4734
- ]
4735
- },
4736
- "Tag":{
4737
- "type":"structure",
4738
- "members":{
4739
- "Key":{"shape":"String"},
4740
- "Value":{"shape":"String"}
4741
- }
4742
- },
4743
- "TagKeyList":{
4744
- "type":"list",
4745
- "member":{
4746
- "shape":"String",
4747
- "locationName":"TagKey"
4748
- }
4749
- },
4750
- "TagLimitExceededFault":{
4751
- "type":"structure",
4752
- "members":{
4753
- },
4754
- "error":{
4755
- "code":"TagLimitExceededFault",
4756
- "httpStatusCode":400,
4757
- "senderFault":true
4758
- },
4759
- "exception":true
4760
- },
4761
- "TagList":{
4762
- "type":"list",
4763
- "member":{
4764
- "shape":"Tag",
4765
- "locationName":"Tag"
4766
- }
4767
- },
4768
- "TagValueList":{
4769
- "type":"list",
4770
- "member":{
4771
- "shape":"String",
4772
- "locationName":"TagValue"
4773
- }
4774
- },
4775
- "TaggedResource":{
4776
- "type":"structure",
4777
- "members":{
4778
- "Tag":{"shape":"Tag"},
4779
- "ResourceName":{"shape":"String"},
4780
- "ResourceType":{"shape":"String"}
4781
- }
4782
- },
4783
- "TaggedResourceList":{
4784
- "type":"list",
4785
- "member":{
4786
- "shape":"TaggedResource",
4787
- "locationName":"TaggedResource"
4788
- }
4789
- },
4790
- "TaggedResourceListMessage":{
4791
- "type":"structure",
4792
- "members":{
4793
- "TaggedResources":{"shape":"TaggedResourceList"},
4794
- "Marker":{"shape":"String"}
4795
- }
4796
- },
4797
- "TrackList":{
4798
- "type":"list",
4799
- "member":{
4800
- "shape":"MaintenanceTrack",
4801
- "locationName":"MaintenanceTrack"
4802
- }
4803
- },
4804
- "TrackListMessage":{
4805
- "type":"structure",
4806
- "members":{
4807
- "MaintenanceTracks":{"shape":"TrackList"},
4808
- "Marker":{"shape":"String"}
4809
- }
4810
- },
4811
- "UnauthorizedOperation":{
4812
- "type":"structure",
4813
- "members":{
4814
- },
4815
- "error":{
4816
- "code":"UnauthorizedOperation",
4817
- "httpStatusCode":400,
4818
- "senderFault":true
4819
- },
4820
- "exception":true
4821
- },
4822
- "UnknownSnapshotCopyRegionFault":{
4823
- "type":"structure",
4824
- "members":{
4825
- },
4826
- "error":{
4827
- "code":"UnknownSnapshotCopyRegionFault",
4828
- "httpStatusCode":404,
4829
- "senderFault":true
4830
- },
4831
- "exception":true
4832
- },
4833
- "UnsupportedOperationFault":{
4834
- "type":"structure",
4835
- "members":{
4836
- },
4837
- "error":{
4838
- "code":"UnsupportedOperation",
4839
- "httpStatusCode":400,
4840
- "senderFault":true
4841
- },
4842
- "exception":true
4843
- },
4844
- "UnsupportedOptionFault":{
4845
- "type":"structure",
4846
- "members":{
4847
- },
4848
- "error":{
4849
- "code":"UnsupportedOptionFault",
4850
- "httpStatusCode":400,
4851
- "senderFault":true
4852
- },
4853
- "exception":true
4854
- },
4855
- "UpdateTarget":{
4856
- "type":"structure",
4857
- "members":{
4858
- "MaintenanceTrackName":{"shape":"String"},
4859
- "DatabaseVersion":{"shape":"String"},
4860
- "SupportedOperations":{"shape":"SupportedOperationList"}
4861
- }
4862
- },
4863
- "VpcSecurityGroupIdList":{
4864
- "type":"list",
4865
- "member":{
4866
- "shape":"String",
4867
- "locationName":"VpcSecurityGroupId"
4868
- }
4869
- },
4870
- "VpcSecurityGroupMembership":{
4871
- "type":"structure",
4872
- "members":{
4873
- "VpcSecurityGroupId":{"shape":"String"},
4874
- "Status":{"shape":"String"}
4875
- }
4876
- },
4877
- "VpcSecurityGroupMembershipList":{
4878
- "type":"list",
4879
- "member":{
4880
- "shape":"VpcSecurityGroupMembership",
4881
- "locationName":"VpcSecurityGroup"
4882
- }
4883
- }
4884
- }
4885
- }