aws-sdk-core 2.3.23 → 3.89.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (496) hide show
  1. checksums.yaml +5 -5
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +106 -404
  5. data/lib/aws-sdk-core/arn.rb +77 -0
  6. data/lib/aws-sdk-core/arn_parser.rb +38 -0
  7. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  8. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  9. data/lib/aws-sdk-core/binary.rb +6 -0
  10. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  11. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  12. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  13. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  14. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  15. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  16. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  17. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  18. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  19. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  20. data/lib/aws-sdk-core/credential_provider_chain.rb +56 -6
  21. data/lib/aws-sdk-core/deprecations.rb +16 -10
  22. data/lib/aws-sdk-core/ecs_credentials.rb +14 -10
  23. data/lib/aws-sdk-core/endpoint_cache.rb +191 -0
  24. data/lib/aws-sdk-core/errors.rb +221 -11
  25. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  26. data/lib/aws-sdk-core/ini_parser.rb +41 -0
  27. data/lib/aws-sdk-core/instance_profile_credentials.rb +133 -42
  28. data/lib/aws-sdk-core/json.rb +9 -10
  29. data/lib/aws-sdk-core/json/builder.rb +4 -2
  30. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  31. data/lib/aws-sdk-core/json/handler.rb +22 -3
  32. data/lib/aws-sdk-core/json/parser.rb +1 -1
  33. data/lib/aws-sdk-core/log/formatter.rb +7 -1
  34. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  35. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  36. data/lib/aws-sdk-core/pager.rb +30 -25
  37. data/lib/aws-sdk-core/param_converter.rb +3 -3
  38. data/lib/aws-sdk-core/param_validator.rb +60 -26
  39. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  40. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  41. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  42. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  43. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  44. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  45. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  46. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +160 -0
  47. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  48. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  49. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  50. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +41 -0
  51. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  52. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  53. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  54. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  55. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  56. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  57. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  58. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  59. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  60. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  61. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +48 -19
  62. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  63. data/lib/aws-sdk-core/plugins/retry_errors.rb +102 -24
  64. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  65. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  66. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  67. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  68. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -10
  69. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  70. data/lib/aws-sdk-core/query.rb +5 -0
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  72. data/lib/aws-sdk-core/query/handler.rb +20 -16
  73. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  75. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  76. data/lib/aws-sdk-core/rest.rb +10 -0
  77. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  78. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  79. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  80. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  81. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  82. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  83. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  84. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  85. data/lib/aws-sdk-core/shared_config.rb +451 -0
  86. data/lib/aws-sdk-core/shared_credentials.rb +16 -53
  87. data/lib/aws-sdk-core/structure.rb +22 -13
  88. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  89. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  90. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  91. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  92. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  93. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  94. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  95. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  96. data/lib/aws-sdk-core/util.rb +66 -0
  97. data/lib/aws-sdk-core/waiters.rb +3 -0
  98. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  99. data/lib/aws-sdk-core/waiters/waiter.rb +3 -2
  100. data/lib/aws-sdk-core/xml.rb +9 -0
  101. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  102. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  103. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  104. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  106. data/lib/aws-sdk-sts.rb +45 -0
  107. data/lib/aws-sdk-sts/client.rb +2156 -0
  108. data/lib/aws-sdk-sts/client_api.rb +336 -0
  109. data/lib/aws-sdk-sts/customizations.rb +2 -0
  110. data/lib/aws-sdk-sts/errors.rb +142 -0
  111. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  112. data/lib/aws-sdk-sts/presigner.rb +67 -0
  113. data/lib/aws-sdk-sts/resource.rb +23 -0
  114. data/lib/aws-sdk-sts/types.rb +1504 -0
  115. data/lib/seahorse.rb +60 -60
  116. data/lib/seahorse/client/async_base.rb +50 -0
  117. data/lib/seahorse/client/async_response.rb +62 -0
  118. data/lib/seahorse/client/base.rb +5 -9
  119. data/lib/seahorse/client/configuration.rb +10 -2
  120. data/lib/seahorse/client/events.rb +1 -1
  121. data/lib/seahorse/client/h2/connection.rb +246 -0
  122. data/lib/seahorse/client/h2/handler.rb +151 -0
  123. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  124. data/lib/seahorse/client/http/async_response.rb +42 -0
  125. data/lib/seahorse/client/http/response.rb +13 -8
  126. data/lib/seahorse/client/logging/formatter.rb +7 -1
  127. data/lib/seahorse/client/logging/handler.rb +2 -0
  128. data/lib/seahorse/client/net_http/connection_pool.rb +46 -28
  129. data/lib/seahorse/client/net_http/handler.rb +17 -3
  130. data/lib/seahorse/client/net_http/patches.rb +9 -1
  131. data/lib/seahorse/client/networking_error.rb +28 -0
  132. data/lib/seahorse/client/plugin.rb +67 -6
  133. data/lib/seahorse/client/plugin_list.rb +3 -1
  134. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  135. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  136. data/lib/seahorse/client/plugins/h2.rb +64 -0
  137. data/lib/seahorse/client/plugins/logging.rb +17 -19
  138. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  139. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  140. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  141. data/lib/seahorse/client/request_context.rb +5 -0
  142. data/lib/seahorse/client/response.rb +9 -20
  143. data/lib/seahorse/model/api.rb +37 -0
  144. data/lib/seahorse/model/authorizer.rb +21 -0
  145. data/lib/seahorse/model/operation.rb +20 -0
  146. data/lib/seahorse/model/shapes.rb +44 -2
  147. data/lib/seahorse/util.rb +1 -21
  148. metadata +127 -360
  149. data/apis/acm/2015-12-08/api-2.json +0 -495
  150. data/apis/acm/2015-12-08/examples-1.json +0 -5
  151. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  152. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  153. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  154. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  155. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  156. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  157. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  158. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  159. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  160. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  161. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  162. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  163. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  164. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  165. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  166. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  167. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  168. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  169. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  170. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  171. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  172. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  173. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  174. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  175. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  176. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  177. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  178. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  179. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  180. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  181. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  182. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  183. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  184. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  185. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  186. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  187. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  188. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  189. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  190. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  191. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  192. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  193. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  194. data/apis/config/2014-11-12/api-2.json +0 -1303
  195. data/apis/config/2014-11-12/examples-1.json +0 -5
  196. data/apis/config/2014-11-12/paginators-1.json +0 -10
  197. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  198. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  199. data/apis/devicefarm/2015-06-23/api-2.json +0 -1819
  200. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  201. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  202. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  203. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  204. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  205. data/apis/discovery/2015-11-01/api-2.json +0 -556
  206. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  207. data/apis/dms/2016-01-01/api-2.json +0 -1469
  208. data/apis/dms/2016-01-01/examples-1.json +0 -5
  209. data/apis/ds/2015-04-16/api-2.json +0 -1674
  210. data/apis/ds/2015-04-16/examples-1.json +0 -5
  211. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  212. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  213. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  214. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  215. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  216. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  217. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  218. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  219. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  220. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  221. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  222. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  223. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  224. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  225. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  226. data/apis/ecr/2015-09-21/api-2.json +0 -849
  227. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  228. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  229. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  230. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  231. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  232. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  233. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  234. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  235. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  236. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  237. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  238. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  239. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  240. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  241. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  242. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  243. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  244. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  245. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  246. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  247. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  248. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  249. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  250. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  251. data/apis/email/2010-12-01/api-2.json +0 -1791
  252. data/apis/email/2010-12-01/examples-1.json +0 -5
  253. data/apis/email/2010-12-01/paginators-1.json +0 -13
  254. data/apis/email/2010-12-01/waiters-2.json +0 -18
  255. data/apis/es/2015-01-01/api-2.json +0 -764
  256. data/apis/events/2015-10-07/api-2.json +0 -643
  257. data/apis/events/2015-10-07/examples-1.json +0 -5
  258. data/apis/firehose/2015-08-04/api-2.json +0 -719
  259. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  260. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  261. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  262. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  263. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  264. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  265. data/apis/iam/2010-05-08/api-2.json +0 -4514
  266. data/apis/iam/2010-05-08/examples-1.json +0 -5
  267. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  268. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  269. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  270. data/apis/importexport/2010-06-01/api-2.json +0 -666
  271. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  272. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  273. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  274. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  275. data/apis/iot/2015-05-28/api-2.json +0 -3800
  276. data/apis/iot/2015-05-28/examples-1.json +0 -5
  277. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  278. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  279. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  280. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  281. data/apis/kms/2014-11-01/api-2.json +0 -1209
  282. data/apis/kms/2014-11-01/examples-1.json +0 -5
  283. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  284. data/apis/lambda/2014-11-11/api-2.json +0 -667
  285. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  286. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  287. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  288. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  289. data/apis/logs/2014-03-28/api-2.json +0 -1138
  290. data/apis/logs/2014-03-28/examples-1.json +0 -5
  291. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  292. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  293. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  294. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  295. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  296. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  297. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  298. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  299. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  300. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  301. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  302. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  303. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  304. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  305. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  306. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  307. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  308. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  309. data/apis/rds/2014-10-31/api-2.json +0 -4757
  310. data/apis/rds/2014-10-31/examples-1.json +0 -5
  311. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  312. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  313. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  314. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  315. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  316. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  317. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  318. data/apis/route53/2013-04-01/api-2.json +0 -3245
  319. data/apis/route53/2013-04-01/examples-1.json +0 -5
  320. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  321. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  322. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  323. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  324. data/apis/s3/2006-03-01/api-2.json +0 -4517
  325. data/apis/s3/2006-03-01/examples-1.json +0 -5
  326. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  327. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  328. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  329. data/apis/sdb/2009-04-15/api-2.json +0 -954
  330. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  331. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  332. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  333. data/apis/sns/2010-03-31/api-2.json +0 -1139
  334. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  335. data/apis/sns/2010-03-31/resources-1.json +0 -327
  336. data/apis/sqs/2012-11-05/api-2.json +0 -950
  337. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  338. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  339. data/apis/ssm/2014-11-06/api-2.json +0 -1742
  340. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  341. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  342. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  343. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  344. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  345. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  346. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  347. data/apis/sts/2011-06-15/api-2.json +0 -521
  348. data/apis/sts/2011-06-15/examples-1.json +0 -5
  349. data/apis/support/2013-04-15/api-2.json +0 -869
  350. data/apis/support/2013-04-15/paginators-1.json +0 -25
  351. data/apis/swf/2012-01-25/api-2.json +0 -2838
  352. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  353. data/apis/waf/2015-08-24/api-2.json +0 -1959
  354. data/apis/waf/2015-08-24/examples-1.json +0 -5
  355. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  356. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  357. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  358. data/bin/aws.rb +0 -180
  359. data/endpoints.json +0 -1460
  360. data/lib/aws-sdk-core/acm.rb +0 -6
  361. data/lib/aws-sdk-core/api/builder.rb +0 -106
  362. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  363. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  364. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  365. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  366. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  367. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  368. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  369. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  370. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  371. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  372. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  373. data/lib/aws-sdk-core/apigateway.rb +0 -6
  374. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  375. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  376. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  377. data/lib/aws-sdk-core/checksums.rb +0 -51
  378. data/lib/aws-sdk-core/client.rb +0 -67
  379. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  380. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  381. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  382. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  383. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  384. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  385. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  386. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  387. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  388. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  389. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  390. data/lib/aws-sdk-core/codecommit.rb +0 -6
  391. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  392. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  393. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  394. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  395. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  396. data/lib/aws-sdk-core/configservice.rb +0 -6
  397. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  398. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  399. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  400. data/lib/aws-sdk-core/directconnect.rb +0 -6
  401. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  402. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  403. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  404. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  405. data/lib/aws-sdk-core/ec2.rb +0 -8
  406. data/lib/aws-sdk-core/ecr.rb +0 -5
  407. data/lib/aws-sdk-core/ecs.rb +0 -7
  408. data/lib/aws-sdk-core/efs.rb +0 -5
  409. data/lib/aws-sdk-core/elasticache.rb +0 -7
  410. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  411. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  412. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  413. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  414. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  415. data/lib/aws-sdk-core/emr.rb +0 -7
  416. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  417. data/lib/aws-sdk-core/firehose.rb +0 -4
  418. data/lib/aws-sdk-core/gamelift.rb +0 -5
  419. data/lib/aws-sdk-core/glacier.rb +0 -7
  420. data/lib/aws-sdk-core/iam.rb +0 -8
  421. data/lib/aws-sdk-core/importexport.rb +0 -5
  422. data/lib/aws-sdk-core/inspector.rb +0 -5
  423. data/lib/aws-sdk-core/iot.rb +0 -5
  424. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  425. data/lib/aws-sdk-core/kinesis.rb +0 -7
  426. data/lib/aws-sdk-core/kms.rb +0 -6
  427. data/lib/aws-sdk-core/lambda.rb +0 -6
  428. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  429. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  430. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  431. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  432. data/lib/aws-sdk-core/opsworks.rb +0 -8
  433. data/lib/aws-sdk-core/partitions.rb +0 -174
  434. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  435. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  436. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  437. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  438. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  439. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  440. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  441. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  442. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  443. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  444. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  445. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  446. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  447. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  448. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  449. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  450. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  451. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  452. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  453. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  454. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  455. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  456. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  457. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  458. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  459. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  460. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  461. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  462. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  463. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  464. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  465. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  466. data/lib/aws-sdk-core/rds.rb +0 -8
  467. data/lib/aws-sdk-core/redshift.rb +0 -7
  468. data/lib/aws-sdk-core/route53.rb +0 -7
  469. data/lib/aws-sdk-core/route53domains.rb +0 -5
  470. data/lib/aws-sdk-core/s3.rb +0 -26
  471. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  472. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  473. data/lib/aws-sdk-core/service.rb +0 -4
  474. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  475. data/lib/aws-sdk-core/ses.rb +0 -7
  476. data/lib/aws-sdk-core/signers/base.rb +0 -31
  477. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  478. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  479. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  480. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  481. data/lib/aws-sdk-core/simpledb.rb +0 -5
  482. data/lib/aws-sdk-core/sns.rb +0 -6
  483. data/lib/aws-sdk-core/sqs.rb +0 -6
  484. data/lib/aws-sdk-core/ssm.rb +0 -6
  485. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  486. data/lib/aws-sdk-core/sts.rb +0 -5
  487. data/lib/aws-sdk-core/support.rb +0 -5
  488. data/lib/aws-sdk-core/swf.rb +0 -5
  489. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  490. data/lib/aws-sdk-core/version.rb +0 -3
  491. data/lib/aws-sdk-core/waf.rb +0 -5
  492. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  493. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  494. data/lib/aws-sdk-core/workspaces.rb +0 -6
  495. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  496. data/service-models.json +0 -285
@@ -1,4757 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2014-10-31",
5
- "endpointPrefix":"rds",
6
- "protocol":"query",
7
- "serviceAbbreviation":"Amazon RDS",
8
- "serviceFullName":"Amazon Relational Database Service",
9
- "signatureVersion":"v4",
10
- "xmlNamespace":"http://rds.amazonaws.com/doc/2014-10-31/"
11
- },
12
- "operations":{
13
- "AddSourceIdentifierToSubscription":{
14
- "name":"AddSourceIdentifierToSubscription",
15
- "http":{
16
- "method":"POST",
17
- "requestUri":"/"
18
- },
19
- "input":{"shape":"AddSourceIdentifierToSubscriptionMessage"},
20
- "output":{
21
- "shape":"AddSourceIdentifierToSubscriptionResult",
22
- "resultWrapper":"AddSourceIdentifierToSubscriptionResult"
23
- },
24
- "errors":[
25
- {"shape":"SubscriptionNotFoundFault"},
26
- {"shape":"SourceNotFoundFault"}
27
- ]
28
- },
29
- "AddTagsToResource":{
30
- "name":"AddTagsToResource",
31
- "http":{
32
- "method":"POST",
33
- "requestUri":"/"
34
- },
35
- "input":{"shape":"AddTagsToResourceMessage"},
36
- "errors":[
37
- {"shape":"DBInstanceNotFoundFault"},
38
- {"shape":"DBSnapshotNotFoundFault"}
39
- ]
40
- },
41
- "ApplyPendingMaintenanceAction":{
42
- "name":"ApplyPendingMaintenanceAction",
43
- "http":{
44
- "method":"POST",
45
- "requestUri":"/"
46
- },
47
- "input":{"shape":"ApplyPendingMaintenanceActionMessage"},
48
- "output":{
49
- "shape":"ApplyPendingMaintenanceActionResult",
50
- "resultWrapper":"ApplyPendingMaintenanceActionResult"
51
- },
52
- "errors":[
53
- {"shape":"ResourceNotFoundFault"}
54
- ]
55
- },
56
- "AuthorizeDBSecurityGroupIngress":{
57
- "name":"AuthorizeDBSecurityGroupIngress",
58
- "http":{
59
- "method":"POST",
60
- "requestUri":"/"
61
- },
62
- "input":{"shape":"AuthorizeDBSecurityGroupIngressMessage"},
63
- "output":{
64
- "shape":"AuthorizeDBSecurityGroupIngressResult",
65
- "resultWrapper":"AuthorizeDBSecurityGroupIngressResult"
66
- },
67
- "errors":[
68
- {"shape":"DBSecurityGroupNotFoundFault"},
69
- {"shape":"InvalidDBSecurityGroupStateFault"},
70
- {"shape":"AuthorizationAlreadyExistsFault"},
71
- {"shape":"AuthorizationQuotaExceededFault"}
72
- ]
73
- },
74
- "CopyDBClusterParameterGroup":{
75
- "name":"CopyDBClusterParameterGroup",
76
- "http":{
77
- "method":"POST",
78
- "requestUri":"/"
79
- },
80
- "input":{"shape":"CopyDBClusterParameterGroupMessage"},
81
- "output":{
82
- "shape":"CopyDBClusterParameterGroupResult",
83
- "resultWrapper":"CopyDBClusterParameterGroupResult"
84
- },
85
- "errors":[
86
- {"shape":"DBParameterGroupNotFoundFault"},
87
- {"shape":"DBParameterGroupQuotaExceededFault"},
88
- {"shape":"DBParameterGroupAlreadyExistsFault"}
89
- ]
90
- },
91
- "CopyDBClusterSnapshot":{
92
- "name":"CopyDBClusterSnapshot",
93
- "http":{
94
- "method":"POST",
95
- "requestUri":"/"
96
- },
97
- "input":{"shape":"CopyDBClusterSnapshotMessage"},
98
- "output":{
99
- "shape":"CopyDBClusterSnapshotResult",
100
- "resultWrapper":"CopyDBClusterSnapshotResult"
101
- },
102
- "errors":[
103
- {"shape":"DBClusterSnapshotAlreadyExistsFault"},
104
- {"shape":"DBClusterSnapshotNotFoundFault"},
105
- {"shape":"InvalidDBClusterStateFault"}
106
- ]
107
- },
108
- "CopyDBParameterGroup":{
109
- "name":"CopyDBParameterGroup",
110
- "http":{
111
- "method":"POST",
112
- "requestUri":"/"
113
- },
114
- "input":{"shape":"CopyDBParameterGroupMessage"},
115
- "output":{
116
- "shape":"CopyDBParameterGroupResult",
117
- "resultWrapper":"CopyDBParameterGroupResult"
118
- },
119
- "errors":[
120
- {"shape":"DBParameterGroupNotFoundFault"},
121
- {"shape":"DBParameterGroupAlreadyExistsFault"},
122
- {"shape":"DBParameterGroupQuotaExceededFault"}
123
- ]
124
- },
125
- "CopyDBSnapshot":{
126
- "name":"CopyDBSnapshot",
127
- "http":{
128
- "method":"POST",
129
- "requestUri":"/"
130
- },
131
- "input":{"shape":"CopyDBSnapshotMessage"},
132
- "output":{
133
- "shape":"CopyDBSnapshotResult",
134
- "resultWrapper":"CopyDBSnapshotResult"
135
- },
136
- "errors":[
137
- {"shape":"DBSnapshotAlreadyExistsFault"},
138
- {"shape":"DBSnapshotNotFoundFault"},
139
- {"shape":"InvalidDBSnapshotStateFault"},
140
- {"shape":"SnapshotQuotaExceededFault"},
141
- {"shape":"KMSKeyNotAccessibleFault"}
142
- ]
143
- },
144
- "CopyOptionGroup":{
145
- "name":"CopyOptionGroup",
146
- "http":{
147
- "method":"POST",
148
- "requestUri":"/"
149
- },
150
- "input":{"shape":"CopyOptionGroupMessage"},
151
- "output":{
152
- "shape":"CopyOptionGroupResult",
153
- "resultWrapper":"CopyOptionGroupResult"
154
- },
155
- "errors":[
156
- {"shape":"OptionGroupAlreadyExistsFault"},
157
- {"shape":"OptionGroupNotFoundFault"},
158
- {"shape":"OptionGroupQuotaExceededFault"}
159
- ]
160
- },
161
- "CreateDBCluster":{
162
- "name":"CreateDBCluster",
163
- "http":{
164
- "method":"POST",
165
- "requestUri":"/"
166
- },
167
- "input":{"shape":"CreateDBClusterMessage"},
168
- "output":{
169
- "shape":"CreateDBClusterResult",
170
- "resultWrapper":"CreateDBClusterResult"
171
- },
172
- "errors":[
173
- {"shape":"DBClusterAlreadyExistsFault"},
174
- {"shape":"InsufficientStorageClusterCapacityFault"},
175
- {"shape":"DBClusterQuotaExceededFault"},
176
- {"shape":"StorageQuotaExceededFault"},
177
- {"shape":"DBSubnetGroupNotFoundFault"},
178
- {"shape":"InvalidVPCNetworkStateFault"},
179
- {"shape":"InvalidDBClusterStateFault"},
180
- {"shape":"InvalidDBSubnetGroupStateFault"},
181
- {"shape":"InvalidSubnet"},
182
- {"shape":"DBClusterParameterGroupNotFoundFault"},
183
- {"shape":"KMSKeyNotAccessibleFault"},
184
- {"shape":"DBClusterNotFoundFault"}
185
- ]
186
- },
187
- "CreateDBClusterParameterGroup":{
188
- "name":"CreateDBClusterParameterGroup",
189
- "http":{
190
- "method":"POST",
191
- "requestUri":"/"
192
- },
193
- "input":{"shape":"CreateDBClusterParameterGroupMessage"},
194
- "output":{
195
- "shape":"CreateDBClusterParameterGroupResult",
196
- "resultWrapper":"CreateDBClusterParameterGroupResult"
197
- },
198
- "errors":[
199
- {"shape":"DBParameterGroupQuotaExceededFault"},
200
- {"shape":"DBParameterGroupAlreadyExistsFault"}
201
- ]
202
- },
203
- "CreateDBClusterSnapshot":{
204
- "name":"CreateDBClusterSnapshot",
205
- "http":{
206
- "method":"POST",
207
- "requestUri":"/"
208
- },
209
- "input":{"shape":"CreateDBClusterSnapshotMessage"},
210
- "output":{
211
- "shape":"CreateDBClusterSnapshotResult",
212
- "resultWrapper":"CreateDBClusterSnapshotResult"
213
- },
214
- "errors":[
215
- {"shape":"DBClusterSnapshotAlreadyExistsFault"},
216
- {"shape":"InvalidDBClusterStateFault"},
217
- {"shape":"DBClusterNotFoundFault"},
218
- {"shape":"SnapshotQuotaExceededFault"},
219
- {"shape":"InvalidDBClusterSnapshotStateFault"}
220
- ]
221
- },
222
- "CreateDBInstance":{
223
- "name":"CreateDBInstance",
224
- "http":{
225
- "method":"POST",
226
- "requestUri":"/"
227
- },
228
- "input":{"shape":"CreateDBInstanceMessage"},
229
- "output":{
230
- "shape":"CreateDBInstanceResult",
231
- "resultWrapper":"CreateDBInstanceResult"
232
- },
233
- "errors":[
234
- {"shape":"DBInstanceAlreadyExistsFault"},
235
- {"shape":"InsufficientDBInstanceCapacityFault"},
236
- {"shape":"DBParameterGroupNotFoundFault"},
237
- {"shape":"DBSecurityGroupNotFoundFault"},
238
- {"shape":"InstanceQuotaExceededFault"},
239
- {"shape":"StorageQuotaExceededFault"},
240
- {"shape":"DBSubnetGroupNotFoundFault"},
241
- {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"},
242
- {"shape":"InvalidDBClusterStateFault"},
243
- {"shape":"InvalidSubnet"},
244
- {"shape":"InvalidVPCNetworkStateFault"},
245
- {"shape":"ProvisionedIopsNotAvailableInAZFault"},
246
- {"shape":"OptionGroupNotFoundFault"},
247
- {"shape":"DBClusterNotFoundFault"},
248
- {"shape":"StorageTypeNotSupportedFault"},
249
- {"shape":"AuthorizationNotFoundFault"},
250
- {"shape":"KMSKeyNotAccessibleFault"},
251
- {"shape":"DomainNotFoundFault"}
252
- ]
253
- },
254
- "CreateDBInstanceReadReplica":{
255
- "name":"CreateDBInstanceReadReplica",
256
- "http":{
257
- "method":"POST",
258
- "requestUri":"/"
259
- },
260
- "input":{"shape":"CreateDBInstanceReadReplicaMessage"},
261
- "output":{
262
- "shape":"CreateDBInstanceReadReplicaResult",
263
- "resultWrapper":"CreateDBInstanceReadReplicaResult"
264
- },
265
- "errors":[
266
- {"shape":"DBInstanceAlreadyExistsFault"},
267
- {"shape":"InsufficientDBInstanceCapacityFault"},
268
- {"shape":"DBParameterGroupNotFoundFault"},
269
- {"shape":"DBSecurityGroupNotFoundFault"},
270
- {"shape":"InstanceQuotaExceededFault"},
271
- {"shape":"StorageQuotaExceededFault"},
272
- {"shape":"DBInstanceNotFoundFault"},
273
- {"shape":"InvalidDBInstanceStateFault"},
274
- {"shape":"DBSubnetGroupNotFoundFault"},
275
- {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"},
276
- {"shape":"InvalidSubnet"},
277
- {"shape":"InvalidVPCNetworkStateFault"},
278
- {"shape":"ProvisionedIopsNotAvailableInAZFault"},
279
- {"shape":"OptionGroupNotFoundFault"},
280
- {"shape":"DBSubnetGroupNotAllowedFault"},
281
- {"shape":"InvalidDBSubnetGroupFault"},
282
- {"shape":"StorageTypeNotSupportedFault"},
283
- {"shape":"KMSKeyNotAccessibleFault"}
284
- ]
285
- },
286
- "CreateDBParameterGroup":{
287
- "name":"CreateDBParameterGroup",
288
- "http":{
289
- "method":"POST",
290
- "requestUri":"/"
291
- },
292
- "input":{"shape":"CreateDBParameterGroupMessage"},
293
- "output":{
294
- "shape":"CreateDBParameterGroupResult",
295
- "resultWrapper":"CreateDBParameterGroupResult"
296
- },
297
- "errors":[
298
- {"shape":"DBParameterGroupQuotaExceededFault"},
299
- {"shape":"DBParameterGroupAlreadyExistsFault"}
300
- ]
301
- },
302
- "CreateDBSecurityGroup":{
303
- "name":"CreateDBSecurityGroup",
304
- "http":{
305
- "method":"POST",
306
- "requestUri":"/"
307
- },
308
- "input":{"shape":"CreateDBSecurityGroupMessage"},
309
- "output":{
310
- "shape":"CreateDBSecurityGroupResult",
311
- "resultWrapper":"CreateDBSecurityGroupResult"
312
- },
313
- "errors":[
314
- {"shape":"DBSecurityGroupAlreadyExistsFault"},
315
- {"shape":"DBSecurityGroupQuotaExceededFault"},
316
- {"shape":"DBSecurityGroupNotSupportedFault"}
317
- ]
318
- },
319
- "CreateDBSnapshot":{
320
- "name":"CreateDBSnapshot",
321
- "http":{
322
- "method":"POST",
323
- "requestUri":"/"
324
- },
325
- "input":{"shape":"CreateDBSnapshotMessage"},
326
- "output":{
327
- "shape":"CreateDBSnapshotResult",
328
- "resultWrapper":"CreateDBSnapshotResult"
329
- },
330
- "errors":[
331
- {"shape":"DBSnapshotAlreadyExistsFault"},
332
- {"shape":"InvalidDBInstanceStateFault"},
333
- {"shape":"DBInstanceNotFoundFault"},
334
- {"shape":"SnapshotQuotaExceededFault"}
335
- ]
336
- },
337
- "CreateDBSubnetGroup":{
338
- "name":"CreateDBSubnetGroup",
339
- "http":{
340
- "method":"POST",
341
- "requestUri":"/"
342
- },
343
- "input":{"shape":"CreateDBSubnetGroupMessage"},
344
- "output":{
345
- "shape":"CreateDBSubnetGroupResult",
346
- "resultWrapper":"CreateDBSubnetGroupResult"
347
- },
348
- "errors":[
349
- {"shape":"DBSubnetGroupAlreadyExistsFault"},
350
- {"shape":"DBSubnetGroupQuotaExceededFault"},
351
- {"shape":"DBSubnetQuotaExceededFault"},
352
- {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"},
353
- {"shape":"InvalidSubnet"}
354
- ]
355
- },
356
- "CreateEventSubscription":{
357
- "name":"CreateEventSubscription",
358
- "http":{
359
- "method":"POST",
360
- "requestUri":"/"
361
- },
362
- "input":{"shape":"CreateEventSubscriptionMessage"},
363
- "output":{
364
- "shape":"CreateEventSubscriptionResult",
365
- "resultWrapper":"CreateEventSubscriptionResult"
366
- },
367
- "errors":[
368
- {"shape":"EventSubscriptionQuotaExceededFault"},
369
- {"shape":"SubscriptionAlreadyExistFault"},
370
- {"shape":"SNSInvalidTopicFault"},
371
- {"shape":"SNSNoAuthorizationFault"},
372
- {"shape":"SNSTopicArnNotFoundFault"},
373
- {"shape":"SubscriptionCategoryNotFoundFault"},
374
- {"shape":"SourceNotFoundFault"}
375
- ]
376
- },
377
- "CreateOptionGroup":{
378
- "name":"CreateOptionGroup",
379
- "http":{
380
- "method":"POST",
381
- "requestUri":"/"
382
- },
383
- "input":{"shape":"CreateOptionGroupMessage"},
384
- "output":{
385
- "shape":"CreateOptionGroupResult",
386
- "resultWrapper":"CreateOptionGroupResult"
387
- },
388
- "errors":[
389
- {"shape":"OptionGroupAlreadyExistsFault"},
390
- {"shape":"OptionGroupQuotaExceededFault"}
391
- ]
392
- },
393
- "DeleteDBCluster":{
394
- "name":"DeleteDBCluster",
395
- "http":{
396
- "method":"POST",
397
- "requestUri":"/"
398
- },
399
- "input":{"shape":"DeleteDBClusterMessage"},
400
- "output":{
401
- "shape":"DeleteDBClusterResult",
402
- "resultWrapper":"DeleteDBClusterResult"
403
- },
404
- "errors":[
405
- {"shape":"DBClusterNotFoundFault"},
406
- {"shape":"InvalidDBClusterStateFault"},
407
- {"shape":"DBClusterSnapshotAlreadyExistsFault"},
408
- {"shape":"SnapshotQuotaExceededFault"},
409
- {"shape":"InvalidDBClusterSnapshotStateFault"}
410
- ]
411
- },
412
- "DeleteDBClusterParameterGroup":{
413
- "name":"DeleteDBClusterParameterGroup",
414
- "http":{
415
- "method":"POST",
416
- "requestUri":"/"
417
- },
418
- "input":{"shape":"DeleteDBClusterParameterGroupMessage"},
419
- "errors":[
420
- {"shape":"InvalidDBParameterGroupStateFault"},
421
- {"shape":"DBParameterGroupNotFoundFault"}
422
- ]
423
- },
424
- "DeleteDBClusterSnapshot":{
425
- "name":"DeleteDBClusterSnapshot",
426
- "http":{
427
- "method":"POST",
428
- "requestUri":"/"
429
- },
430
- "input":{"shape":"DeleteDBClusterSnapshotMessage"},
431
- "output":{
432
- "shape":"DeleteDBClusterSnapshotResult",
433
- "resultWrapper":"DeleteDBClusterSnapshotResult"
434
- },
435
- "errors":[
436
- {"shape":"InvalidDBClusterSnapshotStateFault"},
437
- {"shape":"DBClusterSnapshotNotFoundFault"}
438
- ]
439
- },
440
- "DeleteDBInstance":{
441
- "name":"DeleteDBInstance",
442
- "http":{
443
- "method":"POST",
444
- "requestUri":"/"
445
- },
446
- "input":{"shape":"DeleteDBInstanceMessage"},
447
- "output":{
448
- "shape":"DeleteDBInstanceResult",
449
- "resultWrapper":"DeleteDBInstanceResult"
450
- },
451
- "errors":[
452
- {"shape":"DBInstanceNotFoundFault"},
453
- {"shape":"InvalidDBInstanceStateFault"},
454
- {"shape":"DBSnapshotAlreadyExistsFault"},
455
- {"shape":"SnapshotQuotaExceededFault"},
456
- {"shape":"InvalidDBClusterStateFault"}
457
- ]
458
- },
459
- "DeleteDBParameterGroup":{
460
- "name":"DeleteDBParameterGroup",
461
- "http":{
462
- "method":"POST",
463
- "requestUri":"/"
464
- },
465
- "input":{"shape":"DeleteDBParameterGroupMessage"},
466
- "errors":[
467
- {"shape":"InvalidDBParameterGroupStateFault"},
468
- {"shape":"DBParameterGroupNotFoundFault"}
469
- ]
470
- },
471
- "DeleteDBSecurityGroup":{
472
- "name":"DeleteDBSecurityGroup",
473
- "http":{
474
- "method":"POST",
475
- "requestUri":"/"
476
- },
477
- "input":{"shape":"DeleteDBSecurityGroupMessage"},
478
- "errors":[
479
- {"shape":"InvalidDBSecurityGroupStateFault"},
480
- {"shape":"DBSecurityGroupNotFoundFault"}
481
- ]
482
- },
483
- "DeleteDBSnapshot":{
484
- "name":"DeleteDBSnapshot",
485
- "http":{
486
- "method":"POST",
487
- "requestUri":"/"
488
- },
489
- "input":{"shape":"DeleteDBSnapshotMessage"},
490
- "output":{
491
- "shape":"DeleteDBSnapshotResult",
492
- "resultWrapper":"DeleteDBSnapshotResult"
493
- },
494
- "errors":[
495
- {"shape":"InvalidDBSnapshotStateFault"},
496
- {"shape":"DBSnapshotNotFoundFault"}
497
- ]
498
- },
499
- "DeleteDBSubnetGroup":{
500
- "name":"DeleteDBSubnetGroup",
501
- "http":{
502
- "method":"POST",
503
- "requestUri":"/"
504
- },
505
- "input":{"shape":"DeleteDBSubnetGroupMessage"},
506
- "errors":[
507
- {"shape":"InvalidDBSubnetGroupStateFault"},
508
- {"shape":"InvalidDBSubnetStateFault"},
509
- {"shape":"DBSubnetGroupNotFoundFault"}
510
- ]
511
- },
512
- "DeleteEventSubscription":{
513
- "name":"DeleteEventSubscription",
514
- "http":{
515
- "method":"POST",
516
- "requestUri":"/"
517
- },
518
- "input":{"shape":"DeleteEventSubscriptionMessage"},
519
- "output":{
520
- "shape":"DeleteEventSubscriptionResult",
521
- "resultWrapper":"DeleteEventSubscriptionResult"
522
- },
523
- "errors":[
524
- {"shape":"SubscriptionNotFoundFault"},
525
- {"shape":"InvalidEventSubscriptionStateFault"}
526
- ]
527
- },
528
- "DeleteOptionGroup":{
529
- "name":"DeleteOptionGroup",
530
- "http":{
531
- "method":"POST",
532
- "requestUri":"/"
533
- },
534
- "input":{"shape":"DeleteOptionGroupMessage"},
535
- "errors":[
536
- {"shape":"OptionGroupNotFoundFault"},
537
- {"shape":"InvalidOptionGroupStateFault"}
538
- ]
539
- },
540
- "DescribeAccountAttributes":{
541
- "name":"DescribeAccountAttributes",
542
- "http":{
543
- "method":"POST",
544
- "requestUri":"/"
545
- },
546
- "input":{"shape":"DescribeAccountAttributesMessage"},
547
- "output":{
548
- "shape":"AccountAttributesMessage",
549
- "resultWrapper":"DescribeAccountAttributesResult"
550
- }
551
- },
552
- "DescribeCertificates":{
553
- "name":"DescribeCertificates",
554
- "http":{
555
- "method":"POST",
556
- "requestUri":"/"
557
- },
558
- "input":{"shape":"DescribeCertificatesMessage"},
559
- "output":{
560
- "shape":"CertificateMessage",
561
- "resultWrapper":"DescribeCertificatesResult"
562
- },
563
- "errors":[
564
- {"shape":"CertificateNotFoundFault"}
565
- ]
566
- },
567
- "DescribeDBClusterParameterGroups":{
568
- "name":"DescribeDBClusterParameterGroups",
569
- "http":{
570
- "method":"POST",
571
- "requestUri":"/"
572
- },
573
- "input":{"shape":"DescribeDBClusterParameterGroupsMessage"},
574
- "output":{
575
- "shape":"DBClusterParameterGroupsMessage",
576
- "resultWrapper":"DescribeDBClusterParameterGroupsResult"
577
- },
578
- "errors":[
579
- {"shape":"DBParameterGroupNotFoundFault"}
580
- ]
581
- },
582
- "DescribeDBClusterParameters":{
583
- "name":"DescribeDBClusterParameters",
584
- "http":{
585
- "method":"POST",
586
- "requestUri":"/"
587
- },
588
- "input":{"shape":"DescribeDBClusterParametersMessage"},
589
- "output":{
590
- "shape":"DBClusterParameterGroupDetails",
591
- "resultWrapper":"DescribeDBClusterParametersResult"
592
- },
593
- "errors":[
594
- {"shape":"DBParameterGroupNotFoundFault"}
595
- ]
596
- },
597
- "DescribeDBClusterSnapshotAttributes":{
598
- "name":"DescribeDBClusterSnapshotAttributes",
599
- "http":{
600
- "method":"POST",
601
- "requestUri":"/"
602
- },
603
- "input":{"shape":"DescribeDBClusterSnapshotAttributesMessage"},
604
- "output":{
605
- "shape":"DescribeDBClusterSnapshotAttributesResult",
606
- "resultWrapper":"DescribeDBClusterSnapshotAttributesResult"
607
- },
608
- "errors":[
609
- {"shape":"DBClusterSnapshotNotFoundFault"}
610
- ]
611
- },
612
- "DescribeDBClusterSnapshots":{
613
- "name":"DescribeDBClusterSnapshots",
614
- "http":{
615
- "method":"POST",
616
- "requestUri":"/"
617
- },
618
- "input":{"shape":"DescribeDBClusterSnapshotsMessage"},
619
- "output":{
620
- "shape":"DBClusterSnapshotMessage",
621
- "resultWrapper":"DescribeDBClusterSnapshotsResult"
622
- },
623
- "errors":[
624
- {"shape":"DBClusterSnapshotNotFoundFault"}
625
- ]
626
- },
627
- "DescribeDBClusters":{
628
- "name":"DescribeDBClusters",
629
- "http":{
630
- "method":"POST",
631
- "requestUri":"/"
632
- },
633
- "input":{"shape":"DescribeDBClustersMessage"},
634
- "output":{
635
- "shape":"DBClusterMessage",
636
- "resultWrapper":"DescribeDBClustersResult"
637
- },
638
- "errors":[
639
- {"shape":"DBClusterNotFoundFault"}
640
- ]
641
- },
642
- "DescribeDBEngineVersions":{
643
- "name":"DescribeDBEngineVersions",
644
- "http":{
645
- "method":"POST",
646
- "requestUri":"/"
647
- },
648
- "input":{"shape":"DescribeDBEngineVersionsMessage"},
649
- "output":{
650
- "shape":"DBEngineVersionMessage",
651
- "resultWrapper":"DescribeDBEngineVersionsResult"
652
- }
653
- },
654
- "DescribeDBInstances":{
655
- "name":"DescribeDBInstances",
656
- "http":{
657
- "method":"POST",
658
- "requestUri":"/"
659
- },
660
- "input":{"shape":"DescribeDBInstancesMessage"},
661
- "output":{
662
- "shape":"DBInstanceMessage",
663
- "resultWrapper":"DescribeDBInstancesResult"
664
- },
665
- "errors":[
666
- {"shape":"DBInstanceNotFoundFault"}
667
- ]
668
- },
669
- "DescribeDBLogFiles":{
670
- "name":"DescribeDBLogFiles",
671
- "http":{
672
- "method":"POST",
673
- "requestUri":"/"
674
- },
675
- "input":{"shape":"DescribeDBLogFilesMessage"},
676
- "output":{
677
- "shape":"DescribeDBLogFilesResponse",
678
- "resultWrapper":"DescribeDBLogFilesResult"
679
- },
680
- "errors":[
681
- {"shape":"DBInstanceNotFoundFault"}
682
- ]
683
- },
684
- "DescribeDBParameterGroups":{
685
- "name":"DescribeDBParameterGroups",
686
- "http":{
687
- "method":"POST",
688
- "requestUri":"/"
689
- },
690
- "input":{"shape":"DescribeDBParameterGroupsMessage"},
691
- "output":{
692
- "shape":"DBParameterGroupsMessage",
693
- "resultWrapper":"DescribeDBParameterGroupsResult"
694
- },
695
- "errors":[
696
- {"shape":"DBParameterGroupNotFoundFault"}
697
- ]
698
- },
699
- "DescribeDBParameters":{
700
- "name":"DescribeDBParameters",
701
- "http":{
702
- "method":"POST",
703
- "requestUri":"/"
704
- },
705
- "input":{"shape":"DescribeDBParametersMessage"},
706
- "output":{
707
- "shape":"DBParameterGroupDetails",
708
- "resultWrapper":"DescribeDBParametersResult"
709
- },
710
- "errors":[
711
- {"shape":"DBParameterGroupNotFoundFault"}
712
- ]
713
- },
714
- "DescribeDBSecurityGroups":{
715
- "name":"DescribeDBSecurityGroups",
716
- "http":{
717
- "method":"POST",
718
- "requestUri":"/"
719
- },
720
- "input":{"shape":"DescribeDBSecurityGroupsMessage"},
721
- "output":{
722
- "shape":"DBSecurityGroupMessage",
723
- "resultWrapper":"DescribeDBSecurityGroupsResult"
724
- },
725
- "errors":[
726
- {"shape":"DBSecurityGroupNotFoundFault"}
727
- ]
728
- },
729
- "DescribeDBSnapshotAttributes":{
730
- "name":"DescribeDBSnapshotAttributes",
731
- "http":{
732
- "method":"POST",
733
- "requestUri":"/"
734
- },
735
- "input":{"shape":"DescribeDBSnapshotAttributesMessage"},
736
- "output":{
737
- "shape":"DescribeDBSnapshotAttributesResult",
738
- "resultWrapper":"DescribeDBSnapshotAttributesResult"
739
- },
740
- "errors":[
741
- {"shape":"DBSnapshotNotFoundFault"}
742
- ]
743
- },
744
- "DescribeDBSnapshots":{
745
- "name":"DescribeDBSnapshots",
746
- "http":{
747
- "method":"POST",
748
- "requestUri":"/"
749
- },
750
- "input":{"shape":"DescribeDBSnapshotsMessage"},
751
- "output":{
752
- "shape":"DBSnapshotMessage",
753
- "resultWrapper":"DescribeDBSnapshotsResult"
754
- },
755
- "errors":[
756
- {"shape":"DBSnapshotNotFoundFault"}
757
- ]
758
- },
759
- "DescribeDBSubnetGroups":{
760
- "name":"DescribeDBSubnetGroups",
761
- "http":{
762
- "method":"POST",
763
- "requestUri":"/"
764
- },
765
- "input":{"shape":"DescribeDBSubnetGroupsMessage"},
766
- "output":{
767
- "shape":"DBSubnetGroupMessage",
768
- "resultWrapper":"DescribeDBSubnetGroupsResult"
769
- },
770
- "errors":[
771
- {"shape":"DBSubnetGroupNotFoundFault"}
772
- ]
773
- },
774
- "DescribeEngineDefaultClusterParameters":{
775
- "name":"DescribeEngineDefaultClusterParameters",
776
- "http":{
777
- "method":"POST",
778
- "requestUri":"/"
779
- },
780
- "input":{"shape":"DescribeEngineDefaultClusterParametersMessage"},
781
- "output":{
782
- "shape":"DescribeEngineDefaultClusterParametersResult",
783
- "resultWrapper":"DescribeEngineDefaultClusterParametersResult"
784
- }
785
- },
786
- "DescribeEngineDefaultParameters":{
787
- "name":"DescribeEngineDefaultParameters",
788
- "http":{
789
- "method":"POST",
790
- "requestUri":"/"
791
- },
792
- "input":{"shape":"DescribeEngineDefaultParametersMessage"},
793
- "output":{
794
- "shape":"DescribeEngineDefaultParametersResult",
795
- "resultWrapper":"DescribeEngineDefaultParametersResult"
796
- }
797
- },
798
- "DescribeEventCategories":{
799
- "name":"DescribeEventCategories",
800
- "http":{
801
- "method":"POST",
802
- "requestUri":"/"
803
- },
804
- "input":{"shape":"DescribeEventCategoriesMessage"},
805
- "output":{
806
- "shape":"EventCategoriesMessage",
807
- "resultWrapper":"DescribeEventCategoriesResult"
808
- }
809
- },
810
- "DescribeEventSubscriptions":{
811
- "name":"DescribeEventSubscriptions",
812
- "http":{
813
- "method":"POST",
814
- "requestUri":"/"
815
- },
816
- "input":{"shape":"DescribeEventSubscriptionsMessage"},
817
- "output":{
818
- "shape":"EventSubscriptionsMessage",
819
- "resultWrapper":"DescribeEventSubscriptionsResult"
820
- },
821
- "errors":[
822
- {"shape":"SubscriptionNotFoundFault"}
823
- ]
824
- },
825
- "DescribeEvents":{
826
- "name":"DescribeEvents",
827
- "http":{
828
- "method":"POST",
829
- "requestUri":"/"
830
- },
831
- "input":{"shape":"DescribeEventsMessage"},
832
- "output":{
833
- "shape":"EventsMessage",
834
- "resultWrapper":"DescribeEventsResult"
835
- }
836
- },
837
- "DescribeOptionGroupOptions":{
838
- "name":"DescribeOptionGroupOptions",
839
- "http":{
840
- "method":"POST",
841
- "requestUri":"/"
842
- },
843
- "input":{"shape":"DescribeOptionGroupOptionsMessage"},
844
- "output":{
845
- "shape":"OptionGroupOptionsMessage",
846
- "resultWrapper":"DescribeOptionGroupOptionsResult"
847
- }
848
- },
849
- "DescribeOptionGroups":{
850
- "name":"DescribeOptionGroups",
851
- "http":{
852
- "method":"POST",
853
- "requestUri":"/"
854
- },
855
- "input":{"shape":"DescribeOptionGroupsMessage"},
856
- "output":{
857
- "shape":"OptionGroups",
858
- "resultWrapper":"DescribeOptionGroupsResult"
859
- },
860
- "errors":[
861
- {"shape":"OptionGroupNotFoundFault"}
862
- ]
863
- },
864
- "DescribeOrderableDBInstanceOptions":{
865
- "name":"DescribeOrderableDBInstanceOptions",
866
- "http":{
867
- "method":"POST",
868
- "requestUri":"/"
869
- },
870
- "input":{"shape":"DescribeOrderableDBInstanceOptionsMessage"},
871
- "output":{
872
- "shape":"OrderableDBInstanceOptionsMessage",
873
- "resultWrapper":"DescribeOrderableDBInstanceOptionsResult"
874
- }
875
- },
876
- "DescribePendingMaintenanceActions":{
877
- "name":"DescribePendingMaintenanceActions",
878
- "http":{
879
- "method":"POST",
880
- "requestUri":"/"
881
- },
882
- "input":{"shape":"DescribePendingMaintenanceActionsMessage"},
883
- "output":{
884
- "shape":"PendingMaintenanceActionsMessage",
885
- "resultWrapper":"DescribePendingMaintenanceActionsResult"
886
- },
887
- "errors":[
888
- {"shape":"ResourceNotFoundFault"}
889
- ]
890
- },
891
- "DescribeReservedDBInstances":{
892
- "name":"DescribeReservedDBInstances",
893
- "http":{
894
- "method":"POST",
895
- "requestUri":"/"
896
- },
897
- "input":{"shape":"DescribeReservedDBInstancesMessage"},
898
- "output":{
899
- "shape":"ReservedDBInstanceMessage",
900
- "resultWrapper":"DescribeReservedDBInstancesResult"
901
- },
902
- "errors":[
903
- {"shape":"ReservedDBInstanceNotFoundFault"}
904
- ]
905
- },
906
- "DescribeReservedDBInstancesOfferings":{
907
- "name":"DescribeReservedDBInstancesOfferings",
908
- "http":{
909
- "method":"POST",
910
- "requestUri":"/"
911
- },
912
- "input":{"shape":"DescribeReservedDBInstancesOfferingsMessage"},
913
- "output":{
914
- "shape":"ReservedDBInstancesOfferingMessage",
915
- "resultWrapper":"DescribeReservedDBInstancesOfferingsResult"
916
- },
917
- "errors":[
918
- {"shape":"ReservedDBInstancesOfferingNotFoundFault"}
919
- ]
920
- },
921
- "DownloadDBLogFilePortion":{
922
- "name":"DownloadDBLogFilePortion",
923
- "http":{
924
- "method":"POST",
925
- "requestUri":"/"
926
- },
927
- "input":{"shape":"DownloadDBLogFilePortionMessage"},
928
- "output":{
929
- "shape":"DownloadDBLogFilePortionDetails",
930
- "resultWrapper":"DownloadDBLogFilePortionResult"
931
- },
932
- "errors":[
933
- {"shape":"DBInstanceNotFoundFault"},
934
- {"shape":"DBLogFileNotFoundFault"}
935
- ]
936
- },
937
- "FailoverDBCluster":{
938
- "name":"FailoverDBCluster",
939
- "http":{
940
- "method":"POST",
941
- "requestUri":"/"
942
- },
943
- "input":{"shape":"FailoverDBClusterMessage"},
944
- "output":{
945
- "shape":"FailoverDBClusterResult",
946
- "resultWrapper":"FailoverDBClusterResult"
947
- },
948
- "errors":[
949
- {"shape":"DBClusterNotFoundFault"},
950
- {"shape":"InvalidDBClusterStateFault"},
951
- {"shape":"InvalidDBInstanceStateFault"}
952
- ]
953
- },
954
- "ListTagsForResource":{
955
- "name":"ListTagsForResource",
956
- "http":{
957
- "method":"POST",
958
- "requestUri":"/"
959
- },
960
- "input":{"shape":"ListTagsForResourceMessage"},
961
- "output":{
962
- "shape":"TagListMessage",
963
- "resultWrapper":"ListTagsForResourceResult"
964
- },
965
- "errors":[
966
- {"shape":"DBInstanceNotFoundFault"},
967
- {"shape":"DBSnapshotNotFoundFault"}
968
- ]
969
- },
970
- "ModifyDBCluster":{
971
- "name":"ModifyDBCluster",
972
- "http":{
973
- "method":"POST",
974
- "requestUri":"/"
975
- },
976
- "input":{"shape":"ModifyDBClusterMessage"},
977
- "output":{
978
- "shape":"ModifyDBClusterResult",
979
- "resultWrapper":"ModifyDBClusterResult"
980
- },
981
- "errors":[
982
- {"shape":"DBClusterNotFoundFault"},
983
- {"shape":"InvalidDBClusterStateFault"},
984
- {"shape":"StorageQuotaExceededFault"},
985
- {"shape":"DBSubnetGroupNotFoundFault"},
986
- {"shape":"InvalidVPCNetworkStateFault"},
987
- {"shape":"InvalidDBSubnetGroupStateFault"},
988
- {"shape":"InvalidSubnet"},
989
- {"shape":"DBClusterParameterGroupNotFoundFault"},
990
- {"shape":"InvalidDBSecurityGroupStateFault"},
991
- {"shape":"InvalidDBInstanceStateFault"},
992
- {"shape":"DBClusterAlreadyExistsFault"}
993
- ]
994
- },
995
- "ModifyDBClusterParameterGroup":{
996
- "name":"ModifyDBClusterParameterGroup",
997
- "http":{
998
- "method":"POST",
999
- "requestUri":"/"
1000
- },
1001
- "input":{"shape":"ModifyDBClusterParameterGroupMessage"},
1002
- "output":{
1003
- "shape":"DBClusterParameterGroupNameMessage",
1004
- "resultWrapper":"ModifyDBClusterParameterGroupResult"
1005
- },
1006
- "errors":[
1007
- {"shape":"DBParameterGroupNotFoundFault"},
1008
- {"shape":"InvalidDBParameterGroupStateFault"}
1009
- ]
1010
- },
1011
- "ModifyDBClusterSnapshotAttribute":{
1012
- "name":"ModifyDBClusterSnapshotAttribute",
1013
- "http":{
1014
- "method":"POST",
1015
- "requestUri":"/"
1016
- },
1017
- "input":{"shape":"ModifyDBClusterSnapshotAttributeMessage"},
1018
- "output":{
1019
- "shape":"ModifyDBClusterSnapshotAttributeResult",
1020
- "resultWrapper":"ModifyDBClusterSnapshotAttributeResult"
1021
- },
1022
- "errors":[
1023
- {"shape":"DBClusterSnapshotNotFoundFault"},
1024
- {"shape":"InvalidDBClusterSnapshotStateFault"},
1025
- {"shape":"SharedSnapshotQuotaExceededFault"}
1026
- ]
1027
- },
1028
- "ModifyDBInstance":{
1029
- "name":"ModifyDBInstance",
1030
- "http":{
1031
- "method":"POST",
1032
- "requestUri":"/"
1033
- },
1034
- "input":{"shape":"ModifyDBInstanceMessage"},
1035
- "output":{
1036
- "shape":"ModifyDBInstanceResult",
1037
- "resultWrapper":"ModifyDBInstanceResult"
1038
- },
1039
- "errors":[
1040
- {"shape":"InvalidDBInstanceStateFault"},
1041
- {"shape":"InvalidDBSecurityGroupStateFault"},
1042
- {"shape":"DBInstanceAlreadyExistsFault"},
1043
- {"shape":"DBInstanceNotFoundFault"},
1044
- {"shape":"DBSecurityGroupNotFoundFault"},
1045
- {"shape":"DBParameterGroupNotFoundFault"},
1046
- {"shape":"InsufficientDBInstanceCapacityFault"},
1047
- {"shape":"StorageQuotaExceededFault"},
1048
- {"shape":"InvalidVPCNetworkStateFault"},
1049
- {"shape":"ProvisionedIopsNotAvailableInAZFault"},
1050
- {"shape":"OptionGroupNotFoundFault"},
1051
- {"shape":"DBUpgradeDependencyFailureFault"},
1052
- {"shape":"StorageTypeNotSupportedFault"},
1053
- {"shape":"AuthorizationNotFoundFault"},
1054
- {"shape":"CertificateNotFoundFault"},
1055
- {"shape":"DomainNotFoundFault"}
1056
- ]
1057
- },
1058
- "ModifyDBParameterGroup":{
1059
- "name":"ModifyDBParameterGroup",
1060
- "http":{
1061
- "method":"POST",
1062
- "requestUri":"/"
1063
- },
1064
- "input":{"shape":"ModifyDBParameterGroupMessage"},
1065
- "output":{
1066
- "shape":"DBParameterGroupNameMessage",
1067
- "resultWrapper":"ModifyDBParameterGroupResult"
1068
- },
1069
- "errors":[
1070
- {"shape":"DBParameterGroupNotFoundFault"},
1071
- {"shape":"InvalidDBParameterGroupStateFault"}
1072
- ]
1073
- },
1074
- "ModifyDBSnapshotAttribute":{
1075
- "name":"ModifyDBSnapshotAttribute",
1076
- "http":{
1077
- "method":"POST",
1078
- "requestUri":"/"
1079
- },
1080
- "input":{"shape":"ModifyDBSnapshotAttributeMessage"},
1081
- "output":{
1082
- "shape":"ModifyDBSnapshotAttributeResult",
1083
- "resultWrapper":"ModifyDBSnapshotAttributeResult"
1084
- },
1085
- "errors":[
1086
- {"shape":"DBSnapshotNotFoundFault"},
1087
- {"shape":"InvalidDBSnapshotStateFault"},
1088
- {"shape":"SharedSnapshotQuotaExceededFault"}
1089
- ]
1090
- },
1091
- "ModifyDBSubnetGroup":{
1092
- "name":"ModifyDBSubnetGroup",
1093
- "http":{
1094
- "method":"POST",
1095
- "requestUri":"/"
1096
- },
1097
- "input":{"shape":"ModifyDBSubnetGroupMessage"},
1098
- "output":{
1099
- "shape":"ModifyDBSubnetGroupResult",
1100
- "resultWrapper":"ModifyDBSubnetGroupResult"
1101
- },
1102
- "errors":[
1103
- {"shape":"DBSubnetGroupNotFoundFault"},
1104
- {"shape":"DBSubnetQuotaExceededFault"},
1105
- {"shape":"SubnetAlreadyInUse"},
1106
- {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"},
1107
- {"shape":"InvalidSubnet"}
1108
- ]
1109
- },
1110
- "ModifyEventSubscription":{
1111
- "name":"ModifyEventSubscription",
1112
- "http":{
1113
- "method":"POST",
1114
- "requestUri":"/"
1115
- },
1116
- "input":{"shape":"ModifyEventSubscriptionMessage"},
1117
- "output":{
1118
- "shape":"ModifyEventSubscriptionResult",
1119
- "resultWrapper":"ModifyEventSubscriptionResult"
1120
- },
1121
- "errors":[
1122
- {"shape":"EventSubscriptionQuotaExceededFault"},
1123
- {"shape":"SubscriptionNotFoundFault"},
1124
- {"shape":"SNSInvalidTopicFault"},
1125
- {"shape":"SNSNoAuthorizationFault"},
1126
- {"shape":"SNSTopicArnNotFoundFault"},
1127
- {"shape":"SubscriptionCategoryNotFoundFault"}
1128
- ]
1129
- },
1130
- "ModifyOptionGroup":{
1131
- "name":"ModifyOptionGroup",
1132
- "http":{
1133
- "method":"POST",
1134
- "requestUri":"/"
1135
- },
1136
- "input":{"shape":"ModifyOptionGroupMessage"},
1137
- "output":{
1138
- "shape":"ModifyOptionGroupResult",
1139
- "resultWrapper":"ModifyOptionGroupResult"
1140
- },
1141
- "errors":[
1142
- {"shape":"InvalidOptionGroupStateFault"},
1143
- {"shape":"OptionGroupNotFoundFault"}
1144
- ]
1145
- },
1146
- "PromoteReadReplica":{
1147
- "name":"PromoteReadReplica",
1148
- "http":{
1149
- "method":"POST",
1150
- "requestUri":"/"
1151
- },
1152
- "input":{"shape":"PromoteReadReplicaMessage"},
1153
- "output":{
1154
- "shape":"PromoteReadReplicaResult",
1155
- "resultWrapper":"PromoteReadReplicaResult"
1156
- },
1157
- "errors":[
1158
- {"shape":"InvalidDBInstanceStateFault"},
1159
- {"shape":"DBInstanceNotFoundFault"}
1160
- ]
1161
- },
1162
- "PromoteReadReplicaDBCluster":{
1163
- "name":"PromoteReadReplicaDBCluster",
1164
- "http":{
1165
- "method":"POST",
1166
- "requestUri":"/"
1167
- },
1168
- "input":{"shape":"PromoteReadReplicaDBClusterMessage"},
1169
- "output":{
1170
- "shape":"PromoteReadReplicaDBClusterResult",
1171
- "resultWrapper":"PromoteReadReplicaDBClusterResult"
1172
- },
1173
- "errors":[
1174
- {"shape":"DBClusterNotFoundFault"},
1175
- {"shape":"InvalidDBClusterStateFault"}
1176
- ]
1177
- },
1178
- "PurchaseReservedDBInstancesOffering":{
1179
- "name":"PurchaseReservedDBInstancesOffering",
1180
- "http":{
1181
- "method":"POST",
1182
- "requestUri":"/"
1183
- },
1184
- "input":{"shape":"PurchaseReservedDBInstancesOfferingMessage"},
1185
- "output":{
1186
- "shape":"PurchaseReservedDBInstancesOfferingResult",
1187
- "resultWrapper":"PurchaseReservedDBInstancesOfferingResult"
1188
- },
1189
- "errors":[
1190
- {"shape":"ReservedDBInstancesOfferingNotFoundFault"},
1191
- {"shape":"ReservedDBInstanceAlreadyExistsFault"},
1192
- {"shape":"ReservedDBInstanceQuotaExceededFault"}
1193
- ]
1194
- },
1195
- "RebootDBInstance":{
1196
- "name":"RebootDBInstance",
1197
- "http":{
1198
- "method":"POST",
1199
- "requestUri":"/"
1200
- },
1201
- "input":{"shape":"RebootDBInstanceMessage"},
1202
- "output":{
1203
- "shape":"RebootDBInstanceResult",
1204
- "resultWrapper":"RebootDBInstanceResult"
1205
- },
1206
- "errors":[
1207
- {"shape":"InvalidDBInstanceStateFault"},
1208
- {"shape":"DBInstanceNotFoundFault"}
1209
- ]
1210
- },
1211
- "RemoveSourceIdentifierFromSubscription":{
1212
- "name":"RemoveSourceIdentifierFromSubscription",
1213
- "http":{
1214
- "method":"POST",
1215
- "requestUri":"/"
1216
- },
1217
- "input":{"shape":"RemoveSourceIdentifierFromSubscriptionMessage"},
1218
- "output":{
1219
- "shape":"RemoveSourceIdentifierFromSubscriptionResult",
1220
- "resultWrapper":"RemoveSourceIdentifierFromSubscriptionResult"
1221
- },
1222
- "errors":[
1223
- {"shape":"SubscriptionNotFoundFault"},
1224
- {"shape":"SourceNotFoundFault"}
1225
- ]
1226
- },
1227
- "RemoveTagsFromResource":{
1228
- "name":"RemoveTagsFromResource",
1229
- "http":{
1230
- "method":"POST",
1231
- "requestUri":"/"
1232
- },
1233
- "input":{"shape":"RemoveTagsFromResourceMessage"},
1234
- "errors":[
1235
- {"shape":"DBInstanceNotFoundFault"},
1236
- {"shape":"DBSnapshotNotFoundFault"}
1237
- ]
1238
- },
1239
- "ResetDBClusterParameterGroup":{
1240
- "name":"ResetDBClusterParameterGroup",
1241
- "http":{
1242
- "method":"POST",
1243
- "requestUri":"/"
1244
- },
1245
- "input":{"shape":"ResetDBClusterParameterGroupMessage"},
1246
- "output":{
1247
- "shape":"DBClusterParameterGroupNameMessage",
1248
- "resultWrapper":"ResetDBClusterParameterGroupResult"
1249
- },
1250
- "errors":[
1251
- {"shape":"InvalidDBParameterGroupStateFault"},
1252
- {"shape":"DBParameterGroupNotFoundFault"}
1253
- ]
1254
- },
1255
- "ResetDBParameterGroup":{
1256
- "name":"ResetDBParameterGroup",
1257
- "http":{
1258
- "method":"POST",
1259
- "requestUri":"/"
1260
- },
1261
- "input":{"shape":"ResetDBParameterGroupMessage"},
1262
- "output":{
1263
- "shape":"DBParameterGroupNameMessage",
1264
- "resultWrapper":"ResetDBParameterGroupResult"
1265
- },
1266
- "errors":[
1267
- {"shape":"InvalidDBParameterGroupStateFault"},
1268
- {"shape":"DBParameterGroupNotFoundFault"}
1269
- ]
1270
- },
1271
- "RestoreDBClusterFromSnapshot":{
1272
- "name":"RestoreDBClusterFromSnapshot",
1273
- "http":{
1274
- "method":"POST",
1275
- "requestUri":"/"
1276
- },
1277
- "input":{"shape":"RestoreDBClusterFromSnapshotMessage"},
1278
- "output":{
1279
- "shape":"RestoreDBClusterFromSnapshotResult",
1280
- "resultWrapper":"RestoreDBClusterFromSnapshotResult"
1281
- },
1282
- "errors":[
1283
- {"shape":"DBClusterAlreadyExistsFault"},
1284
- {"shape":"DBClusterQuotaExceededFault"},
1285
- {"shape":"StorageQuotaExceededFault"},
1286
- {"shape":"DBSubnetGroupNotFoundFault"},
1287
- {"shape":"DBSnapshotNotFoundFault"},
1288
- {"shape":"DBClusterSnapshotNotFoundFault"},
1289
- {"shape":"InsufficientDBClusterCapacityFault"},
1290
- {"shape":"InsufficientStorageClusterCapacityFault"},
1291
- {"shape":"InvalidDBSnapshotStateFault"},
1292
- {"shape":"InvalidDBClusterSnapshotStateFault"},
1293
- {"shape":"StorageQuotaExceededFault"},
1294
- {"shape":"InvalidVPCNetworkStateFault"},
1295
- {"shape":"InvalidRestoreFault"},
1296
- {"shape":"DBSubnetGroupNotFoundFault"},
1297
- {"shape":"InvalidSubnet"},
1298
- {"shape":"OptionGroupNotFoundFault"},
1299
- {"shape":"KMSKeyNotAccessibleFault"}
1300
- ]
1301
- },
1302
- "RestoreDBClusterToPointInTime":{
1303
- "name":"RestoreDBClusterToPointInTime",
1304
- "http":{
1305
- "method":"POST",
1306
- "requestUri":"/"
1307
- },
1308
- "input":{"shape":"RestoreDBClusterToPointInTimeMessage"},
1309
- "output":{
1310
- "shape":"RestoreDBClusterToPointInTimeResult",
1311
- "resultWrapper":"RestoreDBClusterToPointInTimeResult"
1312
- },
1313
- "errors":[
1314
- {"shape":"DBClusterAlreadyExistsFault"},
1315
- {"shape":"DBClusterQuotaExceededFault"},
1316
- {"shape":"StorageQuotaExceededFault"},
1317
- {"shape":"DBSubnetGroupNotFoundFault"},
1318
- {"shape":"DBClusterNotFoundFault"},
1319
- {"shape":"DBClusterSnapshotNotFoundFault"},
1320
- {"shape":"InsufficientDBClusterCapacityFault"},
1321
- {"shape":"InvalidDBSnapshotStateFault"},
1322
- {"shape":"InvalidDBClusterSnapshotStateFault"},
1323
- {"shape":"StorageQuotaExceededFault"},
1324
- {"shape":"InvalidVPCNetworkStateFault"},
1325
- {"shape":"InvalidRestoreFault"},
1326
- {"shape":"DBSubnetGroupNotFoundFault"},
1327
- {"shape":"InvalidSubnet"},
1328
- {"shape":"OptionGroupNotFoundFault"},
1329
- {"shape":"KMSKeyNotAccessibleFault"}
1330
- ]
1331
- },
1332
- "RestoreDBInstanceFromDBSnapshot":{
1333
- "name":"RestoreDBInstanceFromDBSnapshot",
1334
- "http":{
1335
- "method":"POST",
1336
- "requestUri":"/"
1337
- },
1338
- "input":{"shape":"RestoreDBInstanceFromDBSnapshotMessage"},
1339
- "output":{
1340
- "shape":"RestoreDBInstanceFromDBSnapshotResult",
1341
- "resultWrapper":"RestoreDBInstanceFromDBSnapshotResult"
1342
- },
1343
- "errors":[
1344
- {"shape":"DBInstanceAlreadyExistsFault"},
1345
- {"shape":"DBSnapshotNotFoundFault"},
1346
- {"shape":"InstanceQuotaExceededFault"},
1347
- {"shape":"InsufficientDBInstanceCapacityFault"},
1348
- {"shape":"InvalidDBSnapshotStateFault"},
1349
- {"shape":"StorageQuotaExceededFault"},
1350
- {"shape":"InvalidVPCNetworkStateFault"},
1351
- {"shape":"InvalidRestoreFault"},
1352
- {"shape":"DBSubnetGroupNotFoundFault"},
1353
- {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"},
1354
- {"shape":"InvalidSubnet"},
1355
- {"shape":"ProvisionedIopsNotAvailableInAZFault"},
1356
- {"shape":"OptionGroupNotFoundFault"},
1357
- {"shape":"StorageTypeNotSupportedFault"},
1358
- {"shape":"AuthorizationNotFoundFault"},
1359
- {"shape":"KMSKeyNotAccessibleFault"},
1360
- {"shape":"DBSecurityGroupNotFoundFault"},
1361
- {"shape":"DomainNotFoundFault"}
1362
- ]
1363
- },
1364
- "RestoreDBInstanceToPointInTime":{
1365
- "name":"RestoreDBInstanceToPointInTime",
1366
- "http":{
1367
- "method":"POST",
1368
- "requestUri":"/"
1369
- },
1370
- "input":{"shape":"RestoreDBInstanceToPointInTimeMessage"},
1371
- "output":{
1372
- "shape":"RestoreDBInstanceToPointInTimeResult",
1373
- "resultWrapper":"RestoreDBInstanceToPointInTimeResult"
1374
- },
1375
- "errors":[
1376
- {"shape":"DBInstanceAlreadyExistsFault"},
1377
- {"shape":"DBInstanceNotFoundFault"},
1378
- {"shape":"InstanceQuotaExceededFault"},
1379
- {"shape":"InsufficientDBInstanceCapacityFault"},
1380
- {"shape":"InvalidDBInstanceStateFault"},
1381
- {"shape":"PointInTimeRestoreNotEnabledFault"},
1382
- {"shape":"StorageQuotaExceededFault"},
1383
- {"shape":"InvalidVPCNetworkStateFault"},
1384
- {"shape":"InvalidRestoreFault"},
1385
- {"shape":"DBSubnetGroupNotFoundFault"},
1386
- {"shape":"DBSubnetGroupDoesNotCoverEnoughAZs"},
1387
- {"shape":"InvalidSubnet"},
1388
- {"shape":"ProvisionedIopsNotAvailableInAZFault"},
1389
- {"shape":"OptionGroupNotFoundFault"},
1390
- {"shape":"StorageTypeNotSupportedFault"},
1391
- {"shape":"AuthorizationNotFoundFault"},
1392
- {"shape":"KMSKeyNotAccessibleFault"},
1393
- {"shape":"DBSecurityGroupNotFoundFault"},
1394
- {"shape":"DomainNotFoundFault"}
1395
- ]
1396
- },
1397
- "RevokeDBSecurityGroupIngress":{
1398
- "name":"RevokeDBSecurityGroupIngress",
1399
- "http":{
1400
- "method":"POST",
1401
- "requestUri":"/"
1402
- },
1403
- "input":{"shape":"RevokeDBSecurityGroupIngressMessage"},
1404
- "output":{
1405
- "shape":"RevokeDBSecurityGroupIngressResult",
1406
- "resultWrapper":"RevokeDBSecurityGroupIngressResult"
1407
- },
1408
- "errors":[
1409
- {"shape":"DBSecurityGroupNotFoundFault"},
1410
- {"shape":"AuthorizationNotFoundFault"},
1411
- {"shape":"InvalidDBSecurityGroupStateFault"}
1412
- ]
1413
- }
1414
- },
1415
- "shapes":{
1416
- "AccountAttributesMessage":{
1417
- "type":"structure",
1418
- "members":{
1419
- "AccountQuotas":{"shape":"AccountQuotaList"}
1420
- }
1421
- },
1422
- "AccountQuota":{
1423
- "type":"structure",
1424
- "members":{
1425
- "AccountQuotaName":{"shape":"String"},
1426
- "Used":{"shape":"Long"},
1427
- "Max":{"shape":"Long"}
1428
- },
1429
- "wrapper":true
1430
- },
1431
- "AccountQuotaList":{
1432
- "type":"list",
1433
- "member":{
1434
- "shape":"AccountQuota",
1435
- "locationName":"AccountQuota"
1436
- }
1437
- },
1438
- "AddSourceIdentifierToSubscriptionMessage":{
1439
- "type":"structure",
1440
- "required":[
1441
- "SubscriptionName",
1442
- "SourceIdentifier"
1443
- ],
1444
- "members":{
1445
- "SubscriptionName":{"shape":"String"},
1446
- "SourceIdentifier":{"shape":"String"}
1447
- }
1448
- },
1449
- "AddSourceIdentifierToSubscriptionResult":{
1450
- "type":"structure",
1451
- "members":{
1452
- "EventSubscription":{"shape":"EventSubscription"}
1453
- }
1454
- },
1455
- "AddTagsToResourceMessage":{
1456
- "type":"structure",
1457
- "required":[
1458
- "ResourceName",
1459
- "Tags"
1460
- ],
1461
- "members":{
1462
- "ResourceName":{"shape":"String"},
1463
- "Tags":{"shape":"TagList"}
1464
- }
1465
- },
1466
- "ApplyMethod":{
1467
- "type":"string",
1468
- "enum":[
1469
- "immediate",
1470
- "pending-reboot"
1471
- ]
1472
- },
1473
- "ApplyPendingMaintenanceActionMessage":{
1474
- "type":"structure",
1475
- "required":[
1476
- "ResourceIdentifier",
1477
- "ApplyAction",
1478
- "OptInType"
1479
- ],
1480
- "members":{
1481
- "ResourceIdentifier":{"shape":"String"},
1482
- "ApplyAction":{"shape":"String"},
1483
- "OptInType":{"shape":"String"}
1484
- }
1485
- },
1486
- "ApplyPendingMaintenanceActionResult":{
1487
- "type":"structure",
1488
- "members":{
1489
- "ResourcePendingMaintenanceActions":{"shape":"ResourcePendingMaintenanceActions"}
1490
- }
1491
- },
1492
- "AttributeValueList":{
1493
- "type":"list",
1494
- "member":{
1495
- "shape":"String",
1496
- "locationName":"AttributeValue"
1497
- }
1498
- },
1499
- "AuthorizationAlreadyExistsFault":{
1500
- "type":"structure",
1501
- "members":{
1502
- },
1503
- "error":{
1504
- "code":"AuthorizationAlreadyExists",
1505
- "httpStatusCode":400,
1506
- "senderFault":true
1507
- },
1508
- "exception":true
1509
- },
1510
- "AuthorizationNotFoundFault":{
1511
- "type":"structure",
1512
- "members":{
1513
- },
1514
- "error":{
1515
- "code":"AuthorizationNotFound",
1516
- "httpStatusCode":404,
1517
- "senderFault":true
1518
- },
1519
- "exception":true
1520
- },
1521
- "AuthorizationQuotaExceededFault":{
1522
- "type":"structure",
1523
- "members":{
1524
- },
1525
- "error":{
1526
- "code":"AuthorizationQuotaExceeded",
1527
- "httpStatusCode":400,
1528
- "senderFault":true
1529
- },
1530
- "exception":true
1531
- },
1532
- "AuthorizeDBSecurityGroupIngressMessage":{
1533
- "type":"structure",
1534
- "required":["DBSecurityGroupName"],
1535
- "members":{
1536
- "DBSecurityGroupName":{"shape":"String"},
1537
- "CIDRIP":{"shape":"String"},
1538
- "EC2SecurityGroupName":{"shape":"String"},
1539
- "EC2SecurityGroupId":{"shape":"String"},
1540
- "EC2SecurityGroupOwnerId":{"shape":"String"}
1541
- }
1542
- },
1543
- "AuthorizeDBSecurityGroupIngressResult":{
1544
- "type":"structure",
1545
- "members":{
1546
- "DBSecurityGroup":{"shape":"DBSecurityGroup"}
1547
- }
1548
- },
1549
- "AvailabilityZone":{
1550
- "type":"structure",
1551
- "members":{
1552
- "Name":{"shape":"String"}
1553
- },
1554
- "wrapper":true
1555
- },
1556
- "AvailabilityZoneList":{
1557
- "type":"list",
1558
- "member":{
1559
- "shape":"AvailabilityZone",
1560
- "locationName":"AvailabilityZone"
1561
- }
1562
- },
1563
- "AvailabilityZones":{
1564
- "type":"list",
1565
- "member":{
1566
- "shape":"String",
1567
- "locationName":"AvailabilityZone"
1568
- }
1569
- },
1570
- "Boolean":{"type":"boolean"},
1571
- "BooleanOptional":{"type":"boolean"},
1572
- "Certificate":{
1573
- "type":"structure",
1574
- "members":{
1575
- "CertificateIdentifier":{"shape":"String"},
1576
- "CertificateType":{"shape":"String"},
1577
- "Thumbprint":{"shape":"String"},
1578
- "ValidFrom":{"shape":"TStamp"},
1579
- "ValidTill":{"shape":"TStamp"}
1580
- },
1581
- "wrapper":true
1582
- },
1583
- "CertificateList":{
1584
- "type":"list",
1585
- "member":{
1586
- "shape":"Certificate",
1587
- "locationName":"Certificate"
1588
- }
1589
- },
1590
- "CertificateMessage":{
1591
- "type":"structure",
1592
- "members":{
1593
- "Certificates":{"shape":"CertificateList"},
1594
- "Marker":{"shape":"String"}
1595
- }
1596
- },
1597
- "CertificateNotFoundFault":{
1598
- "type":"structure",
1599
- "members":{
1600
- },
1601
- "error":{
1602
- "code":"CertificateNotFound",
1603
- "httpStatusCode":404,
1604
- "senderFault":true
1605
- },
1606
- "exception":true
1607
- },
1608
- "CharacterSet":{
1609
- "type":"structure",
1610
- "members":{
1611
- "CharacterSetName":{"shape":"String"},
1612
- "CharacterSetDescription":{"shape":"String"}
1613
- }
1614
- },
1615
- "CopyDBClusterParameterGroupMessage":{
1616
- "type":"structure",
1617
- "required":[
1618
- "SourceDBClusterParameterGroupIdentifier",
1619
- "TargetDBClusterParameterGroupIdentifier",
1620
- "TargetDBClusterParameterGroupDescription"
1621
- ],
1622
- "members":{
1623
- "SourceDBClusterParameterGroupIdentifier":{"shape":"String"},
1624
- "TargetDBClusterParameterGroupIdentifier":{"shape":"String"},
1625
- "TargetDBClusterParameterGroupDescription":{"shape":"String"},
1626
- "Tags":{"shape":"TagList"}
1627
- }
1628
- },
1629
- "CopyDBClusterParameterGroupResult":{
1630
- "type":"structure",
1631
- "members":{
1632
- "DBClusterParameterGroup":{"shape":"DBClusterParameterGroup"}
1633
- }
1634
- },
1635
- "CopyDBClusterSnapshotMessage":{
1636
- "type":"structure",
1637
- "required":[
1638
- "SourceDBClusterSnapshotIdentifier",
1639
- "TargetDBClusterSnapshotIdentifier"
1640
- ],
1641
- "members":{
1642
- "SourceDBClusterSnapshotIdentifier":{"shape":"String"},
1643
- "TargetDBClusterSnapshotIdentifier":{"shape":"String"},
1644
- "Tags":{"shape":"TagList"}
1645
- }
1646
- },
1647
- "CopyDBClusterSnapshotResult":{
1648
- "type":"structure",
1649
- "members":{
1650
- "DBClusterSnapshot":{"shape":"DBClusterSnapshot"}
1651
- }
1652
- },
1653
- "CopyDBParameterGroupMessage":{
1654
- "type":"structure",
1655
- "required":[
1656
- "SourceDBParameterGroupIdentifier",
1657
- "TargetDBParameterGroupIdentifier",
1658
- "TargetDBParameterGroupDescription"
1659
- ],
1660
- "members":{
1661
- "SourceDBParameterGroupIdentifier":{"shape":"String"},
1662
- "TargetDBParameterGroupIdentifier":{"shape":"String"},
1663
- "TargetDBParameterGroupDescription":{"shape":"String"},
1664
- "Tags":{"shape":"TagList"}
1665
- }
1666
- },
1667
- "CopyDBParameterGroupResult":{
1668
- "type":"structure",
1669
- "members":{
1670
- "DBParameterGroup":{"shape":"DBParameterGroup"}
1671
- }
1672
- },
1673
- "CopyDBSnapshotMessage":{
1674
- "type":"structure",
1675
- "required":[
1676
- "SourceDBSnapshotIdentifier",
1677
- "TargetDBSnapshotIdentifier"
1678
- ],
1679
- "members":{
1680
- "SourceDBSnapshotIdentifier":{"shape":"String"},
1681
- "TargetDBSnapshotIdentifier":{"shape":"String"},
1682
- "KmsKeyId":{"shape":"String"},
1683
- "Tags":{"shape":"TagList"},
1684
- "CopyTags":{"shape":"BooleanOptional"}
1685
- }
1686
- },
1687
- "CopyDBSnapshotResult":{
1688
- "type":"structure",
1689
- "members":{
1690
- "DBSnapshot":{"shape":"DBSnapshot"}
1691
- }
1692
- },
1693
- "CopyOptionGroupMessage":{
1694
- "type":"structure",
1695
- "required":[
1696
- "SourceOptionGroupIdentifier",
1697
- "TargetOptionGroupIdentifier",
1698
- "TargetOptionGroupDescription"
1699
- ],
1700
- "members":{
1701
- "SourceOptionGroupIdentifier":{"shape":"String"},
1702
- "TargetOptionGroupIdentifier":{"shape":"String"},
1703
- "TargetOptionGroupDescription":{"shape":"String"},
1704
- "Tags":{"shape":"TagList"}
1705
- }
1706
- },
1707
- "CopyOptionGroupResult":{
1708
- "type":"structure",
1709
- "members":{
1710
- "OptionGroup":{"shape":"OptionGroup"}
1711
- }
1712
- },
1713
- "CreateDBClusterMessage":{
1714
- "type":"structure",
1715
- "required":[
1716
- "DBClusterIdentifier",
1717
- "Engine"
1718
- ],
1719
- "members":{
1720
- "AvailabilityZones":{"shape":"AvailabilityZones"},
1721
- "BackupRetentionPeriod":{"shape":"IntegerOptional"},
1722
- "CharacterSetName":{"shape":"String"},
1723
- "DatabaseName":{"shape":"String"},
1724
- "DBClusterIdentifier":{"shape":"String"},
1725
- "DBClusterParameterGroupName":{"shape":"String"},
1726
- "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"},
1727
- "DBSubnetGroupName":{"shape":"String"},
1728
- "Engine":{"shape":"String"},
1729
- "EngineVersion":{"shape":"String"},
1730
- "Port":{"shape":"IntegerOptional"},
1731
- "MasterUsername":{"shape":"String"},
1732
- "MasterUserPassword":{"shape":"String"},
1733
- "OptionGroupName":{"shape":"String"},
1734
- "PreferredBackupWindow":{"shape":"String"},
1735
- "PreferredMaintenanceWindow":{"shape":"String"},
1736
- "ReplicationSourceIdentifier":{"shape":"String"},
1737
- "Tags":{"shape":"TagList"},
1738
- "StorageEncrypted":{"shape":"BooleanOptional"},
1739
- "KmsKeyId":{"shape":"String"}
1740
- }
1741
- },
1742
- "CreateDBClusterParameterGroupMessage":{
1743
- "type":"structure",
1744
- "required":[
1745
- "DBClusterParameterGroupName",
1746
- "DBParameterGroupFamily",
1747
- "Description"
1748
- ],
1749
- "members":{
1750
- "DBClusterParameterGroupName":{"shape":"String"},
1751
- "DBParameterGroupFamily":{"shape":"String"},
1752
- "Description":{"shape":"String"},
1753
- "Tags":{"shape":"TagList"}
1754
- }
1755
- },
1756
- "CreateDBClusterParameterGroupResult":{
1757
- "type":"structure",
1758
- "members":{
1759
- "DBClusterParameterGroup":{"shape":"DBClusterParameterGroup"}
1760
- }
1761
- },
1762
- "CreateDBClusterResult":{
1763
- "type":"structure",
1764
- "members":{
1765
- "DBCluster":{"shape":"DBCluster"}
1766
- }
1767
- },
1768
- "CreateDBClusterSnapshotMessage":{
1769
- "type":"structure",
1770
- "required":[
1771
- "DBClusterSnapshotIdentifier",
1772
- "DBClusterIdentifier"
1773
- ],
1774
- "members":{
1775
- "DBClusterSnapshotIdentifier":{"shape":"String"},
1776
- "DBClusterIdentifier":{"shape":"String"},
1777
- "Tags":{"shape":"TagList"}
1778
- }
1779
- },
1780
- "CreateDBClusterSnapshotResult":{
1781
- "type":"structure",
1782
- "members":{
1783
- "DBClusterSnapshot":{"shape":"DBClusterSnapshot"}
1784
- }
1785
- },
1786
- "CreateDBInstanceMessage":{
1787
- "type":"structure",
1788
- "required":[
1789
- "DBInstanceIdentifier",
1790
- "DBInstanceClass",
1791
- "Engine"
1792
- ],
1793
- "members":{
1794
- "DBName":{"shape":"String"},
1795
- "DBInstanceIdentifier":{"shape":"String"},
1796
- "AllocatedStorage":{"shape":"IntegerOptional"},
1797
- "DBInstanceClass":{"shape":"String"},
1798
- "Engine":{"shape":"String"},
1799
- "MasterUsername":{"shape":"String"},
1800
- "MasterUserPassword":{"shape":"String"},
1801
- "DBSecurityGroups":{"shape":"DBSecurityGroupNameList"},
1802
- "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"},
1803
- "AvailabilityZone":{"shape":"String"},
1804
- "DBSubnetGroupName":{"shape":"String"},
1805
- "PreferredMaintenanceWindow":{"shape":"String"},
1806
- "DBParameterGroupName":{"shape":"String"},
1807
- "BackupRetentionPeriod":{"shape":"IntegerOptional"},
1808
- "PreferredBackupWindow":{"shape":"String"},
1809
- "Port":{"shape":"IntegerOptional"},
1810
- "MultiAZ":{"shape":"BooleanOptional"},
1811
- "EngineVersion":{"shape":"String"},
1812
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
1813
- "LicenseModel":{"shape":"String"},
1814
- "Iops":{"shape":"IntegerOptional"},
1815
- "OptionGroupName":{"shape":"String"},
1816
- "CharacterSetName":{"shape":"String"},
1817
- "PubliclyAccessible":{"shape":"BooleanOptional"},
1818
- "Tags":{"shape":"TagList"},
1819
- "DBClusterIdentifier":{"shape":"String"},
1820
- "StorageType":{"shape":"String"},
1821
- "TdeCredentialArn":{"shape":"String"},
1822
- "TdeCredentialPassword":{"shape":"String"},
1823
- "StorageEncrypted":{"shape":"BooleanOptional"},
1824
- "KmsKeyId":{"shape":"String"},
1825
- "Domain":{"shape":"String"},
1826
- "CopyTagsToSnapshot":{"shape":"BooleanOptional"},
1827
- "MonitoringInterval":{"shape":"IntegerOptional"},
1828
- "MonitoringRoleArn":{"shape":"String"},
1829
- "DomainIAMRoleName":{"shape":"String"},
1830
- "PromotionTier":{"shape":"IntegerOptional"}
1831
- }
1832
- },
1833
- "CreateDBInstanceReadReplicaMessage":{
1834
- "type":"structure",
1835
- "required":[
1836
- "DBInstanceIdentifier",
1837
- "SourceDBInstanceIdentifier"
1838
- ],
1839
- "members":{
1840
- "DBInstanceIdentifier":{"shape":"String"},
1841
- "SourceDBInstanceIdentifier":{"shape":"String"},
1842
- "DBInstanceClass":{"shape":"String"},
1843
- "AvailabilityZone":{"shape":"String"},
1844
- "Port":{"shape":"IntegerOptional"},
1845
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
1846
- "Iops":{"shape":"IntegerOptional"},
1847
- "OptionGroupName":{"shape":"String"},
1848
- "PubliclyAccessible":{"shape":"BooleanOptional"},
1849
- "Tags":{"shape":"TagList"},
1850
- "DBSubnetGroupName":{"shape":"String"},
1851
- "StorageType":{"shape":"String"},
1852
- "CopyTagsToSnapshot":{"shape":"BooleanOptional"},
1853
- "MonitoringInterval":{"shape":"IntegerOptional"},
1854
- "MonitoringRoleArn":{"shape":"String"}
1855
- }
1856
- },
1857
- "CreateDBInstanceReadReplicaResult":{
1858
- "type":"structure",
1859
- "members":{
1860
- "DBInstance":{"shape":"DBInstance"}
1861
- }
1862
- },
1863
- "CreateDBInstanceResult":{
1864
- "type":"structure",
1865
- "members":{
1866
- "DBInstance":{"shape":"DBInstance"}
1867
- }
1868
- },
1869
- "CreateDBParameterGroupMessage":{
1870
- "type":"structure",
1871
- "required":[
1872
- "DBParameterGroupName",
1873
- "DBParameterGroupFamily",
1874
- "Description"
1875
- ],
1876
- "members":{
1877
- "DBParameterGroupName":{"shape":"String"},
1878
- "DBParameterGroupFamily":{"shape":"String"},
1879
- "Description":{"shape":"String"},
1880
- "Tags":{"shape":"TagList"}
1881
- }
1882
- },
1883
- "CreateDBParameterGroupResult":{
1884
- "type":"structure",
1885
- "members":{
1886
- "DBParameterGroup":{"shape":"DBParameterGroup"}
1887
- }
1888
- },
1889
- "CreateDBSecurityGroupMessage":{
1890
- "type":"structure",
1891
- "required":[
1892
- "DBSecurityGroupName",
1893
- "DBSecurityGroupDescription"
1894
- ],
1895
- "members":{
1896
- "DBSecurityGroupName":{"shape":"String"},
1897
- "DBSecurityGroupDescription":{"shape":"String"},
1898
- "Tags":{"shape":"TagList"}
1899
- }
1900
- },
1901
- "CreateDBSecurityGroupResult":{
1902
- "type":"structure",
1903
- "members":{
1904
- "DBSecurityGroup":{"shape":"DBSecurityGroup"}
1905
- }
1906
- },
1907
- "CreateDBSnapshotMessage":{
1908
- "type":"structure",
1909
- "required":[
1910
- "DBSnapshotIdentifier",
1911
- "DBInstanceIdentifier"
1912
- ],
1913
- "members":{
1914
- "DBSnapshotIdentifier":{"shape":"String"},
1915
- "DBInstanceIdentifier":{"shape":"String"},
1916
- "Tags":{"shape":"TagList"}
1917
- }
1918
- },
1919
- "CreateDBSnapshotResult":{
1920
- "type":"structure",
1921
- "members":{
1922
- "DBSnapshot":{"shape":"DBSnapshot"}
1923
- }
1924
- },
1925
- "CreateDBSubnetGroupMessage":{
1926
- "type":"structure",
1927
- "required":[
1928
- "DBSubnetGroupName",
1929
- "DBSubnetGroupDescription",
1930
- "SubnetIds"
1931
- ],
1932
- "members":{
1933
- "DBSubnetGroupName":{"shape":"String"},
1934
- "DBSubnetGroupDescription":{"shape":"String"},
1935
- "SubnetIds":{"shape":"SubnetIdentifierList"},
1936
- "Tags":{"shape":"TagList"}
1937
- }
1938
- },
1939
- "CreateDBSubnetGroupResult":{
1940
- "type":"structure",
1941
- "members":{
1942
- "DBSubnetGroup":{"shape":"DBSubnetGroup"}
1943
- }
1944
- },
1945
- "CreateEventSubscriptionMessage":{
1946
- "type":"structure",
1947
- "required":[
1948
- "SubscriptionName",
1949
- "SnsTopicArn"
1950
- ],
1951
- "members":{
1952
- "SubscriptionName":{"shape":"String"},
1953
- "SnsTopicArn":{"shape":"String"},
1954
- "SourceType":{"shape":"String"},
1955
- "EventCategories":{"shape":"EventCategoriesList"},
1956
- "SourceIds":{"shape":"SourceIdsList"},
1957
- "Enabled":{"shape":"BooleanOptional"},
1958
- "Tags":{"shape":"TagList"}
1959
- }
1960
- },
1961
- "CreateEventSubscriptionResult":{
1962
- "type":"structure",
1963
- "members":{
1964
- "EventSubscription":{"shape":"EventSubscription"}
1965
- }
1966
- },
1967
- "CreateOptionGroupMessage":{
1968
- "type":"structure",
1969
- "required":[
1970
- "OptionGroupName",
1971
- "EngineName",
1972
- "MajorEngineVersion",
1973
- "OptionGroupDescription"
1974
- ],
1975
- "members":{
1976
- "OptionGroupName":{"shape":"String"},
1977
- "EngineName":{"shape":"String"},
1978
- "MajorEngineVersion":{"shape":"String"},
1979
- "OptionGroupDescription":{"shape":"String"},
1980
- "Tags":{"shape":"TagList"}
1981
- }
1982
- },
1983
- "CreateOptionGroupResult":{
1984
- "type":"structure",
1985
- "members":{
1986
- "OptionGroup":{"shape":"OptionGroup"}
1987
- }
1988
- },
1989
- "DBCluster":{
1990
- "type":"structure",
1991
- "members":{
1992
- "AllocatedStorage":{"shape":"IntegerOptional"},
1993
- "AvailabilityZones":{"shape":"AvailabilityZones"},
1994
- "BackupRetentionPeriod":{"shape":"IntegerOptional"},
1995
- "CharacterSetName":{"shape":"String"},
1996
- "DatabaseName":{"shape":"String"},
1997
- "DBClusterIdentifier":{"shape":"String"},
1998
- "DBClusterParameterGroup":{"shape":"String"},
1999
- "DBSubnetGroup":{"shape":"String"},
2000
- "Status":{"shape":"String"},
2001
- "PercentProgress":{"shape":"String"},
2002
- "EarliestRestorableTime":{"shape":"TStamp"},
2003
- "Endpoint":{"shape":"String"},
2004
- "Engine":{"shape":"String"},
2005
- "EngineVersion":{"shape":"String"},
2006
- "LatestRestorableTime":{"shape":"TStamp"},
2007
- "Port":{"shape":"IntegerOptional"},
2008
- "MasterUsername":{"shape":"String"},
2009
- "DBClusterOptionGroupMemberships":{"shape":"DBClusterOptionGroupMemberships"},
2010
- "PreferredBackupWindow":{"shape":"String"},
2011
- "PreferredMaintenanceWindow":{"shape":"String"},
2012
- "ReplicationSourceIdentifier":{"shape":"String"},
2013
- "ReadReplicaIdentifiers":{"shape":"ReadReplicaIdentifierList"},
2014
- "DBClusterMembers":{"shape":"DBClusterMemberList"},
2015
- "VpcSecurityGroups":{"shape":"VpcSecurityGroupMembershipList"},
2016
- "HostedZoneId":{"shape":"String"},
2017
- "StorageEncrypted":{"shape":"Boolean"},
2018
- "KmsKeyId":{"shape":"String"},
2019
- "DbClusterResourceId":{"shape":"String"}
2020
- },
2021
- "wrapper":true
2022
- },
2023
- "DBClusterAlreadyExistsFault":{
2024
- "type":"structure",
2025
- "members":{
2026
- },
2027
- "error":{
2028
- "code":"DBClusterAlreadyExistsFault",
2029
- "httpStatusCode":400,
2030
- "senderFault":true
2031
- },
2032
- "exception":true
2033
- },
2034
- "DBClusterList":{
2035
- "type":"list",
2036
- "member":{
2037
- "shape":"DBCluster",
2038
- "locationName":"DBCluster"
2039
- }
2040
- },
2041
- "DBClusterMember":{
2042
- "type":"structure",
2043
- "members":{
2044
- "DBInstanceIdentifier":{"shape":"String"},
2045
- "IsClusterWriter":{"shape":"Boolean"},
2046
- "DBClusterParameterGroupStatus":{"shape":"String"},
2047
- "PromotionTier":{"shape":"IntegerOptional"}
2048
- },
2049
- "wrapper":true
2050
- },
2051
- "DBClusterMemberList":{
2052
- "type":"list",
2053
- "member":{
2054
- "shape":"DBClusterMember",
2055
- "locationName":"DBClusterMember"
2056
- }
2057
- },
2058
- "DBClusterMessage":{
2059
- "type":"structure",
2060
- "members":{
2061
- "Marker":{"shape":"String"},
2062
- "DBClusters":{"shape":"DBClusterList"}
2063
- }
2064
- },
2065
- "DBClusterNotFoundFault":{
2066
- "type":"structure",
2067
- "members":{
2068
- },
2069
- "error":{
2070
- "code":"DBClusterNotFoundFault",
2071
- "httpStatusCode":404,
2072
- "senderFault":true
2073
- },
2074
- "exception":true
2075
- },
2076
- "DBClusterOptionGroupMemberships":{
2077
- "type":"list",
2078
- "member":{
2079
- "shape":"DBClusterOptionGroupStatus",
2080
- "locationName":"DBClusterOptionGroup"
2081
- }
2082
- },
2083
- "DBClusterOptionGroupStatus":{
2084
- "type":"structure",
2085
- "members":{
2086
- "DBClusterOptionGroupName":{"shape":"String"},
2087
- "Status":{"shape":"String"}
2088
- }
2089
- },
2090
- "DBClusterParameterGroup":{
2091
- "type":"structure",
2092
- "members":{
2093
- "DBClusterParameterGroupName":{"shape":"String"},
2094
- "DBParameterGroupFamily":{"shape":"String"},
2095
- "Description":{"shape":"String"}
2096
- },
2097
- "wrapper":true
2098
- },
2099
- "DBClusterParameterGroupDetails":{
2100
- "type":"structure",
2101
- "members":{
2102
- "Parameters":{"shape":"ParametersList"},
2103
- "Marker":{"shape":"String"}
2104
- }
2105
- },
2106
- "DBClusterParameterGroupList":{
2107
- "type":"list",
2108
- "member":{
2109
- "shape":"DBClusterParameterGroup",
2110
- "locationName":"DBClusterParameterGroup"
2111
- }
2112
- },
2113
- "DBClusterParameterGroupNameMessage":{
2114
- "type":"structure",
2115
- "members":{
2116
- "DBClusterParameterGroupName":{"shape":"String"}
2117
- }
2118
- },
2119
- "DBClusterParameterGroupNotFoundFault":{
2120
- "type":"structure",
2121
- "members":{
2122
- },
2123
- "error":{
2124
- "code":"DBClusterParameterGroupNotFound",
2125
- "httpStatusCode":404,
2126
- "senderFault":true
2127
- },
2128
- "exception":true
2129
- },
2130
- "DBClusterParameterGroupsMessage":{
2131
- "type":"structure",
2132
- "members":{
2133
- "Marker":{"shape":"String"},
2134
- "DBClusterParameterGroups":{"shape":"DBClusterParameterGroupList"}
2135
- }
2136
- },
2137
- "DBClusterQuotaExceededFault":{
2138
- "type":"structure",
2139
- "members":{
2140
- },
2141
- "error":{
2142
- "code":"DBClusterQuotaExceededFault",
2143
- "httpStatusCode":403,
2144
- "senderFault":true
2145
- },
2146
- "exception":true
2147
- },
2148
- "DBClusterSnapshot":{
2149
- "type":"structure",
2150
- "members":{
2151
- "AvailabilityZones":{"shape":"AvailabilityZones"},
2152
- "DBClusterSnapshotIdentifier":{"shape":"String"},
2153
- "DBClusterIdentifier":{"shape":"String"},
2154
- "SnapshotCreateTime":{"shape":"TStamp"},
2155
- "Engine":{"shape":"String"},
2156
- "AllocatedStorage":{"shape":"Integer"},
2157
- "Status":{"shape":"String"},
2158
- "Port":{"shape":"Integer"},
2159
- "VpcId":{"shape":"String"},
2160
- "ClusterCreateTime":{"shape":"TStamp"},
2161
- "MasterUsername":{"shape":"String"},
2162
- "EngineVersion":{"shape":"String"},
2163
- "LicenseModel":{"shape":"String"},
2164
- "SnapshotType":{"shape":"String"},
2165
- "PercentProgress":{"shape":"Integer"},
2166
- "StorageEncrypted":{"shape":"Boolean"},
2167
- "KmsKeyId":{"shape":"String"}
2168
- },
2169
- "wrapper":true
2170
- },
2171
- "DBClusterSnapshotAlreadyExistsFault":{
2172
- "type":"structure",
2173
- "members":{
2174
- },
2175
- "error":{
2176
- "code":"DBClusterSnapshotAlreadyExistsFault",
2177
- "httpStatusCode":400,
2178
- "senderFault":true
2179
- },
2180
- "exception":true
2181
- },
2182
- "DBClusterSnapshotAttribute":{
2183
- "type":"structure",
2184
- "members":{
2185
- "AttributeName":{"shape":"String"},
2186
- "AttributeValues":{"shape":"AttributeValueList"}
2187
- }
2188
- },
2189
- "DBClusterSnapshotAttributeList":{
2190
- "type":"list",
2191
- "member":{
2192
- "shape":"DBClusterSnapshotAttribute",
2193
- "locationName":"DBClusterSnapshotAttribute"
2194
- }
2195
- },
2196
- "DBClusterSnapshotAttributesResult":{
2197
- "type":"structure",
2198
- "members":{
2199
- "DBClusterSnapshotIdentifier":{"shape":"String"},
2200
- "DBClusterSnapshotAttributes":{"shape":"DBClusterSnapshotAttributeList"}
2201
- },
2202
- "wrapper":true
2203
- },
2204
- "DBClusterSnapshotList":{
2205
- "type":"list",
2206
- "member":{
2207
- "shape":"DBClusterSnapshot",
2208
- "locationName":"DBClusterSnapshot"
2209
- }
2210
- },
2211
- "DBClusterSnapshotMessage":{
2212
- "type":"structure",
2213
- "members":{
2214
- "Marker":{"shape":"String"},
2215
- "DBClusterSnapshots":{"shape":"DBClusterSnapshotList"}
2216
- }
2217
- },
2218
- "DBClusterSnapshotNotFoundFault":{
2219
- "type":"structure",
2220
- "members":{
2221
- },
2222
- "error":{
2223
- "code":"DBClusterSnapshotNotFoundFault",
2224
- "httpStatusCode":404,
2225
- "senderFault":true
2226
- },
2227
- "exception":true
2228
- },
2229
- "DBEngineVersion":{
2230
- "type":"structure",
2231
- "members":{
2232
- "Engine":{"shape":"String"},
2233
- "EngineVersion":{"shape":"String"},
2234
- "DBParameterGroupFamily":{"shape":"String"},
2235
- "DBEngineDescription":{"shape":"String"},
2236
- "DBEngineVersionDescription":{"shape":"String"},
2237
- "DefaultCharacterSet":{"shape":"CharacterSet"},
2238
- "SupportedCharacterSets":{"shape":"SupportedCharacterSetsList"},
2239
- "ValidUpgradeTarget":{"shape":"ValidUpgradeTargetList"}
2240
- }
2241
- },
2242
- "DBEngineVersionList":{
2243
- "type":"list",
2244
- "member":{
2245
- "shape":"DBEngineVersion",
2246
- "locationName":"DBEngineVersion"
2247
- }
2248
- },
2249
- "DBEngineVersionMessage":{
2250
- "type":"structure",
2251
- "members":{
2252
- "Marker":{"shape":"String"},
2253
- "DBEngineVersions":{"shape":"DBEngineVersionList"}
2254
- }
2255
- },
2256
- "DBInstance":{
2257
- "type":"structure",
2258
- "members":{
2259
- "DBInstanceIdentifier":{"shape":"String"},
2260
- "DBInstanceClass":{"shape":"String"},
2261
- "Engine":{"shape":"String"},
2262
- "DBInstanceStatus":{"shape":"String"},
2263
- "MasterUsername":{"shape":"String"},
2264
- "DBName":{"shape":"String"},
2265
- "Endpoint":{"shape":"Endpoint"},
2266
- "AllocatedStorage":{"shape":"Integer"},
2267
- "InstanceCreateTime":{"shape":"TStamp"},
2268
- "PreferredBackupWindow":{"shape":"String"},
2269
- "BackupRetentionPeriod":{"shape":"Integer"},
2270
- "DBSecurityGroups":{"shape":"DBSecurityGroupMembershipList"},
2271
- "VpcSecurityGroups":{"shape":"VpcSecurityGroupMembershipList"},
2272
- "DBParameterGroups":{"shape":"DBParameterGroupStatusList"},
2273
- "AvailabilityZone":{"shape":"String"},
2274
- "DBSubnetGroup":{"shape":"DBSubnetGroup"},
2275
- "PreferredMaintenanceWindow":{"shape":"String"},
2276
- "PendingModifiedValues":{"shape":"PendingModifiedValues"},
2277
- "LatestRestorableTime":{"shape":"TStamp"},
2278
- "MultiAZ":{"shape":"Boolean"},
2279
- "EngineVersion":{"shape":"String"},
2280
- "AutoMinorVersionUpgrade":{"shape":"Boolean"},
2281
- "ReadReplicaSourceDBInstanceIdentifier":{"shape":"String"},
2282
- "ReadReplicaDBInstanceIdentifiers":{"shape":"ReadReplicaDBInstanceIdentifierList"},
2283
- "LicenseModel":{"shape":"String"},
2284
- "Iops":{"shape":"IntegerOptional"},
2285
- "OptionGroupMemberships":{"shape":"OptionGroupMembershipList"},
2286
- "CharacterSetName":{"shape":"String"},
2287
- "SecondaryAvailabilityZone":{"shape":"String"},
2288
- "PubliclyAccessible":{"shape":"Boolean"},
2289
- "StatusInfos":{"shape":"DBInstanceStatusInfoList"},
2290
- "StorageType":{"shape":"String"},
2291
- "TdeCredentialArn":{"shape":"String"},
2292
- "DbInstancePort":{"shape":"Integer"},
2293
- "DBClusterIdentifier":{"shape":"String"},
2294
- "StorageEncrypted":{"shape":"Boolean"},
2295
- "KmsKeyId":{"shape":"String"},
2296
- "DbiResourceId":{"shape":"String"},
2297
- "CACertificateIdentifier":{"shape":"String"},
2298
- "DomainMemberships":{"shape":"DomainMembershipList"},
2299
- "CopyTagsToSnapshot":{"shape":"Boolean"},
2300
- "MonitoringInterval":{"shape":"IntegerOptional"},
2301
- "EnhancedMonitoringResourceArn":{"shape":"String"},
2302
- "MonitoringRoleArn":{"shape":"String"},
2303
- "PromotionTier":{"shape":"IntegerOptional"}
2304
- },
2305
- "wrapper":true
2306
- },
2307
- "DBInstanceAlreadyExistsFault":{
2308
- "type":"structure",
2309
- "members":{
2310
- },
2311
- "error":{
2312
- "code":"DBInstanceAlreadyExists",
2313
- "httpStatusCode":400,
2314
- "senderFault":true
2315
- },
2316
- "exception":true
2317
- },
2318
- "DBInstanceList":{
2319
- "type":"list",
2320
- "member":{
2321
- "shape":"DBInstance",
2322
- "locationName":"DBInstance"
2323
- }
2324
- },
2325
- "DBInstanceMessage":{
2326
- "type":"structure",
2327
- "members":{
2328
- "Marker":{"shape":"String"},
2329
- "DBInstances":{"shape":"DBInstanceList"}
2330
- }
2331
- },
2332
- "DBInstanceNotFoundFault":{
2333
- "type":"structure",
2334
- "members":{
2335
- },
2336
- "error":{
2337
- "code":"DBInstanceNotFound",
2338
- "httpStatusCode":404,
2339
- "senderFault":true
2340
- },
2341
- "exception":true
2342
- },
2343
- "DBInstanceStatusInfo":{
2344
- "type":"structure",
2345
- "members":{
2346
- "StatusType":{"shape":"String"},
2347
- "Normal":{"shape":"Boolean"},
2348
- "Status":{"shape":"String"},
2349
- "Message":{"shape":"String"}
2350
- }
2351
- },
2352
- "DBInstanceStatusInfoList":{
2353
- "type":"list",
2354
- "member":{
2355
- "shape":"DBInstanceStatusInfo",
2356
- "locationName":"DBInstanceStatusInfo"
2357
- }
2358
- },
2359
- "DBLogFileNotFoundFault":{
2360
- "type":"structure",
2361
- "members":{
2362
- },
2363
- "error":{
2364
- "code":"DBLogFileNotFoundFault",
2365
- "httpStatusCode":404,
2366
- "senderFault":true
2367
- },
2368
- "exception":true
2369
- },
2370
- "DBParameterGroup":{
2371
- "type":"structure",
2372
- "members":{
2373
- "DBParameterGroupName":{"shape":"String"},
2374
- "DBParameterGroupFamily":{"shape":"String"},
2375
- "Description":{"shape":"String"}
2376
- },
2377
- "wrapper":true
2378
- },
2379
- "DBParameterGroupAlreadyExistsFault":{
2380
- "type":"structure",
2381
- "members":{
2382
- },
2383
- "error":{
2384
- "code":"DBParameterGroupAlreadyExists",
2385
- "httpStatusCode":400,
2386
- "senderFault":true
2387
- },
2388
- "exception":true
2389
- },
2390
- "DBParameterGroupDetails":{
2391
- "type":"structure",
2392
- "members":{
2393
- "Parameters":{"shape":"ParametersList"},
2394
- "Marker":{"shape":"String"}
2395
- }
2396
- },
2397
- "DBParameterGroupList":{
2398
- "type":"list",
2399
- "member":{
2400
- "shape":"DBParameterGroup",
2401
- "locationName":"DBParameterGroup"
2402
- }
2403
- },
2404
- "DBParameterGroupNameMessage":{
2405
- "type":"structure",
2406
- "members":{
2407
- "DBParameterGroupName":{"shape":"String"}
2408
- }
2409
- },
2410
- "DBParameterGroupNotFoundFault":{
2411
- "type":"structure",
2412
- "members":{
2413
- },
2414
- "error":{
2415
- "code":"DBParameterGroupNotFound",
2416
- "httpStatusCode":404,
2417
- "senderFault":true
2418
- },
2419
- "exception":true
2420
- },
2421
- "DBParameterGroupQuotaExceededFault":{
2422
- "type":"structure",
2423
- "members":{
2424
- },
2425
- "error":{
2426
- "code":"DBParameterGroupQuotaExceeded",
2427
- "httpStatusCode":400,
2428
- "senderFault":true
2429
- },
2430
- "exception":true
2431
- },
2432
- "DBParameterGroupStatus":{
2433
- "type":"structure",
2434
- "members":{
2435
- "DBParameterGroupName":{"shape":"String"},
2436
- "ParameterApplyStatus":{"shape":"String"}
2437
- }
2438
- },
2439
- "DBParameterGroupStatusList":{
2440
- "type":"list",
2441
- "member":{
2442
- "shape":"DBParameterGroupStatus",
2443
- "locationName":"DBParameterGroup"
2444
- }
2445
- },
2446
- "DBParameterGroupsMessage":{
2447
- "type":"structure",
2448
- "members":{
2449
- "Marker":{"shape":"String"},
2450
- "DBParameterGroups":{"shape":"DBParameterGroupList"}
2451
- }
2452
- },
2453
- "DBSecurityGroup":{
2454
- "type":"structure",
2455
- "members":{
2456
- "OwnerId":{"shape":"String"},
2457
- "DBSecurityGroupName":{"shape":"String"},
2458
- "DBSecurityGroupDescription":{"shape":"String"},
2459
- "VpcId":{"shape":"String"},
2460
- "EC2SecurityGroups":{"shape":"EC2SecurityGroupList"},
2461
- "IPRanges":{"shape":"IPRangeList"}
2462
- },
2463
- "wrapper":true
2464
- },
2465
- "DBSecurityGroupAlreadyExistsFault":{
2466
- "type":"structure",
2467
- "members":{
2468
- },
2469
- "error":{
2470
- "code":"DBSecurityGroupAlreadyExists",
2471
- "httpStatusCode":400,
2472
- "senderFault":true
2473
- },
2474
- "exception":true
2475
- },
2476
- "DBSecurityGroupMembership":{
2477
- "type":"structure",
2478
- "members":{
2479
- "DBSecurityGroupName":{"shape":"String"},
2480
- "Status":{"shape":"String"}
2481
- }
2482
- },
2483
- "DBSecurityGroupMembershipList":{
2484
- "type":"list",
2485
- "member":{
2486
- "shape":"DBSecurityGroupMembership",
2487
- "locationName":"DBSecurityGroup"
2488
- }
2489
- },
2490
- "DBSecurityGroupMessage":{
2491
- "type":"structure",
2492
- "members":{
2493
- "Marker":{"shape":"String"},
2494
- "DBSecurityGroups":{"shape":"DBSecurityGroups"}
2495
- }
2496
- },
2497
- "DBSecurityGroupNameList":{
2498
- "type":"list",
2499
- "member":{
2500
- "shape":"String",
2501
- "locationName":"DBSecurityGroupName"
2502
- }
2503
- },
2504
- "DBSecurityGroupNotFoundFault":{
2505
- "type":"structure",
2506
- "members":{
2507
- },
2508
- "error":{
2509
- "code":"DBSecurityGroupNotFound",
2510
- "httpStatusCode":404,
2511
- "senderFault":true
2512
- },
2513
- "exception":true
2514
- },
2515
- "DBSecurityGroupNotSupportedFault":{
2516
- "type":"structure",
2517
- "members":{
2518
- },
2519
- "error":{
2520
- "code":"DBSecurityGroupNotSupported",
2521
- "httpStatusCode":400,
2522
- "senderFault":true
2523
- },
2524
- "exception":true
2525
- },
2526
- "DBSecurityGroupQuotaExceededFault":{
2527
- "type":"structure",
2528
- "members":{
2529
- },
2530
- "error":{
2531
- "code":"QuotaExceeded.DBSecurityGroup",
2532
- "httpStatusCode":400,
2533
- "senderFault":true
2534
- },
2535
- "exception":true
2536
- },
2537
- "DBSecurityGroups":{
2538
- "type":"list",
2539
- "member":{
2540
- "shape":"DBSecurityGroup",
2541
- "locationName":"DBSecurityGroup"
2542
- }
2543
- },
2544
- "DBSnapshot":{
2545
- "type":"structure",
2546
- "members":{
2547
- "DBSnapshotIdentifier":{"shape":"String"},
2548
- "DBInstanceIdentifier":{"shape":"String"},
2549
- "SnapshotCreateTime":{"shape":"TStamp"},
2550
- "Engine":{"shape":"String"},
2551
- "AllocatedStorage":{"shape":"Integer"},
2552
- "Status":{"shape":"String"},
2553
- "Port":{"shape":"Integer"},
2554
- "AvailabilityZone":{"shape":"String"},
2555
- "VpcId":{"shape":"String"},
2556
- "InstanceCreateTime":{"shape":"TStamp"},
2557
- "MasterUsername":{"shape":"String"},
2558
- "EngineVersion":{"shape":"String"},
2559
- "LicenseModel":{"shape":"String"},
2560
- "SnapshotType":{"shape":"String"},
2561
- "Iops":{"shape":"IntegerOptional"},
2562
- "OptionGroupName":{"shape":"String"},
2563
- "PercentProgress":{"shape":"Integer"},
2564
- "SourceRegion":{"shape":"String"},
2565
- "SourceDBSnapshotIdentifier":{"shape":"String"},
2566
- "StorageType":{"shape":"String"},
2567
- "TdeCredentialArn":{"shape":"String"},
2568
- "Encrypted":{"shape":"Boolean"},
2569
- "KmsKeyId":{"shape":"String"}
2570
- },
2571
- "wrapper":true
2572
- },
2573
- "DBSnapshotAlreadyExistsFault":{
2574
- "type":"structure",
2575
- "members":{
2576
- },
2577
- "error":{
2578
- "code":"DBSnapshotAlreadyExists",
2579
- "httpStatusCode":400,
2580
- "senderFault":true
2581
- },
2582
- "exception":true
2583
- },
2584
- "DBSnapshotAttribute":{
2585
- "type":"structure",
2586
- "members":{
2587
- "AttributeName":{"shape":"String"},
2588
- "AttributeValues":{"shape":"AttributeValueList"}
2589
- },
2590
- "wrapper":true
2591
- },
2592
- "DBSnapshotAttributeList":{
2593
- "type":"list",
2594
- "member":{
2595
- "shape":"DBSnapshotAttribute",
2596
- "locationName":"DBSnapshotAttribute"
2597
- }
2598
- },
2599
- "DBSnapshotAttributesResult":{
2600
- "type":"structure",
2601
- "members":{
2602
- "DBSnapshotIdentifier":{"shape":"String"},
2603
- "DBSnapshotAttributes":{"shape":"DBSnapshotAttributeList"}
2604
- },
2605
- "wrapper":true
2606
- },
2607
- "DBSnapshotList":{
2608
- "type":"list",
2609
- "member":{
2610
- "shape":"DBSnapshot",
2611
- "locationName":"DBSnapshot"
2612
- }
2613
- },
2614
- "DBSnapshotMessage":{
2615
- "type":"structure",
2616
- "members":{
2617
- "Marker":{"shape":"String"},
2618
- "DBSnapshots":{"shape":"DBSnapshotList"}
2619
- }
2620
- },
2621
- "DBSnapshotNotFoundFault":{
2622
- "type":"structure",
2623
- "members":{
2624
- },
2625
- "error":{
2626
- "code":"DBSnapshotNotFound",
2627
- "httpStatusCode":404,
2628
- "senderFault":true
2629
- },
2630
- "exception":true
2631
- },
2632
- "DBSubnetGroup":{
2633
- "type":"structure",
2634
- "members":{
2635
- "DBSubnetGroupName":{"shape":"String"},
2636
- "DBSubnetGroupDescription":{"shape":"String"},
2637
- "VpcId":{"shape":"String"},
2638
- "SubnetGroupStatus":{"shape":"String"},
2639
- "Subnets":{"shape":"SubnetList"}
2640
- },
2641
- "wrapper":true
2642
- },
2643
- "DBSubnetGroupAlreadyExistsFault":{
2644
- "type":"structure",
2645
- "members":{
2646
- },
2647
- "error":{
2648
- "code":"DBSubnetGroupAlreadyExists",
2649
- "httpStatusCode":400,
2650
- "senderFault":true
2651
- },
2652
- "exception":true
2653
- },
2654
- "DBSubnetGroupDoesNotCoverEnoughAZs":{
2655
- "type":"structure",
2656
- "members":{
2657
- },
2658
- "error":{
2659
- "code":"DBSubnetGroupDoesNotCoverEnoughAZs",
2660
- "httpStatusCode":400,
2661
- "senderFault":true
2662
- },
2663
- "exception":true
2664
- },
2665
- "DBSubnetGroupMessage":{
2666
- "type":"structure",
2667
- "members":{
2668
- "Marker":{"shape":"String"},
2669
- "DBSubnetGroups":{"shape":"DBSubnetGroups"}
2670
- }
2671
- },
2672
- "DBSubnetGroupNotAllowedFault":{
2673
- "type":"structure",
2674
- "members":{
2675
- },
2676
- "error":{
2677
- "code":"DBSubnetGroupNotAllowedFault",
2678
- "httpStatusCode":400,
2679
- "senderFault":true
2680
- },
2681
- "exception":true
2682
- },
2683
- "DBSubnetGroupNotFoundFault":{
2684
- "type":"structure",
2685
- "members":{
2686
- },
2687
- "error":{
2688
- "code":"DBSubnetGroupNotFoundFault",
2689
- "httpStatusCode":404,
2690
- "senderFault":true
2691
- },
2692
- "exception":true
2693
- },
2694
- "DBSubnetGroupQuotaExceededFault":{
2695
- "type":"structure",
2696
- "members":{
2697
- },
2698
- "error":{
2699
- "code":"DBSubnetGroupQuotaExceeded",
2700
- "httpStatusCode":400,
2701
- "senderFault":true
2702
- },
2703
- "exception":true
2704
- },
2705
- "DBSubnetGroups":{
2706
- "type":"list",
2707
- "member":{
2708
- "shape":"DBSubnetGroup",
2709
- "locationName":"DBSubnetGroup"
2710
- }
2711
- },
2712
- "DBSubnetQuotaExceededFault":{
2713
- "type":"structure",
2714
- "members":{
2715
- },
2716
- "error":{
2717
- "code":"DBSubnetQuotaExceededFault",
2718
- "httpStatusCode":400,
2719
- "senderFault":true
2720
- },
2721
- "exception":true
2722
- },
2723
- "DBUpgradeDependencyFailureFault":{
2724
- "type":"structure",
2725
- "members":{
2726
- },
2727
- "error":{
2728
- "code":"DBUpgradeDependencyFailure",
2729
- "httpStatusCode":400,
2730
- "senderFault":true
2731
- },
2732
- "exception":true
2733
- },
2734
- "DeleteDBClusterMessage":{
2735
- "type":"structure",
2736
- "required":["DBClusterIdentifier"],
2737
- "members":{
2738
- "DBClusterIdentifier":{"shape":"String"},
2739
- "SkipFinalSnapshot":{"shape":"Boolean"},
2740
- "FinalDBSnapshotIdentifier":{"shape":"String"}
2741
- }
2742
- },
2743
- "DeleteDBClusterParameterGroupMessage":{
2744
- "type":"structure",
2745
- "required":["DBClusterParameterGroupName"],
2746
- "members":{
2747
- "DBClusterParameterGroupName":{"shape":"String"}
2748
- }
2749
- },
2750
- "DeleteDBClusterResult":{
2751
- "type":"structure",
2752
- "members":{
2753
- "DBCluster":{"shape":"DBCluster"}
2754
- }
2755
- },
2756
- "DeleteDBClusterSnapshotMessage":{
2757
- "type":"structure",
2758
- "required":["DBClusterSnapshotIdentifier"],
2759
- "members":{
2760
- "DBClusterSnapshotIdentifier":{"shape":"String"}
2761
- }
2762
- },
2763
- "DeleteDBClusterSnapshotResult":{
2764
- "type":"structure",
2765
- "members":{
2766
- "DBClusterSnapshot":{"shape":"DBClusterSnapshot"}
2767
- }
2768
- },
2769
- "DeleteDBInstanceMessage":{
2770
- "type":"structure",
2771
- "required":["DBInstanceIdentifier"],
2772
- "members":{
2773
- "DBInstanceIdentifier":{"shape":"String"},
2774
- "SkipFinalSnapshot":{"shape":"Boolean"},
2775
- "FinalDBSnapshotIdentifier":{"shape":"String"}
2776
- }
2777
- },
2778
- "DeleteDBInstanceResult":{
2779
- "type":"structure",
2780
- "members":{
2781
- "DBInstance":{"shape":"DBInstance"}
2782
- }
2783
- },
2784
- "DeleteDBParameterGroupMessage":{
2785
- "type":"structure",
2786
- "required":["DBParameterGroupName"],
2787
- "members":{
2788
- "DBParameterGroupName":{"shape":"String"}
2789
- }
2790
- },
2791
- "DeleteDBSecurityGroupMessage":{
2792
- "type":"structure",
2793
- "required":["DBSecurityGroupName"],
2794
- "members":{
2795
- "DBSecurityGroupName":{"shape":"String"}
2796
- }
2797
- },
2798
- "DeleteDBSnapshotMessage":{
2799
- "type":"structure",
2800
- "required":["DBSnapshotIdentifier"],
2801
- "members":{
2802
- "DBSnapshotIdentifier":{"shape":"String"}
2803
- }
2804
- },
2805
- "DeleteDBSnapshotResult":{
2806
- "type":"structure",
2807
- "members":{
2808
- "DBSnapshot":{"shape":"DBSnapshot"}
2809
- }
2810
- },
2811
- "DeleteDBSubnetGroupMessage":{
2812
- "type":"structure",
2813
- "required":["DBSubnetGroupName"],
2814
- "members":{
2815
- "DBSubnetGroupName":{"shape":"String"}
2816
- }
2817
- },
2818
- "DeleteEventSubscriptionMessage":{
2819
- "type":"structure",
2820
- "required":["SubscriptionName"],
2821
- "members":{
2822
- "SubscriptionName":{"shape":"String"}
2823
- }
2824
- },
2825
- "DeleteEventSubscriptionResult":{
2826
- "type":"structure",
2827
- "members":{
2828
- "EventSubscription":{"shape":"EventSubscription"}
2829
- }
2830
- },
2831
- "DeleteOptionGroupMessage":{
2832
- "type":"structure",
2833
- "required":["OptionGroupName"],
2834
- "members":{
2835
- "OptionGroupName":{"shape":"String"}
2836
- }
2837
- },
2838
- "DescribeAccountAttributesMessage":{
2839
- "type":"structure",
2840
- "members":{
2841
- }
2842
- },
2843
- "DescribeCertificatesMessage":{
2844
- "type":"structure",
2845
- "members":{
2846
- "CertificateIdentifier":{"shape":"String"},
2847
- "Filters":{"shape":"FilterList"},
2848
- "MaxRecords":{"shape":"IntegerOptional"},
2849
- "Marker":{"shape":"String"}
2850
- }
2851
- },
2852
- "DescribeDBClusterParameterGroupsMessage":{
2853
- "type":"structure",
2854
- "members":{
2855
- "DBClusterParameterGroupName":{"shape":"String"},
2856
- "Filters":{"shape":"FilterList"},
2857
- "MaxRecords":{"shape":"IntegerOptional"},
2858
- "Marker":{"shape":"String"}
2859
- }
2860
- },
2861
- "DescribeDBClusterParametersMessage":{
2862
- "type":"structure",
2863
- "required":["DBClusterParameterGroupName"],
2864
- "members":{
2865
- "DBClusterParameterGroupName":{"shape":"String"},
2866
- "Source":{"shape":"String"},
2867
- "Filters":{"shape":"FilterList"},
2868
- "MaxRecords":{"shape":"IntegerOptional"},
2869
- "Marker":{"shape":"String"}
2870
- }
2871
- },
2872
- "DescribeDBClusterSnapshotAttributesMessage":{
2873
- "type":"structure",
2874
- "required":["DBClusterSnapshotIdentifier"],
2875
- "members":{
2876
- "DBClusterSnapshotIdentifier":{"shape":"String"}
2877
- }
2878
- },
2879
- "DescribeDBClusterSnapshotAttributesResult":{
2880
- "type":"structure",
2881
- "members":{
2882
- "DBClusterSnapshotAttributesResult":{"shape":"DBClusterSnapshotAttributesResult"}
2883
- }
2884
- },
2885
- "DescribeDBClusterSnapshotsMessage":{
2886
- "type":"structure",
2887
- "members":{
2888
- "DBClusterIdentifier":{"shape":"String"},
2889
- "DBClusterSnapshotIdentifier":{"shape":"String"},
2890
- "SnapshotType":{"shape":"String"},
2891
- "Filters":{"shape":"FilterList"},
2892
- "MaxRecords":{"shape":"IntegerOptional"},
2893
- "Marker":{"shape":"String"},
2894
- "IncludeShared":{"shape":"Boolean"},
2895
- "IncludePublic":{"shape":"Boolean"}
2896
- }
2897
- },
2898
- "DescribeDBClustersMessage":{
2899
- "type":"structure",
2900
- "members":{
2901
- "DBClusterIdentifier":{"shape":"String"},
2902
- "Filters":{"shape":"FilterList"},
2903
- "MaxRecords":{"shape":"IntegerOptional"},
2904
- "Marker":{"shape":"String"}
2905
- }
2906
- },
2907
- "DescribeDBEngineVersionsMessage":{
2908
- "type":"structure",
2909
- "members":{
2910
- "Engine":{"shape":"String"},
2911
- "EngineVersion":{"shape":"String"},
2912
- "DBParameterGroupFamily":{"shape":"String"},
2913
- "Filters":{"shape":"FilterList"},
2914
- "MaxRecords":{"shape":"IntegerOptional"},
2915
- "Marker":{"shape":"String"},
2916
- "DefaultOnly":{"shape":"Boolean"},
2917
- "ListSupportedCharacterSets":{"shape":"BooleanOptional"}
2918
- }
2919
- },
2920
- "DescribeDBInstancesMessage":{
2921
- "type":"structure",
2922
- "members":{
2923
- "DBInstanceIdentifier":{"shape":"String"},
2924
- "Filters":{"shape":"FilterList"},
2925
- "MaxRecords":{"shape":"IntegerOptional"},
2926
- "Marker":{"shape":"String"}
2927
- }
2928
- },
2929
- "DescribeDBLogFilesDetails":{
2930
- "type":"structure",
2931
- "members":{
2932
- "LogFileName":{"shape":"String"},
2933
- "LastWritten":{"shape":"Long"},
2934
- "Size":{"shape":"Long"}
2935
- }
2936
- },
2937
- "DescribeDBLogFilesList":{
2938
- "type":"list",
2939
- "member":{
2940
- "shape":"DescribeDBLogFilesDetails",
2941
- "locationName":"DescribeDBLogFilesDetails"
2942
- }
2943
- },
2944
- "DescribeDBLogFilesMessage":{
2945
- "type":"structure",
2946
- "required":["DBInstanceIdentifier"],
2947
- "members":{
2948
- "DBInstanceIdentifier":{"shape":"String"},
2949
- "FilenameContains":{"shape":"String"},
2950
- "FileLastWritten":{"shape":"Long"},
2951
- "FileSize":{"shape":"Long"},
2952
- "Filters":{"shape":"FilterList"},
2953
- "MaxRecords":{"shape":"IntegerOptional"},
2954
- "Marker":{"shape":"String"}
2955
- }
2956
- },
2957
- "DescribeDBLogFilesResponse":{
2958
- "type":"structure",
2959
- "members":{
2960
- "DescribeDBLogFiles":{"shape":"DescribeDBLogFilesList"},
2961
- "Marker":{"shape":"String"}
2962
- }
2963
- },
2964
- "DescribeDBParameterGroupsMessage":{
2965
- "type":"structure",
2966
- "members":{
2967
- "DBParameterGroupName":{"shape":"String"},
2968
- "Filters":{"shape":"FilterList"},
2969
- "MaxRecords":{"shape":"IntegerOptional"},
2970
- "Marker":{"shape":"String"}
2971
- }
2972
- },
2973
- "DescribeDBParametersMessage":{
2974
- "type":"structure",
2975
- "required":["DBParameterGroupName"],
2976
- "members":{
2977
- "DBParameterGroupName":{"shape":"String"},
2978
- "Source":{"shape":"String"},
2979
- "Filters":{"shape":"FilterList"},
2980
- "MaxRecords":{"shape":"IntegerOptional"},
2981
- "Marker":{"shape":"String"}
2982
- }
2983
- },
2984
- "DescribeDBSecurityGroupsMessage":{
2985
- "type":"structure",
2986
- "members":{
2987
- "DBSecurityGroupName":{"shape":"String"},
2988
- "Filters":{"shape":"FilterList"},
2989
- "MaxRecords":{"shape":"IntegerOptional"},
2990
- "Marker":{"shape":"String"}
2991
- }
2992
- },
2993
- "DescribeDBSnapshotAttributesMessage":{
2994
- "type":"structure",
2995
- "required":["DBSnapshotIdentifier"],
2996
- "members":{
2997
- "DBSnapshotIdentifier":{"shape":"String"}
2998
- }
2999
- },
3000
- "DescribeDBSnapshotAttributesResult":{
3001
- "type":"structure",
3002
- "members":{
3003
- "DBSnapshotAttributesResult":{"shape":"DBSnapshotAttributesResult"}
3004
- }
3005
- },
3006
- "DescribeDBSnapshotsMessage":{
3007
- "type":"structure",
3008
- "members":{
3009
- "DBInstanceIdentifier":{"shape":"String"},
3010
- "DBSnapshotIdentifier":{"shape":"String"},
3011
- "SnapshotType":{"shape":"String"},
3012
- "Filters":{"shape":"FilterList"},
3013
- "MaxRecords":{"shape":"IntegerOptional"},
3014
- "Marker":{"shape":"String"},
3015
- "IncludeShared":{"shape":"Boolean"},
3016
- "IncludePublic":{"shape":"Boolean"}
3017
- }
3018
- },
3019
- "DescribeDBSubnetGroupsMessage":{
3020
- "type":"structure",
3021
- "members":{
3022
- "DBSubnetGroupName":{"shape":"String"},
3023
- "Filters":{"shape":"FilterList"},
3024
- "MaxRecords":{"shape":"IntegerOptional"},
3025
- "Marker":{"shape":"String"}
3026
- }
3027
- },
3028
- "DescribeEngineDefaultClusterParametersMessage":{
3029
- "type":"structure",
3030
- "required":["DBParameterGroupFamily"],
3031
- "members":{
3032
- "DBParameterGroupFamily":{"shape":"String"},
3033
- "Filters":{"shape":"FilterList"},
3034
- "MaxRecords":{"shape":"IntegerOptional"},
3035
- "Marker":{"shape":"String"}
3036
- }
3037
- },
3038
- "DescribeEngineDefaultClusterParametersResult":{
3039
- "type":"structure",
3040
- "members":{
3041
- "EngineDefaults":{"shape":"EngineDefaults"}
3042
- }
3043
- },
3044
- "DescribeEngineDefaultParametersMessage":{
3045
- "type":"structure",
3046
- "required":["DBParameterGroupFamily"],
3047
- "members":{
3048
- "DBParameterGroupFamily":{"shape":"String"},
3049
- "Filters":{"shape":"FilterList"},
3050
- "MaxRecords":{"shape":"IntegerOptional"},
3051
- "Marker":{"shape":"String"}
3052
- }
3053
- },
3054
- "DescribeEngineDefaultParametersResult":{
3055
- "type":"structure",
3056
- "members":{
3057
- "EngineDefaults":{"shape":"EngineDefaults"}
3058
- }
3059
- },
3060
- "DescribeEventCategoriesMessage":{
3061
- "type":"structure",
3062
- "members":{
3063
- "SourceType":{"shape":"String"},
3064
- "Filters":{"shape":"FilterList"}
3065
- }
3066
- },
3067
- "DescribeEventSubscriptionsMessage":{
3068
- "type":"structure",
3069
- "members":{
3070
- "SubscriptionName":{"shape":"String"},
3071
- "Filters":{"shape":"FilterList"},
3072
- "MaxRecords":{"shape":"IntegerOptional"},
3073
- "Marker":{"shape":"String"}
3074
- }
3075
- },
3076
- "DescribeEventsMessage":{
3077
- "type":"structure",
3078
- "members":{
3079
- "SourceIdentifier":{"shape":"String"},
3080
- "SourceType":{"shape":"SourceType"},
3081
- "StartTime":{"shape":"TStamp"},
3082
- "EndTime":{"shape":"TStamp"},
3083
- "Duration":{"shape":"IntegerOptional"},
3084
- "EventCategories":{"shape":"EventCategoriesList"},
3085
- "Filters":{"shape":"FilterList"},
3086
- "MaxRecords":{"shape":"IntegerOptional"},
3087
- "Marker":{"shape":"String"}
3088
- }
3089
- },
3090
- "DescribeOptionGroupOptionsMessage":{
3091
- "type":"structure",
3092
- "required":["EngineName"],
3093
- "members":{
3094
- "EngineName":{"shape":"String"},
3095
- "MajorEngineVersion":{"shape":"String"},
3096
- "Filters":{"shape":"FilterList"},
3097
- "MaxRecords":{"shape":"IntegerOptional"},
3098
- "Marker":{"shape":"String"}
3099
- }
3100
- },
3101
- "DescribeOptionGroupsMessage":{
3102
- "type":"structure",
3103
- "members":{
3104
- "OptionGroupName":{"shape":"String"},
3105
- "Filters":{"shape":"FilterList"},
3106
- "Marker":{"shape":"String"},
3107
- "MaxRecords":{"shape":"IntegerOptional"},
3108
- "EngineName":{"shape":"String"},
3109
- "MajorEngineVersion":{"shape":"String"}
3110
- }
3111
- },
3112
- "DescribeOrderableDBInstanceOptionsMessage":{
3113
- "type":"structure",
3114
- "required":["Engine"],
3115
- "members":{
3116
- "Engine":{"shape":"String"},
3117
- "EngineVersion":{"shape":"String"},
3118
- "DBInstanceClass":{"shape":"String"},
3119
- "LicenseModel":{"shape":"String"},
3120
- "Vpc":{"shape":"BooleanOptional"},
3121
- "Filters":{"shape":"FilterList"},
3122
- "MaxRecords":{"shape":"IntegerOptional"},
3123
- "Marker":{"shape":"String"}
3124
- }
3125
- },
3126
- "DescribePendingMaintenanceActionsMessage":{
3127
- "type":"structure",
3128
- "members":{
3129
- "ResourceIdentifier":{"shape":"String"},
3130
- "Filters":{"shape":"FilterList"},
3131
- "Marker":{"shape":"String"},
3132
- "MaxRecords":{"shape":"IntegerOptional"}
3133
- }
3134
- },
3135
- "DescribeReservedDBInstancesMessage":{
3136
- "type":"structure",
3137
- "members":{
3138
- "ReservedDBInstanceId":{"shape":"String"},
3139
- "ReservedDBInstancesOfferingId":{"shape":"String"},
3140
- "DBInstanceClass":{"shape":"String"},
3141
- "Duration":{"shape":"String"},
3142
- "ProductDescription":{"shape":"String"},
3143
- "OfferingType":{"shape":"String"},
3144
- "MultiAZ":{"shape":"BooleanOptional"},
3145
- "Filters":{"shape":"FilterList"},
3146
- "MaxRecords":{"shape":"IntegerOptional"},
3147
- "Marker":{"shape":"String"}
3148
- }
3149
- },
3150
- "DescribeReservedDBInstancesOfferingsMessage":{
3151
- "type":"structure",
3152
- "members":{
3153
- "ReservedDBInstancesOfferingId":{"shape":"String"},
3154
- "DBInstanceClass":{"shape":"String"},
3155
- "Duration":{"shape":"String"},
3156
- "ProductDescription":{"shape":"String"},
3157
- "OfferingType":{"shape":"String"},
3158
- "MultiAZ":{"shape":"BooleanOptional"},
3159
- "Filters":{"shape":"FilterList"},
3160
- "MaxRecords":{"shape":"IntegerOptional"},
3161
- "Marker":{"shape":"String"}
3162
- }
3163
- },
3164
- "DomainMembership":{
3165
- "type":"structure",
3166
- "members":{
3167
- "Domain":{"shape":"String"},
3168
- "Status":{"shape":"String"},
3169
- "FQDN":{"shape":"String"},
3170
- "IAMRoleName":{"shape":"String"}
3171
- }
3172
- },
3173
- "DomainMembershipList":{
3174
- "type":"list",
3175
- "member":{
3176
- "shape":"DomainMembership",
3177
- "locationName":"DomainMembership"
3178
- }
3179
- },
3180
- "DomainNotFoundFault":{
3181
- "type":"structure",
3182
- "members":{
3183
- },
3184
- "error":{
3185
- "code":"DomainNotFoundFault",
3186
- "httpStatusCode":404,
3187
- "senderFault":true
3188
- },
3189
- "exception":true
3190
- },
3191
- "Double":{"type":"double"},
3192
- "DownloadDBLogFilePortionDetails":{
3193
- "type":"structure",
3194
- "members":{
3195
- "LogFileData":{"shape":"String"},
3196
- "Marker":{"shape":"String"},
3197
- "AdditionalDataPending":{"shape":"Boolean"}
3198
- }
3199
- },
3200
- "DownloadDBLogFilePortionMessage":{
3201
- "type":"structure",
3202
- "required":[
3203
- "DBInstanceIdentifier",
3204
- "LogFileName"
3205
- ],
3206
- "members":{
3207
- "DBInstanceIdentifier":{"shape":"String"},
3208
- "LogFileName":{"shape":"String"},
3209
- "Marker":{"shape":"String"},
3210
- "NumberOfLines":{"shape":"Integer"}
3211
- }
3212
- },
3213
- "EC2SecurityGroup":{
3214
- "type":"structure",
3215
- "members":{
3216
- "Status":{"shape":"String"},
3217
- "EC2SecurityGroupName":{"shape":"String"},
3218
- "EC2SecurityGroupId":{"shape":"String"},
3219
- "EC2SecurityGroupOwnerId":{"shape":"String"}
3220
- }
3221
- },
3222
- "EC2SecurityGroupList":{
3223
- "type":"list",
3224
- "member":{
3225
- "shape":"EC2SecurityGroup",
3226
- "locationName":"EC2SecurityGroup"
3227
- }
3228
- },
3229
- "Endpoint":{
3230
- "type":"structure",
3231
- "members":{
3232
- "Address":{"shape":"String"},
3233
- "Port":{"shape":"Integer"},
3234
- "HostedZoneId":{"shape":"String"}
3235
- }
3236
- },
3237
- "EngineDefaults":{
3238
- "type":"structure",
3239
- "members":{
3240
- "DBParameterGroupFamily":{"shape":"String"},
3241
- "Marker":{"shape":"String"},
3242
- "Parameters":{"shape":"ParametersList"}
3243
- },
3244
- "wrapper":true
3245
- },
3246
- "Event":{
3247
- "type":"structure",
3248
- "members":{
3249
- "SourceIdentifier":{"shape":"String"},
3250
- "SourceType":{"shape":"SourceType"},
3251
- "Message":{"shape":"String"},
3252
- "EventCategories":{"shape":"EventCategoriesList"},
3253
- "Date":{"shape":"TStamp"}
3254
- }
3255
- },
3256
- "EventCategoriesList":{
3257
- "type":"list",
3258
- "member":{
3259
- "shape":"String",
3260
- "locationName":"EventCategory"
3261
- }
3262
- },
3263
- "EventCategoriesMap":{
3264
- "type":"structure",
3265
- "members":{
3266
- "SourceType":{"shape":"String"},
3267
- "EventCategories":{"shape":"EventCategoriesList"}
3268
- },
3269
- "wrapper":true
3270
- },
3271
- "EventCategoriesMapList":{
3272
- "type":"list",
3273
- "member":{
3274
- "shape":"EventCategoriesMap",
3275
- "locationName":"EventCategoriesMap"
3276
- }
3277
- },
3278
- "EventCategoriesMessage":{
3279
- "type":"structure",
3280
- "members":{
3281
- "EventCategoriesMapList":{"shape":"EventCategoriesMapList"}
3282
- }
3283
- },
3284
- "EventList":{
3285
- "type":"list",
3286
- "member":{
3287
- "shape":"Event",
3288
- "locationName":"Event"
3289
- }
3290
- },
3291
- "EventSubscription":{
3292
- "type":"structure",
3293
- "members":{
3294
- "CustomerAwsId":{"shape":"String"},
3295
- "CustSubscriptionId":{"shape":"String"},
3296
- "SnsTopicArn":{"shape":"String"},
3297
- "Status":{"shape":"String"},
3298
- "SubscriptionCreationTime":{"shape":"String"},
3299
- "SourceType":{"shape":"String"},
3300
- "SourceIdsList":{"shape":"SourceIdsList"},
3301
- "EventCategoriesList":{"shape":"EventCategoriesList"},
3302
- "Enabled":{"shape":"Boolean"}
3303
- },
3304
- "wrapper":true
3305
- },
3306
- "EventSubscriptionQuotaExceededFault":{
3307
- "type":"structure",
3308
- "members":{
3309
- },
3310
- "error":{
3311
- "code":"EventSubscriptionQuotaExceeded",
3312
- "httpStatusCode":400,
3313
- "senderFault":true
3314
- },
3315
- "exception":true
3316
- },
3317
- "EventSubscriptionsList":{
3318
- "type":"list",
3319
- "member":{
3320
- "shape":"EventSubscription",
3321
- "locationName":"EventSubscription"
3322
- }
3323
- },
3324
- "EventSubscriptionsMessage":{
3325
- "type":"structure",
3326
- "members":{
3327
- "Marker":{"shape":"String"},
3328
- "EventSubscriptionsList":{"shape":"EventSubscriptionsList"}
3329
- }
3330
- },
3331
- "EventsMessage":{
3332
- "type":"structure",
3333
- "members":{
3334
- "Marker":{"shape":"String"},
3335
- "Events":{"shape":"EventList"}
3336
- }
3337
- },
3338
- "FailoverDBClusterMessage":{
3339
- "type":"structure",
3340
- "members":{
3341
- "DBClusterIdentifier":{"shape":"String"},
3342
- "TargetDBInstanceIdentifier":{"shape":"String"}
3343
- }
3344
- },
3345
- "FailoverDBClusterResult":{
3346
- "type":"structure",
3347
- "members":{
3348
- "DBCluster":{"shape":"DBCluster"}
3349
- }
3350
- },
3351
- "Filter":{
3352
- "type":"structure",
3353
- "required":[
3354
- "Name",
3355
- "Values"
3356
- ],
3357
- "members":{
3358
- "Name":{"shape":"String"},
3359
- "Values":{"shape":"FilterValueList"}
3360
- }
3361
- },
3362
- "FilterList":{
3363
- "type":"list",
3364
- "member":{
3365
- "shape":"Filter",
3366
- "locationName":"Filter"
3367
- }
3368
- },
3369
- "FilterValueList":{
3370
- "type":"list",
3371
- "member":{
3372
- "shape":"String",
3373
- "locationName":"Value"
3374
- }
3375
- },
3376
- "IPRange":{
3377
- "type":"structure",
3378
- "members":{
3379
- "Status":{"shape":"String"},
3380
- "CIDRIP":{"shape":"String"}
3381
- }
3382
- },
3383
- "IPRangeList":{
3384
- "type":"list",
3385
- "member":{
3386
- "shape":"IPRange",
3387
- "locationName":"IPRange"
3388
- }
3389
- },
3390
- "InstanceQuotaExceededFault":{
3391
- "type":"structure",
3392
- "members":{
3393
- },
3394
- "error":{
3395
- "code":"InstanceQuotaExceeded",
3396
- "httpStatusCode":400,
3397
- "senderFault":true
3398
- },
3399
- "exception":true
3400
- },
3401
- "InsufficientDBClusterCapacityFault":{
3402
- "type":"structure",
3403
- "members":{
3404
- },
3405
- "error":{
3406
- "code":"InsufficientDBClusterCapacityFault",
3407
- "httpStatusCode":403,
3408
- "senderFault":true
3409
- },
3410
- "exception":true
3411
- },
3412
- "InsufficientDBInstanceCapacityFault":{
3413
- "type":"structure",
3414
- "members":{
3415
- },
3416
- "error":{
3417
- "code":"InsufficientDBInstanceCapacity",
3418
- "httpStatusCode":400,
3419
- "senderFault":true
3420
- },
3421
- "exception":true
3422
- },
3423
- "InsufficientStorageClusterCapacityFault":{
3424
- "type":"structure",
3425
- "members":{
3426
- },
3427
- "error":{
3428
- "code":"InsufficientStorageClusterCapacity",
3429
- "httpStatusCode":400,
3430
- "senderFault":true
3431
- },
3432
- "exception":true
3433
- },
3434
- "Integer":{"type":"integer"},
3435
- "IntegerOptional":{"type":"integer"},
3436
- "InvalidDBClusterSnapshotStateFault":{
3437
- "type":"structure",
3438
- "members":{
3439
- },
3440
- "error":{
3441
- "code":"InvalidDBClusterSnapshotStateFault",
3442
- "httpStatusCode":400,
3443
- "senderFault":true
3444
- },
3445
- "exception":true
3446
- },
3447
- "InvalidDBClusterStateFault":{
3448
- "type":"structure",
3449
- "members":{
3450
- },
3451
- "error":{
3452
- "code":"InvalidDBClusterStateFault",
3453
- "httpStatusCode":400,
3454
- "senderFault":true
3455
- },
3456
- "exception":true
3457
- },
3458
- "InvalidDBInstanceStateFault":{
3459
- "type":"structure",
3460
- "members":{
3461
- },
3462
- "error":{
3463
- "code":"InvalidDBInstanceState",
3464
- "httpStatusCode":400,
3465
- "senderFault":true
3466
- },
3467
- "exception":true
3468
- },
3469
- "InvalidDBParameterGroupStateFault":{
3470
- "type":"structure",
3471
- "members":{
3472
- },
3473
- "error":{
3474
- "code":"InvalidDBParameterGroupState",
3475
- "httpStatusCode":400,
3476
- "senderFault":true
3477
- },
3478
- "exception":true
3479
- },
3480
- "InvalidDBSecurityGroupStateFault":{
3481
- "type":"structure",
3482
- "members":{
3483
- },
3484
- "error":{
3485
- "code":"InvalidDBSecurityGroupState",
3486
- "httpStatusCode":400,
3487
- "senderFault":true
3488
- },
3489
- "exception":true
3490
- },
3491
- "InvalidDBSnapshotStateFault":{
3492
- "type":"structure",
3493
- "members":{
3494
- },
3495
- "error":{
3496
- "code":"InvalidDBSnapshotState",
3497
- "httpStatusCode":400,
3498
- "senderFault":true
3499
- },
3500
- "exception":true
3501
- },
3502
- "InvalidDBSubnetGroupFault":{
3503
- "type":"structure",
3504
- "members":{
3505
- },
3506
- "error":{
3507
- "code":"InvalidDBSubnetGroupFault",
3508
- "httpStatusCode":400,
3509
- "senderFault":true
3510
- },
3511
- "exception":true
3512
- },
3513
- "InvalidDBSubnetGroupStateFault":{
3514
- "type":"structure",
3515
- "members":{
3516
- },
3517
- "error":{
3518
- "code":"InvalidDBSubnetGroupStateFault",
3519
- "httpStatusCode":400,
3520
- "senderFault":true
3521
- },
3522
- "exception":true
3523
- },
3524
- "InvalidDBSubnetStateFault":{
3525
- "type":"structure",
3526
- "members":{
3527
- },
3528
- "error":{
3529
- "code":"InvalidDBSubnetStateFault",
3530
- "httpStatusCode":400,
3531
- "senderFault":true
3532
- },
3533
- "exception":true
3534
- },
3535
- "InvalidEventSubscriptionStateFault":{
3536
- "type":"structure",
3537
- "members":{
3538
- },
3539
- "error":{
3540
- "code":"InvalidEventSubscriptionState",
3541
- "httpStatusCode":400,
3542
- "senderFault":true
3543
- },
3544
- "exception":true
3545
- },
3546
- "InvalidOptionGroupStateFault":{
3547
- "type":"structure",
3548
- "members":{
3549
- },
3550
- "error":{
3551
- "code":"InvalidOptionGroupStateFault",
3552
- "httpStatusCode":400,
3553
- "senderFault":true
3554
- },
3555
- "exception":true
3556
- },
3557
- "InvalidRestoreFault":{
3558
- "type":"structure",
3559
- "members":{
3560
- },
3561
- "error":{
3562
- "code":"InvalidRestoreFault",
3563
- "httpStatusCode":400,
3564
- "senderFault":true
3565
- },
3566
- "exception":true
3567
- },
3568
- "InvalidSubnet":{
3569
- "type":"structure",
3570
- "members":{
3571
- },
3572
- "error":{
3573
- "code":"InvalidSubnet",
3574
- "httpStatusCode":400,
3575
- "senderFault":true
3576
- },
3577
- "exception":true
3578
- },
3579
- "InvalidVPCNetworkStateFault":{
3580
- "type":"structure",
3581
- "members":{
3582
- },
3583
- "error":{
3584
- "code":"InvalidVPCNetworkStateFault",
3585
- "httpStatusCode":400,
3586
- "senderFault":true
3587
- },
3588
- "exception":true
3589
- },
3590
- "KMSKeyNotAccessibleFault":{
3591
- "type":"structure",
3592
- "members":{
3593
- },
3594
- "error":{
3595
- "code":"KMSKeyNotAccessibleFault",
3596
- "httpStatusCode":400,
3597
- "senderFault":true
3598
- },
3599
- "exception":true
3600
- },
3601
- "KeyList":{
3602
- "type":"list",
3603
- "member":{"shape":"String"}
3604
- },
3605
- "ListTagsForResourceMessage":{
3606
- "type":"structure",
3607
- "required":["ResourceName"],
3608
- "members":{
3609
- "ResourceName":{"shape":"String"},
3610
- "Filters":{"shape":"FilterList"}
3611
- }
3612
- },
3613
- "Long":{"type":"long"},
3614
- "ModifyDBClusterMessage":{
3615
- "type":"structure",
3616
- "required":["DBClusterIdentifier"],
3617
- "members":{
3618
- "DBClusterIdentifier":{"shape":"String"},
3619
- "NewDBClusterIdentifier":{"shape":"String"},
3620
- "ApplyImmediately":{"shape":"Boolean"},
3621
- "BackupRetentionPeriod":{"shape":"IntegerOptional"},
3622
- "DBClusterParameterGroupName":{"shape":"String"},
3623
- "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"},
3624
- "Port":{"shape":"IntegerOptional"},
3625
- "MasterUserPassword":{"shape":"String"},
3626
- "OptionGroupName":{"shape":"String"},
3627
- "PreferredBackupWindow":{"shape":"String"},
3628
- "PreferredMaintenanceWindow":{"shape":"String"}
3629
- }
3630
- },
3631
- "ModifyDBClusterParameterGroupMessage":{
3632
- "type":"structure",
3633
- "required":[
3634
- "DBClusterParameterGroupName",
3635
- "Parameters"
3636
- ],
3637
- "members":{
3638
- "DBClusterParameterGroupName":{"shape":"String"},
3639
- "Parameters":{"shape":"ParametersList"}
3640
- }
3641
- },
3642
- "ModifyDBClusterResult":{
3643
- "type":"structure",
3644
- "members":{
3645
- "DBCluster":{"shape":"DBCluster"}
3646
- }
3647
- },
3648
- "ModifyDBClusterSnapshotAttributeMessage":{
3649
- "type":"structure",
3650
- "required":[
3651
- "DBClusterSnapshotIdentifier",
3652
- "AttributeName"
3653
- ],
3654
- "members":{
3655
- "DBClusterSnapshotIdentifier":{"shape":"String"},
3656
- "AttributeName":{"shape":"String"},
3657
- "ValuesToAdd":{"shape":"AttributeValueList"},
3658
- "ValuesToRemove":{"shape":"AttributeValueList"}
3659
- }
3660
- },
3661
- "ModifyDBClusterSnapshotAttributeResult":{
3662
- "type":"structure",
3663
- "members":{
3664
- "DBClusterSnapshotAttributesResult":{"shape":"DBClusterSnapshotAttributesResult"}
3665
- }
3666
- },
3667
- "ModifyDBInstanceMessage":{
3668
- "type":"structure",
3669
- "required":["DBInstanceIdentifier"],
3670
- "members":{
3671
- "DBInstanceIdentifier":{"shape":"String"},
3672
- "AllocatedStorage":{"shape":"IntegerOptional"},
3673
- "DBInstanceClass":{"shape":"String"},
3674
- "DBSecurityGroups":{"shape":"DBSecurityGroupNameList"},
3675
- "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"},
3676
- "ApplyImmediately":{"shape":"Boolean"},
3677
- "MasterUserPassword":{"shape":"String"},
3678
- "DBParameterGroupName":{"shape":"String"},
3679
- "BackupRetentionPeriod":{"shape":"IntegerOptional"},
3680
- "PreferredBackupWindow":{"shape":"String"},
3681
- "PreferredMaintenanceWindow":{"shape":"String"},
3682
- "MultiAZ":{"shape":"BooleanOptional"},
3683
- "EngineVersion":{"shape":"String"},
3684
- "AllowMajorVersionUpgrade":{"shape":"Boolean"},
3685
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
3686
- "Iops":{"shape":"IntegerOptional"},
3687
- "OptionGroupName":{"shape":"String"},
3688
- "NewDBInstanceIdentifier":{"shape":"String"},
3689
- "StorageType":{"shape":"String"},
3690
- "TdeCredentialArn":{"shape":"String"},
3691
- "TdeCredentialPassword":{"shape":"String"},
3692
- "CACertificateIdentifier":{"shape":"String"},
3693
- "Domain":{"shape":"String"},
3694
- "CopyTagsToSnapshot":{"shape":"BooleanOptional"},
3695
- "MonitoringInterval":{"shape":"IntegerOptional"},
3696
- "DBPortNumber":{"shape":"IntegerOptional"},
3697
- "PubliclyAccessible":{"shape":"BooleanOptional"},
3698
- "MonitoringRoleArn":{"shape":"String"},
3699
- "DomainIAMRoleName":{"shape":"String"},
3700
- "PromotionTier":{"shape":"IntegerOptional"}
3701
- }
3702
- },
3703
- "ModifyDBInstanceResult":{
3704
- "type":"structure",
3705
- "members":{
3706
- "DBInstance":{"shape":"DBInstance"}
3707
- }
3708
- },
3709
- "ModifyDBParameterGroupMessage":{
3710
- "type":"structure",
3711
- "required":[
3712
- "DBParameterGroupName",
3713
- "Parameters"
3714
- ],
3715
- "members":{
3716
- "DBParameterGroupName":{"shape":"String"},
3717
- "Parameters":{"shape":"ParametersList"}
3718
- }
3719
- },
3720
- "ModifyDBSnapshotAttributeMessage":{
3721
- "type":"structure",
3722
- "required":[
3723
- "DBSnapshotIdentifier",
3724
- "AttributeName"
3725
- ],
3726
- "members":{
3727
- "DBSnapshotIdentifier":{"shape":"String"},
3728
- "AttributeName":{"shape":"String"},
3729
- "ValuesToAdd":{"shape":"AttributeValueList"},
3730
- "ValuesToRemove":{"shape":"AttributeValueList"}
3731
- }
3732
- },
3733
- "ModifyDBSnapshotAttributeResult":{
3734
- "type":"structure",
3735
- "members":{
3736
- "DBSnapshotAttributesResult":{"shape":"DBSnapshotAttributesResult"}
3737
- }
3738
- },
3739
- "ModifyDBSubnetGroupMessage":{
3740
- "type":"structure",
3741
- "required":[
3742
- "DBSubnetGroupName",
3743
- "SubnetIds"
3744
- ],
3745
- "members":{
3746
- "DBSubnetGroupName":{"shape":"String"},
3747
- "DBSubnetGroupDescription":{"shape":"String"},
3748
- "SubnetIds":{"shape":"SubnetIdentifierList"}
3749
- }
3750
- },
3751
- "ModifyDBSubnetGroupResult":{
3752
- "type":"structure",
3753
- "members":{
3754
- "DBSubnetGroup":{"shape":"DBSubnetGroup"}
3755
- }
3756
- },
3757
- "ModifyEventSubscriptionMessage":{
3758
- "type":"structure",
3759
- "required":["SubscriptionName"],
3760
- "members":{
3761
- "SubscriptionName":{"shape":"String"},
3762
- "SnsTopicArn":{"shape":"String"},
3763
- "SourceType":{"shape":"String"},
3764
- "EventCategories":{"shape":"EventCategoriesList"},
3765
- "Enabled":{"shape":"BooleanOptional"}
3766
- }
3767
- },
3768
- "ModifyEventSubscriptionResult":{
3769
- "type":"structure",
3770
- "members":{
3771
- "EventSubscription":{"shape":"EventSubscription"}
3772
- }
3773
- },
3774
- "ModifyOptionGroupMessage":{
3775
- "type":"structure",
3776
- "required":["OptionGroupName"],
3777
- "members":{
3778
- "OptionGroupName":{"shape":"String"},
3779
- "OptionsToInclude":{"shape":"OptionConfigurationList"},
3780
- "OptionsToRemove":{"shape":"OptionNamesList"},
3781
- "ApplyImmediately":{"shape":"Boolean"}
3782
- }
3783
- },
3784
- "ModifyOptionGroupResult":{
3785
- "type":"structure",
3786
- "members":{
3787
- "OptionGroup":{"shape":"OptionGroup"}
3788
- }
3789
- },
3790
- "Option":{
3791
- "type":"structure",
3792
- "members":{
3793
- "OptionName":{"shape":"String"},
3794
- "OptionDescription":{"shape":"String"},
3795
- "Persistent":{"shape":"Boolean"},
3796
- "Permanent":{"shape":"Boolean"},
3797
- "Port":{"shape":"IntegerOptional"},
3798
- "OptionSettings":{"shape":"OptionSettingConfigurationList"},
3799
- "DBSecurityGroupMemberships":{"shape":"DBSecurityGroupMembershipList"},
3800
- "VpcSecurityGroupMemberships":{"shape":"VpcSecurityGroupMembershipList"}
3801
- }
3802
- },
3803
- "OptionConfiguration":{
3804
- "type":"structure",
3805
- "required":["OptionName"],
3806
- "members":{
3807
- "OptionName":{"shape":"String"},
3808
- "Port":{"shape":"IntegerOptional"},
3809
- "DBSecurityGroupMemberships":{"shape":"DBSecurityGroupNameList"},
3810
- "VpcSecurityGroupMemberships":{"shape":"VpcSecurityGroupIdList"},
3811
- "OptionSettings":{"shape":"OptionSettingsList"}
3812
- }
3813
- },
3814
- "OptionConfigurationList":{
3815
- "type":"list",
3816
- "member":{
3817
- "shape":"OptionConfiguration",
3818
- "locationName":"OptionConfiguration"
3819
- }
3820
- },
3821
- "OptionGroup":{
3822
- "type":"structure",
3823
- "members":{
3824
- "OptionGroupName":{"shape":"String"},
3825
- "OptionGroupDescription":{"shape":"String"},
3826
- "EngineName":{"shape":"String"},
3827
- "MajorEngineVersion":{"shape":"String"},
3828
- "Options":{"shape":"OptionsList"},
3829
- "AllowsVpcAndNonVpcInstanceMemberships":{"shape":"Boolean"},
3830
- "VpcId":{"shape":"String"}
3831
- },
3832
- "wrapper":true
3833
- },
3834
- "OptionGroupAlreadyExistsFault":{
3835
- "type":"structure",
3836
- "members":{
3837
- },
3838
- "error":{
3839
- "code":"OptionGroupAlreadyExistsFault",
3840
- "httpStatusCode":400,
3841
- "senderFault":true
3842
- },
3843
- "exception":true
3844
- },
3845
- "OptionGroupMembership":{
3846
- "type":"structure",
3847
- "members":{
3848
- "OptionGroupName":{"shape":"String"},
3849
- "Status":{"shape":"String"}
3850
- }
3851
- },
3852
- "OptionGroupMembershipList":{
3853
- "type":"list",
3854
- "member":{
3855
- "shape":"OptionGroupMembership",
3856
- "locationName":"OptionGroupMembership"
3857
- }
3858
- },
3859
- "OptionGroupNotFoundFault":{
3860
- "type":"structure",
3861
- "members":{
3862
- },
3863
- "error":{
3864
- "code":"OptionGroupNotFoundFault",
3865
- "httpStatusCode":404,
3866
- "senderFault":true
3867
- },
3868
- "exception":true
3869
- },
3870
- "OptionGroupOption":{
3871
- "type":"structure",
3872
- "members":{
3873
- "Name":{"shape":"String"},
3874
- "Description":{"shape":"String"},
3875
- "EngineName":{"shape":"String"},
3876
- "MajorEngineVersion":{"shape":"String"},
3877
- "MinimumRequiredMinorEngineVersion":{"shape":"String"},
3878
- "PortRequired":{"shape":"Boolean"},
3879
- "DefaultPort":{"shape":"IntegerOptional"},
3880
- "OptionsDependedOn":{"shape":"OptionsDependedOn"},
3881
- "Persistent":{"shape":"Boolean"},
3882
- "Permanent":{"shape":"Boolean"},
3883
- "OptionGroupOptionSettings":{"shape":"OptionGroupOptionSettingsList"}
3884
- }
3885
- },
3886
- "OptionGroupOptionSetting":{
3887
- "type":"structure",
3888
- "members":{
3889
- "SettingName":{"shape":"String"},
3890
- "SettingDescription":{"shape":"String"},
3891
- "DefaultValue":{"shape":"String"},
3892
- "ApplyType":{"shape":"String"},
3893
- "AllowedValues":{"shape":"String"},
3894
- "IsModifiable":{"shape":"Boolean"}
3895
- }
3896
- },
3897
- "OptionGroupOptionSettingsList":{
3898
- "type":"list",
3899
- "member":{
3900
- "shape":"OptionGroupOptionSetting",
3901
- "locationName":"OptionGroupOptionSetting"
3902
- }
3903
- },
3904
- "OptionGroupOptionsList":{
3905
- "type":"list",
3906
- "member":{
3907
- "shape":"OptionGroupOption",
3908
- "locationName":"OptionGroupOption"
3909
- }
3910
- },
3911
- "OptionGroupOptionsMessage":{
3912
- "type":"structure",
3913
- "members":{
3914
- "OptionGroupOptions":{"shape":"OptionGroupOptionsList"},
3915
- "Marker":{"shape":"String"}
3916
- }
3917
- },
3918
- "OptionGroupQuotaExceededFault":{
3919
- "type":"structure",
3920
- "members":{
3921
- },
3922
- "error":{
3923
- "code":"OptionGroupQuotaExceededFault",
3924
- "httpStatusCode":400,
3925
- "senderFault":true
3926
- },
3927
- "exception":true
3928
- },
3929
- "OptionGroups":{
3930
- "type":"structure",
3931
- "members":{
3932
- "OptionGroupsList":{"shape":"OptionGroupsList"},
3933
- "Marker":{"shape":"String"}
3934
- }
3935
- },
3936
- "OptionGroupsList":{
3937
- "type":"list",
3938
- "member":{
3939
- "shape":"OptionGroup",
3940
- "locationName":"OptionGroup"
3941
- }
3942
- },
3943
- "OptionNamesList":{
3944
- "type":"list",
3945
- "member":{"shape":"String"}
3946
- },
3947
- "OptionSetting":{
3948
- "type":"structure",
3949
- "members":{
3950
- "Name":{"shape":"String"},
3951
- "Value":{"shape":"String"},
3952
- "DefaultValue":{"shape":"String"},
3953
- "Description":{"shape":"String"},
3954
- "ApplyType":{"shape":"String"},
3955
- "DataType":{"shape":"String"},
3956
- "AllowedValues":{"shape":"String"},
3957
- "IsModifiable":{"shape":"Boolean"},
3958
- "IsCollection":{"shape":"Boolean"}
3959
- }
3960
- },
3961
- "OptionSettingConfigurationList":{
3962
- "type":"list",
3963
- "member":{
3964
- "shape":"OptionSetting",
3965
- "locationName":"OptionSetting"
3966
- }
3967
- },
3968
- "OptionSettingsList":{
3969
- "type":"list",
3970
- "member":{
3971
- "shape":"OptionSetting",
3972
- "locationName":"OptionSetting"
3973
- }
3974
- },
3975
- "OptionsDependedOn":{
3976
- "type":"list",
3977
- "member":{
3978
- "shape":"String",
3979
- "locationName":"OptionName"
3980
- }
3981
- },
3982
- "OptionsList":{
3983
- "type":"list",
3984
- "member":{
3985
- "shape":"Option",
3986
- "locationName":"Option"
3987
- }
3988
- },
3989
- "OrderableDBInstanceOption":{
3990
- "type":"structure",
3991
- "members":{
3992
- "Engine":{"shape":"String"},
3993
- "EngineVersion":{"shape":"String"},
3994
- "DBInstanceClass":{"shape":"String"},
3995
- "LicenseModel":{"shape":"String"},
3996
- "AvailabilityZones":{"shape":"AvailabilityZoneList"},
3997
- "MultiAZCapable":{"shape":"Boolean"},
3998
- "ReadReplicaCapable":{"shape":"Boolean"},
3999
- "Vpc":{"shape":"Boolean"},
4000
- "SupportsStorageEncryption":{"shape":"Boolean"},
4001
- "StorageType":{"shape":"String"},
4002
- "SupportsIops":{"shape":"Boolean"},
4003
- "SupportsEnhancedMonitoring":{"shape":"Boolean"}
4004
- },
4005
- "wrapper":true
4006
- },
4007
- "OrderableDBInstanceOptionsList":{
4008
- "type":"list",
4009
- "member":{
4010
- "shape":"OrderableDBInstanceOption",
4011
- "locationName":"OrderableDBInstanceOption"
4012
- }
4013
- },
4014
- "OrderableDBInstanceOptionsMessage":{
4015
- "type":"structure",
4016
- "members":{
4017
- "OrderableDBInstanceOptions":{"shape":"OrderableDBInstanceOptionsList"},
4018
- "Marker":{"shape":"String"}
4019
- }
4020
- },
4021
- "Parameter":{
4022
- "type":"structure",
4023
- "members":{
4024
- "ParameterName":{"shape":"String"},
4025
- "ParameterValue":{"shape":"String"},
4026
- "Description":{"shape":"String"},
4027
- "Source":{"shape":"String"},
4028
- "ApplyType":{"shape":"String"},
4029
- "DataType":{"shape":"String"},
4030
- "AllowedValues":{"shape":"String"},
4031
- "IsModifiable":{"shape":"Boolean"},
4032
- "MinimumEngineVersion":{"shape":"String"},
4033
- "ApplyMethod":{"shape":"ApplyMethod"}
4034
- }
4035
- },
4036
- "ParametersList":{
4037
- "type":"list",
4038
- "member":{
4039
- "shape":"Parameter",
4040
- "locationName":"Parameter"
4041
- }
4042
- },
4043
- "PendingMaintenanceAction":{
4044
- "type":"structure",
4045
- "members":{
4046
- "Action":{"shape":"String"},
4047
- "AutoAppliedAfterDate":{"shape":"TStamp"},
4048
- "ForcedApplyDate":{"shape":"TStamp"},
4049
- "OptInStatus":{"shape":"String"},
4050
- "CurrentApplyDate":{"shape":"TStamp"},
4051
- "Description":{"shape":"String"}
4052
- }
4053
- },
4054
- "PendingMaintenanceActionDetails":{
4055
- "type":"list",
4056
- "member":{
4057
- "shape":"PendingMaintenanceAction",
4058
- "locationName":"PendingMaintenanceAction"
4059
- }
4060
- },
4061
- "PendingMaintenanceActions":{
4062
- "type":"list",
4063
- "member":{
4064
- "shape":"ResourcePendingMaintenanceActions",
4065
- "locationName":"ResourcePendingMaintenanceActions"
4066
- }
4067
- },
4068
- "PendingMaintenanceActionsMessage":{
4069
- "type":"structure",
4070
- "members":{
4071
- "PendingMaintenanceActions":{"shape":"PendingMaintenanceActions"},
4072
- "Marker":{"shape":"String"}
4073
- }
4074
- },
4075
- "PendingModifiedValues":{
4076
- "type":"structure",
4077
- "members":{
4078
- "DBInstanceClass":{"shape":"String"},
4079
- "AllocatedStorage":{"shape":"IntegerOptional"},
4080
- "MasterUserPassword":{"shape":"String"},
4081
- "Port":{"shape":"IntegerOptional"},
4082
- "BackupRetentionPeriod":{"shape":"IntegerOptional"},
4083
- "MultiAZ":{"shape":"BooleanOptional"},
4084
- "EngineVersion":{"shape":"String"},
4085
- "Iops":{"shape":"IntegerOptional"},
4086
- "DBInstanceIdentifier":{"shape":"String"},
4087
- "StorageType":{"shape":"String"},
4088
- "CACertificateIdentifier":{"shape":"String"}
4089
- }
4090
- },
4091
- "PointInTimeRestoreNotEnabledFault":{
4092
- "type":"structure",
4093
- "members":{
4094
- },
4095
- "error":{
4096
- "code":"PointInTimeRestoreNotEnabled",
4097
- "httpStatusCode":400,
4098
- "senderFault":true
4099
- },
4100
- "exception":true
4101
- },
4102
- "PromoteReadReplicaDBClusterMessage":{
4103
- "type":"structure",
4104
- "required":["DBClusterIdentifier"],
4105
- "members":{
4106
- "DBClusterIdentifier":{"shape":"String"}
4107
- }
4108
- },
4109
- "PromoteReadReplicaDBClusterResult":{
4110
- "type":"structure",
4111
- "members":{
4112
- "DBCluster":{"shape":"DBCluster"}
4113
- }
4114
- },
4115
- "PromoteReadReplicaMessage":{
4116
- "type":"structure",
4117
- "required":["DBInstanceIdentifier"],
4118
- "members":{
4119
- "DBInstanceIdentifier":{"shape":"String"},
4120
- "BackupRetentionPeriod":{"shape":"IntegerOptional"},
4121
- "PreferredBackupWindow":{"shape":"String"}
4122
- }
4123
- },
4124
- "PromoteReadReplicaResult":{
4125
- "type":"structure",
4126
- "members":{
4127
- "DBInstance":{"shape":"DBInstance"}
4128
- }
4129
- },
4130
- "ProvisionedIopsNotAvailableInAZFault":{
4131
- "type":"structure",
4132
- "members":{
4133
- },
4134
- "error":{
4135
- "code":"ProvisionedIopsNotAvailableInAZFault",
4136
- "httpStatusCode":400,
4137
- "senderFault":true
4138
- },
4139
- "exception":true
4140
- },
4141
- "PurchaseReservedDBInstancesOfferingMessage":{
4142
- "type":"structure",
4143
- "required":["ReservedDBInstancesOfferingId"],
4144
- "members":{
4145
- "ReservedDBInstancesOfferingId":{"shape":"String"},
4146
- "ReservedDBInstanceId":{"shape":"String"},
4147
- "DBInstanceCount":{"shape":"IntegerOptional"},
4148
- "Tags":{"shape":"TagList"}
4149
- }
4150
- },
4151
- "PurchaseReservedDBInstancesOfferingResult":{
4152
- "type":"structure",
4153
- "members":{
4154
- "ReservedDBInstance":{"shape":"ReservedDBInstance"}
4155
- }
4156
- },
4157
- "ReadReplicaDBInstanceIdentifierList":{
4158
- "type":"list",
4159
- "member":{
4160
- "shape":"String",
4161
- "locationName":"ReadReplicaDBInstanceIdentifier"
4162
- }
4163
- },
4164
- "ReadReplicaIdentifierList":{
4165
- "type":"list",
4166
- "member":{
4167
- "shape":"String",
4168
- "locationName":"ReadReplicaIdentifier"
4169
- }
4170
- },
4171
- "RebootDBInstanceMessage":{
4172
- "type":"structure",
4173
- "required":["DBInstanceIdentifier"],
4174
- "members":{
4175
- "DBInstanceIdentifier":{"shape":"String"},
4176
- "ForceFailover":{"shape":"BooleanOptional"}
4177
- }
4178
- },
4179
- "RebootDBInstanceResult":{
4180
- "type":"structure",
4181
- "members":{
4182
- "DBInstance":{"shape":"DBInstance"}
4183
- }
4184
- },
4185
- "RecurringCharge":{
4186
- "type":"structure",
4187
- "members":{
4188
- "RecurringChargeAmount":{"shape":"Double"},
4189
- "RecurringChargeFrequency":{"shape":"String"}
4190
- },
4191
- "wrapper":true
4192
- },
4193
- "RecurringChargeList":{
4194
- "type":"list",
4195
- "member":{
4196
- "shape":"RecurringCharge",
4197
- "locationName":"RecurringCharge"
4198
- }
4199
- },
4200
- "RemoveSourceIdentifierFromSubscriptionMessage":{
4201
- "type":"structure",
4202
- "required":[
4203
- "SubscriptionName",
4204
- "SourceIdentifier"
4205
- ],
4206
- "members":{
4207
- "SubscriptionName":{"shape":"String"},
4208
- "SourceIdentifier":{"shape":"String"}
4209
- }
4210
- },
4211
- "RemoveSourceIdentifierFromSubscriptionResult":{
4212
- "type":"structure",
4213
- "members":{
4214
- "EventSubscription":{"shape":"EventSubscription"}
4215
- }
4216
- },
4217
- "RemoveTagsFromResourceMessage":{
4218
- "type":"structure",
4219
- "required":[
4220
- "ResourceName",
4221
- "TagKeys"
4222
- ],
4223
- "members":{
4224
- "ResourceName":{"shape":"String"},
4225
- "TagKeys":{"shape":"KeyList"}
4226
- }
4227
- },
4228
- "ReservedDBInstance":{
4229
- "type":"structure",
4230
- "members":{
4231
- "ReservedDBInstanceId":{"shape":"String"},
4232
- "ReservedDBInstancesOfferingId":{"shape":"String"},
4233
- "DBInstanceClass":{"shape":"String"},
4234
- "StartTime":{"shape":"TStamp"},
4235
- "Duration":{"shape":"Integer"},
4236
- "FixedPrice":{"shape":"Double"},
4237
- "UsagePrice":{"shape":"Double"},
4238
- "CurrencyCode":{"shape":"String"},
4239
- "DBInstanceCount":{"shape":"Integer"},
4240
- "ProductDescription":{"shape":"String"},
4241
- "OfferingType":{"shape":"String"},
4242
- "MultiAZ":{"shape":"Boolean"},
4243
- "State":{"shape":"String"},
4244
- "RecurringCharges":{"shape":"RecurringChargeList"}
4245
- },
4246
- "wrapper":true
4247
- },
4248
- "ReservedDBInstanceAlreadyExistsFault":{
4249
- "type":"structure",
4250
- "members":{
4251
- },
4252
- "error":{
4253
- "code":"ReservedDBInstanceAlreadyExists",
4254
- "httpStatusCode":404,
4255
- "senderFault":true
4256
- },
4257
- "exception":true
4258
- },
4259
- "ReservedDBInstanceList":{
4260
- "type":"list",
4261
- "member":{
4262
- "shape":"ReservedDBInstance",
4263
- "locationName":"ReservedDBInstance"
4264
- }
4265
- },
4266
- "ReservedDBInstanceMessage":{
4267
- "type":"structure",
4268
- "members":{
4269
- "Marker":{"shape":"String"},
4270
- "ReservedDBInstances":{"shape":"ReservedDBInstanceList"}
4271
- }
4272
- },
4273
- "ReservedDBInstanceNotFoundFault":{
4274
- "type":"structure",
4275
- "members":{
4276
- },
4277
- "error":{
4278
- "code":"ReservedDBInstanceNotFound",
4279
- "httpStatusCode":404,
4280
- "senderFault":true
4281
- },
4282
- "exception":true
4283
- },
4284
- "ReservedDBInstanceQuotaExceededFault":{
4285
- "type":"structure",
4286
- "members":{
4287
- },
4288
- "error":{
4289
- "code":"ReservedDBInstanceQuotaExceeded",
4290
- "httpStatusCode":400,
4291
- "senderFault":true
4292
- },
4293
- "exception":true
4294
- },
4295
- "ReservedDBInstancesOffering":{
4296
- "type":"structure",
4297
- "members":{
4298
- "ReservedDBInstancesOfferingId":{"shape":"String"},
4299
- "DBInstanceClass":{"shape":"String"},
4300
- "Duration":{"shape":"Integer"},
4301
- "FixedPrice":{"shape":"Double"},
4302
- "UsagePrice":{"shape":"Double"},
4303
- "CurrencyCode":{"shape":"String"},
4304
- "ProductDescription":{"shape":"String"},
4305
- "OfferingType":{"shape":"String"},
4306
- "MultiAZ":{"shape":"Boolean"},
4307
- "RecurringCharges":{"shape":"RecurringChargeList"}
4308
- },
4309
- "wrapper":true
4310
- },
4311
- "ReservedDBInstancesOfferingList":{
4312
- "type":"list",
4313
- "member":{
4314
- "shape":"ReservedDBInstancesOffering",
4315
- "locationName":"ReservedDBInstancesOffering"
4316
- }
4317
- },
4318
- "ReservedDBInstancesOfferingMessage":{
4319
- "type":"structure",
4320
- "members":{
4321
- "Marker":{"shape":"String"},
4322
- "ReservedDBInstancesOfferings":{"shape":"ReservedDBInstancesOfferingList"}
4323
- }
4324
- },
4325
- "ReservedDBInstancesOfferingNotFoundFault":{
4326
- "type":"structure",
4327
- "members":{
4328
- },
4329
- "error":{
4330
- "code":"ReservedDBInstancesOfferingNotFound",
4331
- "httpStatusCode":404,
4332
- "senderFault":true
4333
- },
4334
- "exception":true
4335
- },
4336
- "ResetDBClusterParameterGroupMessage":{
4337
- "type":"structure",
4338
- "required":["DBClusterParameterGroupName"],
4339
- "members":{
4340
- "DBClusterParameterGroupName":{"shape":"String"},
4341
- "ResetAllParameters":{"shape":"Boolean"},
4342
- "Parameters":{"shape":"ParametersList"}
4343
- }
4344
- },
4345
- "ResetDBParameterGroupMessage":{
4346
- "type":"structure",
4347
- "required":["DBParameterGroupName"],
4348
- "members":{
4349
- "DBParameterGroupName":{"shape":"String"},
4350
- "ResetAllParameters":{"shape":"Boolean"},
4351
- "Parameters":{"shape":"ParametersList"}
4352
- }
4353
- },
4354
- "ResourceNotFoundFault":{
4355
- "type":"structure",
4356
- "members":{
4357
- },
4358
- "error":{
4359
- "code":"ResourceNotFoundFault",
4360
- "httpStatusCode":404,
4361
- "senderFault":true
4362
- },
4363
- "exception":true
4364
- },
4365
- "ResourcePendingMaintenanceActions":{
4366
- "type":"structure",
4367
- "members":{
4368
- "ResourceIdentifier":{"shape":"String"},
4369
- "PendingMaintenanceActionDetails":{"shape":"PendingMaintenanceActionDetails"}
4370
- },
4371
- "wrapper":true
4372
- },
4373
- "RestoreDBClusterFromSnapshotMessage":{
4374
- "type":"structure",
4375
- "required":[
4376
- "DBClusterIdentifier",
4377
- "SnapshotIdentifier",
4378
- "Engine"
4379
- ],
4380
- "members":{
4381
- "AvailabilityZones":{"shape":"AvailabilityZones"},
4382
- "DBClusterIdentifier":{"shape":"String"},
4383
- "SnapshotIdentifier":{"shape":"String"},
4384
- "Engine":{"shape":"String"},
4385
- "EngineVersion":{"shape":"String"},
4386
- "Port":{"shape":"IntegerOptional"},
4387
- "DBSubnetGroupName":{"shape":"String"},
4388
- "DatabaseName":{"shape":"String"},
4389
- "OptionGroupName":{"shape":"String"},
4390
- "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"},
4391
- "Tags":{"shape":"TagList"},
4392
- "KmsKeyId":{"shape":"String"}
4393
- }
4394
- },
4395
- "RestoreDBClusterFromSnapshotResult":{
4396
- "type":"structure",
4397
- "members":{
4398
- "DBCluster":{"shape":"DBCluster"}
4399
- }
4400
- },
4401
- "RestoreDBClusterToPointInTimeMessage":{
4402
- "type":"structure",
4403
- "required":[
4404
- "DBClusterIdentifier",
4405
- "SourceDBClusterIdentifier"
4406
- ],
4407
- "members":{
4408
- "DBClusterIdentifier":{"shape":"String"},
4409
- "SourceDBClusterIdentifier":{"shape":"String"},
4410
- "RestoreToTime":{"shape":"TStamp"},
4411
- "UseLatestRestorableTime":{"shape":"Boolean"},
4412
- "Port":{"shape":"IntegerOptional"},
4413
- "DBSubnetGroupName":{"shape":"String"},
4414
- "OptionGroupName":{"shape":"String"},
4415
- "VpcSecurityGroupIds":{"shape":"VpcSecurityGroupIdList"},
4416
- "Tags":{"shape":"TagList"},
4417
- "KmsKeyId":{"shape":"String"}
4418
- }
4419
- },
4420
- "RestoreDBClusterToPointInTimeResult":{
4421
- "type":"structure",
4422
- "members":{
4423
- "DBCluster":{"shape":"DBCluster"}
4424
- }
4425
- },
4426
- "RestoreDBInstanceFromDBSnapshotMessage":{
4427
- "type":"structure",
4428
- "required":[
4429
- "DBInstanceIdentifier",
4430
- "DBSnapshotIdentifier"
4431
- ],
4432
- "members":{
4433
- "DBInstanceIdentifier":{"shape":"String"},
4434
- "DBSnapshotIdentifier":{"shape":"String"},
4435
- "DBInstanceClass":{"shape":"String"},
4436
- "Port":{"shape":"IntegerOptional"},
4437
- "AvailabilityZone":{"shape":"String"},
4438
- "DBSubnetGroupName":{"shape":"String"},
4439
- "MultiAZ":{"shape":"BooleanOptional"},
4440
- "PubliclyAccessible":{"shape":"BooleanOptional"},
4441
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
4442
- "LicenseModel":{"shape":"String"},
4443
- "DBName":{"shape":"String"},
4444
- "Engine":{"shape":"String"},
4445
- "Iops":{"shape":"IntegerOptional"},
4446
- "OptionGroupName":{"shape":"String"},
4447
- "Tags":{"shape":"TagList"},
4448
- "StorageType":{"shape":"String"},
4449
- "TdeCredentialArn":{"shape":"String"},
4450
- "TdeCredentialPassword":{"shape":"String"},
4451
- "Domain":{"shape":"String"},
4452
- "CopyTagsToSnapshot":{"shape":"BooleanOptional"},
4453
- "DomainIAMRoleName":{"shape":"String"}
4454
- }
4455
- },
4456
- "RestoreDBInstanceFromDBSnapshotResult":{
4457
- "type":"structure",
4458
- "members":{
4459
- "DBInstance":{"shape":"DBInstance"}
4460
- }
4461
- },
4462
- "RestoreDBInstanceToPointInTimeMessage":{
4463
- "type":"structure",
4464
- "required":[
4465
- "SourceDBInstanceIdentifier",
4466
- "TargetDBInstanceIdentifier"
4467
- ],
4468
- "members":{
4469
- "SourceDBInstanceIdentifier":{"shape":"String"},
4470
- "TargetDBInstanceIdentifier":{"shape":"String"},
4471
- "RestoreTime":{"shape":"TStamp"},
4472
- "UseLatestRestorableTime":{"shape":"Boolean"},
4473
- "DBInstanceClass":{"shape":"String"},
4474
- "Port":{"shape":"IntegerOptional"},
4475
- "AvailabilityZone":{"shape":"String"},
4476
- "DBSubnetGroupName":{"shape":"String"},
4477
- "MultiAZ":{"shape":"BooleanOptional"},
4478
- "PubliclyAccessible":{"shape":"BooleanOptional"},
4479
- "AutoMinorVersionUpgrade":{"shape":"BooleanOptional"},
4480
- "LicenseModel":{"shape":"String"},
4481
- "DBName":{"shape":"String"},
4482
- "Engine":{"shape":"String"},
4483
- "Iops":{"shape":"IntegerOptional"},
4484
- "OptionGroupName":{"shape":"String"},
4485
- "CopyTagsToSnapshot":{"shape":"BooleanOptional"},
4486
- "Tags":{"shape":"TagList"},
4487
- "StorageType":{"shape":"String"},
4488
- "TdeCredentialArn":{"shape":"String"},
4489
- "TdeCredentialPassword":{"shape":"String"},
4490
- "Domain":{"shape":"String"},
4491
- "DomainIAMRoleName":{"shape":"String"}
4492
- }
4493
- },
4494
- "RestoreDBInstanceToPointInTimeResult":{
4495
- "type":"structure",
4496
- "members":{
4497
- "DBInstance":{"shape":"DBInstance"}
4498
- }
4499
- },
4500
- "RevokeDBSecurityGroupIngressMessage":{
4501
- "type":"structure",
4502
- "required":["DBSecurityGroupName"],
4503
- "members":{
4504
- "DBSecurityGroupName":{"shape":"String"},
4505
- "CIDRIP":{"shape":"String"},
4506
- "EC2SecurityGroupName":{"shape":"String"},
4507
- "EC2SecurityGroupId":{"shape":"String"},
4508
- "EC2SecurityGroupOwnerId":{"shape":"String"}
4509
- }
4510
- },
4511
- "RevokeDBSecurityGroupIngressResult":{
4512
- "type":"structure",
4513
- "members":{
4514
- "DBSecurityGroup":{"shape":"DBSecurityGroup"}
4515
- }
4516
- },
4517
- "SNSInvalidTopicFault":{
4518
- "type":"structure",
4519
- "members":{
4520
- },
4521
- "error":{
4522
- "code":"SNSInvalidTopic",
4523
- "httpStatusCode":400,
4524
- "senderFault":true
4525
- },
4526
- "exception":true
4527
- },
4528
- "SNSNoAuthorizationFault":{
4529
- "type":"structure",
4530
- "members":{
4531
- },
4532
- "error":{
4533
- "code":"SNSNoAuthorization",
4534
- "httpStatusCode":400,
4535
- "senderFault":true
4536
- },
4537
- "exception":true
4538
- },
4539
- "SNSTopicArnNotFoundFault":{
4540
- "type":"structure",
4541
- "members":{
4542
- },
4543
- "error":{
4544
- "code":"SNSTopicArnNotFound",
4545
- "httpStatusCode":404,
4546
- "senderFault":true
4547
- },
4548
- "exception":true
4549
- },
4550
- "SharedSnapshotQuotaExceededFault":{
4551
- "type":"structure",
4552
- "members":{
4553
- },
4554
- "error":{
4555
- "code":"SharedSnapshotQuotaExceeded",
4556
- "httpStatusCode":400,
4557
- "senderFault":true
4558
- },
4559
- "exception":true
4560
- },
4561
- "SnapshotQuotaExceededFault":{
4562
- "type":"structure",
4563
- "members":{
4564
- },
4565
- "error":{
4566
- "code":"SnapshotQuotaExceeded",
4567
- "httpStatusCode":400,
4568
- "senderFault":true
4569
- },
4570
- "exception":true
4571
- },
4572
- "SourceIdsList":{
4573
- "type":"list",
4574
- "member":{
4575
- "shape":"String",
4576
- "locationName":"SourceId"
4577
- }
4578
- },
4579
- "SourceNotFoundFault":{
4580
- "type":"structure",
4581
- "members":{
4582
- },
4583
- "error":{
4584
- "code":"SourceNotFound",
4585
- "httpStatusCode":404,
4586
- "senderFault":true
4587
- },
4588
- "exception":true
4589
- },
4590
- "SourceType":{
4591
- "type":"string",
4592
- "enum":[
4593
- "db-instance",
4594
- "db-parameter-group",
4595
- "db-security-group",
4596
- "db-snapshot",
4597
- "db-cluster",
4598
- "db-cluster-snapshot"
4599
- ]
4600
- },
4601
- "StorageQuotaExceededFault":{
4602
- "type":"structure",
4603
- "members":{
4604
- },
4605
- "error":{
4606
- "code":"StorageQuotaExceeded",
4607
- "httpStatusCode":400,
4608
- "senderFault":true
4609
- },
4610
- "exception":true
4611
- },
4612
- "StorageTypeNotSupportedFault":{
4613
- "type":"structure",
4614
- "members":{
4615
- },
4616
- "error":{
4617
- "code":"StorageTypeNotSupported",
4618
- "httpStatusCode":400,
4619
- "senderFault":true
4620
- },
4621
- "exception":true
4622
- },
4623
- "String":{"type":"string"},
4624
- "Subnet":{
4625
- "type":"structure",
4626
- "members":{
4627
- "SubnetIdentifier":{"shape":"String"},
4628
- "SubnetAvailabilityZone":{"shape":"AvailabilityZone"},
4629
- "SubnetStatus":{"shape":"String"}
4630
- }
4631
- },
4632
- "SubnetAlreadyInUse":{
4633
- "type":"structure",
4634
- "members":{
4635
- },
4636
- "error":{
4637
- "code":"SubnetAlreadyInUse",
4638
- "httpStatusCode":400,
4639
- "senderFault":true
4640
- },
4641
- "exception":true
4642
- },
4643
- "SubnetIdentifierList":{
4644
- "type":"list",
4645
- "member":{
4646
- "shape":"String",
4647
- "locationName":"SubnetIdentifier"
4648
- }
4649
- },
4650
- "SubnetList":{
4651
- "type":"list",
4652
- "member":{
4653
- "shape":"Subnet",
4654
- "locationName":"Subnet"
4655
- }
4656
- },
4657
- "SubscriptionAlreadyExistFault":{
4658
- "type":"structure",
4659
- "members":{
4660
- },
4661
- "error":{
4662
- "code":"SubscriptionAlreadyExist",
4663
- "httpStatusCode":400,
4664
- "senderFault":true
4665
- },
4666
- "exception":true
4667
- },
4668
- "SubscriptionCategoryNotFoundFault":{
4669
- "type":"structure",
4670
- "members":{
4671
- },
4672
- "error":{
4673
- "code":"SubscriptionCategoryNotFound",
4674
- "httpStatusCode":404,
4675
- "senderFault":true
4676
- },
4677
- "exception":true
4678
- },
4679
- "SubscriptionNotFoundFault":{
4680
- "type":"structure",
4681
- "members":{
4682
- },
4683
- "error":{
4684
- "code":"SubscriptionNotFound",
4685
- "httpStatusCode":404,
4686
- "senderFault":true
4687
- },
4688
- "exception":true
4689
- },
4690
- "SupportedCharacterSetsList":{
4691
- "type":"list",
4692
- "member":{
4693
- "shape":"CharacterSet",
4694
- "locationName":"CharacterSet"
4695
- }
4696
- },
4697
- "TStamp":{"type":"timestamp"},
4698
- "Tag":{
4699
- "type":"structure",
4700
- "members":{
4701
- "Key":{"shape":"String"},
4702
- "Value":{"shape":"String"}
4703
- }
4704
- },
4705
- "TagList":{
4706
- "type":"list",
4707
- "member":{
4708
- "shape":"Tag",
4709
- "locationName":"Tag"
4710
- }
4711
- },
4712
- "TagListMessage":{
4713
- "type":"structure",
4714
- "members":{
4715
- "TagList":{"shape":"TagList"}
4716
- }
4717
- },
4718
- "UpgradeTarget":{
4719
- "type":"structure",
4720
- "members":{
4721
- "Engine":{"shape":"String"},
4722
- "EngineVersion":{"shape":"String"},
4723
- "Description":{"shape":"String"},
4724
- "AutoUpgrade":{"shape":"Boolean"},
4725
- "IsMajorVersionUpgrade":{"shape":"Boolean"}
4726
- }
4727
- },
4728
- "ValidUpgradeTargetList":{
4729
- "type":"list",
4730
- "member":{
4731
- "shape":"UpgradeTarget",
4732
- "locationName":"UpgradeTarget"
4733
- }
4734
- },
4735
- "VpcSecurityGroupIdList":{
4736
- "type":"list",
4737
- "member":{
4738
- "shape":"String",
4739
- "locationName":"VpcSecurityGroupId"
4740
- }
4741
- },
4742
- "VpcSecurityGroupMembership":{
4743
- "type":"structure",
4744
- "members":{
4745
- "VpcSecurityGroupId":{"shape":"String"},
4746
- "Status":{"shape":"String"}
4747
- }
4748
- },
4749
- "VpcSecurityGroupMembershipList":{
4750
- "type":"list",
4751
- "member":{
4752
- "shape":"VpcSecurityGroupMembership",
4753
- "locationName":"VpcSecurityGroupMembership"
4754
- }
4755
- }
4756
- }
4757
- }