aws-sdk-euca 1.8.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (539) hide show
  1. data/.yardopts +5 -0
  2. data/LICENSE.txt +12 -0
  3. data/README.rdoc +189 -0
  4. data/ca-bundle.crt +3895 -0
  5. data/lib/aws-sdk-euca.rb +79 -0
  6. data/lib/aws-sdk.rb +79 -0
  7. data/lib/aws.rb +14 -0
  8. data/lib/aws/api_config/AutoScaling-2011-01-01.yml +825 -0
  9. data/lib/aws/api_config/CloudFormation-2010-05-15.yml +322 -0
  10. data/lib/aws/api_config/CloudFront-2012-05-05.yml +2102 -0
  11. data/lib/aws/api_config/CloudSearch-2011-02-01.yml +681 -0
  12. data/lib/aws/api_config/CloudWatch-2010-08-01.yml +433 -0
  13. data/lib/aws/api_config/DataPipeline-2012-10-29.yml +422 -0
  14. data/lib/aws/api_config/DynamoDB-2011-12-05.yml +1160 -0
  15. data/lib/aws/api_config/EC2-2013-02-01.yml +4368 -0
  16. data/lib/aws/api_config/ELB-2012-06-01.yml +597 -0
  17. data/lib/aws/api_config/EMR-2009-03-31.yml +370 -0
  18. data/lib/aws/api_config/ElastiCache-2012-03-09.yml +777 -0
  19. data/lib/aws/api_config/ElastiCache-2012-11-15.yml +979 -0
  20. data/lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml +823 -0
  21. data/lib/aws/api_config/ElasticTranscoder-2012-09-25.yml +1036 -0
  22. data/lib/aws/api_config/Glacier-2012-06-01.yml +618 -0
  23. data/lib/aws/api_config/IAM-2010-05-08.yml +1222 -0
  24. data/lib/aws/api_config/ImportExport-2010-06-01.yml +109 -0
  25. data/lib/aws/api_config/OpsWorks-2013-02-18.yml +1463 -0
  26. data/lib/aws/api_config/RDS-2012-09-17.yml +1861 -0
  27. data/lib/aws/api_config/RDS-2013-02-12.yml +2377 -0
  28. data/lib/aws/api_config/Redshift-2012-12-01.yml +1149 -0
  29. data/lib/aws/api_config/Route53-2012-02-29.yml +380 -0
  30. data/lib/aws/api_config/Route53-2012-12-12.yml +547 -0
  31. data/lib/aws/api_config/SNS-2010-03-31.yml +249 -0
  32. data/lib/aws/api_config/SQS-2012-11-05.yml +317 -0
  33. data/lib/aws/api_config/STS-2011-06-15.yml +81 -0
  34. data/lib/aws/api_config/SimpleDB-2009-04-15.yml +306 -0
  35. data/lib/aws/api_config/SimpleEmailService-2010-12-01.yml +346 -0
  36. data/lib/aws/api_config/SimpleWorkflow-2012-01-25.yml +2358 -0
  37. data/lib/aws/api_config/StorageGateway-2012-06-30.yml +748 -0
  38. data/lib/aws/auto_scaling.rb +164 -0
  39. data/lib/aws/auto_scaling/activity.rb +102 -0
  40. data/lib/aws/auto_scaling/activity_collection.rb +82 -0
  41. data/lib/aws/auto_scaling/client.rb +521 -0
  42. data/lib/aws/auto_scaling/config.rb +18 -0
  43. data/lib/aws/auto_scaling/errors.rb +22 -0
  44. data/lib/aws/auto_scaling/group.rb +420 -0
  45. data/lib/aws/auto_scaling/group_collection.rb +96 -0
  46. data/lib/aws/auto_scaling/group_options.rb +146 -0
  47. data/lib/aws/auto_scaling/instance.rb +192 -0
  48. data/lib/aws/auto_scaling/instance_collection.rb +63 -0
  49. data/lib/aws/auto_scaling/launch_configuration.rb +158 -0
  50. data/lib/aws/auto_scaling/launch_configuration_collection.rb +154 -0
  51. data/lib/aws/auto_scaling/notification_configuration.rb +89 -0
  52. data/lib/aws/auto_scaling/notification_configuration_collection.rb +184 -0
  53. data/lib/aws/auto_scaling/request.rb +29 -0
  54. data/lib/aws/auto_scaling/scaling_policy.rb +142 -0
  55. data/lib/aws/auto_scaling/scaling_policy_collection.rb +72 -0
  56. data/lib/aws/auto_scaling/scaling_policy_options.rb +64 -0
  57. data/lib/aws/auto_scaling/scheduled_action.rb +145 -0
  58. data/lib/aws/auto_scaling/scheduled_action_collection.rb +195 -0
  59. data/lib/aws/auto_scaling/tag.rb +59 -0
  60. data/lib/aws/auto_scaling/tag_collection.rb +112 -0
  61. data/lib/aws/cloud_formation.rb +272 -0
  62. data/lib/aws/cloud_formation/client.rb +369 -0
  63. data/lib/aws/cloud_formation/config.rb +18 -0
  64. data/lib/aws/cloud_formation/errors.rb +22 -0
  65. data/lib/aws/cloud_formation/request.rb +29 -0
  66. data/lib/aws/cloud_formation/stack.rb +255 -0
  67. data/lib/aws/cloud_formation/stack_collection.rb +209 -0
  68. data/lib/aws/cloud_formation/stack_event.rb +75 -0
  69. data/lib/aws/cloud_formation/stack_event_collection.rb +47 -0
  70. data/lib/aws/cloud_formation/stack_options.rb +72 -0
  71. data/lib/aws/cloud_formation/stack_output.rb +53 -0
  72. data/lib/aws/cloud_formation/stack_resource.rb +117 -0
  73. data/lib/aws/cloud_formation/stack_resource_collection.rb +84 -0
  74. data/lib/aws/cloud_formation/stack_resource_summary_collection.rb +64 -0
  75. data/lib/aws/cloud_formation/stack_summary_collection.rb +123 -0
  76. data/lib/aws/cloud_front.rb +73 -0
  77. data/lib/aws/cloud_front/client.rb +1307 -0
  78. data/lib/aws/cloud_front/config.rb +18 -0
  79. data/lib/aws/cloud_front/errors.rb +22 -0
  80. data/lib/aws/cloud_front/request.rb +44 -0
  81. data/lib/aws/cloud_search.rb +74 -0
  82. data/lib/aws/cloud_search/client.rb +558 -0
  83. data/lib/aws/cloud_search/config.rb +18 -0
  84. data/lib/aws/cloud_search/errors.rb +22 -0
  85. data/lib/aws/cloud_search/request.rb +23 -0
  86. data/lib/aws/cloud_watch.rb +119 -0
  87. data/lib/aws/cloud_watch/alarm.rb +272 -0
  88. data/lib/aws/cloud_watch/alarm_collection.rb +153 -0
  89. data/lib/aws/cloud_watch/alarm_history_item.rb +50 -0
  90. data/lib/aws/cloud_watch/alarm_history_item_collection.rb +84 -0
  91. data/lib/aws/cloud_watch/client.rb +247 -0
  92. data/lib/aws/cloud_watch/config.rb +18 -0
  93. data/lib/aws/cloud_watch/errors.rb +22 -0
  94. data/lib/aws/cloud_watch/metric.rb +135 -0
  95. data/lib/aws/cloud_watch/metric_alarm_collection.rb +160 -0
  96. data/lib/aws/cloud_watch/metric_collection.rb +131 -0
  97. data/lib/aws/cloud_watch/metric_statistics.rb +69 -0
  98. data/lib/aws/cloud_watch/request.rb +23 -0
  99. data/lib/aws/core.rb +587 -0
  100. data/lib/aws/core/async_handle.rb +90 -0
  101. data/lib/aws/core/autoloader.rb +64 -0
  102. data/lib/aws/core/cacheable.rb +78 -0
  103. data/lib/aws/core/client.rb +691 -0
  104. data/lib/aws/core/collection.rb +267 -0
  105. data/lib/aws/core/collection/simple.rb +82 -0
  106. data/lib/aws/core/collection/with_limit_and_next_token.rb +71 -0
  107. data/lib/aws/core/collection/with_next_token.rb +97 -0
  108. data/lib/aws/core/configuration.rb +546 -0
  109. data/lib/aws/core/credential_providers.rb +461 -0
  110. data/lib/aws/core/data.rb +247 -0
  111. data/lib/aws/core/http/curb_handler.rb +155 -0
  112. data/lib/aws/core/http/handler.rb +89 -0
  113. data/lib/aws/core/http/net_http_handler.rb +128 -0
  114. data/lib/aws/core/http/request.rb +263 -0
  115. data/lib/aws/core/http/response.rb +81 -0
  116. data/lib/aws/core/indifferent_hash.rb +88 -0
  117. data/lib/aws/core/inflection.rb +56 -0
  118. data/lib/aws/core/json_client.rb +47 -0
  119. data/lib/aws/core/json_parser.rb +76 -0
  120. data/lib/aws/core/json_request_builder.rb +35 -0
  121. data/lib/aws/core/json_response_parser.rb +79 -0
  122. data/lib/aws/core/lazy_error_classes.rb +90 -0
  123. data/lib/aws/core/log_formatter.rb +462 -0
  124. data/lib/aws/core/managed_file.rb +32 -0
  125. data/lib/aws/core/meta_utils.rb +45 -0
  126. data/lib/aws/core/model.rb +57 -0
  127. data/lib/aws/core/naming.rb +30 -0
  128. data/lib/aws/core/option_grammar.rb +735 -0
  129. data/lib/aws/core/options/json_serializer.rb +82 -0
  130. data/lib/aws/core/options/validator.rb +155 -0
  131. data/lib/aws/core/options/xml_serializer.rb +118 -0
  132. data/lib/aws/core/page_result.rb +75 -0
  133. data/lib/aws/core/policy.rb +916 -0
  134. data/lib/aws/core/query_client.rb +41 -0
  135. data/lib/aws/core/query_error_parser.rb +24 -0
  136. data/lib/aws/core/query_request_builder.rb +47 -0
  137. data/lib/aws/core/query_response_parser.rb +35 -0
  138. data/lib/aws/core/resource.rb +413 -0
  139. data/lib/aws/core/resource_cache.rb +40 -0
  140. data/lib/aws/core/response.rb +208 -0
  141. data/lib/aws/core/response_cache.rb +50 -0
  142. data/lib/aws/core/rest_error_parser.rb +24 -0
  143. data/lib/aws/core/rest_json_client.rb +40 -0
  144. data/lib/aws/core/rest_request_builder.rb +146 -0
  145. data/lib/aws/core/rest_response_parser.rb +66 -0
  146. data/lib/aws/core/rest_xml_client.rb +47 -0
  147. data/lib/aws/core/service_interface.rb +61 -0
  148. data/lib/aws/core/signature/version_2.rb +56 -0
  149. data/lib/aws/core/signature/version_3.rb +77 -0
  150. data/lib/aws/core/signature/version_3_https.rb +54 -0
  151. data/lib/aws/core/signature/version_4.rb +135 -0
  152. data/lib/aws/core/signer.rb +46 -0
  153. data/lib/aws/core/uri_escape.rb +44 -0
  154. data/lib/aws/core/xml/frame.rb +244 -0
  155. data/lib/aws/core/xml/frame_stack.rb +85 -0
  156. data/lib/aws/core/xml/grammar.rb +307 -0
  157. data/lib/aws/core/xml/parser.rb +70 -0
  158. data/lib/aws/core/xml/root_frame.rb +65 -0
  159. data/lib/aws/core/xml/sax_handlers/libxml.rb +47 -0
  160. data/lib/aws/core/xml/sax_handlers/nokogiri.rb +55 -0
  161. data/lib/aws/core/xml/sax_handlers/ox.rb +41 -0
  162. data/lib/aws/core/xml/sax_handlers/rexml.rb +43 -0
  163. data/lib/aws/core/xml/stub.rb +123 -0
  164. data/lib/aws/data_pipeline.rb +73 -0
  165. data/lib/aws/data_pipeline/client.rb +339 -0
  166. data/lib/aws/data_pipeline/config.rb +18 -0
  167. data/lib/aws/data_pipeline/errors.rb +20 -0
  168. data/lib/aws/data_pipeline/request.rb +26 -0
  169. data/lib/aws/dynamo_db.rb +206 -0
  170. data/lib/aws/dynamo_db/attribute_collection.rb +461 -0
  171. data/lib/aws/dynamo_db/batch_get.rb +213 -0
  172. data/lib/aws/dynamo_db/batch_write.rb +252 -0
  173. data/lib/aws/dynamo_db/binary.rb +35 -0
  174. data/lib/aws/dynamo_db/client.rb +904 -0
  175. data/lib/aws/dynamo_db/config.rb +24 -0
  176. data/lib/aws/dynamo_db/errors.rb +20 -0
  177. data/lib/aws/dynamo_db/expectations.rb +40 -0
  178. data/lib/aws/dynamo_db/item.rb +133 -0
  179. data/lib/aws/dynamo_db/item_collection.rb +852 -0
  180. data/lib/aws/dynamo_db/item_data.rb +31 -0
  181. data/lib/aws/dynamo_db/keys.rb +41 -0
  182. data/lib/aws/dynamo_db/primary_key_element.rb +48 -0
  183. data/lib/aws/dynamo_db/request.rb +26 -0
  184. data/lib/aws/dynamo_db/resource.rb +33 -0
  185. data/lib/aws/dynamo_db/table.rb +491 -0
  186. data/lib/aws/dynamo_db/table_collection.rb +165 -0
  187. data/lib/aws/dynamo_db/types.rb +111 -0
  188. data/lib/aws/ec2.rb +440 -0
  189. data/lib/aws/ec2/attachment.rb +140 -0
  190. data/lib/aws/ec2/attachment_collection.rb +54 -0
  191. data/lib/aws/ec2/availability_zone.rb +86 -0
  192. data/lib/aws/ec2/availability_zone_collection.rb +43 -0
  193. data/lib/aws/ec2/block_device_mappings.rb +53 -0
  194. data/lib/aws/ec2/client.rb +3621 -0
  195. data/lib/aws/ec2/collection.rb +36 -0
  196. data/lib/aws/ec2/config.rb +18 -0
  197. data/lib/aws/ec2/config_transform.rb +63 -0
  198. data/lib/aws/ec2/customer_gateway.rb +90 -0
  199. data/lib/aws/ec2/customer_gateway_collection.rb +73 -0
  200. data/lib/aws/ec2/dhcp_options.rb +106 -0
  201. data/lib/aws/ec2/dhcp_options_collection.rb +87 -0
  202. data/lib/aws/ec2/elastic_ip.rb +208 -0
  203. data/lib/aws/ec2/elastic_ip_collection.rb +97 -0
  204. data/lib/aws/ec2/errors.rb +32 -0
  205. data/lib/aws/ec2/export_task.rb +120 -0
  206. data/lib/aws/ec2/export_task_collection.rb +67 -0
  207. data/lib/aws/ec2/filtered_collection.rb +89 -0
  208. data/lib/aws/ec2/has_permissions.rb +44 -0
  209. data/lib/aws/ec2/image.rb +264 -0
  210. data/lib/aws/ec2/image_collection.rb +228 -0
  211. data/lib/aws/ec2/instance.rb +796 -0
  212. data/lib/aws/ec2/instance_collection.rb +372 -0
  213. data/lib/aws/ec2/internet_gateway.rb +122 -0
  214. data/lib/aws/ec2/internet_gateway/attachment.rb +78 -0
  215. data/lib/aws/ec2/internet_gateway_collection.rb +54 -0
  216. data/lib/aws/ec2/key_pair.rb +82 -0
  217. data/lib/aws/ec2/key_pair_collection.rb +99 -0
  218. data/lib/aws/ec2/network_acl.rb +256 -0
  219. data/lib/aws/ec2/network_acl/association.rb +56 -0
  220. data/lib/aws/ec2/network_acl/entry.rb +147 -0
  221. data/lib/aws/ec2/network_acl_collection.rb +64 -0
  222. data/lib/aws/ec2/network_interface.rb +228 -0
  223. data/lib/aws/ec2/network_interface/attachment.rb +100 -0
  224. data/lib/aws/ec2/network_interface_collection.rb +103 -0
  225. data/lib/aws/ec2/permission_collection.rb +174 -0
  226. data/lib/aws/ec2/region.rb +106 -0
  227. data/lib/aws/ec2/region_collection.rb +51 -0
  228. data/lib/aws/ec2/request.rb +21 -0
  229. data/lib/aws/ec2/reserved_instances.rb +56 -0
  230. data/lib/aws/ec2/reserved_instances_collection.rb +40 -0
  231. data/lib/aws/ec2/reserved_instances_offering.rb +60 -0
  232. data/lib/aws/ec2/reserved_instances_offering_collection.rb +39 -0
  233. data/lib/aws/ec2/resource.rb +161 -0
  234. data/lib/aws/ec2/resource_tag_collection.rb +211 -0
  235. data/lib/aws/ec2/route_table.rb +205 -0
  236. data/lib/aws/ec2/route_table/association.rb +119 -0
  237. data/lib/aws/ec2/route_table/route.rb +119 -0
  238. data/lib/aws/ec2/route_table_collection.rb +72 -0
  239. data/lib/aws/ec2/security_group.rb +484 -0
  240. data/lib/aws/ec2/security_group/ip_permission.rb +135 -0
  241. data/lib/aws/ec2/security_group/ip_permission_collection.rb +82 -0
  242. data/lib/aws/ec2/security_group_collection.rb +135 -0
  243. data/lib/aws/ec2/snapshot.rb +143 -0
  244. data/lib/aws/ec2/snapshot_collection.rb +132 -0
  245. data/lib/aws/ec2/subnet.rb +161 -0
  246. data/lib/aws/ec2/subnet_collection.rb +115 -0
  247. data/lib/aws/ec2/tag.rb +81 -0
  248. data/lib/aws/ec2/tag_collection.rb +107 -0
  249. data/lib/aws/ec2/tagged_collection.rb +53 -0
  250. data/lib/aws/ec2/tagged_item.rb +85 -0
  251. data/lib/aws/ec2/volume.rb +174 -0
  252. data/lib/aws/ec2/volume_collection.rb +101 -0
  253. data/lib/aws/ec2/vpc.rb +166 -0
  254. data/lib/aws/ec2/vpc_collection.rb +70 -0
  255. data/lib/aws/ec2/vpn_connection.rb +99 -0
  256. data/lib/aws/ec2/vpn_connection/telemetry.rb +49 -0
  257. data/lib/aws/ec2/vpn_connection_collection.rb +96 -0
  258. data/lib/aws/ec2/vpn_gateway.rb +123 -0
  259. data/lib/aws/ec2/vpn_gateway/attachment.rb +45 -0
  260. data/lib/aws/ec2/vpn_gateway_collection.rb +77 -0
  261. data/lib/aws/elastic_beanstalk.rb +50 -0
  262. data/lib/aws/elastic_beanstalk/client.rb +867 -0
  263. data/lib/aws/elastic_beanstalk/config.rb +18 -0
  264. data/lib/aws/elastic_beanstalk/errors.rb +22 -0
  265. data/lib/aws/elastic_beanstalk/request.rb +29 -0
  266. data/lib/aws/elastic_transcoder.rb +30 -0
  267. data/lib/aws/elastic_transcoder/client.rb +672 -0
  268. data/lib/aws/elastic_transcoder/config.rb +18 -0
  269. data/lib/aws/elastic_transcoder/errors.rb +23 -0
  270. data/lib/aws/elastic_transcoder/request.rb +30 -0
  271. data/lib/aws/elasticache.rb +50 -0
  272. data/lib/aws/elasticache/client.rb +920 -0
  273. data/lib/aws/elasticache/config.rb +18 -0
  274. data/lib/aws/elasticache/errors.rb +22 -0
  275. data/lib/aws/elasticache/request.rb +23 -0
  276. data/lib/aws/elb.rb +67 -0
  277. data/lib/aws/elb/availability_zone_collection.rb +138 -0
  278. data/lib/aws/elb/backend_server_policy_collection.rb +139 -0
  279. data/lib/aws/elb/client.rb +500 -0
  280. data/lib/aws/elb/config.rb +18 -0
  281. data/lib/aws/elb/errors.rb +26 -0
  282. data/lib/aws/elb/instance_collection.rb +173 -0
  283. data/lib/aws/elb/listener.rb +190 -0
  284. data/lib/aws/elb/listener_collection.rb +113 -0
  285. data/lib/aws/elb/listener_opts.rb +45 -0
  286. data/lib/aws/elb/load_balancer.rb +281 -0
  287. data/lib/aws/elb/load_balancer_collection.rb +134 -0
  288. data/lib/aws/elb/load_balancer_policy.rb +93 -0
  289. data/lib/aws/elb/load_balancer_policy_collection.rb +208 -0
  290. data/lib/aws/elb/request.rb +29 -0
  291. data/lib/aws/emr.rb +86 -0
  292. data/lib/aws/emr/client.rb +330 -0
  293. data/lib/aws/emr/config.rb +18 -0
  294. data/lib/aws/emr/errors.rb +22 -0
  295. data/lib/aws/emr/instance_group.rb +138 -0
  296. data/lib/aws/emr/instance_group_collection.rb +82 -0
  297. data/lib/aws/emr/job_flow.rb +306 -0
  298. data/lib/aws/emr/job_flow_collection.rb +185 -0
  299. data/lib/aws/emr/request.rb +23 -0
  300. data/lib/aws/errors.rb +162 -0
  301. data/lib/aws/glacier.rb +80 -0
  302. data/lib/aws/glacier/archive.rb +56 -0
  303. data/lib/aws/glacier/archive_collection.rb +146 -0
  304. data/lib/aws/glacier/client.rb +286 -0
  305. data/lib/aws/glacier/config.rb +19 -0
  306. data/lib/aws/glacier/errors.rb +22 -0
  307. data/lib/aws/glacier/request.rb +34 -0
  308. data/lib/aws/glacier/resource.rb +30 -0
  309. data/lib/aws/glacier/vault.rb +145 -0
  310. data/lib/aws/glacier/vault_collection.rb +75 -0
  311. data/lib/aws/glacier/vault_notification_configuration.rb +29 -0
  312. data/lib/aws/iam.rb +420 -0
  313. data/lib/aws/iam/access_key.rb +180 -0
  314. data/lib/aws/iam/access_key_collection.rb +128 -0
  315. data/lib/aws/iam/account_alias_collection.rb +79 -0
  316. data/lib/aws/iam/client.rb +1092 -0
  317. data/lib/aws/iam/collection.rb +83 -0
  318. data/lib/aws/iam/config.rb +18 -0
  319. data/lib/aws/iam/errors.rb +22 -0
  320. data/lib/aws/iam/group.rb +111 -0
  321. data/lib/aws/iam/group_collection.rb +132 -0
  322. data/lib/aws/iam/group_policy_collection.rb +47 -0
  323. data/lib/aws/iam/group_user_collection.rb +84 -0
  324. data/lib/aws/iam/login_profile.rb +99 -0
  325. data/lib/aws/iam/mfa_device.rb +52 -0
  326. data/lib/aws/iam/mfa_device_collection.rb +127 -0
  327. data/lib/aws/iam/policy.rb +46 -0
  328. data/lib/aws/iam/policy_collection.rb +188 -0
  329. data/lib/aws/iam/request.rb +29 -0
  330. data/lib/aws/iam/resource.rb +62 -0
  331. data/lib/aws/iam/server_certificate.rb +141 -0
  332. data/lib/aws/iam/server_certificate_collection.rb +138 -0
  333. data/lib/aws/iam/signing_certificate.rb +169 -0
  334. data/lib/aws/iam/signing_certificate_collection.rb +131 -0
  335. data/lib/aws/iam/user.rb +205 -0
  336. data/lib/aws/iam/user_collection.rb +133 -0
  337. data/lib/aws/iam/user_group_collection.rb +98 -0
  338. data/lib/aws/iam/user_policy.rb +90 -0
  339. data/lib/aws/iam/user_policy_collection.rb +45 -0
  340. data/lib/aws/iam/virtual_mfa_device.rb +139 -0
  341. data/lib/aws/iam/virtual_mfa_device_collection.rb +73 -0
  342. data/lib/aws/import_export.rb +73 -0
  343. data/lib/aws/import_export/client.rb +109 -0
  344. data/lib/aws/import_export/config.rb +19 -0
  345. data/lib/aws/import_export/errors.rb +22 -0
  346. data/lib/aws/import_export/request.rb +23 -0
  347. data/lib/aws/ops_works.rb +30 -0
  348. data/lib/aws/ops_works/client.rb +713 -0
  349. data/lib/aws/ops_works/config.rb +18 -0
  350. data/lib/aws/ops_works/errors.rb +20 -0
  351. data/lib/aws/ops_works/request.rb +27 -0
  352. data/lib/aws/rails.rb +195 -0
  353. data/lib/aws/rds.rb +71 -0
  354. data/lib/aws/rds/client.rb +2228 -0
  355. data/lib/aws/rds/config.rb +18 -0
  356. data/lib/aws/rds/db_instance.rb +205 -0
  357. data/lib/aws/rds/db_instance_collection.rb +75 -0
  358. data/lib/aws/rds/db_snapshot.rb +163 -0
  359. data/lib/aws/rds/db_snapshot_collection.rb +89 -0
  360. data/lib/aws/rds/errors.rb +22 -0
  361. data/lib/aws/rds/request.rb +23 -0
  362. data/lib/aws/record.rb +116 -0
  363. data/lib/aws/record/abstract_base.rb +701 -0
  364. data/lib/aws/record/attributes.rb +384 -0
  365. data/lib/aws/record/conversion.rb +38 -0
  366. data/lib/aws/record/dirty_tracking.rb +285 -0
  367. data/lib/aws/record/errors.rb +143 -0
  368. data/lib/aws/record/exceptions.rb +48 -0
  369. data/lib/aws/record/hash_model.rb +161 -0
  370. data/lib/aws/record/hash_model/attributes.rb +197 -0
  371. data/lib/aws/record/hash_model/finder_methods.rb +172 -0
  372. data/lib/aws/record/hash_model/scope.rb +108 -0
  373. data/lib/aws/record/model.rb +427 -0
  374. data/lib/aws/record/model/attributes.rb +379 -0
  375. data/lib/aws/record/model/finder_methods.rb +232 -0
  376. data/lib/aws/record/model/scope.rb +213 -0
  377. data/lib/aws/record/naming.rb +31 -0
  378. data/lib/aws/record/scope.rb +199 -0
  379. data/lib/aws/record/validations.rb +712 -0
  380. data/lib/aws/record/validator.rb +246 -0
  381. data/lib/aws/record/validators/acceptance.rb +51 -0
  382. data/lib/aws/record/validators/block.rb +38 -0
  383. data/lib/aws/record/validators/confirmation.rb +43 -0
  384. data/lib/aws/record/validators/count.rb +108 -0
  385. data/lib/aws/record/validators/exclusion.rb +43 -0
  386. data/lib/aws/record/validators/format.rb +57 -0
  387. data/lib/aws/record/validators/inclusion.rb +56 -0
  388. data/lib/aws/record/validators/length.rb +107 -0
  389. data/lib/aws/record/validators/method.rb +33 -0
  390. data/lib/aws/record/validators/numericality.rb +138 -0
  391. data/lib/aws/record/validators/presence.rb +45 -0
  392. data/lib/aws/redshift.rb +52 -0
  393. data/lib/aws/redshift/client.rb +1291 -0
  394. data/lib/aws/redshift/config.rb +18 -0
  395. data/lib/aws/redshift/errors.rb +22 -0
  396. data/lib/aws/redshift/request.rb +29 -0
  397. data/lib/aws/route_53.rb +87 -0
  398. data/lib/aws/route_53/change_batch.rb +159 -0
  399. data/lib/aws/route_53/change_info.rb +72 -0
  400. data/lib/aws/route_53/client.rb +387 -0
  401. data/lib/aws/route_53/config.rb +18 -0
  402. data/lib/aws/route_53/errors.rb +22 -0
  403. data/lib/aws/route_53/hosted_zone.rb +111 -0
  404. data/lib/aws/route_53/hosted_zone_collection.rb +100 -0
  405. data/lib/aws/route_53/request.rb +23 -0
  406. data/lib/aws/route_53/resource_record_set.rb +237 -0
  407. data/lib/aws/route_53/resource_record_set_collection.rb +110 -0
  408. data/lib/aws/s3.rb +155 -0
  409. data/lib/aws/s3/access_control_list.rb +257 -0
  410. data/lib/aws/s3/acl_object.rb +264 -0
  411. data/lib/aws/s3/acl_options.rb +204 -0
  412. data/lib/aws/s3/bucket.rb +742 -0
  413. data/lib/aws/s3/bucket_collection.rb +160 -0
  414. data/lib/aws/s3/bucket_lifecycle_configuration.rb +458 -0
  415. data/lib/aws/s3/bucket_tag_collection.rb +109 -0
  416. data/lib/aws/s3/bucket_version_collection.rb +77 -0
  417. data/lib/aws/s3/cipher_io.rb +119 -0
  418. data/lib/aws/s3/client.rb +1700 -0
  419. data/lib/aws/s3/client/xml.rb +231 -0
  420. data/lib/aws/s3/config.rb +36 -0
  421. data/lib/aws/s3/cors_rule.rb +106 -0
  422. data/lib/aws/s3/cors_rule_collection.rb +192 -0
  423. data/lib/aws/s3/data_options.rb +185 -0
  424. data/lib/aws/s3/encryption_utils.rb +139 -0
  425. data/lib/aws/s3/errors.rb +94 -0
  426. data/lib/aws/s3/multipart_upload.rb +320 -0
  427. data/lib/aws/s3/multipart_upload_collection.rb +68 -0
  428. data/lib/aws/s3/object_collection.rb +355 -0
  429. data/lib/aws/s3/object_metadata.rb +96 -0
  430. data/lib/aws/s3/object_upload_collection.rb +77 -0
  431. data/lib/aws/s3/object_version.rb +148 -0
  432. data/lib/aws/s3/object_version_collection.rb +89 -0
  433. data/lib/aws/s3/paginated_collection.rb +75 -0
  434. data/lib/aws/s3/policy.rb +74 -0
  435. data/lib/aws/s3/prefix_and_delimiter_collection.rb +47 -0
  436. data/lib/aws/s3/prefixed_collection.rb +81 -0
  437. data/lib/aws/s3/presigned_post.rb +555 -0
  438. data/lib/aws/s3/request.rb +201 -0
  439. data/lib/aws/s3/s3_object.rb +1690 -0
  440. data/lib/aws/s3/tree.rb +118 -0
  441. data/lib/aws/s3/tree/branch_node.rb +68 -0
  442. data/lib/aws/s3/tree/child_collection.rb +104 -0
  443. data/lib/aws/s3/tree/leaf_node.rb +94 -0
  444. data/lib/aws/s3/tree/node.rb +22 -0
  445. data/lib/aws/s3/tree/parent.rb +87 -0
  446. data/lib/aws/s3/uploaded_part.rb +80 -0
  447. data/lib/aws/s3/uploaded_part_collection.rb +84 -0
  448. data/lib/aws/s3/website_configuration.rb +102 -0
  449. data/lib/aws/simple_db.rb +219 -0
  450. data/lib/aws/simple_db/attribute.rb +154 -0
  451. data/lib/aws/simple_db/attribute_collection.rb +231 -0
  452. data/lib/aws/simple_db/client.rb +287 -0
  453. data/lib/aws/simple_db/config.rb +20 -0
  454. data/lib/aws/simple_db/consistent_read_option.rb +42 -0
  455. data/lib/aws/simple_db/delete_attributes.rb +62 -0
  456. data/lib/aws/simple_db/domain.rb +121 -0
  457. data/lib/aws/simple_db/domain_collection.rb +86 -0
  458. data/lib/aws/simple_db/domain_metadata.rb +110 -0
  459. data/lib/aws/simple_db/errors.rb +55 -0
  460. data/lib/aws/simple_db/expect_condition_option.rb +45 -0
  461. data/lib/aws/simple_db/item.rb +93 -0
  462. data/lib/aws/simple_db/item_collection.rb +649 -0
  463. data/lib/aws/simple_db/item_data.rb +73 -0
  464. data/lib/aws/simple_db/put_attributes.rb +60 -0
  465. data/lib/aws/simple_db/request.rb +23 -0
  466. data/lib/aws/simple_email_service.rb +428 -0
  467. data/lib/aws/simple_email_service/client.rb +276 -0
  468. data/lib/aws/simple_email_service/config.rb +19 -0
  469. data/lib/aws/simple_email_service/email_address_collection.rb +69 -0
  470. data/lib/aws/simple_email_service/errors.rb +22 -0
  471. data/lib/aws/simple_email_service/identity.rb +209 -0
  472. data/lib/aws/simple_email_service/identity_collection.rb +81 -0
  473. data/lib/aws/simple_email_service/quotas.rb +64 -0
  474. data/lib/aws/simple_email_service/request.rb +27 -0
  475. data/lib/aws/simple_workflow.rb +228 -0
  476. data/lib/aws/simple_workflow/activity_task.rb +173 -0
  477. data/lib/aws/simple_workflow/activity_task_collection.rb +123 -0
  478. data/lib/aws/simple_workflow/activity_type.rb +131 -0
  479. data/lib/aws/simple_workflow/activity_type_collection.rb +93 -0
  480. data/lib/aws/simple_workflow/client.rb +1204 -0
  481. data/lib/aws/simple_workflow/config.rb +18 -0
  482. data/lib/aws/simple_workflow/count.rb +49 -0
  483. data/lib/aws/simple_workflow/decision_task.rb +603 -0
  484. data/lib/aws/simple_workflow/decision_task_collection.rb +225 -0
  485. data/lib/aws/simple_workflow/domain.rb +122 -0
  486. data/lib/aws/simple_workflow/domain_collection.rb +169 -0
  487. data/lib/aws/simple_workflow/errors.rb +20 -0
  488. data/lib/aws/simple_workflow/history_event.rb +276 -0
  489. data/lib/aws/simple_workflow/history_event_collection.rb +76 -0
  490. data/lib/aws/simple_workflow/option_formatters.rb +82 -0
  491. data/lib/aws/simple_workflow/request.rb +33 -0
  492. data/lib/aws/simple_workflow/resource.rb +94 -0
  493. data/lib/aws/simple_workflow/type.rb +89 -0
  494. data/lib/aws/simple_workflow/type_collection.rb +140 -0
  495. data/lib/aws/simple_workflow/workflow_execution.rb +386 -0
  496. data/lib/aws/simple_workflow/workflow_execution_collection.rb +617 -0
  497. data/lib/aws/simple_workflow/workflow_type.rb +177 -0
  498. data/lib/aws/simple_workflow/workflow_type_collection.rb +91 -0
  499. data/lib/aws/sns.rb +76 -0
  500. data/lib/aws/sns/client.rb +266 -0
  501. data/lib/aws/sns/config.rb +18 -0
  502. data/lib/aws/sns/errors.rb +22 -0
  503. data/lib/aws/sns/has_delivery_policy.rb +68 -0
  504. data/lib/aws/sns/policy.rb +47 -0
  505. data/lib/aws/sns/request.rb +23 -0
  506. data/lib/aws/sns/subscription.rb +144 -0
  507. data/lib/aws/sns/subscription_collection.rb +78 -0
  508. data/lib/aws/sns/topic.rb +403 -0
  509. data/lib/aws/sns/topic_collection.rb +62 -0
  510. data/lib/aws/sns/topic_subscription_collection.rb +54 -0
  511. data/lib/aws/sqs.rb +81 -0
  512. data/lib/aws/sqs/client.rb +258 -0
  513. data/lib/aws/sqs/config.rb +18 -0
  514. data/lib/aws/sqs/errors.rb +101 -0
  515. data/lib/aws/sqs/policy.rb +48 -0
  516. data/lib/aws/sqs/queue.rb +764 -0
  517. data/lib/aws/sqs/queue_collection.rb +174 -0
  518. data/lib/aws/sqs/received_message.rb +181 -0
  519. data/lib/aws/sqs/received_sns_message.rb +116 -0
  520. data/lib/aws/sqs/request.rb +67 -0
  521. data/lib/aws/storage_gateway.rb +73 -0
  522. data/lib/aws/storage_gateway/client.rb +472 -0
  523. data/lib/aws/storage_gateway/config.rb +18 -0
  524. data/lib/aws/storage_gateway/errors.rb +22 -0
  525. data/lib/aws/storage_gateway/request.rb +28 -0
  526. data/lib/aws/sts.rb +163 -0
  527. data/lib/aws/sts/client.rb +157 -0
  528. data/lib/aws/sts/config.rb +18 -0
  529. data/lib/aws/sts/errors.rb +22 -0
  530. data/lib/aws/sts/federated_session.rb +56 -0
  531. data/lib/aws/sts/policy.rb +30 -0
  532. data/lib/aws/sts/request.rb +29 -0
  533. data/lib/aws/sts/session.rb +48 -0
  534. data/lib/aws/version.rb +18 -0
  535. data/lib/net/http/connection_pool.rb +226 -0
  536. data/lib/net/http/connection_pool/connection.rb +189 -0
  537. data/lib/net/http/connection_pool/session.rb +126 -0
  538. data/rails/init.rb +15 -0
  539. metadata +632 -0
@@ -0,0 +1,2377 @@
1
+ # Copyright 2011-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License"). You
4
+ # may not use this file except in compliance with the License. A copy of
5
+ # the License is located at
6
+ #
7
+ # http://aws.amazon.com/apache2.0/
8
+ #
9
+ # or in the "license" file accompanying this file. This file is
10
+ # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
11
+ # ANY KIND, either express or implied. See the License for the specific
12
+ # language governing permissions and limitations under the License.
13
+
14
+ ---
15
+ :api_version: '2013-02-12'
16
+ :operations:
17
+ - :name: AddSourceIdentifierToSubscription
18
+ :method: :add_source_identifier_to_subscription
19
+ :inputs:
20
+ SubscriptionName:
21
+ - :string
22
+ - :required
23
+ SourceIdentifier:
24
+ - :string
25
+ - :required
26
+ :outputs:
27
+ :children:
28
+ AddSourceIdentifierToSubscriptionResult:
29
+ :ignore: true
30
+ :children:
31
+ EventSubscription:
32
+ :children:
33
+ SourceIdsList:
34
+ :ignore: true
35
+ :children:
36
+ SourceId:
37
+ :rename: :source_ids_list
38
+ :list: true
39
+ EventCategoriesList:
40
+ :ignore: true
41
+ :children:
42
+ EventCategory:
43
+ :rename: :event_categories_list
44
+ :list: true
45
+ Enabled:
46
+ :type: :boolean
47
+ :ignore: true
48
+ - :name: AddTagsToResource
49
+ :method: :add_tags_to_resource
50
+ :inputs:
51
+ ResourceName:
52
+ - :string
53
+ - :required
54
+ Tags:
55
+ - :membered_list:
56
+ - :structure:
57
+ Key:
58
+ - :string
59
+ Value:
60
+ - :string
61
+ - :required
62
+ :outputs:
63
+ :children:
64
+ AddTagsToResourceResult:
65
+ :ignore: true
66
+ - :name: AuthorizeDBSecurityGroupIngress
67
+ :method: :authorize_db_security_group_ingress
68
+ :inputs:
69
+ DBSecurityGroupName:
70
+ - :string
71
+ - :required
72
+ CIDRIP:
73
+ - :string
74
+ EC2SecurityGroupName:
75
+ - :string
76
+ EC2SecurityGroupId:
77
+ - :string
78
+ EC2SecurityGroupOwnerId:
79
+ - :string
80
+ :outputs:
81
+ :children:
82
+ AuthorizeDBSecurityGroupIngressResult:
83
+ :ignore: true
84
+ :children:
85
+ DBSecurityGroup:
86
+ :children:
87
+ EC2SecurityGroups:
88
+ :ignore: true
89
+ :children:
90
+ EC2SecurityGroup:
91
+ :rename: :ec2_security_groups
92
+ :list: true
93
+ IPRanges:
94
+ :ignore: true
95
+ :children:
96
+ IPRange:
97
+ :rename: :ip_ranges
98
+ :list: true
99
+ :ignore: true
100
+ - :name: CopyDBSnapshot
101
+ :method: :copy_db_snapshot
102
+ :inputs:
103
+ SourceDBSnapshotIdentifier:
104
+ - :string
105
+ - :required
106
+ TargetDBSnapshotIdentifier:
107
+ - :string
108
+ - :required
109
+ :outputs:
110
+ :children:
111
+ CopyDBSnapshotResult:
112
+ :ignore: true
113
+ :children:
114
+ DBSnapshot:
115
+ :children:
116
+ SnapshotCreateTime:
117
+ :type: :time
118
+ AllocatedStorage:
119
+ :type: :integer
120
+ Port:
121
+ :type: :integer
122
+ InstanceCreateTime:
123
+ :type: :time
124
+ Iops:
125
+ :type: :integer
126
+ :ignore: true
127
+ - :name: CreateDBInstance
128
+ :method: :create_db_instance
129
+ :inputs:
130
+ DBName:
131
+ - :string
132
+ DBInstanceIdentifier:
133
+ - :string
134
+ - :required
135
+ AllocatedStorage:
136
+ - :integer
137
+ - :required
138
+ DBInstanceClass:
139
+ - :string
140
+ - :required
141
+ Engine:
142
+ - :string
143
+ - :required
144
+ MasterUsername:
145
+ - :string
146
+ - :required
147
+ MasterUserPassword:
148
+ - :string
149
+ - :required
150
+ DBSecurityGroups:
151
+ - :membered_list:
152
+ - :string
153
+ VpcSecurityGroupIds:
154
+ - :membered_list:
155
+ - :string
156
+ AvailabilityZone:
157
+ - :string
158
+ DBSubnetGroupName:
159
+ - :string
160
+ PreferredMaintenanceWindow:
161
+ - :string
162
+ DBParameterGroupName:
163
+ - :string
164
+ BackupRetentionPeriod:
165
+ - :integer
166
+ PreferredBackupWindow:
167
+ - :string
168
+ Port:
169
+ - :integer
170
+ MultiAZ:
171
+ - :boolean
172
+ EngineVersion:
173
+ - :string
174
+ AutoMinorVersionUpgrade:
175
+ - :boolean
176
+ LicenseModel:
177
+ - :string
178
+ Iops:
179
+ - :integer
180
+ OptionGroupName:
181
+ - :string
182
+ CharacterSetName:
183
+ - :string
184
+ PubliclyAccessible:
185
+ - :boolean
186
+ :outputs:
187
+ :children:
188
+ CreateDBInstanceResult:
189
+ :ignore: true
190
+ :children:
191
+ DBInstance:
192
+ :children:
193
+ Endpoint:
194
+ :children:
195
+ Port:
196
+ :type: :integer
197
+ AllocatedStorage:
198
+ :type: :integer
199
+ InstanceCreateTime:
200
+ :type: :time
201
+ BackupRetentionPeriod:
202
+ :type: :integer
203
+ DBSecurityGroups:
204
+ :ignore: true
205
+ :children:
206
+ DBSecurityGroup:
207
+ :rename: :db_security_groups
208
+ :list: true
209
+ VpcSecurityGroups:
210
+ :ignore: true
211
+ :children:
212
+ VpcSecurityGroupMembership:
213
+ :rename: :vpc_security_groups
214
+ :list: true
215
+ DBParameterGroups:
216
+ :ignore: true
217
+ :children:
218
+ DBParameterGroup:
219
+ :rename: :db_parameter_groups
220
+ :list: true
221
+ DBSubnetGroup:
222
+ :children:
223
+ Subnets:
224
+ :ignore: true
225
+ :children:
226
+ Subnet:
227
+ :rename: :subnets
228
+ :list: true
229
+ :children:
230
+ SubnetAvailabilityZone:
231
+ :children:
232
+ ProvisionedIopsCapable:
233
+ :type: :boolean
234
+ PendingModifiedValues:
235
+ :children:
236
+ AllocatedStorage:
237
+ :type: :integer
238
+ Port:
239
+ :type: :integer
240
+ BackupRetentionPeriod:
241
+ :type: :integer
242
+ MultiAZ:
243
+ :type: :boolean
244
+ Iops:
245
+ :type: :integer
246
+ LatestRestorableTime:
247
+ :type: :time
248
+ MultiAZ:
249
+ :type: :boolean
250
+ AutoMinorVersionUpgrade:
251
+ :type: :boolean
252
+ ReadReplicaDBInstanceIdentifiers:
253
+ :ignore: true
254
+ :children:
255
+ ReadReplicaDBInstanceIdentifier:
256
+ :rename: :read_replica_db_instance_identifiers
257
+ :list: true
258
+ Iops:
259
+ :type: :integer
260
+ OptionGroupMemberships:
261
+ :ignore: true
262
+ :children:
263
+ OptionGroupMembership:
264
+ :rename: :option_group_memberships
265
+ :list: true
266
+ PubliclyAccessible:
267
+ :type: :boolean
268
+ :ignore: true
269
+ - :name: CreateDBInstanceReadReplica
270
+ :method: :create_db_instance_read_replica
271
+ :inputs:
272
+ DBInstanceIdentifier:
273
+ - :string
274
+ - :required
275
+ SourceDBInstanceIdentifier:
276
+ - :string
277
+ - :required
278
+ DBInstanceClass:
279
+ - :string
280
+ AvailabilityZone:
281
+ - :string
282
+ Port:
283
+ - :integer
284
+ AutoMinorVersionUpgrade:
285
+ - :boolean
286
+ Iops:
287
+ - :integer
288
+ OptionGroupName:
289
+ - :string
290
+ PubliclyAccessible:
291
+ - :boolean
292
+ :outputs:
293
+ :children:
294
+ CreateDBInstanceReadReplicaResult:
295
+ :ignore: true
296
+ :children:
297
+ DBInstance:
298
+ :children:
299
+ Endpoint:
300
+ :children:
301
+ Port:
302
+ :type: :integer
303
+ AllocatedStorage:
304
+ :type: :integer
305
+ InstanceCreateTime:
306
+ :type: :time
307
+ BackupRetentionPeriod:
308
+ :type: :integer
309
+ DBSecurityGroups:
310
+ :ignore: true
311
+ :children:
312
+ DBSecurityGroup:
313
+ :rename: :db_security_groups
314
+ :list: true
315
+ VpcSecurityGroups:
316
+ :ignore: true
317
+ :children:
318
+ VpcSecurityGroupMembership:
319
+ :rename: :vpc_security_groups
320
+ :list: true
321
+ DBParameterGroups:
322
+ :ignore: true
323
+ :children:
324
+ DBParameterGroup:
325
+ :rename: :db_parameter_groups
326
+ :list: true
327
+ DBSubnetGroup:
328
+ :children:
329
+ Subnets:
330
+ :ignore: true
331
+ :children:
332
+ Subnet:
333
+ :rename: :subnets
334
+ :list: true
335
+ :children:
336
+ SubnetAvailabilityZone:
337
+ :children:
338
+ ProvisionedIopsCapable:
339
+ :type: :boolean
340
+ PendingModifiedValues:
341
+ :children:
342
+ AllocatedStorage:
343
+ :type: :integer
344
+ Port:
345
+ :type: :integer
346
+ BackupRetentionPeriod:
347
+ :type: :integer
348
+ MultiAZ:
349
+ :type: :boolean
350
+ Iops:
351
+ :type: :integer
352
+ LatestRestorableTime:
353
+ :type: :time
354
+ MultiAZ:
355
+ :type: :boolean
356
+ AutoMinorVersionUpgrade:
357
+ :type: :boolean
358
+ ReadReplicaDBInstanceIdentifiers:
359
+ :ignore: true
360
+ :children:
361
+ ReadReplicaDBInstanceIdentifier:
362
+ :rename: :read_replica_db_instance_identifiers
363
+ :list: true
364
+ Iops:
365
+ :type: :integer
366
+ OptionGroupMemberships:
367
+ :ignore: true
368
+ :children:
369
+ OptionGroupMembership:
370
+ :rename: :option_group_memberships
371
+ :list: true
372
+ PubliclyAccessible:
373
+ :type: :boolean
374
+ :ignore: true
375
+ - :name: CreateDBParameterGroup
376
+ :method: :create_db_parameter_group
377
+ :inputs:
378
+ DBParameterGroupName:
379
+ - :string
380
+ - :required
381
+ DBParameterGroupFamily:
382
+ - :string
383
+ - :required
384
+ Description:
385
+ - :string
386
+ - :required
387
+ :outputs:
388
+ :children:
389
+ CreateDBParameterGroupResult:
390
+ :ignore: true
391
+ :children:
392
+ DBParameterGroup:
393
+ :ignore: true
394
+ - :name: CreateDBSecurityGroup
395
+ :method: :create_db_security_group
396
+ :inputs:
397
+ DBSecurityGroupName:
398
+ - :string
399
+ - :required
400
+ DBSecurityGroupDescription:
401
+ - :string
402
+ - :required
403
+ :outputs:
404
+ :children:
405
+ CreateDBSecurityGroupResult:
406
+ :ignore: true
407
+ :children:
408
+ DBSecurityGroup:
409
+ :children:
410
+ EC2SecurityGroups:
411
+ :ignore: true
412
+ :children:
413
+ EC2SecurityGroup:
414
+ :rename: :ec2_security_groups
415
+ :list: true
416
+ IPRanges:
417
+ :ignore: true
418
+ :children:
419
+ IPRange:
420
+ :rename: :ip_ranges
421
+ :list: true
422
+ :ignore: true
423
+ - :name: CreateDBSnapshot
424
+ :method: :create_db_snapshot
425
+ :inputs:
426
+ DBSnapshotIdentifier:
427
+ - :string
428
+ - :required
429
+ DBInstanceIdentifier:
430
+ - :string
431
+ - :required
432
+ :outputs:
433
+ :children:
434
+ CreateDBSnapshotResult:
435
+ :ignore: true
436
+ :children:
437
+ DBSnapshot:
438
+ :children:
439
+ SnapshotCreateTime:
440
+ :type: :time
441
+ AllocatedStorage:
442
+ :type: :integer
443
+ Port:
444
+ :type: :integer
445
+ InstanceCreateTime:
446
+ :type: :time
447
+ Iops:
448
+ :type: :integer
449
+ :ignore: true
450
+ - :name: CreateDBSubnetGroup
451
+ :method: :create_db_subnet_group
452
+ :inputs:
453
+ DBSubnetGroupName:
454
+ - :string
455
+ - :required
456
+ DBSubnetGroupDescription:
457
+ - :string
458
+ - :required
459
+ SubnetIds:
460
+ - :membered_list:
461
+ - :string
462
+ - :required
463
+ :outputs:
464
+ :children:
465
+ CreateDBSubnetGroupResult:
466
+ :ignore: true
467
+ :children:
468
+ DBSubnetGroup:
469
+ :children:
470
+ Subnets:
471
+ :ignore: true
472
+ :children:
473
+ Subnet:
474
+ :rename: :subnets
475
+ :list: true
476
+ :children:
477
+ SubnetAvailabilityZone:
478
+ :children:
479
+ ProvisionedIopsCapable:
480
+ :type: :boolean
481
+ :ignore: true
482
+ - :name: CreateEventSubscription
483
+ :method: :create_event_subscription
484
+ :inputs:
485
+ SubscriptionName:
486
+ - :string
487
+ - :required
488
+ SnsTopicArn:
489
+ - :string
490
+ - :required
491
+ SourceType:
492
+ - :string
493
+ EventCategories:
494
+ - :membered_list:
495
+ - :string
496
+ SourceIds:
497
+ - :membered_list:
498
+ - :string
499
+ Enabled:
500
+ - :boolean
501
+ :outputs:
502
+ :children:
503
+ CreateEventSubscriptionResult:
504
+ :ignore: true
505
+ :children:
506
+ EventSubscription:
507
+ :children:
508
+ SourceIdsList:
509
+ :ignore: true
510
+ :children:
511
+ SourceId:
512
+ :rename: :source_ids_list
513
+ :list: true
514
+ EventCategoriesList:
515
+ :ignore: true
516
+ :children:
517
+ EventCategory:
518
+ :rename: :event_categories_list
519
+ :list: true
520
+ Enabled:
521
+ :type: :boolean
522
+ :ignore: true
523
+ - :name: CreateOptionGroup
524
+ :method: :create_option_group
525
+ :inputs:
526
+ OptionGroupName:
527
+ - :string
528
+ - :required
529
+ EngineName:
530
+ - :string
531
+ - :required
532
+ MajorEngineVersion:
533
+ - :string
534
+ - :required
535
+ OptionGroupDescription:
536
+ - :string
537
+ - :required
538
+ :outputs:
539
+ :children:
540
+ CreateOptionGroupResult:
541
+ :ignore: true
542
+ :children:
543
+ OptionGroup:
544
+ :children:
545
+ Options:
546
+ :ignore: true
547
+ :children:
548
+ Option:
549
+ :rename: :options
550
+ :list: true
551
+ :children:
552
+ Persistent:
553
+ :type: :boolean
554
+ Port:
555
+ :type: :integer
556
+ OptionSettings:
557
+ :ignore: true
558
+ :children:
559
+ OptionSetting:
560
+ :rename: :option_settings
561
+ :list: true
562
+ :children:
563
+ IsModifiable:
564
+ :type: :boolean
565
+ IsCollection:
566
+ :type: :boolean
567
+ DBSecurityGroupMemberships:
568
+ :ignore: true
569
+ :children:
570
+ DBSecurityGroup:
571
+ :rename: :db_security_group_memberships
572
+ :list: true
573
+ VpcSecurityGroupMemberships:
574
+ :ignore: true
575
+ :children:
576
+ VpcSecurityGroupMembership:
577
+ :rename: :vpc_security_group_memberships
578
+ :list: true
579
+ AllowsVpcAndNonVpcInstanceMemberships:
580
+ :type: :boolean
581
+ :ignore: true
582
+ - :name: DeleteDBInstance
583
+ :method: :delete_db_instance
584
+ :inputs:
585
+ DBInstanceIdentifier:
586
+ - :string
587
+ - :required
588
+ SkipFinalSnapshot:
589
+ - :boolean
590
+ FinalDBSnapshotIdentifier:
591
+ - :string
592
+ :outputs:
593
+ :children:
594
+ DeleteDBInstanceResult:
595
+ :ignore: true
596
+ :children:
597
+ DBInstance:
598
+ :children:
599
+ Endpoint:
600
+ :children:
601
+ Port:
602
+ :type: :integer
603
+ AllocatedStorage:
604
+ :type: :integer
605
+ InstanceCreateTime:
606
+ :type: :time
607
+ BackupRetentionPeriod:
608
+ :type: :integer
609
+ DBSecurityGroups:
610
+ :ignore: true
611
+ :children:
612
+ DBSecurityGroup:
613
+ :rename: :db_security_groups
614
+ :list: true
615
+ VpcSecurityGroups:
616
+ :ignore: true
617
+ :children:
618
+ VpcSecurityGroupMembership:
619
+ :rename: :vpc_security_groups
620
+ :list: true
621
+ DBParameterGroups:
622
+ :ignore: true
623
+ :children:
624
+ DBParameterGroup:
625
+ :rename: :db_parameter_groups
626
+ :list: true
627
+ DBSubnetGroup:
628
+ :children:
629
+ Subnets:
630
+ :ignore: true
631
+ :children:
632
+ Subnet:
633
+ :rename: :subnets
634
+ :list: true
635
+ :children:
636
+ SubnetAvailabilityZone:
637
+ :children:
638
+ ProvisionedIopsCapable:
639
+ :type: :boolean
640
+ PendingModifiedValues:
641
+ :children:
642
+ AllocatedStorage:
643
+ :type: :integer
644
+ Port:
645
+ :type: :integer
646
+ BackupRetentionPeriod:
647
+ :type: :integer
648
+ MultiAZ:
649
+ :type: :boolean
650
+ Iops:
651
+ :type: :integer
652
+ LatestRestorableTime:
653
+ :type: :time
654
+ MultiAZ:
655
+ :type: :boolean
656
+ AutoMinorVersionUpgrade:
657
+ :type: :boolean
658
+ ReadReplicaDBInstanceIdentifiers:
659
+ :ignore: true
660
+ :children:
661
+ ReadReplicaDBInstanceIdentifier:
662
+ :rename: :read_replica_db_instance_identifiers
663
+ :list: true
664
+ Iops:
665
+ :type: :integer
666
+ OptionGroupMemberships:
667
+ :ignore: true
668
+ :children:
669
+ OptionGroupMembership:
670
+ :rename: :option_group_memberships
671
+ :list: true
672
+ PubliclyAccessible:
673
+ :type: :boolean
674
+ :ignore: true
675
+ - :name: DeleteDBParameterGroup
676
+ :method: :delete_db_parameter_group
677
+ :inputs:
678
+ DBParameterGroupName:
679
+ - :string
680
+ - :required
681
+ :outputs:
682
+ :children:
683
+ DeleteDBParameterGroupResult:
684
+ :ignore: true
685
+ - :name: DeleteDBSecurityGroup
686
+ :method: :delete_db_security_group
687
+ :inputs:
688
+ DBSecurityGroupName:
689
+ - :string
690
+ - :required
691
+ :outputs:
692
+ :children:
693
+ DeleteDBSecurityGroupResult:
694
+ :ignore: true
695
+ - :name: DeleteDBSnapshot
696
+ :method: :delete_db_snapshot
697
+ :inputs:
698
+ DBSnapshotIdentifier:
699
+ - :string
700
+ - :required
701
+ :outputs:
702
+ :children:
703
+ DeleteDBSnapshotResult:
704
+ :ignore: true
705
+ :children:
706
+ DBSnapshot:
707
+ :children:
708
+ SnapshotCreateTime:
709
+ :type: :time
710
+ AllocatedStorage:
711
+ :type: :integer
712
+ Port:
713
+ :type: :integer
714
+ InstanceCreateTime:
715
+ :type: :time
716
+ Iops:
717
+ :type: :integer
718
+ :ignore: true
719
+ - :name: DeleteDBSubnetGroup
720
+ :method: :delete_db_subnet_group
721
+ :inputs:
722
+ DBSubnetGroupName:
723
+ - :string
724
+ - :required
725
+ :outputs:
726
+ :children:
727
+ DeleteDBSubnetGroupResult:
728
+ :ignore: true
729
+ - :name: DeleteEventSubscription
730
+ :method: :delete_event_subscription
731
+ :inputs:
732
+ SubscriptionName:
733
+ - :string
734
+ - :required
735
+ :outputs:
736
+ :children:
737
+ DeleteEventSubscriptionResult:
738
+ :ignore: true
739
+ :children:
740
+ EventSubscription:
741
+ :children:
742
+ SourceIdsList:
743
+ :ignore: true
744
+ :children:
745
+ SourceId:
746
+ :rename: :source_ids_list
747
+ :list: true
748
+ EventCategoriesList:
749
+ :ignore: true
750
+ :children:
751
+ EventCategory:
752
+ :rename: :event_categories_list
753
+ :list: true
754
+ Enabled:
755
+ :type: :boolean
756
+ :ignore: true
757
+ - :name: DeleteOptionGroup
758
+ :method: :delete_option_group
759
+ :inputs:
760
+ OptionGroupName:
761
+ - :string
762
+ - :required
763
+ :outputs:
764
+ :children:
765
+ DeleteOptionGroupResult:
766
+ :ignore: true
767
+ - :name: DescribeDBEngineVersions
768
+ :method: :describe_db_engine_versions
769
+ :inputs:
770
+ Engine:
771
+ - :string
772
+ EngineVersion:
773
+ - :string
774
+ DBParameterGroupFamily:
775
+ - :string
776
+ MaxRecords:
777
+ - :integer
778
+ Marker:
779
+ - :string
780
+ DefaultOnly:
781
+ - :boolean
782
+ ListSupportedCharacterSets:
783
+ - :boolean
784
+ :outputs:
785
+ :children:
786
+ DescribeDBEngineVersionsResult:
787
+ :ignore: true
788
+ :children:
789
+ DBEngineVersions:
790
+ :ignore: true
791
+ :children:
792
+ DBEngineVersion:
793
+ :rename: :db_engine_versions
794
+ :list: true
795
+ :children:
796
+ SupportedCharacterSets:
797
+ :ignore: true
798
+ :children:
799
+ CharacterSet:
800
+ :rename: :supported_character_sets
801
+ :list: true
802
+ - :name: DescribeDBInstances
803
+ :method: :describe_db_instances
804
+ :inputs:
805
+ DBInstanceIdentifier:
806
+ - :string
807
+ MaxRecords:
808
+ - :integer
809
+ Marker:
810
+ - :string
811
+ :outputs:
812
+ :children:
813
+ DescribeDBInstancesResult:
814
+ :ignore: true
815
+ :children:
816
+ DBInstances:
817
+ :ignore: true
818
+ :children:
819
+ DBInstance:
820
+ :rename: :db_instances
821
+ :list: true
822
+ :children:
823
+ Endpoint:
824
+ :children:
825
+ Port:
826
+ :type: :integer
827
+ AllocatedStorage:
828
+ :type: :integer
829
+ InstanceCreateTime:
830
+ :type: :time
831
+ BackupRetentionPeriod:
832
+ :type: :integer
833
+ DBSecurityGroups:
834
+ :ignore: true
835
+ :children:
836
+ DBSecurityGroup:
837
+ :rename: :db_security_groups
838
+ :list: true
839
+ VpcSecurityGroups:
840
+ :ignore: true
841
+ :children:
842
+ VpcSecurityGroupMembership:
843
+ :rename: :vpc_security_groups
844
+ :list: true
845
+ DBParameterGroups:
846
+ :ignore: true
847
+ :children:
848
+ DBParameterGroup:
849
+ :rename: :db_parameter_groups
850
+ :list: true
851
+ DBSubnetGroup:
852
+ :children:
853
+ Subnets:
854
+ :ignore: true
855
+ :children:
856
+ Subnet:
857
+ :rename: :subnets
858
+ :list: true
859
+ :children:
860
+ SubnetAvailabilityZone:
861
+ :children:
862
+ ProvisionedIopsCapable:
863
+ :type: :boolean
864
+ PendingModifiedValues:
865
+ :children:
866
+ AllocatedStorage:
867
+ :type: :integer
868
+ Port:
869
+ :type: :integer
870
+ BackupRetentionPeriod:
871
+ :type: :integer
872
+ MultiAZ:
873
+ :type: :boolean
874
+ Iops:
875
+ :type: :integer
876
+ LatestRestorableTime:
877
+ :type: :time
878
+ MultiAZ:
879
+ :type: :boolean
880
+ AutoMinorVersionUpgrade:
881
+ :type: :boolean
882
+ ReadReplicaDBInstanceIdentifiers:
883
+ :ignore: true
884
+ :children:
885
+ ReadReplicaDBInstanceIdentifier:
886
+ :rename: :read_replica_db_instance_identifiers
887
+ :list: true
888
+ Iops:
889
+ :type: :integer
890
+ OptionGroupMemberships:
891
+ :ignore: true
892
+ :children:
893
+ OptionGroupMembership:
894
+ :rename: :option_group_memberships
895
+ :list: true
896
+ PubliclyAccessible:
897
+ :type: :boolean
898
+ - :name: DescribeDBLogFiles
899
+ :method: :describe_db_log_files
900
+ :inputs:
901
+ DBInstanceIdentifier:
902
+ - :string
903
+ FilenameContains:
904
+ - :string
905
+ FileLastWritten:
906
+ - :long
907
+ FileSize:
908
+ - :long
909
+ MaxRecords:
910
+ - :integer
911
+ Marker:
912
+ - :string
913
+ :outputs:
914
+ :children:
915
+ DescribeDBLogFilesResult:
916
+ :ignore: true
917
+ :children:
918
+ DescribeDBLogFiles:
919
+ :ignore: true
920
+ :children:
921
+ DescribeDBLogFilesDetails:
922
+ :rename: :describe_db_log_files
923
+ :list: true
924
+ :children:
925
+ LastWritten:
926
+ :type: :integer
927
+ Size:
928
+ :type: :integer
929
+ - :name: DescribeDBParameterGroups
930
+ :method: :describe_db_parameter_groups
931
+ :inputs:
932
+ DBParameterGroupName:
933
+ - :string
934
+ MaxRecords:
935
+ - :integer
936
+ Marker:
937
+ - :string
938
+ :outputs:
939
+ :children:
940
+ DescribeDBParameterGroupsResult:
941
+ :ignore: true
942
+ :children:
943
+ DBParameterGroups:
944
+ :ignore: true
945
+ :children:
946
+ DBParameterGroup:
947
+ :rename: :db_parameter_groups
948
+ :list: true
949
+ - :name: DescribeDBParameters
950
+ :method: :describe_db_parameters
951
+ :inputs:
952
+ DBParameterGroupName:
953
+ - :string
954
+ - :required
955
+ Source:
956
+ - :string
957
+ MaxRecords:
958
+ - :integer
959
+ Marker:
960
+ - :string
961
+ :outputs:
962
+ :children:
963
+ DescribeDBParametersResult:
964
+ :ignore: true
965
+ :children:
966
+ Parameters:
967
+ :ignore: true
968
+ :children:
969
+ Parameter:
970
+ :rename: :parameters
971
+ :list: true
972
+ :children:
973
+ IsModifiable:
974
+ :type: :boolean
975
+ - :name: DescribeDBSecurityGroups
976
+ :method: :describe_db_security_groups
977
+ :inputs:
978
+ DBSecurityGroupName:
979
+ - :string
980
+ MaxRecords:
981
+ - :integer
982
+ Marker:
983
+ - :string
984
+ :outputs:
985
+ :children:
986
+ DescribeDBSecurityGroupsResult:
987
+ :ignore: true
988
+ :children:
989
+ DBSecurityGroups:
990
+ :ignore: true
991
+ :children:
992
+ DBSecurityGroup:
993
+ :rename: :db_security_groups
994
+ :list: true
995
+ :children:
996
+ EC2SecurityGroups:
997
+ :ignore: true
998
+ :children:
999
+ EC2SecurityGroup:
1000
+ :rename: :ec2_security_groups
1001
+ :list: true
1002
+ IPRanges:
1003
+ :ignore: true
1004
+ :children:
1005
+ IPRange:
1006
+ :rename: :ip_ranges
1007
+ :list: true
1008
+ - :name: DescribeDBSnapshots
1009
+ :method: :describe_db_snapshots
1010
+ :inputs:
1011
+ DBInstanceIdentifier:
1012
+ - :string
1013
+ DBSnapshotIdentifier:
1014
+ - :string
1015
+ SnapshotType:
1016
+ - :string
1017
+ MaxRecords:
1018
+ - :integer
1019
+ Marker:
1020
+ - :string
1021
+ :outputs:
1022
+ :children:
1023
+ DescribeDBSnapshotsResult:
1024
+ :ignore: true
1025
+ :children:
1026
+ DBSnapshots:
1027
+ :ignore: true
1028
+ :children:
1029
+ DBSnapshot:
1030
+ :rename: :db_snapshots
1031
+ :list: true
1032
+ :children:
1033
+ SnapshotCreateTime:
1034
+ :type: :time
1035
+ AllocatedStorage:
1036
+ :type: :integer
1037
+ Port:
1038
+ :type: :integer
1039
+ InstanceCreateTime:
1040
+ :type: :time
1041
+ Iops:
1042
+ :type: :integer
1043
+ - :name: DescribeDBSubnetGroups
1044
+ :method: :describe_db_subnet_groups
1045
+ :inputs:
1046
+ DBSubnetGroupName:
1047
+ - :string
1048
+ MaxRecords:
1049
+ - :integer
1050
+ Marker:
1051
+ - :string
1052
+ :outputs:
1053
+ :children:
1054
+ DescribeDBSubnetGroupsResult:
1055
+ :ignore: true
1056
+ :children:
1057
+ DBSubnetGroups:
1058
+ :ignore: true
1059
+ :children:
1060
+ DBSubnetGroup:
1061
+ :rename: :db_subnet_groups
1062
+ :list: true
1063
+ :children:
1064
+ Subnets:
1065
+ :ignore: true
1066
+ :children:
1067
+ Subnet:
1068
+ :rename: :subnets
1069
+ :list: true
1070
+ :children:
1071
+ SubnetAvailabilityZone:
1072
+ :children:
1073
+ ProvisionedIopsCapable:
1074
+ :type: :boolean
1075
+ - :name: DescribeEngineDefaultParameters
1076
+ :method: :describe_engine_default_parameters
1077
+ :inputs:
1078
+ DBParameterGroupFamily:
1079
+ - :string
1080
+ - :required
1081
+ MaxRecords:
1082
+ - :integer
1083
+ Marker:
1084
+ - :string
1085
+ :outputs:
1086
+ :children:
1087
+ DescribeEngineDefaultParametersResult:
1088
+ :ignore: true
1089
+ :children:
1090
+ EngineDefaults:
1091
+ :children:
1092
+ Parameters:
1093
+ :ignore: true
1094
+ :children:
1095
+ Parameter:
1096
+ :rename: :parameters
1097
+ :list: true
1098
+ :children:
1099
+ IsModifiable:
1100
+ :type: :boolean
1101
+ :ignore: true
1102
+ - :name: DescribeEventCategories
1103
+ :method: :describe_event_categories
1104
+ :inputs:
1105
+ SourceType:
1106
+ - :string
1107
+ :outputs:
1108
+ :children:
1109
+ DescribeEventCategoriesResult:
1110
+ :ignore: true
1111
+ :children:
1112
+ EventCategoriesMapList:
1113
+ :ignore: true
1114
+ :children:
1115
+ EventCategoriesMap:
1116
+ :rename: :event_categories_map_list
1117
+ :list: true
1118
+ :children:
1119
+ EventCategories:
1120
+ :ignore: true
1121
+ :children:
1122
+ EventCategory:
1123
+ :rename: :event_categories
1124
+ :list: true
1125
+ - :name: DescribeEventSubscriptions
1126
+ :method: :describe_event_subscriptions
1127
+ :inputs:
1128
+ SubscriptionName:
1129
+ - :string
1130
+ MaxRecords:
1131
+ - :integer
1132
+ Marker:
1133
+ - :string
1134
+ :outputs:
1135
+ :children:
1136
+ DescribeEventSubscriptionsResult:
1137
+ :ignore: true
1138
+ :children:
1139
+ EventSubscriptionsList:
1140
+ :ignore: true
1141
+ :children:
1142
+ EventSubscription:
1143
+ :rename: :event_subscriptions_list
1144
+ :list: true
1145
+ :children:
1146
+ SourceIdsList:
1147
+ :ignore: true
1148
+ :children:
1149
+ SourceId:
1150
+ :rename: :source_ids_list
1151
+ :list: true
1152
+ EventCategoriesList:
1153
+ :ignore: true
1154
+ :children:
1155
+ EventCategory:
1156
+ :rename: :event_categories_list
1157
+ :list: true
1158
+ Enabled:
1159
+ :type: :boolean
1160
+ - :name: DescribeEvents
1161
+ :method: :describe_events
1162
+ :inputs:
1163
+ SourceIdentifier:
1164
+ - :string
1165
+ SourceType:
1166
+ - :string
1167
+ StartTime:
1168
+ - :timestamp
1169
+ EndTime:
1170
+ - :timestamp
1171
+ Duration:
1172
+ - :integer
1173
+ EventCategories:
1174
+ - :membered_list:
1175
+ - :string
1176
+ MaxRecords:
1177
+ - :integer
1178
+ Marker:
1179
+ - :string
1180
+ :outputs:
1181
+ :children:
1182
+ DescribeEventsResult:
1183
+ :ignore: true
1184
+ :children:
1185
+ Events:
1186
+ :ignore: true
1187
+ :children:
1188
+ Event:
1189
+ :rename: :events
1190
+ :list: true
1191
+ :children:
1192
+ EventCategories:
1193
+ :ignore: true
1194
+ :children:
1195
+ EventCategory:
1196
+ :rename: :event_categories
1197
+ :list: true
1198
+ Date:
1199
+ :type: :time
1200
+ - :name: DescribeOptionGroupOptions
1201
+ :method: :describe_option_group_options
1202
+ :inputs:
1203
+ EngineName:
1204
+ - :string
1205
+ - :required
1206
+ MajorEngineVersion:
1207
+ - :string
1208
+ MaxRecords:
1209
+ - :integer
1210
+ Marker:
1211
+ - :string
1212
+ :outputs:
1213
+ :children:
1214
+ DescribeOptionGroupOptionsResult:
1215
+ :ignore: true
1216
+ :children:
1217
+ OptionGroupOptions:
1218
+ :ignore: true
1219
+ :children:
1220
+ OptionGroupOption:
1221
+ :rename: :option_group_options
1222
+ :list: true
1223
+ :children:
1224
+ PortRequired:
1225
+ :type: :boolean
1226
+ DefaultPort:
1227
+ :type: :integer
1228
+ OptionsDependedOn:
1229
+ :ignore: true
1230
+ :children:
1231
+ OptionName:
1232
+ :rename: :options_depended_on
1233
+ :list: true
1234
+ Persistent:
1235
+ :type: :boolean
1236
+ OptionGroupOptionSettings:
1237
+ :ignore: true
1238
+ :children:
1239
+ OptionGroupOptionSetting:
1240
+ :rename: :option_group_option_settings
1241
+ :list: true
1242
+ :children:
1243
+ IsModifiable:
1244
+ :type: :boolean
1245
+ - :name: DescribeOptionGroups
1246
+ :method: :describe_option_groups
1247
+ :inputs:
1248
+ OptionGroupName:
1249
+ - :string
1250
+ Marker:
1251
+ - :string
1252
+ MaxRecords:
1253
+ - :integer
1254
+ EngineName:
1255
+ - :string
1256
+ MajorEngineVersion:
1257
+ - :string
1258
+ :outputs:
1259
+ :children:
1260
+ DescribeOptionGroupsResult:
1261
+ :ignore: true
1262
+ :children:
1263
+ OptionGroupsList:
1264
+ :ignore: true
1265
+ :children:
1266
+ OptionGroup:
1267
+ :rename: :option_groups_list
1268
+ :list: true
1269
+ :children:
1270
+ Options:
1271
+ :ignore: true
1272
+ :children:
1273
+ Option:
1274
+ :rename: :options
1275
+ :list: true
1276
+ :children:
1277
+ Persistent:
1278
+ :type: :boolean
1279
+ Port:
1280
+ :type: :integer
1281
+ OptionSettings:
1282
+ :ignore: true
1283
+ :children:
1284
+ OptionSetting:
1285
+ :rename: :option_settings
1286
+ :list: true
1287
+ :children:
1288
+ IsModifiable:
1289
+ :type: :boolean
1290
+ IsCollection:
1291
+ :type: :boolean
1292
+ DBSecurityGroupMemberships:
1293
+ :ignore: true
1294
+ :children:
1295
+ DBSecurityGroup:
1296
+ :rename: :db_security_group_memberships
1297
+ :list: true
1298
+ VpcSecurityGroupMemberships:
1299
+ :ignore: true
1300
+ :children:
1301
+ VpcSecurityGroupMembership:
1302
+ :rename: :vpc_security_group_memberships
1303
+ :list: true
1304
+ AllowsVpcAndNonVpcInstanceMemberships:
1305
+ :type: :boolean
1306
+ - :name: DescribeOrderableDBInstanceOptions
1307
+ :method: :describe_orderable_db_instance_options
1308
+ :inputs:
1309
+ Engine:
1310
+ - :string
1311
+ - :required
1312
+ EngineVersion:
1313
+ - :string
1314
+ DBInstanceClass:
1315
+ - :string
1316
+ LicenseModel:
1317
+ - :string
1318
+ Vpc:
1319
+ - :boolean
1320
+ MaxRecords:
1321
+ - :integer
1322
+ Marker:
1323
+ - :string
1324
+ :outputs:
1325
+ :children:
1326
+ DescribeOrderableDBInstanceOptionsResult:
1327
+ :ignore: true
1328
+ :children:
1329
+ OrderableDBInstanceOptions:
1330
+ :ignore: true
1331
+ :children:
1332
+ OrderableDBInstanceOption:
1333
+ :rename: :orderable_db_instance_options
1334
+ :list: true
1335
+ :children:
1336
+ AvailabilityZones:
1337
+ :ignore: true
1338
+ :children:
1339
+ AvailabilityZone:
1340
+ :rename: :availability_zones
1341
+ :list: true
1342
+ :children:
1343
+ ProvisionedIopsCapable:
1344
+ :type: :boolean
1345
+ MultiAZCapable:
1346
+ :type: :boolean
1347
+ ReadReplicaCapable:
1348
+ :type: :boolean
1349
+ Vpc:
1350
+ :type: :boolean
1351
+ - :name: DescribeReservedDBInstances
1352
+ :method: :describe_reserved_db_instances
1353
+ :inputs:
1354
+ ReservedDBInstanceId:
1355
+ - :string
1356
+ ReservedDBInstancesOfferingId:
1357
+ - :string
1358
+ DBInstanceClass:
1359
+ - :string
1360
+ Duration:
1361
+ - :string
1362
+ ProductDescription:
1363
+ - :string
1364
+ OfferingType:
1365
+ - :string
1366
+ MultiAZ:
1367
+ - :boolean
1368
+ MaxRecords:
1369
+ - :integer
1370
+ Marker:
1371
+ - :string
1372
+ :outputs:
1373
+ :children:
1374
+ DescribeReservedDBInstancesResult:
1375
+ :ignore: true
1376
+ :children:
1377
+ ReservedDBInstances:
1378
+ :ignore: true
1379
+ :children:
1380
+ ReservedDBInstance:
1381
+ :rename: :reserved_db_instances
1382
+ :list: true
1383
+ :children:
1384
+ StartTime:
1385
+ :type: :time
1386
+ Duration:
1387
+ :type: :integer
1388
+ FixedPrice:
1389
+ :type: :float
1390
+ UsagePrice:
1391
+ :type: :float
1392
+ DBInstanceCount:
1393
+ :type: :integer
1394
+ MultiAZ:
1395
+ :type: :boolean
1396
+ RecurringCharges:
1397
+ :ignore: true
1398
+ :children:
1399
+ RecurringCharge:
1400
+ :rename: :recurring_charges
1401
+ :list: true
1402
+ :children:
1403
+ RecurringChargeAmount:
1404
+ :type: :float
1405
+ - :name: DescribeReservedDBInstancesOfferings
1406
+ :method: :describe_reserved_db_instances_offerings
1407
+ :inputs:
1408
+ ReservedDBInstancesOfferingId:
1409
+ - :string
1410
+ DBInstanceClass:
1411
+ - :string
1412
+ Duration:
1413
+ - :string
1414
+ ProductDescription:
1415
+ - :string
1416
+ OfferingType:
1417
+ - :string
1418
+ MultiAZ:
1419
+ - :boolean
1420
+ MaxRecords:
1421
+ - :integer
1422
+ Marker:
1423
+ - :string
1424
+ :outputs:
1425
+ :children:
1426
+ DescribeReservedDBInstancesOfferingsResult:
1427
+ :ignore: true
1428
+ :children:
1429
+ ReservedDBInstancesOfferings:
1430
+ :ignore: true
1431
+ :children:
1432
+ ReservedDBInstancesOffering:
1433
+ :rename: :reserved_db_instances_offerings
1434
+ :list: true
1435
+ :children:
1436
+ Duration:
1437
+ :type: :integer
1438
+ FixedPrice:
1439
+ :type: :float
1440
+ UsagePrice:
1441
+ :type: :float
1442
+ MultiAZ:
1443
+ :type: :boolean
1444
+ RecurringCharges:
1445
+ :ignore: true
1446
+ :children:
1447
+ RecurringCharge:
1448
+ :rename: :recurring_charges
1449
+ :list: true
1450
+ :children:
1451
+ RecurringChargeAmount:
1452
+ :type: :float
1453
+ - :name: DownloadDBLogFilePortion
1454
+ :method: :download_db_log_file_portion
1455
+ :inputs:
1456
+ DBInstanceIdentifier:
1457
+ - :string
1458
+ LogFileName:
1459
+ - :string
1460
+ Marker:
1461
+ - :string
1462
+ NumberOfLines:
1463
+ - :integer
1464
+ :outputs:
1465
+ :children:
1466
+ DownloadDBLogFilePortionResult:
1467
+ :ignore: true
1468
+ :children:
1469
+ AdditionalDataPending:
1470
+ :type: :boolean
1471
+ - :name: ListTagsForResource
1472
+ :method: :list_tags_for_resource
1473
+ :inputs:
1474
+ ResourceName:
1475
+ - :string
1476
+ - :required
1477
+ :outputs:
1478
+ :children:
1479
+ ListTagsForResourceResult:
1480
+ :ignore: true
1481
+ :children:
1482
+ TagList:
1483
+ :ignore: true
1484
+ :children:
1485
+ Tag:
1486
+ :rename: :tag_list
1487
+ :list: true
1488
+ - :name: ModifyDBInstance
1489
+ :method: :modify_db_instance
1490
+ :inputs:
1491
+ DBInstanceIdentifier:
1492
+ - :string
1493
+ - :required
1494
+ AllocatedStorage:
1495
+ - :integer
1496
+ DBInstanceClass:
1497
+ - :string
1498
+ DBSecurityGroups:
1499
+ - :membered_list:
1500
+ - :string
1501
+ VpcSecurityGroupIds:
1502
+ - :membered_list:
1503
+ - :string
1504
+ ApplyImmediately:
1505
+ - :boolean
1506
+ MasterUserPassword:
1507
+ - :string
1508
+ DBParameterGroupName:
1509
+ - :string
1510
+ BackupRetentionPeriod:
1511
+ - :integer
1512
+ PreferredBackupWindow:
1513
+ - :string
1514
+ PreferredMaintenanceWindow:
1515
+ - :string
1516
+ MultiAZ:
1517
+ - :boolean
1518
+ EngineVersion:
1519
+ - :string
1520
+ AllowMajorVersionUpgrade:
1521
+ - :boolean
1522
+ AutoMinorVersionUpgrade:
1523
+ - :boolean
1524
+ Iops:
1525
+ - :integer
1526
+ OptionGroupName:
1527
+ - :string
1528
+ NewDBInstanceIdentifier:
1529
+ - :string
1530
+ :outputs:
1531
+ :children:
1532
+ ModifyDBInstanceResult:
1533
+ :ignore: true
1534
+ :children:
1535
+ DBInstance:
1536
+ :children:
1537
+ Endpoint:
1538
+ :children:
1539
+ Port:
1540
+ :type: :integer
1541
+ AllocatedStorage:
1542
+ :type: :integer
1543
+ InstanceCreateTime:
1544
+ :type: :time
1545
+ BackupRetentionPeriod:
1546
+ :type: :integer
1547
+ DBSecurityGroups:
1548
+ :ignore: true
1549
+ :children:
1550
+ DBSecurityGroup:
1551
+ :rename: :db_security_groups
1552
+ :list: true
1553
+ VpcSecurityGroups:
1554
+ :ignore: true
1555
+ :children:
1556
+ VpcSecurityGroupMembership:
1557
+ :rename: :vpc_security_groups
1558
+ :list: true
1559
+ DBParameterGroups:
1560
+ :ignore: true
1561
+ :children:
1562
+ DBParameterGroup:
1563
+ :rename: :db_parameter_groups
1564
+ :list: true
1565
+ DBSubnetGroup:
1566
+ :children:
1567
+ Subnets:
1568
+ :ignore: true
1569
+ :children:
1570
+ Subnet:
1571
+ :rename: :subnets
1572
+ :list: true
1573
+ :children:
1574
+ SubnetAvailabilityZone:
1575
+ :children:
1576
+ ProvisionedIopsCapable:
1577
+ :type: :boolean
1578
+ PendingModifiedValues:
1579
+ :children:
1580
+ AllocatedStorage:
1581
+ :type: :integer
1582
+ Port:
1583
+ :type: :integer
1584
+ BackupRetentionPeriod:
1585
+ :type: :integer
1586
+ MultiAZ:
1587
+ :type: :boolean
1588
+ Iops:
1589
+ :type: :integer
1590
+ LatestRestorableTime:
1591
+ :type: :time
1592
+ MultiAZ:
1593
+ :type: :boolean
1594
+ AutoMinorVersionUpgrade:
1595
+ :type: :boolean
1596
+ ReadReplicaDBInstanceIdentifiers:
1597
+ :ignore: true
1598
+ :children:
1599
+ ReadReplicaDBInstanceIdentifier:
1600
+ :rename: :read_replica_db_instance_identifiers
1601
+ :list: true
1602
+ Iops:
1603
+ :type: :integer
1604
+ OptionGroupMemberships:
1605
+ :ignore: true
1606
+ :children:
1607
+ OptionGroupMembership:
1608
+ :rename: :option_group_memberships
1609
+ :list: true
1610
+ PubliclyAccessible:
1611
+ :type: :boolean
1612
+ :ignore: true
1613
+ - :name: ModifyDBParameterGroup
1614
+ :method: :modify_db_parameter_group
1615
+ :inputs:
1616
+ DBParameterGroupName:
1617
+ - :string
1618
+ - :required
1619
+ Parameters:
1620
+ - :membered_list:
1621
+ - :structure:
1622
+ ParameterName:
1623
+ - :string
1624
+ ParameterValue:
1625
+ - :string
1626
+ Description:
1627
+ - :string
1628
+ Source:
1629
+ - :string
1630
+ ApplyType:
1631
+ - :string
1632
+ DataType:
1633
+ - :string
1634
+ AllowedValues:
1635
+ - :string
1636
+ IsModifiable:
1637
+ - :boolean
1638
+ MinimumEngineVersion:
1639
+ - :string
1640
+ ApplyMethod:
1641
+ - :string
1642
+ - :required
1643
+ :outputs:
1644
+ :children:
1645
+ ModifyDBParameterGroupResult:
1646
+ :ignore: true
1647
+ - :name: ModifyDBSubnetGroup
1648
+ :method: :modify_db_subnet_group
1649
+ :inputs:
1650
+ DBSubnetGroupName:
1651
+ - :string
1652
+ - :required
1653
+ DBSubnetGroupDescription:
1654
+ - :string
1655
+ SubnetIds:
1656
+ - :membered_list:
1657
+ - :string
1658
+ - :required
1659
+ :outputs:
1660
+ :children:
1661
+ ModifyDBSubnetGroupResult:
1662
+ :ignore: true
1663
+ :children:
1664
+ DBSubnetGroup:
1665
+ :children:
1666
+ Subnets:
1667
+ :ignore: true
1668
+ :children:
1669
+ Subnet:
1670
+ :rename: :subnets
1671
+ :list: true
1672
+ :children:
1673
+ SubnetAvailabilityZone:
1674
+ :children:
1675
+ ProvisionedIopsCapable:
1676
+ :type: :boolean
1677
+ :ignore: true
1678
+ - :name: ModifyEventSubscription
1679
+ :method: :modify_event_subscription
1680
+ :inputs:
1681
+ SubscriptionName:
1682
+ - :string
1683
+ - :required
1684
+ SnsTopicArn:
1685
+ - :string
1686
+ SourceType:
1687
+ - :string
1688
+ EventCategories:
1689
+ - :membered_list:
1690
+ - :string
1691
+ Enabled:
1692
+ - :boolean
1693
+ :outputs:
1694
+ :children:
1695
+ ModifyEventSubscriptionResult:
1696
+ :ignore: true
1697
+ :children:
1698
+ EventSubscription:
1699
+ :children:
1700
+ SourceIdsList:
1701
+ :ignore: true
1702
+ :children:
1703
+ SourceId:
1704
+ :rename: :source_ids_list
1705
+ :list: true
1706
+ EventCategoriesList:
1707
+ :ignore: true
1708
+ :children:
1709
+ EventCategory:
1710
+ :rename: :event_categories_list
1711
+ :list: true
1712
+ Enabled:
1713
+ :type: :boolean
1714
+ :ignore: true
1715
+ - :name: ModifyOptionGroup
1716
+ :method: :modify_option_group
1717
+ :inputs:
1718
+ OptionGroupName:
1719
+ - :string
1720
+ - :required
1721
+ OptionsToInclude:
1722
+ - :membered_list:
1723
+ - :structure:
1724
+ OptionName:
1725
+ - :string
1726
+ - :required
1727
+ Port:
1728
+ - :integer
1729
+ DBSecurityGroupMemberships:
1730
+ - :membered_list:
1731
+ - :string
1732
+ VpcSecurityGroupMemberships:
1733
+ - :membered_list:
1734
+ - :string
1735
+ OptionSettings:
1736
+ - :membered_list:
1737
+ - :structure:
1738
+ Name:
1739
+ - :string
1740
+ Value:
1741
+ - :string
1742
+ DefaultValue:
1743
+ - :string
1744
+ Description:
1745
+ - :string
1746
+ ApplyType:
1747
+ - :string
1748
+ DataType:
1749
+ - :string
1750
+ AllowedValues:
1751
+ - :string
1752
+ IsModifiable:
1753
+ - :boolean
1754
+ IsCollection:
1755
+ - :boolean
1756
+ OptionsToRemove:
1757
+ - :membered_list:
1758
+ - :string
1759
+ ApplyImmediately:
1760
+ - :boolean
1761
+ :outputs:
1762
+ :children:
1763
+ ModifyOptionGroupResult:
1764
+ :ignore: true
1765
+ :children:
1766
+ OptionGroup:
1767
+ :children:
1768
+ Options:
1769
+ :ignore: true
1770
+ :children:
1771
+ Option:
1772
+ :rename: :options
1773
+ :list: true
1774
+ :children:
1775
+ Persistent:
1776
+ :type: :boolean
1777
+ Port:
1778
+ :type: :integer
1779
+ OptionSettings:
1780
+ :ignore: true
1781
+ :children:
1782
+ OptionSetting:
1783
+ :rename: :option_settings
1784
+ :list: true
1785
+ :children:
1786
+ IsModifiable:
1787
+ :type: :boolean
1788
+ IsCollection:
1789
+ :type: :boolean
1790
+ DBSecurityGroupMemberships:
1791
+ :ignore: true
1792
+ :children:
1793
+ DBSecurityGroup:
1794
+ :rename: :db_security_group_memberships
1795
+ :list: true
1796
+ VpcSecurityGroupMemberships:
1797
+ :ignore: true
1798
+ :children:
1799
+ VpcSecurityGroupMembership:
1800
+ :rename: :vpc_security_group_memberships
1801
+ :list: true
1802
+ AllowsVpcAndNonVpcInstanceMemberships:
1803
+ :type: :boolean
1804
+ :ignore: true
1805
+ - :name: PromoteReadReplica
1806
+ :method: :promote_read_replica
1807
+ :inputs:
1808
+ DBInstanceIdentifier:
1809
+ - :string
1810
+ - :required
1811
+ BackupRetentionPeriod:
1812
+ - :integer
1813
+ PreferredBackupWindow:
1814
+ - :string
1815
+ :outputs:
1816
+ :children:
1817
+ PromoteReadReplicaResult:
1818
+ :ignore: true
1819
+ :children:
1820
+ DBInstance:
1821
+ :children:
1822
+ Endpoint:
1823
+ :children:
1824
+ Port:
1825
+ :type: :integer
1826
+ AllocatedStorage:
1827
+ :type: :integer
1828
+ InstanceCreateTime:
1829
+ :type: :time
1830
+ BackupRetentionPeriod:
1831
+ :type: :integer
1832
+ DBSecurityGroups:
1833
+ :ignore: true
1834
+ :children:
1835
+ DBSecurityGroup:
1836
+ :rename: :db_security_groups
1837
+ :list: true
1838
+ VpcSecurityGroups:
1839
+ :ignore: true
1840
+ :children:
1841
+ VpcSecurityGroupMembership:
1842
+ :rename: :vpc_security_groups
1843
+ :list: true
1844
+ DBParameterGroups:
1845
+ :ignore: true
1846
+ :children:
1847
+ DBParameterGroup:
1848
+ :rename: :db_parameter_groups
1849
+ :list: true
1850
+ DBSubnetGroup:
1851
+ :children:
1852
+ Subnets:
1853
+ :ignore: true
1854
+ :children:
1855
+ Subnet:
1856
+ :rename: :subnets
1857
+ :list: true
1858
+ :children:
1859
+ SubnetAvailabilityZone:
1860
+ :children:
1861
+ ProvisionedIopsCapable:
1862
+ :type: :boolean
1863
+ PendingModifiedValues:
1864
+ :children:
1865
+ AllocatedStorage:
1866
+ :type: :integer
1867
+ Port:
1868
+ :type: :integer
1869
+ BackupRetentionPeriod:
1870
+ :type: :integer
1871
+ MultiAZ:
1872
+ :type: :boolean
1873
+ Iops:
1874
+ :type: :integer
1875
+ LatestRestorableTime:
1876
+ :type: :time
1877
+ MultiAZ:
1878
+ :type: :boolean
1879
+ AutoMinorVersionUpgrade:
1880
+ :type: :boolean
1881
+ ReadReplicaDBInstanceIdentifiers:
1882
+ :ignore: true
1883
+ :children:
1884
+ ReadReplicaDBInstanceIdentifier:
1885
+ :rename: :read_replica_db_instance_identifiers
1886
+ :list: true
1887
+ Iops:
1888
+ :type: :integer
1889
+ OptionGroupMemberships:
1890
+ :ignore: true
1891
+ :children:
1892
+ OptionGroupMembership:
1893
+ :rename: :option_group_memberships
1894
+ :list: true
1895
+ PubliclyAccessible:
1896
+ :type: :boolean
1897
+ :ignore: true
1898
+ - :name: PurchaseReservedDBInstancesOffering
1899
+ :method: :purchase_reserved_db_instances_offering
1900
+ :inputs:
1901
+ ReservedDBInstancesOfferingId:
1902
+ - :string
1903
+ - :required
1904
+ ReservedDBInstanceId:
1905
+ - :string
1906
+ DBInstanceCount:
1907
+ - :integer
1908
+ :outputs:
1909
+ :children:
1910
+ PurchaseReservedDBInstancesOfferingResult:
1911
+ :ignore: true
1912
+ :children:
1913
+ ReservedDBInstance:
1914
+ :children:
1915
+ StartTime:
1916
+ :type: :time
1917
+ Duration:
1918
+ :type: :integer
1919
+ FixedPrice:
1920
+ :type: :float
1921
+ UsagePrice:
1922
+ :type: :float
1923
+ DBInstanceCount:
1924
+ :type: :integer
1925
+ MultiAZ:
1926
+ :type: :boolean
1927
+ RecurringCharges:
1928
+ :ignore: true
1929
+ :children:
1930
+ RecurringCharge:
1931
+ :rename: :recurring_charges
1932
+ :list: true
1933
+ :children:
1934
+ RecurringChargeAmount:
1935
+ :type: :float
1936
+ :ignore: true
1937
+ - :name: RebootDBInstance
1938
+ :method: :reboot_db_instance
1939
+ :inputs:
1940
+ DBInstanceIdentifier:
1941
+ - :string
1942
+ - :required
1943
+ ForceFailover:
1944
+ - :boolean
1945
+ :outputs:
1946
+ :children:
1947
+ RebootDBInstanceResult:
1948
+ :ignore: true
1949
+ :children:
1950
+ DBInstance:
1951
+ :children:
1952
+ Endpoint:
1953
+ :children:
1954
+ Port:
1955
+ :type: :integer
1956
+ AllocatedStorage:
1957
+ :type: :integer
1958
+ InstanceCreateTime:
1959
+ :type: :time
1960
+ BackupRetentionPeriod:
1961
+ :type: :integer
1962
+ DBSecurityGroups:
1963
+ :ignore: true
1964
+ :children:
1965
+ DBSecurityGroup:
1966
+ :rename: :db_security_groups
1967
+ :list: true
1968
+ VpcSecurityGroups:
1969
+ :ignore: true
1970
+ :children:
1971
+ VpcSecurityGroupMembership:
1972
+ :rename: :vpc_security_groups
1973
+ :list: true
1974
+ DBParameterGroups:
1975
+ :ignore: true
1976
+ :children:
1977
+ DBParameterGroup:
1978
+ :rename: :db_parameter_groups
1979
+ :list: true
1980
+ DBSubnetGroup:
1981
+ :children:
1982
+ Subnets:
1983
+ :ignore: true
1984
+ :children:
1985
+ Subnet:
1986
+ :rename: :subnets
1987
+ :list: true
1988
+ :children:
1989
+ SubnetAvailabilityZone:
1990
+ :children:
1991
+ ProvisionedIopsCapable:
1992
+ :type: :boolean
1993
+ PendingModifiedValues:
1994
+ :children:
1995
+ AllocatedStorage:
1996
+ :type: :integer
1997
+ Port:
1998
+ :type: :integer
1999
+ BackupRetentionPeriod:
2000
+ :type: :integer
2001
+ MultiAZ:
2002
+ :type: :boolean
2003
+ Iops:
2004
+ :type: :integer
2005
+ LatestRestorableTime:
2006
+ :type: :time
2007
+ MultiAZ:
2008
+ :type: :boolean
2009
+ AutoMinorVersionUpgrade:
2010
+ :type: :boolean
2011
+ ReadReplicaDBInstanceIdentifiers:
2012
+ :ignore: true
2013
+ :children:
2014
+ ReadReplicaDBInstanceIdentifier:
2015
+ :rename: :read_replica_db_instance_identifiers
2016
+ :list: true
2017
+ Iops:
2018
+ :type: :integer
2019
+ OptionGroupMemberships:
2020
+ :ignore: true
2021
+ :children:
2022
+ OptionGroupMembership:
2023
+ :rename: :option_group_memberships
2024
+ :list: true
2025
+ PubliclyAccessible:
2026
+ :type: :boolean
2027
+ :ignore: true
2028
+ - :name: RemoveSourceIdentifierFromSubscription
2029
+ :method: :remove_source_identifier_from_subscription
2030
+ :inputs:
2031
+ SubscriptionName:
2032
+ - :string
2033
+ - :required
2034
+ SourceIdentifier:
2035
+ - :string
2036
+ - :required
2037
+ :outputs:
2038
+ :children:
2039
+ RemoveSourceIdentifierFromSubscriptionResult:
2040
+ :ignore: true
2041
+ :children:
2042
+ EventSubscription:
2043
+ :children:
2044
+ SourceIdsList:
2045
+ :ignore: true
2046
+ :children:
2047
+ SourceId:
2048
+ :rename: :source_ids_list
2049
+ :list: true
2050
+ EventCategoriesList:
2051
+ :ignore: true
2052
+ :children:
2053
+ EventCategory:
2054
+ :rename: :event_categories_list
2055
+ :list: true
2056
+ Enabled:
2057
+ :type: :boolean
2058
+ :ignore: true
2059
+ - :name: RemoveTagsFromResource
2060
+ :method: :remove_tags_from_resource
2061
+ :inputs:
2062
+ ResourceName:
2063
+ - :string
2064
+ - :required
2065
+ TagKeys:
2066
+ - :membered_list:
2067
+ - :string
2068
+ - :required
2069
+ :outputs:
2070
+ :children:
2071
+ RemoveTagsFromResourceResult:
2072
+ :ignore: true
2073
+ - :name: ResetDBParameterGroup
2074
+ :method: :reset_db_parameter_group
2075
+ :inputs:
2076
+ DBParameterGroupName:
2077
+ - :string
2078
+ - :required
2079
+ ResetAllParameters:
2080
+ - :boolean
2081
+ Parameters:
2082
+ - :membered_list:
2083
+ - :structure:
2084
+ ParameterName:
2085
+ - :string
2086
+ ParameterValue:
2087
+ - :string
2088
+ Description:
2089
+ - :string
2090
+ Source:
2091
+ - :string
2092
+ ApplyType:
2093
+ - :string
2094
+ DataType:
2095
+ - :string
2096
+ AllowedValues:
2097
+ - :string
2098
+ IsModifiable:
2099
+ - :boolean
2100
+ MinimumEngineVersion:
2101
+ - :string
2102
+ ApplyMethod:
2103
+ - :string
2104
+ :outputs:
2105
+ :children:
2106
+ ResetDBParameterGroupResult:
2107
+ :ignore: true
2108
+ - :name: RestoreDBInstanceFromDBSnapshot
2109
+ :method: :restore_db_instance_from_db_snapshot
2110
+ :inputs:
2111
+ DBInstanceIdentifier:
2112
+ - :string
2113
+ - :required
2114
+ DBSnapshotIdentifier:
2115
+ - :string
2116
+ - :required
2117
+ DBInstanceClass:
2118
+ - :string
2119
+ Port:
2120
+ - :integer
2121
+ AvailabilityZone:
2122
+ - :string
2123
+ DBSubnetGroupName:
2124
+ - :string
2125
+ MultiAZ:
2126
+ - :boolean
2127
+ PubliclyAccessible:
2128
+ - :boolean
2129
+ AutoMinorVersionUpgrade:
2130
+ - :boolean
2131
+ LicenseModel:
2132
+ - :string
2133
+ DBName:
2134
+ - :string
2135
+ Engine:
2136
+ - :string
2137
+ Iops:
2138
+ - :integer
2139
+ OptionGroupName:
2140
+ - :string
2141
+ :outputs:
2142
+ :children:
2143
+ RestoreDBInstanceFromDBSnapshotResult:
2144
+ :ignore: true
2145
+ :children:
2146
+ DBInstance:
2147
+ :children:
2148
+ Endpoint:
2149
+ :children:
2150
+ Port:
2151
+ :type: :integer
2152
+ AllocatedStorage:
2153
+ :type: :integer
2154
+ InstanceCreateTime:
2155
+ :type: :time
2156
+ BackupRetentionPeriod:
2157
+ :type: :integer
2158
+ DBSecurityGroups:
2159
+ :ignore: true
2160
+ :children:
2161
+ DBSecurityGroup:
2162
+ :rename: :db_security_groups
2163
+ :list: true
2164
+ VpcSecurityGroups:
2165
+ :ignore: true
2166
+ :children:
2167
+ VpcSecurityGroupMembership:
2168
+ :rename: :vpc_security_groups
2169
+ :list: true
2170
+ DBParameterGroups:
2171
+ :ignore: true
2172
+ :children:
2173
+ DBParameterGroup:
2174
+ :rename: :db_parameter_groups
2175
+ :list: true
2176
+ DBSubnetGroup:
2177
+ :children:
2178
+ Subnets:
2179
+ :ignore: true
2180
+ :children:
2181
+ Subnet:
2182
+ :rename: :subnets
2183
+ :list: true
2184
+ :children:
2185
+ SubnetAvailabilityZone:
2186
+ :children:
2187
+ ProvisionedIopsCapable:
2188
+ :type: :boolean
2189
+ PendingModifiedValues:
2190
+ :children:
2191
+ AllocatedStorage:
2192
+ :type: :integer
2193
+ Port:
2194
+ :type: :integer
2195
+ BackupRetentionPeriod:
2196
+ :type: :integer
2197
+ MultiAZ:
2198
+ :type: :boolean
2199
+ Iops:
2200
+ :type: :integer
2201
+ LatestRestorableTime:
2202
+ :type: :time
2203
+ MultiAZ:
2204
+ :type: :boolean
2205
+ AutoMinorVersionUpgrade:
2206
+ :type: :boolean
2207
+ ReadReplicaDBInstanceIdentifiers:
2208
+ :ignore: true
2209
+ :children:
2210
+ ReadReplicaDBInstanceIdentifier:
2211
+ :rename: :read_replica_db_instance_identifiers
2212
+ :list: true
2213
+ Iops:
2214
+ :type: :integer
2215
+ OptionGroupMemberships:
2216
+ :ignore: true
2217
+ :children:
2218
+ OptionGroupMembership:
2219
+ :rename: :option_group_memberships
2220
+ :list: true
2221
+ PubliclyAccessible:
2222
+ :type: :boolean
2223
+ :ignore: true
2224
+ - :name: RestoreDBInstanceToPointInTime
2225
+ :method: :restore_db_instance_to_point_in_time
2226
+ :inputs:
2227
+ SourceDBInstanceIdentifier:
2228
+ - :string
2229
+ - :required
2230
+ TargetDBInstanceIdentifier:
2231
+ - :string
2232
+ - :required
2233
+ RestoreTime:
2234
+ - :timestamp
2235
+ UseLatestRestorableTime:
2236
+ - :boolean
2237
+ DBInstanceClass:
2238
+ - :string
2239
+ Port:
2240
+ - :integer
2241
+ AvailabilityZone:
2242
+ - :string
2243
+ DBSubnetGroupName:
2244
+ - :string
2245
+ MultiAZ:
2246
+ - :boolean
2247
+ PubliclyAccessible:
2248
+ - :boolean
2249
+ AutoMinorVersionUpgrade:
2250
+ - :boolean
2251
+ LicenseModel:
2252
+ - :string
2253
+ DBName:
2254
+ - :string
2255
+ Engine:
2256
+ - :string
2257
+ Iops:
2258
+ - :integer
2259
+ OptionGroupName:
2260
+ - :string
2261
+ :outputs:
2262
+ :children:
2263
+ RestoreDBInstanceToPointInTimeResult:
2264
+ :ignore: true
2265
+ :children:
2266
+ DBInstance:
2267
+ :children:
2268
+ Endpoint:
2269
+ :children:
2270
+ Port:
2271
+ :type: :integer
2272
+ AllocatedStorage:
2273
+ :type: :integer
2274
+ InstanceCreateTime:
2275
+ :type: :time
2276
+ BackupRetentionPeriod:
2277
+ :type: :integer
2278
+ DBSecurityGroups:
2279
+ :ignore: true
2280
+ :children:
2281
+ DBSecurityGroup:
2282
+ :rename: :db_security_groups
2283
+ :list: true
2284
+ VpcSecurityGroups:
2285
+ :ignore: true
2286
+ :children:
2287
+ VpcSecurityGroupMembership:
2288
+ :rename: :vpc_security_groups
2289
+ :list: true
2290
+ DBParameterGroups:
2291
+ :ignore: true
2292
+ :children:
2293
+ DBParameterGroup:
2294
+ :rename: :db_parameter_groups
2295
+ :list: true
2296
+ DBSubnetGroup:
2297
+ :children:
2298
+ Subnets:
2299
+ :ignore: true
2300
+ :children:
2301
+ Subnet:
2302
+ :rename: :subnets
2303
+ :list: true
2304
+ :children:
2305
+ SubnetAvailabilityZone:
2306
+ :children:
2307
+ ProvisionedIopsCapable:
2308
+ :type: :boolean
2309
+ PendingModifiedValues:
2310
+ :children:
2311
+ AllocatedStorage:
2312
+ :type: :integer
2313
+ Port:
2314
+ :type: :integer
2315
+ BackupRetentionPeriod:
2316
+ :type: :integer
2317
+ MultiAZ:
2318
+ :type: :boolean
2319
+ Iops:
2320
+ :type: :integer
2321
+ LatestRestorableTime:
2322
+ :type: :time
2323
+ MultiAZ:
2324
+ :type: :boolean
2325
+ AutoMinorVersionUpgrade:
2326
+ :type: :boolean
2327
+ ReadReplicaDBInstanceIdentifiers:
2328
+ :ignore: true
2329
+ :children:
2330
+ ReadReplicaDBInstanceIdentifier:
2331
+ :rename: :read_replica_db_instance_identifiers
2332
+ :list: true
2333
+ Iops:
2334
+ :type: :integer
2335
+ OptionGroupMemberships:
2336
+ :ignore: true
2337
+ :children:
2338
+ OptionGroupMembership:
2339
+ :rename: :option_group_memberships
2340
+ :list: true
2341
+ PubliclyAccessible:
2342
+ :type: :boolean
2343
+ :ignore: true
2344
+ - :name: RevokeDBSecurityGroupIngress
2345
+ :method: :revoke_db_security_group_ingress
2346
+ :inputs:
2347
+ DBSecurityGroupName:
2348
+ - :string
2349
+ - :required
2350
+ CIDRIP:
2351
+ - :string
2352
+ EC2SecurityGroupName:
2353
+ - :string
2354
+ EC2SecurityGroupId:
2355
+ - :string
2356
+ EC2SecurityGroupOwnerId:
2357
+ - :string
2358
+ :outputs:
2359
+ :children:
2360
+ RevokeDBSecurityGroupIngressResult:
2361
+ :ignore: true
2362
+ :children:
2363
+ DBSecurityGroup:
2364
+ :children:
2365
+ EC2SecurityGroups:
2366
+ :ignore: true
2367
+ :children:
2368
+ EC2SecurityGroup:
2369
+ :rename: :ec2_security_groups
2370
+ :list: true
2371
+ IPRanges:
2372
+ :ignore: true
2373
+ :children:
2374
+ IPRange:
2375
+ :rename: :ip_ranges
2376
+ :list: true
2377
+ :ignore: true