aws-sdk-v1 1.52.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (560) hide show
  1. checksums.yaml +7 -0
  2. data/.yardopts +7 -0
  3. data/LICENSE.txt +12 -0
  4. data/README.md +337 -0
  5. data/bin/aws-rb +179 -0
  6. data/ca-bundle.crt +3554 -0
  7. data/endpoints.json +1671 -0
  8. data/lib/aws-sdk-v1.rb +2 -0
  9. data/lib/aws-sdk.rb +1 -0
  10. data/lib/aws.rb +14 -0
  11. data/lib/aws/api_config/AutoScaling-2011-01-01.yml +1070 -0
  12. data/lib/aws/api_config/CloudFormation-2010-05-15.yml +372 -0
  13. data/lib/aws/api_config/CloudFront-2013-05-12.yml +2448 -0
  14. data/lib/aws/api_config/CloudFront-2013-08-26.yml +2599 -0
  15. data/lib/aws/api_config/CloudFront-2013-09-27.yml +2765 -0
  16. data/lib/aws/api_config/CloudFront-2013-11-11.yml +2886 -0
  17. data/lib/aws/api_config/CloudFront-2013-11-22.yml +2918 -0
  18. data/lib/aws/api_config/CloudFront-2014-01-31.yml +2934 -0
  19. data/lib/aws/api_config/CloudFront-2014-05-31.yml +3100 -0
  20. data/lib/aws/api_config/CloudSearch-2011-02-01.yml +681 -0
  21. data/lib/aws/api_config/CloudSearch-2013-01-01.yml +1164 -0
  22. data/lib/aws/api_config/CloudTrail-2013-11-01.yml +130 -0
  23. data/lib/aws/api_config/CloudWatch-2010-08-01.yml +433 -0
  24. data/lib/aws/api_config/DataPipeline-2012-10-29.yml +422 -0
  25. data/lib/aws/api_config/DirectConnect-2012-10-25.yml +735 -0
  26. data/lib/aws/api_config/DynamoDB-2011-12-05.yml +1168 -0
  27. data/lib/aws/api_config/DynamoDB-2012-08-10.yml +2105 -0
  28. data/lib/aws/api_config/EC2-2013-08-15.yml +4708 -0
  29. data/lib/aws/api_config/EC2-2013-10-01.yml +4726 -0
  30. data/lib/aws/api_config/EC2-2013-10-15.yml +4651 -0
  31. data/lib/aws/api_config/EC2-2014-02-01.yml +4755 -0
  32. data/lib/aws/api_config/EC2-2014-05-01.yml +4812 -0
  33. data/lib/aws/api_config/ELB-2012-06-01.yml +766 -0
  34. data/lib/aws/api_config/EMR-2009-03-31.yml +972 -0
  35. data/lib/aws/api_config/ElastiCache-2013-06-15.yml +1188 -0
  36. data/lib/aws/api_config/ElastiCache-2014-03-24.yml +1375 -0
  37. data/lib/aws/api_config/ElastiCache-2014-07-15.yml +1385 -0
  38. data/lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml +854 -0
  39. data/lib/aws/api_config/ElasticTranscoder-2012-09-25.yml +3082 -0
  40. data/lib/aws/api_config/Glacier-2012-06-01.yml +649 -0
  41. data/lib/aws/api_config/IAM-2010-05-08.yml +1339 -0
  42. data/lib/aws/api_config/ImportExport-2010-06-01.yml +109 -0
  43. data/lib/aws/api_config/Kinesis-2013-12-02.yml +201 -0
  44. data/lib/aws/api_config/OpsWorks-2013-02-18.yml +2025 -0
  45. data/lib/aws/api_config/RDS-2013-05-15.yml +2464 -0
  46. data/lib/aws/api_config/RDS-2013-09-09.yml +2640 -0
  47. data/lib/aws/api_config/Redshift-2012-12-01.yml +2161 -0
  48. data/lib/aws/api_config/Route53-2012-12-12.yml +547 -0
  49. data/lib/aws/api_config/Route53-2013-04-01.yml +889 -0
  50. data/lib/aws/api_config/SNS-2010-03-31.yml +448 -0
  51. data/lib/aws/api_config/SQS-2012-11-05.yml +404 -0
  52. data/lib/aws/api_config/STS-2011-06-15.yml +151 -0
  53. data/lib/aws/api_config/SimpleDB-2009-04-15.yml +306 -0
  54. data/lib/aws/api_config/SimpleEmailService-2010-12-01.yml +346 -0
  55. data/lib/aws/api_config/SimpleWorkflow-2012-01-25.yml +2388 -0
  56. data/lib/aws/api_config/StorageGateway-2012-06-30.yml +748 -0
  57. data/lib/aws/api_config/StorageGateway-2013-06-30.yml +1025 -0
  58. data/lib/aws/api_config/Support-2013-04-15.yml +489 -0
  59. data/lib/aws/auto_scaling.rb +163 -0
  60. data/lib/aws/auto_scaling/activity.rb +102 -0
  61. data/lib/aws/auto_scaling/activity_collection.rb +81 -0
  62. data/lib/aws/auto_scaling/client.rb +48 -0
  63. data/lib/aws/auto_scaling/config.rb +18 -0
  64. data/lib/aws/auto_scaling/errors.rb +22 -0
  65. data/lib/aws/auto_scaling/group.rb +421 -0
  66. data/lib/aws/auto_scaling/group_collection.rb +96 -0
  67. data/lib/aws/auto_scaling/group_options.rb +155 -0
  68. data/lib/aws/auto_scaling/instance.rb +192 -0
  69. data/lib/aws/auto_scaling/instance_collection.rb +63 -0
  70. data/lib/aws/auto_scaling/launch_configuration.rb +162 -0
  71. data/lib/aws/auto_scaling/launch_configuration_collection.rb +160 -0
  72. data/lib/aws/auto_scaling/notification_configuration.rb +89 -0
  73. data/lib/aws/auto_scaling/notification_configuration_collection.rb +183 -0
  74. data/lib/aws/auto_scaling/scaling_policy.rb +142 -0
  75. data/lib/aws/auto_scaling/scaling_policy_collection.rb +72 -0
  76. data/lib/aws/auto_scaling/scaling_policy_options.rb +65 -0
  77. data/lib/aws/auto_scaling/scheduled_action.rb +141 -0
  78. data/lib/aws/auto_scaling/scheduled_action_collection.rb +202 -0
  79. data/lib/aws/auto_scaling/tag.rb +59 -0
  80. data/lib/aws/auto_scaling/tag_collection.rb +114 -0
  81. data/lib/aws/cloud_formation.rb +272 -0
  82. data/lib/aws/cloud_formation/client.rb +48 -0
  83. data/lib/aws/cloud_formation/config.rb +18 -0
  84. data/lib/aws/cloud_formation/errors.rb +22 -0
  85. data/lib/aws/cloud_formation/stack.rb +266 -0
  86. data/lib/aws/cloud_formation/stack_collection.rb +232 -0
  87. data/lib/aws/cloud_formation/stack_event.rb +73 -0
  88. data/lib/aws/cloud_formation/stack_event_collection.rb +47 -0
  89. data/lib/aws/cloud_formation/stack_options.rb +72 -0
  90. data/lib/aws/cloud_formation/stack_output.rb +53 -0
  91. data/lib/aws/cloud_formation/stack_resource.rb +117 -0
  92. data/lib/aws/cloud_formation/stack_resource_collection.rb +83 -0
  93. data/lib/aws/cloud_formation/stack_resource_summary_collection.rb +64 -0
  94. data/lib/aws/cloud_formation/stack_summary_collection.rb +123 -0
  95. data/lib/aws/cloud_front.rb +72 -0
  96. data/lib/aws/cloud_front/client.rb +57 -0
  97. data/lib/aws/cloud_front/config.rb +18 -0
  98. data/lib/aws/cloud_front/errors.rb +22 -0
  99. data/lib/aws/cloud_search.rb +73 -0
  100. data/lib/aws/cloud_search/client.rb +40 -0
  101. data/lib/aws/cloud_search/config.rb +18 -0
  102. data/lib/aws/cloud_search/errors.rb +22 -0
  103. data/lib/aws/cloud_trail.rb +72 -0
  104. data/lib/aws/cloud_trail/client.rb +35 -0
  105. data/lib/aws/cloud_trail/config.rb +18 -0
  106. data/lib/aws/cloud_trail/errors.rb +22 -0
  107. data/lib/aws/cloud_watch.rb +118 -0
  108. data/lib/aws/cloud_watch/alarm.rb +293 -0
  109. data/lib/aws/cloud_watch/alarm_collection.rb +153 -0
  110. data/lib/aws/cloud_watch/alarm_history_item.rb +50 -0
  111. data/lib/aws/cloud_watch/alarm_history_item_collection.rb +84 -0
  112. data/lib/aws/cloud_watch/client.rb +40 -0
  113. data/lib/aws/cloud_watch/config.rb +18 -0
  114. data/lib/aws/cloud_watch/errors.rb +22 -0
  115. data/lib/aws/cloud_watch/metric.rb +135 -0
  116. data/lib/aws/cloud_watch/metric_alarm_collection.rb +160 -0
  117. data/lib/aws/cloud_watch/metric_collection.rb +129 -0
  118. data/lib/aws/cloud_watch/metric_statistics.rb +69 -0
  119. data/lib/aws/core.rb +716 -0
  120. data/lib/aws/core/async_handle.rb +90 -0
  121. data/lib/aws/core/cacheable.rb +77 -0
  122. data/lib/aws/core/client.rb +787 -0
  123. data/lib/aws/core/collection.rb +263 -0
  124. data/lib/aws/core/collection/simple.rb +82 -0
  125. data/lib/aws/core/collection/with_limit_and_next_token.rb +71 -0
  126. data/lib/aws/core/collection/with_next_token.rb +97 -0
  127. data/lib/aws/core/configuration.rb +542 -0
  128. data/lib/aws/core/credential_providers.rb +639 -0
  129. data/lib/aws/core/data.rb +247 -0
  130. data/lib/aws/core/deprecations.rb +84 -0
  131. data/lib/aws/core/endpoints.rb +37 -0
  132. data/lib/aws/core/http/connection_pool.rb +369 -0
  133. data/lib/aws/core/http/curb_handler.rb +148 -0
  134. data/lib/aws/core/http/handler.rb +89 -0
  135. data/lib/aws/core/http/net_http_handler.rb +144 -0
  136. data/lib/aws/core/http/patch.rb +102 -0
  137. data/lib/aws/core/http/request.rb +259 -0
  138. data/lib/aws/core/http/response.rb +81 -0
  139. data/lib/aws/core/indifferent_hash.rb +88 -0
  140. data/lib/aws/core/inflection.rb +56 -0
  141. data/lib/aws/core/ini_parser.rb +42 -0
  142. data/lib/aws/core/json_client.rb +47 -0
  143. data/lib/aws/core/json_parser.rb +76 -0
  144. data/lib/aws/core/json_request_builder.rb +35 -0
  145. data/lib/aws/core/json_response_parser.rb +79 -0
  146. data/lib/aws/core/lazy_error_classes.rb +108 -0
  147. data/lib/aws/core/log_formatter.rb +428 -0
  148. data/lib/aws/core/managed_file.rb +32 -0
  149. data/lib/aws/core/meta_utils.rb +45 -0
  150. data/lib/aws/core/model.rb +62 -0
  151. data/lib/aws/core/naming.rb +30 -0
  152. data/lib/aws/core/option_grammar.rb +738 -0
  153. data/lib/aws/core/options/json_serializer.rb +82 -0
  154. data/lib/aws/core/options/validator.rb +155 -0
  155. data/lib/aws/core/options/xml_serializer.rb +118 -0
  156. data/lib/aws/core/page_result.rb +75 -0
  157. data/lib/aws/core/policy.rb +941 -0
  158. data/lib/aws/core/query_client.rb +41 -0
  159. data/lib/aws/core/query_error_parser.rb +24 -0
  160. data/lib/aws/core/query_request_builder.rb +47 -0
  161. data/lib/aws/core/query_response_parser.rb +35 -0
  162. data/lib/aws/core/region.rb +85 -0
  163. data/lib/aws/core/region_collection.rb +80 -0
  164. data/lib/aws/core/resource.rb +413 -0
  165. data/lib/aws/core/resource_cache.rb +40 -0
  166. data/lib/aws/core/response.rb +215 -0
  167. data/lib/aws/core/response_cache.rb +50 -0
  168. data/lib/aws/core/rest_error_parser.rb +24 -0
  169. data/lib/aws/core/rest_json_client.rb +40 -0
  170. data/lib/aws/core/rest_request_builder.rb +154 -0
  171. data/lib/aws/core/rest_response_parser.rb +66 -0
  172. data/lib/aws/core/rest_xml_client.rb +47 -0
  173. data/lib/aws/core/service_interface.rb +83 -0
  174. data/lib/aws/core/signers/base.rb +46 -0
  175. data/lib/aws/core/signers/cloud_front.rb +56 -0
  176. data/lib/aws/core/signers/s3.rb +159 -0
  177. data/lib/aws/core/signers/version_2.rb +72 -0
  178. data/lib/aws/core/signers/version_3.rb +86 -0
  179. data/lib/aws/core/signers/version_3_https.rb +61 -0
  180. data/lib/aws/core/signers/version_4.rb +228 -0
  181. data/lib/aws/core/signers/version_4/chunk_signed_stream.rb +191 -0
  182. data/lib/aws/core/uri_escape.rb +44 -0
  183. data/lib/aws/core/xml/frame.rb +245 -0
  184. data/lib/aws/core/xml/frame_stack.rb +85 -0
  185. data/lib/aws/core/xml/grammar.rb +307 -0
  186. data/lib/aws/core/xml/parser.rb +70 -0
  187. data/lib/aws/core/xml/root_frame.rb +65 -0
  188. data/lib/aws/core/xml/sax_handlers/libxml.rb +47 -0
  189. data/lib/aws/core/xml/sax_handlers/nokogiri.rb +56 -0
  190. data/lib/aws/core/xml/sax_handlers/ox.rb +41 -0
  191. data/lib/aws/core/xml/sax_handlers/rexml.rb +47 -0
  192. data/lib/aws/core/xml/stub.rb +123 -0
  193. data/lib/aws/data_pipeline.rb +72 -0
  194. data/lib/aws/data_pipeline/client.rb +36 -0
  195. data/lib/aws/data_pipeline/config.rb +18 -0
  196. data/lib/aws/data_pipeline/errors.rb +20 -0
  197. data/lib/aws/direct_connect.rb +73 -0
  198. data/lib/aws/direct_connect/client.rb +36 -0
  199. data/lib/aws/direct_connect/config.rb +18 -0
  200. data/lib/aws/direct_connect/errors.rb +22 -0
  201. data/lib/aws/dynamo_db.rb +230 -0
  202. data/lib/aws/dynamo_db/attribute_collection.rb +456 -0
  203. data/lib/aws/dynamo_db/batch_get.rb +213 -0
  204. data/lib/aws/dynamo_db/batch_write.rb +254 -0
  205. data/lib/aws/dynamo_db/binary.rb +35 -0
  206. data/lib/aws/dynamo_db/client.rb +129 -0
  207. data/lib/aws/dynamo_db/client/v20111205.rb +1266 -0
  208. data/lib/aws/dynamo_db/client/v20120810.rb +1409 -0
  209. data/lib/aws/dynamo_db/client_v2.rb +44 -0
  210. data/lib/aws/dynamo_db/config.rb +24 -0
  211. data/lib/aws/dynamo_db/errors.rb +20 -0
  212. data/lib/aws/dynamo_db/expectations.rb +40 -0
  213. data/lib/aws/dynamo_db/item.rb +133 -0
  214. data/lib/aws/dynamo_db/item_collection.rb +856 -0
  215. data/lib/aws/dynamo_db/item_data.rb +31 -0
  216. data/lib/aws/dynamo_db/keys.rb +41 -0
  217. data/lib/aws/dynamo_db/primary_key_element.rb +48 -0
  218. data/lib/aws/dynamo_db/resource.rb +33 -0
  219. data/lib/aws/dynamo_db/table.rb +492 -0
  220. data/lib/aws/dynamo_db/table_collection.rb +165 -0
  221. data/lib/aws/dynamo_db/types.rb +111 -0
  222. data/lib/aws/ec2.rb +428 -0
  223. data/lib/aws/ec2/attachment.rb +135 -0
  224. data/lib/aws/ec2/attachment_collection.rb +54 -0
  225. data/lib/aws/ec2/availability_zone.rb +86 -0
  226. data/lib/aws/ec2/availability_zone_collection.rb +43 -0
  227. data/lib/aws/ec2/block_device_mappings.rb +53 -0
  228. data/lib/aws/ec2/client.rb +154 -0
  229. data/lib/aws/ec2/collection.rb +36 -0
  230. data/lib/aws/ec2/config.rb +21 -0
  231. data/lib/aws/ec2/customer_gateway.rb +90 -0
  232. data/lib/aws/ec2/customer_gateway_collection.rb +73 -0
  233. data/lib/aws/ec2/dhcp_options.rb +106 -0
  234. data/lib/aws/ec2/dhcp_options_collection.rb +87 -0
  235. data/lib/aws/ec2/elastic_ip.rb +209 -0
  236. data/lib/aws/ec2/elastic_ip_collection.rb +93 -0
  237. data/lib/aws/ec2/errors.rb +32 -0
  238. data/lib/aws/ec2/export_task.rb +120 -0
  239. data/lib/aws/ec2/export_task_collection.rb +67 -0
  240. data/lib/aws/ec2/filtered_collection.rb +87 -0
  241. data/lib/aws/ec2/has_permissions.rb +44 -0
  242. data/lib/aws/ec2/image.rb +270 -0
  243. data/lib/aws/ec2/image_collection.rb +219 -0
  244. data/lib/aws/ec2/instance.rb +803 -0
  245. data/lib/aws/ec2/instance_collection.rb +402 -0
  246. data/lib/aws/ec2/internet_gateway.rb +122 -0
  247. data/lib/aws/ec2/internet_gateway/attachment.rb +78 -0
  248. data/lib/aws/ec2/internet_gateway_collection.rb +54 -0
  249. data/lib/aws/ec2/key_pair.rb +82 -0
  250. data/lib/aws/ec2/key_pair_collection.rb +99 -0
  251. data/lib/aws/ec2/network_acl.rb +256 -0
  252. data/lib/aws/ec2/network_acl/association.rb +56 -0
  253. data/lib/aws/ec2/network_acl/entry.rb +147 -0
  254. data/lib/aws/ec2/network_acl_collection.rb +64 -0
  255. data/lib/aws/ec2/network_interface.rb +237 -0
  256. data/lib/aws/ec2/network_interface/attachment.rb +100 -0
  257. data/lib/aws/ec2/network_interface_collection.rb +103 -0
  258. data/lib/aws/ec2/permission_collection.rb +174 -0
  259. data/lib/aws/ec2/region.rb +106 -0
  260. data/lib/aws/ec2/region_collection.rb +51 -0
  261. data/lib/aws/ec2/reserved_instances.rb +57 -0
  262. data/lib/aws/ec2/reserved_instances_collection.rb +40 -0
  263. data/lib/aws/ec2/reserved_instances_offering.rb +60 -0
  264. data/lib/aws/ec2/reserved_instances_offering_collection.rb +45 -0
  265. data/lib/aws/ec2/resource.rb +161 -0
  266. data/lib/aws/ec2/resource_tag_collection.rb +211 -0
  267. data/lib/aws/ec2/route_table.rb +205 -0
  268. data/lib/aws/ec2/route_table/association.rb +119 -0
  269. data/lib/aws/ec2/route_table/route.rb +119 -0
  270. data/lib/aws/ec2/route_table_collection.rb +72 -0
  271. data/lib/aws/ec2/security_group.rb +482 -0
  272. data/lib/aws/ec2/security_group/ip_permission.rb +135 -0
  273. data/lib/aws/ec2/security_group/ip_permission_collection.rb +82 -0
  274. data/lib/aws/ec2/security_group_collection.rb +133 -0
  275. data/lib/aws/ec2/snapshot.rb +143 -0
  276. data/lib/aws/ec2/snapshot_collection.rb +131 -0
  277. data/lib/aws/ec2/subnet.rb +161 -0
  278. data/lib/aws/ec2/subnet_collection.rb +119 -0
  279. data/lib/aws/ec2/tag.rb +81 -0
  280. data/lib/aws/ec2/tag_collection.rb +107 -0
  281. data/lib/aws/ec2/tagged_collection.rb +67 -0
  282. data/lib/aws/ec2/tagged_item.rb +85 -0
  283. data/lib/aws/ec2/volume.rb +185 -0
  284. data/lib/aws/ec2/volume_collection.rb +102 -0
  285. data/lib/aws/ec2/vpc.rb +174 -0
  286. data/lib/aws/ec2/vpc_collection.rb +70 -0
  287. data/lib/aws/ec2/vpn_connection.rb +99 -0
  288. data/lib/aws/ec2/vpn_connection/telemetry.rb +49 -0
  289. data/lib/aws/ec2/vpn_connection_collection.rb +96 -0
  290. data/lib/aws/ec2/vpn_gateway.rb +123 -0
  291. data/lib/aws/ec2/vpn_gateway/attachment.rb +45 -0
  292. data/lib/aws/ec2/vpn_gateway_collection.rb +77 -0
  293. data/lib/aws/elastic_beanstalk.rb +49 -0
  294. data/lib/aws/elastic_beanstalk/client.rb +36 -0
  295. data/lib/aws/elastic_beanstalk/config.rb +18 -0
  296. data/lib/aws/elastic_beanstalk/errors.rb +22 -0
  297. data/lib/aws/elastic_transcoder.rb +29 -0
  298. data/lib/aws/elastic_transcoder/client.rb +48 -0
  299. data/lib/aws/elastic_transcoder/config.rb +18 -0
  300. data/lib/aws/elastic_transcoder/errors.rb +23 -0
  301. data/lib/aws/elasticache.rb +49 -0
  302. data/lib/aws/elasticache/client.rb +41 -0
  303. data/lib/aws/elasticache/config.rb +18 -0
  304. data/lib/aws/elasticache/errors.rb +22 -0
  305. data/lib/aws/elb.rb +66 -0
  306. data/lib/aws/elb/availability_zone_collection.rb +138 -0
  307. data/lib/aws/elb/backend_server_policy_collection.rb +139 -0
  308. data/lib/aws/elb/client.rb +35 -0
  309. data/lib/aws/elb/config.rb +18 -0
  310. data/lib/aws/elb/errors.rb +26 -0
  311. data/lib/aws/elb/instance_collection.rb +168 -0
  312. data/lib/aws/elb/listener.rb +190 -0
  313. data/lib/aws/elb/listener_collection.rb +113 -0
  314. data/lib/aws/elb/listener_opts.rb +45 -0
  315. data/lib/aws/elb/load_balancer.rb +280 -0
  316. data/lib/aws/elb/load_balancer_collection.rb +146 -0
  317. data/lib/aws/elb/load_balancer_policy.rb +93 -0
  318. data/lib/aws/elb/load_balancer_policy_collection.rb +208 -0
  319. data/lib/aws/emr.rb +87 -0
  320. data/lib/aws/emr/client.rb +35 -0
  321. data/lib/aws/emr/config.rb +18 -0
  322. data/lib/aws/emr/errors.rb +22 -0
  323. data/lib/aws/emr/instance_group.rb +138 -0
  324. data/lib/aws/emr/instance_group_collection.rb +82 -0
  325. data/lib/aws/emr/job_flow.rb +307 -0
  326. data/lib/aws/emr/job_flow_collection.rb +183 -0
  327. data/lib/aws/errors.rb +162 -0
  328. data/lib/aws/glacier.rb +79 -0
  329. data/lib/aws/glacier/archive.rb +56 -0
  330. data/lib/aws/glacier/archive_collection.rb +146 -0
  331. data/lib/aws/glacier/client.rb +49 -0
  332. data/lib/aws/glacier/config.rb +19 -0
  333. data/lib/aws/glacier/errors.rb +22 -0
  334. data/lib/aws/glacier/resource.rb +30 -0
  335. data/lib/aws/glacier/vault.rb +145 -0
  336. data/lib/aws/glacier/vault_collection.rb +75 -0
  337. data/lib/aws/glacier/vault_notification_configuration.rb +29 -0
  338. data/lib/aws/iam.rb +408 -0
  339. data/lib/aws/iam/access_key.rb +185 -0
  340. data/lib/aws/iam/access_key_collection.rb +128 -0
  341. data/lib/aws/iam/account_alias_collection.rb +79 -0
  342. data/lib/aws/iam/client.rb +49 -0
  343. data/lib/aws/iam/collection.rb +83 -0
  344. data/lib/aws/iam/config.rb +18 -0
  345. data/lib/aws/iam/errors.rb +22 -0
  346. data/lib/aws/iam/group.rb +111 -0
  347. data/lib/aws/iam/group_collection.rb +132 -0
  348. data/lib/aws/iam/group_policy_collection.rb +47 -0
  349. data/lib/aws/iam/group_user_collection.rb +84 -0
  350. data/lib/aws/iam/login_profile.rb +111 -0
  351. data/lib/aws/iam/mfa_device.rb +52 -0
  352. data/lib/aws/iam/mfa_device_collection.rb +127 -0
  353. data/lib/aws/iam/policy.rb +46 -0
  354. data/lib/aws/iam/policy_collection.rb +188 -0
  355. data/lib/aws/iam/resource.rb +62 -0
  356. data/lib/aws/iam/server_certificate.rb +148 -0
  357. data/lib/aws/iam/server_certificate_collection.rb +138 -0
  358. data/lib/aws/iam/signing_certificate.rb +186 -0
  359. data/lib/aws/iam/signing_certificate_collection.rb +131 -0
  360. data/lib/aws/iam/user.rb +200 -0
  361. data/lib/aws/iam/user_collection.rb +133 -0
  362. data/lib/aws/iam/user_group_collection.rb +98 -0
  363. data/lib/aws/iam/user_policy.rb +90 -0
  364. data/lib/aws/iam/user_policy_collection.rb +45 -0
  365. data/lib/aws/iam/virtual_mfa_device.rb +139 -0
  366. data/lib/aws/iam/virtual_mfa_device_collection.rb +73 -0
  367. data/lib/aws/import_export.rb +73 -0
  368. data/lib/aws/import_export/client.rb +35 -0
  369. data/lib/aws/import_export/config.rb +19 -0
  370. data/lib/aws/import_export/errors.rb +22 -0
  371. data/lib/aws/kinesis.rb +53 -0
  372. data/lib/aws/kinesis/client.rb +35 -0
  373. data/lib/aws/kinesis/config.rb +18 -0
  374. data/lib/aws/kinesis/errors.rb +20 -0
  375. data/lib/aws/ops_works.rb +29 -0
  376. data/lib/aws/ops_works/client.rb +35 -0
  377. data/lib/aws/ops_works/config.rb +18 -0
  378. data/lib/aws/ops_works/errors.rb +20 -0
  379. data/lib/aws/rails.rb +195 -0
  380. data/lib/aws/rds.rb +70 -0
  381. data/lib/aws/rds/client.rb +42 -0
  382. data/lib/aws/rds/config.rb +18 -0
  383. data/lib/aws/rds/db_instance.rb +215 -0
  384. data/lib/aws/rds/db_instance_collection.rb +75 -0
  385. data/lib/aws/rds/db_snapshot.rb +163 -0
  386. data/lib/aws/rds/db_snapshot_collection.rb +89 -0
  387. data/lib/aws/rds/errors.rb +22 -0
  388. data/lib/aws/record.rb +139 -0
  389. data/lib/aws/record/abstract_base.rb +689 -0
  390. data/lib/aws/record/attributes.rb +388 -0
  391. data/lib/aws/record/conversion.rb +38 -0
  392. data/lib/aws/record/dirty_tracking.rb +287 -0
  393. data/lib/aws/record/errors.rb +143 -0
  394. data/lib/aws/record/exceptions.rb +51 -0
  395. data/lib/aws/record/hash_model.rb +204 -0
  396. data/lib/aws/record/hash_model/attributes.rb +195 -0
  397. data/lib/aws/record/hash_model/finder_methods.rb +172 -0
  398. data/lib/aws/record/hash_model/scope.rb +108 -0
  399. data/lib/aws/record/model.rb +453 -0
  400. data/lib/aws/record/model/attributes.rb +377 -0
  401. data/lib/aws/record/model/finder_methods.rb +232 -0
  402. data/lib/aws/record/model/scope.rb +212 -0
  403. data/lib/aws/record/naming.rb +31 -0
  404. data/lib/aws/record/scope.rb +203 -0
  405. data/lib/aws/record/validations.rb +694 -0
  406. data/lib/aws/record/validator.rb +246 -0
  407. data/lib/aws/record/validators/acceptance.rb +49 -0
  408. data/lib/aws/record/validators/block.rb +36 -0
  409. data/lib/aws/record/validators/confirmation.rb +41 -0
  410. data/lib/aws/record/validators/count.rb +106 -0
  411. data/lib/aws/record/validators/exclusion.rb +41 -0
  412. data/lib/aws/record/validators/format.rb +55 -0
  413. data/lib/aws/record/validators/inclusion.rb +54 -0
  414. data/lib/aws/record/validators/length.rb +105 -0
  415. data/lib/aws/record/validators/method.rb +31 -0
  416. data/lib/aws/record/validators/numericality.rb +136 -0
  417. data/lib/aws/record/validators/presence.rb +43 -0
  418. data/lib/aws/redshift.rb +51 -0
  419. data/lib/aws/redshift/client.rb +35 -0
  420. data/lib/aws/redshift/config.rb +18 -0
  421. data/lib/aws/redshift/errors.rb +22 -0
  422. data/lib/aws/route_53.rb +86 -0
  423. data/lib/aws/route_53/change_batch.rb +161 -0
  424. data/lib/aws/route_53/change_info.rb +72 -0
  425. data/lib/aws/route_53/client.rb +38 -0
  426. data/lib/aws/route_53/config.rb +18 -0
  427. data/lib/aws/route_53/errors.rb +22 -0
  428. data/lib/aws/route_53/hosted_zone.rb +134 -0
  429. data/lib/aws/route_53/hosted_zone_collection.rb +101 -0
  430. data/lib/aws/route_53/resource_record_set.rb +251 -0
  431. data/lib/aws/route_53/resource_record_set_collection.rb +110 -0
  432. data/lib/aws/s3.rb +156 -0
  433. data/lib/aws/s3/access_control_list.rb +265 -0
  434. data/lib/aws/s3/acl_object.rb +264 -0
  435. data/lib/aws/s3/acl_options.rb +204 -0
  436. data/lib/aws/s3/bucket.rb +742 -0
  437. data/lib/aws/s3/bucket_collection.rb +162 -0
  438. data/lib/aws/s3/bucket_lifecycle_configuration.rb +473 -0
  439. data/lib/aws/s3/bucket_tag_collection.rb +111 -0
  440. data/lib/aws/s3/bucket_version_collection.rb +79 -0
  441. data/lib/aws/s3/cipher_io.rb +120 -0
  442. data/lib/aws/s3/client.rb +2067 -0
  443. data/lib/aws/s3/client/xml.rb +266 -0
  444. data/lib/aws/s3/config.rb +48 -0
  445. data/lib/aws/s3/cors_rule.rb +108 -0
  446. data/lib/aws/s3/cors_rule_collection.rb +194 -0
  447. data/lib/aws/s3/data_options.rb +191 -0
  448. data/lib/aws/s3/encryption_utils.rb +146 -0
  449. data/lib/aws/s3/errors.rb +94 -0
  450. data/lib/aws/s3/multipart_upload.rb +353 -0
  451. data/lib/aws/s3/multipart_upload_collection.rb +76 -0
  452. data/lib/aws/s3/object_collection.rb +353 -0
  453. data/lib/aws/s3/object_metadata.rb +103 -0
  454. data/lib/aws/s3/object_upload_collection.rb +77 -0
  455. data/lib/aws/s3/object_version.rb +154 -0
  456. data/lib/aws/s3/object_version_collection.rb +89 -0
  457. data/lib/aws/s3/paginated_collection.rb +75 -0
  458. data/lib/aws/s3/policy.rb +74 -0
  459. data/lib/aws/s3/prefix_and_delimiter_collection.rb +47 -0
  460. data/lib/aws/s3/prefixed_collection.rb +85 -0
  461. data/lib/aws/s3/presign_v4.rb +136 -0
  462. data/lib/aws/s3/presigned_post.rb +554 -0
  463. data/lib/aws/s3/request.rb +62 -0
  464. data/lib/aws/s3/s3_object.rb +1784 -0
  465. data/lib/aws/s3/tree.rb +116 -0
  466. data/lib/aws/s3/tree/branch_node.rb +68 -0
  467. data/lib/aws/s3/tree/child_collection.rb +104 -0
  468. data/lib/aws/s3/tree/leaf_node.rb +94 -0
  469. data/lib/aws/s3/tree/node.rb +22 -0
  470. data/lib/aws/s3/tree/parent.rb +87 -0
  471. data/lib/aws/s3/uploaded_part.rb +82 -0
  472. data/lib/aws/s3/uploaded_part_collection.rb +84 -0
  473. data/lib/aws/s3/website_configuration.rb +102 -0
  474. data/lib/aws/simple_db.rb +218 -0
  475. data/lib/aws/simple_db/attribute.rb +156 -0
  476. data/lib/aws/simple_db/attribute_collection.rb +240 -0
  477. data/lib/aws/simple_db/client.rb +67 -0
  478. data/lib/aws/simple_db/config.rb +20 -0
  479. data/lib/aws/simple_db/consistent_read_option.rb +42 -0
  480. data/lib/aws/simple_db/delete_attributes.rb +62 -0
  481. data/lib/aws/simple_db/domain.rb +123 -0
  482. data/lib/aws/simple_db/domain_collection.rb +86 -0
  483. data/lib/aws/simple_db/domain_metadata.rb +110 -0
  484. data/lib/aws/simple_db/errors.rb +55 -0
  485. data/lib/aws/simple_db/expect_condition_option.rb +45 -0
  486. data/lib/aws/simple_db/item.rb +93 -0
  487. data/lib/aws/simple_db/item_collection.rb +654 -0
  488. data/lib/aws/simple_db/item_data.rb +73 -0
  489. data/lib/aws/simple_db/put_attributes.rb +60 -0
  490. data/lib/aws/simple_email_service.rb +443 -0
  491. data/lib/aws/simple_email_service/client.rb +37 -0
  492. data/lib/aws/simple_email_service/config.rb +18 -0
  493. data/lib/aws/simple_email_service/email_address_collection.rb +69 -0
  494. data/lib/aws/simple_email_service/errors.rb +22 -0
  495. data/lib/aws/simple_email_service/identity.rb +230 -0
  496. data/lib/aws/simple_email_service/identity_collection.rb +81 -0
  497. data/lib/aws/simple_email_service/quotas.rb +66 -0
  498. data/lib/aws/simple_workflow.rb +227 -0
  499. data/lib/aws/simple_workflow/activity_task.rb +178 -0
  500. data/lib/aws/simple_workflow/activity_task_collection.rb +123 -0
  501. data/lib/aws/simple_workflow/activity_type.rb +131 -0
  502. data/lib/aws/simple_workflow/activity_type_collection.rb +93 -0
  503. data/lib/aws/simple_workflow/client.rb +69 -0
  504. data/lib/aws/simple_workflow/config.rb +18 -0
  505. data/lib/aws/simple_workflow/count.rb +49 -0
  506. data/lib/aws/simple_workflow/decision_task.rb +603 -0
  507. data/lib/aws/simple_workflow/decision_task_collection.rb +223 -0
  508. data/lib/aws/simple_workflow/domain.rb +122 -0
  509. data/lib/aws/simple_workflow/domain_collection.rb +169 -0
  510. data/lib/aws/simple_workflow/errors.rb +20 -0
  511. data/lib/aws/simple_workflow/history_event.rb +276 -0
  512. data/lib/aws/simple_workflow/history_event_collection.rb +76 -0
  513. data/lib/aws/simple_workflow/option_formatters.rb +82 -0
  514. data/lib/aws/simple_workflow/resource.rb +94 -0
  515. data/lib/aws/simple_workflow/type.rb +89 -0
  516. data/lib/aws/simple_workflow/type_collection.rb +140 -0
  517. data/lib/aws/simple_workflow/workflow_execution.rb +384 -0
  518. data/lib/aws/simple_workflow/workflow_execution_collection.rb +617 -0
  519. data/lib/aws/simple_workflow/workflow_type.rb +177 -0
  520. data/lib/aws/simple_workflow/workflow_type_collection.rb +91 -0
  521. data/lib/aws/sns.rb +76 -0
  522. data/lib/aws/sns/client.rb +35 -0
  523. data/lib/aws/sns/config.rb +18 -0
  524. data/lib/aws/sns/errors.rb +22 -0
  525. data/lib/aws/sns/has_delivery_policy.rb +68 -0
  526. data/lib/aws/sns/message.rb +204 -0
  527. data/lib/aws/sns/originators/from_auto_scaling.rb +68 -0
  528. data/lib/aws/sns/policy.rb +47 -0
  529. data/lib/aws/sns/subscription.rb +165 -0
  530. data/lib/aws/sns/subscription_collection.rb +78 -0
  531. data/lib/aws/sns/topic.rb +403 -0
  532. data/lib/aws/sns/topic_collection.rb +62 -0
  533. data/lib/aws/sns/topic_subscription_collection.rb +54 -0
  534. data/lib/aws/sqs.rb +80 -0
  535. data/lib/aws/sqs/client.rb +53 -0
  536. data/lib/aws/sqs/config.rb +20 -0
  537. data/lib/aws/sqs/errors.rb +125 -0
  538. data/lib/aws/sqs/policy.rb +48 -0
  539. data/lib/aws/sqs/queue.rb +856 -0
  540. data/lib/aws/sqs/queue_collection.rb +186 -0
  541. data/lib/aws/sqs/received_message.rb +190 -0
  542. data/lib/aws/sqs/received_sns_message.rb +116 -0
  543. data/lib/aws/storage_gateway.rb +72 -0
  544. data/lib/aws/storage_gateway/client.rb +42 -0
  545. data/lib/aws/storage_gateway/config.rb +18 -0
  546. data/lib/aws/storage_gateway/errors.rb +22 -0
  547. data/lib/aws/sts.rb +164 -0
  548. data/lib/aws/sts/client.rb +55 -0
  549. data/lib/aws/sts/config.rb +18 -0
  550. data/lib/aws/sts/errors.rb +22 -0
  551. data/lib/aws/sts/federated_session.rb +56 -0
  552. data/lib/aws/sts/policy.rb +30 -0
  553. data/lib/aws/sts/session.rb +48 -0
  554. data/lib/aws/support.rb +29 -0
  555. data/lib/aws/support/client.rb +35 -0
  556. data/lib/aws/support/config.rb +18 -0
  557. data/lib/aws/support/errors.rb +20 -0
  558. data/lib/aws/version.rb +17 -0
  559. data/rails/init.rb +15 -0
  560. metadata +634 -0
@@ -0,0 +1,2161 @@
1
+ # Copyright 2011-2014 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: '2012-12-01'
16
+ :operations:
17
+ - :name: AuthorizeClusterSecurityGroupIngress
18
+ :method: :authorize_cluster_security_group_ingress
19
+ :inputs:
20
+ ClusterSecurityGroupName:
21
+ - :string
22
+ - :required
23
+ CIDRIP:
24
+ - :string
25
+ EC2SecurityGroupName:
26
+ - :string
27
+ EC2SecurityGroupOwnerId:
28
+ - :string
29
+ :outputs:
30
+ :children:
31
+ AuthorizeClusterSecurityGroupIngressResult:
32
+ :ignore: true
33
+ :children:
34
+ ClusterSecurityGroup:
35
+ :children:
36
+ EC2SecurityGroups:
37
+ :ignore: true
38
+ :children:
39
+ EC2SecurityGroup:
40
+ :rename: :ec2_security_groups
41
+ :list: true
42
+ IPRanges:
43
+ :ignore: true
44
+ :children:
45
+ IPRange:
46
+ :rename: :ip_ranges
47
+ :list: true
48
+ :ignore: true
49
+ - :name: AuthorizeSnapshotAccess
50
+ :method: :authorize_snapshot_access
51
+ :inputs:
52
+ SnapshotIdentifier:
53
+ - :string
54
+ - :required
55
+ SnapshotClusterIdentifier:
56
+ - :string
57
+ AccountWithRestoreAccess:
58
+ - :string
59
+ - :required
60
+ :outputs:
61
+ :children:
62
+ AuthorizeSnapshotAccessResult:
63
+ :ignore: true
64
+ :children:
65
+ Snapshot:
66
+ :children:
67
+ SnapshotCreateTime:
68
+ :type: :time
69
+ Port:
70
+ :type: :integer
71
+ ClusterCreateTime:
72
+ :type: :time
73
+ NumberOfNodes:
74
+ :type: :integer
75
+ Encrypted:
76
+ :type: :boolean
77
+ EncryptedWithHSM:
78
+ :type: :boolean
79
+ AccountsWithRestoreAccess:
80
+ :ignore: true
81
+ :children:
82
+ AccountWithRestoreAccess:
83
+ :rename: :accounts_with_restore_access
84
+ :list: true
85
+ TotalBackupSizeInMegaBytes:
86
+ :type: :float
87
+ ActualIncrementalBackupSizeInMegaBytes:
88
+ :type: :float
89
+ BackupProgressInMegaBytes:
90
+ :type: :float
91
+ CurrentBackupRateInMegaBytesPerSecond:
92
+ :type: :float
93
+ EstimatedSecondsToCompletion:
94
+ :type: :integer
95
+ ElapsedTimeInSeconds:
96
+ :type: :integer
97
+ :ignore: true
98
+ - :name: CopyClusterSnapshot
99
+ :method: :copy_cluster_snapshot
100
+ :inputs:
101
+ SourceSnapshotIdentifier:
102
+ - :string
103
+ - :required
104
+ SourceSnapshotClusterIdentifier:
105
+ - :string
106
+ TargetSnapshotIdentifier:
107
+ - :string
108
+ - :required
109
+ :outputs:
110
+ :children:
111
+ CopyClusterSnapshotResult:
112
+ :ignore: true
113
+ :children:
114
+ Snapshot:
115
+ :children:
116
+ SnapshotCreateTime:
117
+ :type: :time
118
+ Port:
119
+ :type: :integer
120
+ ClusterCreateTime:
121
+ :type: :time
122
+ NumberOfNodes:
123
+ :type: :integer
124
+ Encrypted:
125
+ :type: :boolean
126
+ EncryptedWithHSM:
127
+ :type: :boolean
128
+ AccountsWithRestoreAccess:
129
+ :ignore: true
130
+ :children:
131
+ AccountWithRestoreAccess:
132
+ :rename: :accounts_with_restore_access
133
+ :list: true
134
+ TotalBackupSizeInMegaBytes:
135
+ :type: :float
136
+ ActualIncrementalBackupSizeInMegaBytes:
137
+ :type: :float
138
+ BackupProgressInMegaBytes:
139
+ :type: :float
140
+ CurrentBackupRateInMegaBytesPerSecond:
141
+ :type: :float
142
+ EstimatedSecondsToCompletion:
143
+ :type: :integer
144
+ ElapsedTimeInSeconds:
145
+ :type: :integer
146
+ :ignore: true
147
+ - :name: CreateCluster
148
+ :method: :create_cluster
149
+ :inputs:
150
+ DBName:
151
+ - :string
152
+ ClusterIdentifier:
153
+ - :string
154
+ - :required
155
+ ClusterType:
156
+ - :string
157
+ NodeType:
158
+ - :string
159
+ - :required
160
+ MasterUsername:
161
+ - :string
162
+ - :required
163
+ MasterUserPassword:
164
+ - :string
165
+ - :required
166
+ ClusterSecurityGroups:
167
+ - :membered_list:
168
+ - :string
169
+ VpcSecurityGroupIds:
170
+ - :membered_list:
171
+ - :string
172
+ ClusterSubnetGroupName:
173
+ - :string
174
+ AvailabilityZone:
175
+ - :string
176
+ PreferredMaintenanceWindow:
177
+ - :string
178
+ ClusterParameterGroupName:
179
+ - :string
180
+ AutomatedSnapshotRetentionPeriod:
181
+ - :integer
182
+ Port:
183
+ - :integer
184
+ ClusterVersion:
185
+ - :string
186
+ AllowVersionUpgrade:
187
+ - :boolean
188
+ NumberOfNodes:
189
+ - :integer
190
+ PubliclyAccessible:
191
+ - :boolean
192
+ Encrypted:
193
+ - :boolean
194
+ HsmClientCertificateIdentifier:
195
+ - :string
196
+ HsmConfigurationIdentifier:
197
+ - :string
198
+ ElasticIp:
199
+ - :string
200
+ :outputs:
201
+ :children:
202
+ CreateClusterResult:
203
+ :ignore: true
204
+ :children:
205
+ Cluster:
206
+ :children:
207
+ Endpoint:
208
+ :children:
209
+ Port:
210
+ :type: :integer
211
+ ClusterCreateTime:
212
+ :type: :time
213
+ AutomatedSnapshotRetentionPeriod:
214
+ :type: :integer
215
+ ClusterSecurityGroups:
216
+ :ignore: true
217
+ :children:
218
+ ClusterSecurityGroup:
219
+ :rename: :cluster_security_groups
220
+ :list: true
221
+ VpcSecurityGroups:
222
+ :ignore: true
223
+ :children:
224
+ VpcSecurityGroup:
225
+ :rename: :vpc_security_groups
226
+ :list: true
227
+ ClusterParameterGroups:
228
+ :ignore: true
229
+ :children:
230
+ ClusterParameterGroup:
231
+ :rename: :cluster_parameter_groups
232
+ :list: true
233
+ PendingModifiedValues:
234
+ :children:
235
+ NumberOfNodes:
236
+ :type: :integer
237
+ AutomatedSnapshotRetentionPeriod:
238
+ :type: :integer
239
+ AllowVersionUpgrade:
240
+ :type: :boolean
241
+ NumberOfNodes:
242
+ :type: :integer
243
+ PubliclyAccessible:
244
+ :type: :boolean
245
+ Encrypted:
246
+ :type: :boolean
247
+ RestoreStatus:
248
+ :children:
249
+ CurrentRestoreRateInMegaBytesPerSecond:
250
+ :type: :float
251
+ SnapshotSizeInMegaBytes:
252
+ :type: :integer
253
+ ProgressInMegaBytes:
254
+ :type: :integer
255
+ ElapsedTimeInSeconds:
256
+ :type: :integer
257
+ EstimatedTimeToCompletionInSeconds:
258
+ :type: :integer
259
+ ClusterSnapshotCopyStatus:
260
+ :children:
261
+ RetentionPeriod:
262
+ :type: :integer
263
+ ClusterNodes:
264
+ :ignore: true
265
+ :children:
266
+ member:
267
+ :rename: :cluster_nodes
268
+ :list: true
269
+ :ignore: true
270
+ - :name: CreateClusterParameterGroup
271
+ :method: :create_cluster_parameter_group
272
+ :inputs:
273
+ ParameterGroupName:
274
+ - :string
275
+ - :required
276
+ ParameterGroupFamily:
277
+ - :string
278
+ - :required
279
+ Description:
280
+ - :string
281
+ - :required
282
+ :outputs:
283
+ :children:
284
+ CreateClusterParameterGroupResult:
285
+ :ignore: true
286
+ :children:
287
+ ClusterParameterGroup:
288
+ :ignore: true
289
+ - :name: CreateClusterSecurityGroup
290
+ :method: :create_cluster_security_group
291
+ :inputs:
292
+ ClusterSecurityGroupName:
293
+ - :string
294
+ - :required
295
+ Description:
296
+ - :string
297
+ - :required
298
+ :outputs:
299
+ :children:
300
+ CreateClusterSecurityGroupResult:
301
+ :ignore: true
302
+ :children:
303
+ ClusterSecurityGroup:
304
+ :children:
305
+ EC2SecurityGroups:
306
+ :ignore: true
307
+ :children:
308
+ EC2SecurityGroup:
309
+ :rename: :ec2_security_groups
310
+ :list: true
311
+ IPRanges:
312
+ :ignore: true
313
+ :children:
314
+ IPRange:
315
+ :rename: :ip_ranges
316
+ :list: true
317
+ :ignore: true
318
+ - :name: CreateClusterSnapshot
319
+ :method: :create_cluster_snapshot
320
+ :inputs:
321
+ SnapshotIdentifier:
322
+ - :string
323
+ - :required
324
+ ClusterIdentifier:
325
+ - :string
326
+ - :required
327
+ :outputs:
328
+ :children:
329
+ CreateClusterSnapshotResult:
330
+ :ignore: true
331
+ :children:
332
+ Snapshot:
333
+ :children:
334
+ SnapshotCreateTime:
335
+ :type: :time
336
+ Port:
337
+ :type: :integer
338
+ ClusterCreateTime:
339
+ :type: :time
340
+ NumberOfNodes:
341
+ :type: :integer
342
+ Encrypted:
343
+ :type: :boolean
344
+ EncryptedWithHSM:
345
+ :type: :boolean
346
+ AccountsWithRestoreAccess:
347
+ :ignore: true
348
+ :children:
349
+ AccountWithRestoreAccess:
350
+ :rename: :accounts_with_restore_access
351
+ :list: true
352
+ TotalBackupSizeInMegaBytes:
353
+ :type: :float
354
+ ActualIncrementalBackupSizeInMegaBytes:
355
+ :type: :float
356
+ BackupProgressInMegaBytes:
357
+ :type: :float
358
+ CurrentBackupRateInMegaBytesPerSecond:
359
+ :type: :float
360
+ EstimatedSecondsToCompletion:
361
+ :type: :integer
362
+ ElapsedTimeInSeconds:
363
+ :type: :integer
364
+ :ignore: true
365
+ - :name: CreateClusterSubnetGroup
366
+ :method: :create_cluster_subnet_group
367
+ :inputs:
368
+ ClusterSubnetGroupName:
369
+ - :string
370
+ - :required
371
+ Description:
372
+ - :string
373
+ - :required
374
+ SubnetIds:
375
+ - :membered_list:
376
+ - :string
377
+ - :required
378
+ :outputs:
379
+ :children:
380
+ CreateClusterSubnetGroupResult:
381
+ :ignore: true
382
+ :children:
383
+ ClusterSubnetGroup:
384
+ :children:
385
+ Subnets:
386
+ :ignore: true
387
+ :children:
388
+ Subnet:
389
+ :rename: :subnets
390
+ :list: true
391
+ :ignore: true
392
+ - :name: CreateEventSubscription
393
+ :method: :create_event_subscription
394
+ :inputs:
395
+ SubscriptionName:
396
+ - :string
397
+ - :required
398
+ SnsTopicArn:
399
+ - :string
400
+ - :required
401
+ SourceType:
402
+ - :string
403
+ SourceIds:
404
+ - :membered_list:
405
+ - :string
406
+ EventCategories:
407
+ - :membered_list:
408
+ - :string
409
+ Severity:
410
+ - :string
411
+ Enabled:
412
+ - :boolean
413
+ :outputs:
414
+ :children:
415
+ CreateEventSubscriptionResult:
416
+ :ignore: true
417
+ :children:
418
+ EventSubscription:
419
+ :children:
420
+ SubscriptionCreationTime:
421
+ :type: :time
422
+ SourceIdsList:
423
+ :ignore: true
424
+ :children:
425
+ SourceId:
426
+ :rename: :source_ids_list
427
+ :list: true
428
+ EventCategoriesList:
429
+ :ignore: true
430
+ :children:
431
+ EventCategory:
432
+ :rename: :event_categories_list
433
+ :list: true
434
+ Enabled:
435
+ :type: :boolean
436
+ :ignore: true
437
+ - :name: CreateHsmClientCertificate
438
+ :method: :create_hsm_client_certificate
439
+ :inputs:
440
+ HsmClientCertificateIdentifier:
441
+ - :string
442
+ - :required
443
+ :outputs:
444
+ :children:
445
+ CreateHsmClientCertificateResult:
446
+ :ignore: true
447
+ :children:
448
+ HsmClientCertificate:
449
+ :ignore: true
450
+ - :name: CreateHsmConfiguration
451
+ :method: :create_hsm_configuration
452
+ :inputs:
453
+ HsmConfigurationIdentifier:
454
+ - :string
455
+ - :required
456
+ Description:
457
+ - :string
458
+ - :required
459
+ HsmIpAddress:
460
+ - :string
461
+ - :required
462
+ HsmPartitionName:
463
+ - :string
464
+ - :required
465
+ HsmPartitionPassword:
466
+ - :string
467
+ - :required
468
+ HsmServerPublicCertificate:
469
+ - :string
470
+ - :required
471
+ :outputs:
472
+ :children:
473
+ CreateHsmConfigurationResult:
474
+ :ignore: true
475
+ :children:
476
+ HsmConfiguration:
477
+ :ignore: true
478
+ - :name: DeleteCluster
479
+ :method: :delete_cluster
480
+ :inputs:
481
+ ClusterIdentifier:
482
+ - :string
483
+ - :required
484
+ SkipFinalClusterSnapshot:
485
+ - :boolean
486
+ FinalClusterSnapshotIdentifier:
487
+ - :string
488
+ :outputs:
489
+ :children:
490
+ DeleteClusterResult:
491
+ :ignore: true
492
+ :children:
493
+ Cluster:
494
+ :children:
495
+ Endpoint:
496
+ :children:
497
+ Port:
498
+ :type: :integer
499
+ ClusterCreateTime:
500
+ :type: :time
501
+ AutomatedSnapshotRetentionPeriod:
502
+ :type: :integer
503
+ ClusterSecurityGroups:
504
+ :ignore: true
505
+ :children:
506
+ ClusterSecurityGroup:
507
+ :rename: :cluster_security_groups
508
+ :list: true
509
+ VpcSecurityGroups:
510
+ :ignore: true
511
+ :children:
512
+ VpcSecurityGroup:
513
+ :rename: :vpc_security_groups
514
+ :list: true
515
+ ClusterParameterGroups:
516
+ :ignore: true
517
+ :children:
518
+ ClusterParameterGroup:
519
+ :rename: :cluster_parameter_groups
520
+ :list: true
521
+ PendingModifiedValues:
522
+ :children:
523
+ NumberOfNodes:
524
+ :type: :integer
525
+ AutomatedSnapshotRetentionPeriod:
526
+ :type: :integer
527
+ AllowVersionUpgrade:
528
+ :type: :boolean
529
+ NumberOfNodes:
530
+ :type: :integer
531
+ PubliclyAccessible:
532
+ :type: :boolean
533
+ Encrypted:
534
+ :type: :boolean
535
+ RestoreStatus:
536
+ :children:
537
+ CurrentRestoreRateInMegaBytesPerSecond:
538
+ :type: :float
539
+ SnapshotSizeInMegaBytes:
540
+ :type: :integer
541
+ ProgressInMegaBytes:
542
+ :type: :integer
543
+ ElapsedTimeInSeconds:
544
+ :type: :integer
545
+ EstimatedTimeToCompletionInSeconds:
546
+ :type: :integer
547
+ ClusterSnapshotCopyStatus:
548
+ :children:
549
+ RetentionPeriod:
550
+ :type: :integer
551
+ ClusterNodes:
552
+ :ignore: true
553
+ :children:
554
+ member:
555
+ :rename: :cluster_nodes
556
+ :list: true
557
+ :ignore: true
558
+ - :name: DeleteClusterParameterGroup
559
+ :method: :delete_cluster_parameter_group
560
+ :inputs:
561
+ ParameterGroupName:
562
+ - :string
563
+ - :required
564
+ :outputs:
565
+ :children:
566
+ DeleteClusterParameterGroupResult:
567
+ :ignore: true
568
+ - :name: DeleteClusterSecurityGroup
569
+ :method: :delete_cluster_security_group
570
+ :inputs:
571
+ ClusterSecurityGroupName:
572
+ - :string
573
+ - :required
574
+ :outputs:
575
+ :children:
576
+ DeleteClusterSecurityGroupResult:
577
+ :ignore: true
578
+ - :name: DeleteClusterSnapshot
579
+ :method: :delete_cluster_snapshot
580
+ :inputs:
581
+ SnapshotIdentifier:
582
+ - :string
583
+ - :required
584
+ SnapshotClusterIdentifier:
585
+ - :string
586
+ :outputs:
587
+ :children:
588
+ DeleteClusterSnapshotResult:
589
+ :ignore: true
590
+ :children:
591
+ Snapshot:
592
+ :children:
593
+ SnapshotCreateTime:
594
+ :type: :time
595
+ Port:
596
+ :type: :integer
597
+ ClusterCreateTime:
598
+ :type: :time
599
+ NumberOfNodes:
600
+ :type: :integer
601
+ Encrypted:
602
+ :type: :boolean
603
+ EncryptedWithHSM:
604
+ :type: :boolean
605
+ AccountsWithRestoreAccess:
606
+ :ignore: true
607
+ :children:
608
+ AccountWithRestoreAccess:
609
+ :rename: :accounts_with_restore_access
610
+ :list: true
611
+ TotalBackupSizeInMegaBytes:
612
+ :type: :float
613
+ ActualIncrementalBackupSizeInMegaBytes:
614
+ :type: :float
615
+ BackupProgressInMegaBytes:
616
+ :type: :float
617
+ CurrentBackupRateInMegaBytesPerSecond:
618
+ :type: :float
619
+ EstimatedSecondsToCompletion:
620
+ :type: :integer
621
+ ElapsedTimeInSeconds:
622
+ :type: :integer
623
+ :ignore: true
624
+ - :name: DeleteClusterSubnetGroup
625
+ :method: :delete_cluster_subnet_group
626
+ :inputs:
627
+ ClusterSubnetGroupName:
628
+ - :string
629
+ - :required
630
+ :outputs:
631
+ :children:
632
+ DeleteClusterSubnetGroupResult:
633
+ :ignore: true
634
+ - :name: DeleteEventSubscription
635
+ :method: :delete_event_subscription
636
+ :inputs:
637
+ SubscriptionName:
638
+ - :string
639
+ - :required
640
+ - :required
641
+ :outputs:
642
+ :children:
643
+ DeleteEventSubscriptionResult:
644
+ :ignore: true
645
+ - :name: DeleteHsmClientCertificate
646
+ :method: :delete_hsm_client_certificate
647
+ :inputs:
648
+ HsmClientCertificateIdentifier:
649
+ - :string
650
+ - :required
651
+ :outputs:
652
+ :children:
653
+ DeleteHsmClientCertificateResult:
654
+ :ignore: true
655
+ - :name: DeleteHsmConfiguration
656
+ :method: :delete_hsm_configuration
657
+ :inputs:
658
+ HsmConfigurationIdentifier:
659
+ - :string
660
+ - :required
661
+ :outputs:
662
+ :children:
663
+ DeleteHsmConfigurationResult:
664
+ :ignore: true
665
+ - :name: DescribeClusterParameterGroups
666
+ :method: :describe_cluster_parameter_groups
667
+ :inputs:
668
+ ParameterGroupName:
669
+ - :string
670
+ MaxRecords:
671
+ - :integer
672
+ Marker:
673
+ - :string
674
+ :outputs:
675
+ :children:
676
+ DescribeClusterParameterGroupsResult:
677
+ :ignore: true
678
+ :children:
679
+ ParameterGroups:
680
+ :ignore: true
681
+ :children:
682
+ ClusterParameterGroup:
683
+ :rename: :parameter_groups
684
+ :list: true
685
+ - :name: DescribeClusterParameters
686
+ :method: :describe_cluster_parameters
687
+ :inputs:
688
+ ParameterGroupName:
689
+ - :string
690
+ - :required
691
+ Source:
692
+ - :string
693
+ MaxRecords:
694
+ - :integer
695
+ Marker:
696
+ - :string
697
+ :outputs:
698
+ :children:
699
+ DescribeClusterParametersResult:
700
+ :ignore: true
701
+ :children:
702
+ Parameters:
703
+ :ignore: true
704
+ :children:
705
+ Parameter:
706
+ :rename: :parameters
707
+ :list: true
708
+ :children:
709
+ IsModifiable:
710
+ :type: :boolean
711
+ - :name: DescribeClusterSecurityGroups
712
+ :method: :describe_cluster_security_groups
713
+ :inputs:
714
+ ClusterSecurityGroupName:
715
+ - :string
716
+ MaxRecords:
717
+ - :integer
718
+ Marker:
719
+ - :string
720
+ :outputs:
721
+ :children:
722
+ DescribeClusterSecurityGroupsResult:
723
+ :ignore: true
724
+ :children:
725
+ ClusterSecurityGroups:
726
+ :ignore: true
727
+ :children:
728
+ ClusterSecurityGroup:
729
+ :rename: :cluster_security_groups
730
+ :list: true
731
+ :children:
732
+ EC2SecurityGroups:
733
+ :ignore: true
734
+ :children:
735
+ EC2SecurityGroup:
736
+ :rename: :ec2_security_groups
737
+ :list: true
738
+ IPRanges:
739
+ :ignore: true
740
+ :children:
741
+ IPRange:
742
+ :rename: :ip_ranges
743
+ :list: true
744
+ - :name: DescribeClusterSnapshots
745
+ :method: :describe_cluster_snapshots
746
+ :inputs:
747
+ ClusterIdentifier:
748
+ - :string
749
+ SnapshotIdentifier:
750
+ - :string
751
+ SnapshotType:
752
+ - :string
753
+ StartTime:
754
+ - :timestamp
755
+ EndTime:
756
+ - :timestamp
757
+ MaxRecords:
758
+ - :integer
759
+ Marker:
760
+ - :string
761
+ OwnerAccount:
762
+ - :string
763
+ :outputs:
764
+ :children:
765
+ DescribeClusterSnapshotsResult:
766
+ :ignore: true
767
+ :children:
768
+ Snapshots:
769
+ :ignore: true
770
+ :children:
771
+ Snapshot:
772
+ :rename: :snapshots
773
+ :list: true
774
+ :children:
775
+ SnapshotCreateTime:
776
+ :type: :time
777
+ Port:
778
+ :type: :integer
779
+ ClusterCreateTime:
780
+ :type: :time
781
+ NumberOfNodes:
782
+ :type: :integer
783
+ Encrypted:
784
+ :type: :boolean
785
+ EncryptedWithHSM:
786
+ :type: :boolean
787
+ AccountsWithRestoreAccess:
788
+ :ignore: true
789
+ :children:
790
+ AccountWithRestoreAccess:
791
+ :rename: :accounts_with_restore_access
792
+ :list: true
793
+ TotalBackupSizeInMegaBytes:
794
+ :type: :float
795
+ ActualIncrementalBackupSizeInMegaBytes:
796
+ :type: :float
797
+ BackupProgressInMegaBytes:
798
+ :type: :float
799
+ CurrentBackupRateInMegaBytesPerSecond:
800
+ :type: :float
801
+ EstimatedSecondsToCompletion:
802
+ :type: :integer
803
+ ElapsedTimeInSeconds:
804
+ :type: :integer
805
+ - :name: DescribeClusterSubnetGroups
806
+ :method: :describe_cluster_subnet_groups
807
+ :inputs:
808
+ ClusterSubnetGroupName:
809
+ - :string
810
+ MaxRecords:
811
+ - :integer
812
+ Marker:
813
+ - :string
814
+ :outputs:
815
+ :children:
816
+ DescribeClusterSubnetGroupsResult:
817
+ :ignore: true
818
+ :children:
819
+ ClusterSubnetGroups:
820
+ :ignore: true
821
+ :children:
822
+ ClusterSubnetGroup:
823
+ :rename: :cluster_subnet_groups
824
+ :list: true
825
+ :children:
826
+ Subnets:
827
+ :ignore: true
828
+ :children:
829
+ Subnet:
830
+ :rename: :subnets
831
+ :list: true
832
+ - :name: DescribeClusterVersions
833
+ :method: :describe_cluster_versions
834
+ :inputs:
835
+ ClusterVersion:
836
+ - :string
837
+ ClusterParameterGroupFamily:
838
+ - :string
839
+ MaxRecords:
840
+ - :integer
841
+ Marker:
842
+ - :string
843
+ :outputs:
844
+ :children:
845
+ DescribeClusterVersionsResult:
846
+ :ignore: true
847
+ :children:
848
+ ClusterVersions:
849
+ :ignore: true
850
+ :children:
851
+ ClusterVersion:
852
+ :rename: :cluster_versions
853
+ :list: true
854
+ - :name: DescribeClusters
855
+ :method: :describe_clusters
856
+ :inputs:
857
+ ClusterIdentifier:
858
+ - :string
859
+ MaxRecords:
860
+ - :integer
861
+ Marker:
862
+ - :string
863
+ :outputs:
864
+ :children:
865
+ DescribeClustersResult:
866
+ :ignore: true
867
+ :children:
868
+ Clusters:
869
+ :ignore: true
870
+ :children:
871
+ Cluster:
872
+ :rename: :clusters
873
+ :list: true
874
+ :children:
875
+ Endpoint:
876
+ :children:
877
+ Port:
878
+ :type: :integer
879
+ ClusterCreateTime:
880
+ :type: :time
881
+ AutomatedSnapshotRetentionPeriod:
882
+ :type: :integer
883
+ ClusterSecurityGroups:
884
+ :ignore: true
885
+ :children:
886
+ ClusterSecurityGroup:
887
+ :rename: :cluster_security_groups
888
+ :list: true
889
+ VpcSecurityGroups:
890
+ :ignore: true
891
+ :children:
892
+ VpcSecurityGroup:
893
+ :rename: :vpc_security_groups
894
+ :list: true
895
+ ClusterParameterGroups:
896
+ :ignore: true
897
+ :children:
898
+ ClusterParameterGroup:
899
+ :rename: :cluster_parameter_groups
900
+ :list: true
901
+ PendingModifiedValues:
902
+ :children:
903
+ NumberOfNodes:
904
+ :type: :integer
905
+ AutomatedSnapshotRetentionPeriod:
906
+ :type: :integer
907
+ AllowVersionUpgrade:
908
+ :type: :boolean
909
+ NumberOfNodes:
910
+ :type: :integer
911
+ PubliclyAccessible:
912
+ :type: :boolean
913
+ Encrypted:
914
+ :type: :boolean
915
+ RestoreStatus:
916
+ :children:
917
+ CurrentRestoreRateInMegaBytesPerSecond:
918
+ :type: :float
919
+ SnapshotSizeInMegaBytes:
920
+ :type: :integer
921
+ ProgressInMegaBytes:
922
+ :type: :integer
923
+ ElapsedTimeInSeconds:
924
+ :type: :integer
925
+ EstimatedTimeToCompletionInSeconds:
926
+ :type: :integer
927
+ ClusterSnapshotCopyStatus:
928
+ :children:
929
+ RetentionPeriod:
930
+ :type: :integer
931
+ ClusterNodes:
932
+ :ignore: true
933
+ :children:
934
+ member:
935
+ :rename: :cluster_nodes
936
+ :list: true
937
+ - :name: DescribeDefaultClusterParameters
938
+ :method: :describe_default_cluster_parameters
939
+ :inputs:
940
+ ParameterGroupFamily:
941
+ - :string
942
+ - :required
943
+ MaxRecords:
944
+ - :integer
945
+ Marker:
946
+ - :string
947
+ :outputs:
948
+ :children:
949
+ DescribeDefaultClusterParametersResult:
950
+ :ignore: true
951
+ :children:
952
+ DefaultClusterParameters:
953
+ :children:
954
+ Parameters:
955
+ :ignore: true
956
+ :children:
957
+ Parameter:
958
+ :rename: :parameters
959
+ :list: true
960
+ :children:
961
+ IsModifiable:
962
+ :type: :boolean
963
+ :ignore: true
964
+ - :name: DescribeEventCategories
965
+ :method: :describe_event_categories
966
+ :inputs:
967
+ SourceType:
968
+ - :string
969
+ :outputs:
970
+ :children:
971
+ DescribeEventCategoriesResult:
972
+ :ignore: true
973
+ :children:
974
+ EventCategoriesMapList:
975
+ :ignore: true
976
+ :children:
977
+ EventCategoriesMap:
978
+ :rename: :event_categories_map_list
979
+ :list: true
980
+ :children:
981
+ Events:
982
+ :ignore: true
983
+ :children:
984
+ EventInfoMap:
985
+ :rename: :events
986
+ :list: true
987
+ :children:
988
+ EventCategories:
989
+ :ignore: true
990
+ :children:
991
+ EventCategory:
992
+ :rename: :event_categories
993
+ :list: true
994
+ - :name: DescribeEventSubscriptions
995
+ :method: :describe_event_subscriptions
996
+ :inputs:
997
+ SubscriptionName:
998
+ - :string
999
+ MaxRecords:
1000
+ - :integer
1001
+ Marker:
1002
+ - :string
1003
+ :outputs:
1004
+ :children:
1005
+ DescribeEventSubscriptionsResult:
1006
+ :ignore: true
1007
+ :children:
1008
+ EventSubscriptionsList:
1009
+ :ignore: true
1010
+ :children:
1011
+ EventSubscription:
1012
+ :rename: :event_subscriptions_list
1013
+ :list: true
1014
+ :children:
1015
+ SubscriptionCreationTime:
1016
+ :type: :time
1017
+ SourceIdsList:
1018
+ :ignore: true
1019
+ :children:
1020
+ SourceId:
1021
+ :rename: :source_ids_list
1022
+ :list: true
1023
+ EventCategoriesList:
1024
+ :ignore: true
1025
+ :children:
1026
+ EventCategory:
1027
+ :rename: :event_categories_list
1028
+ :list: true
1029
+ Enabled:
1030
+ :type: :boolean
1031
+ - :name: DescribeEvents
1032
+ :method: :describe_events
1033
+ :inputs:
1034
+ SourceIdentifier:
1035
+ - :string
1036
+ SourceType:
1037
+ - :string
1038
+ StartTime:
1039
+ - :timestamp
1040
+ EndTime:
1041
+ - :timestamp
1042
+ Duration:
1043
+ - :integer
1044
+ MaxRecords:
1045
+ - :integer
1046
+ Marker:
1047
+ - :string
1048
+ :outputs:
1049
+ :children:
1050
+ DescribeEventsResult:
1051
+ :ignore: true
1052
+ :children:
1053
+ Events:
1054
+ :ignore: true
1055
+ :children:
1056
+ Event:
1057
+ :rename: :events
1058
+ :list: true
1059
+ :children:
1060
+ EventCategories:
1061
+ :ignore: true
1062
+ :children:
1063
+ EventCategory:
1064
+ :rename: :event_categories
1065
+ :list: true
1066
+ Date:
1067
+ :type: :time
1068
+ - :name: DescribeHsmClientCertificates
1069
+ :method: :describe_hsm_client_certificates
1070
+ :inputs:
1071
+ HsmClientCertificateIdentifier:
1072
+ - :string
1073
+ MaxRecords:
1074
+ - :integer
1075
+ Marker:
1076
+ - :string
1077
+ :outputs:
1078
+ :children:
1079
+ DescribeHsmClientCertificatesResult:
1080
+ :ignore: true
1081
+ :children:
1082
+ HsmClientCertificates:
1083
+ :ignore: true
1084
+ :children:
1085
+ HsmClientCertificate:
1086
+ :rename: :hsm_client_certificates
1087
+ :list: true
1088
+ - :name: DescribeHsmConfigurations
1089
+ :method: :describe_hsm_configurations
1090
+ :inputs:
1091
+ HsmConfigurationIdentifier:
1092
+ - :string
1093
+ MaxRecords:
1094
+ - :integer
1095
+ Marker:
1096
+ - :string
1097
+ :outputs:
1098
+ :children:
1099
+ DescribeHsmConfigurationsResult:
1100
+ :ignore: true
1101
+ :children:
1102
+ HsmConfigurations:
1103
+ :ignore: true
1104
+ :children:
1105
+ HsmConfiguration:
1106
+ :rename: :hsm_configurations
1107
+ :list: true
1108
+ - :name: DescribeLoggingStatus
1109
+ :method: :describe_logging_status
1110
+ :inputs:
1111
+ ClusterIdentifier:
1112
+ - :string
1113
+ - :required
1114
+ :outputs:
1115
+ :children:
1116
+ DescribeLoggingStatusResult:
1117
+ :ignore: true
1118
+ :children:
1119
+ LoggingEnabled:
1120
+ :type: :boolean
1121
+ LastSuccessfulDeliveryTime:
1122
+ :type: :time
1123
+ LastFailureTime:
1124
+ :type: :time
1125
+ - :name: DescribeOrderableClusterOptions
1126
+ :method: :describe_orderable_cluster_options
1127
+ :inputs:
1128
+ ClusterVersion:
1129
+ - :string
1130
+ NodeType:
1131
+ - :string
1132
+ MaxRecords:
1133
+ - :integer
1134
+ Marker:
1135
+ - :string
1136
+ :outputs:
1137
+ :children:
1138
+ DescribeOrderableClusterOptionsResult:
1139
+ :ignore: true
1140
+ :children:
1141
+ OrderableClusterOptions:
1142
+ :ignore: true
1143
+ :children:
1144
+ OrderableClusterOption:
1145
+ :rename: :orderable_cluster_options
1146
+ :list: true
1147
+ :children:
1148
+ AvailabilityZones:
1149
+ :ignore: true
1150
+ :children:
1151
+ AvailabilityZone:
1152
+ :rename: :availability_zones
1153
+ :list: true
1154
+ - :name: DescribeReservedNodeOfferings
1155
+ :method: :describe_reserved_node_offerings
1156
+ :inputs:
1157
+ ReservedNodeOfferingId:
1158
+ - :string
1159
+ MaxRecords:
1160
+ - :integer
1161
+ Marker:
1162
+ - :string
1163
+ :outputs:
1164
+ :children:
1165
+ DescribeReservedNodeOfferingsResult:
1166
+ :ignore: true
1167
+ :children:
1168
+ ReservedNodeOfferings:
1169
+ :ignore: true
1170
+ :children:
1171
+ ReservedNodeOffering:
1172
+ :rename: :reserved_node_offerings
1173
+ :list: true
1174
+ :children:
1175
+ Duration:
1176
+ :type: :integer
1177
+ FixedPrice:
1178
+ :type: :float
1179
+ UsagePrice:
1180
+ :type: :float
1181
+ RecurringCharges:
1182
+ :ignore: true
1183
+ :children:
1184
+ RecurringCharge:
1185
+ :rename: :recurring_charges
1186
+ :list: true
1187
+ :children:
1188
+ RecurringChargeAmount:
1189
+ :type: :float
1190
+ - :name: DescribeReservedNodes
1191
+ :method: :describe_reserved_nodes
1192
+ :inputs:
1193
+ ReservedNodeId:
1194
+ - :string
1195
+ MaxRecords:
1196
+ - :integer
1197
+ Marker:
1198
+ - :string
1199
+ :outputs:
1200
+ :children:
1201
+ DescribeReservedNodesResult:
1202
+ :ignore: true
1203
+ :children:
1204
+ ReservedNodes:
1205
+ :ignore: true
1206
+ :children:
1207
+ ReservedNode:
1208
+ :rename: :reserved_nodes
1209
+ :list: true
1210
+ :children:
1211
+ StartTime:
1212
+ :type: :time
1213
+ Duration:
1214
+ :type: :integer
1215
+ FixedPrice:
1216
+ :type: :float
1217
+ UsagePrice:
1218
+ :type: :float
1219
+ NodeCount:
1220
+ :type: :integer
1221
+ RecurringCharges:
1222
+ :ignore: true
1223
+ :children:
1224
+ RecurringCharge:
1225
+ :rename: :recurring_charges
1226
+ :list: true
1227
+ :children:
1228
+ RecurringChargeAmount:
1229
+ :type: :float
1230
+ - :name: DescribeResize
1231
+ :method: :describe_resize
1232
+ :inputs:
1233
+ ClusterIdentifier:
1234
+ - :string
1235
+ - :required
1236
+ :outputs:
1237
+ :children:
1238
+ DescribeResizeResult:
1239
+ :ignore: true
1240
+ :children:
1241
+ TargetNumberOfNodes:
1242
+ :type: :integer
1243
+ ImportTablesCompleted:
1244
+ :ignore: true
1245
+ :children:
1246
+ member:
1247
+ :rename: :import_tables_completed
1248
+ :list: true
1249
+ ImportTablesInProgress:
1250
+ :ignore: true
1251
+ :children:
1252
+ member:
1253
+ :rename: :import_tables_in_progress
1254
+ :list: true
1255
+ ImportTablesNotStarted:
1256
+ :ignore: true
1257
+ :children:
1258
+ member:
1259
+ :rename: :import_tables_not_started
1260
+ :list: true
1261
+ AvgResizeRateInMegaBytesPerSecond:
1262
+ :type: :float
1263
+ TotalResizeDataInMegaBytes:
1264
+ :type: :integer
1265
+ ProgressInMegaBytes:
1266
+ :type: :integer
1267
+ ElapsedTimeInSeconds:
1268
+ :type: :integer
1269
+ EstimatedTimeToCompletionInSeconds:
1270
+ :type: :integer
1271
+ - :name: DisableLogging
1272
+ :method: :disable_logging
1273
+ :inputs:
1274
+ ClusterIdentifier:
1275
+ - :string
1276
+ - :required
1277
+ :outputs:
1278
+ :children:
1279
+ DisableLoggingResult:
1280
+ :ignore: true
1281
+ :children:
1282
+ LoggingEnabled:
1283
+ :type: :boolean
1284
+ LastSuccessfulDeliveryTime:
1285
+ :type: :time
1286
+ LastFailureTime:
1287
+ :type: :time
1288
+ - :name: DisableSnapshotCopy
1289
+ :method: :disable_snapshot_copy
1290
+ :inputs:
1291
+ ClusterIdentifier:
1292
+ - :string
1293
+ - :required
1294
+ :outputs:
1295
+ :children:
1296
+ DisableSnapshotCopyResult:
1297
+ :ignore: true
1298
+ :children:
1299
+ Cluster:
1300
+ :children:
1301
+ Endpoint:
1302
+ :children:
1303
+ Port:
1304
+ :type: :integer
1305
+ ClusterCreateTime:
1306
+ :type: :time
1307
+ AutomatedSnapshotRetentionPeriod:
1308
+ :type: :integer
1309
+ ClusterSecurityGroups:
1310
+ :ignore: true
1311
+ :children:
1312
+ ClusterSecurityGroup:
1313
+ :rename: :cluster_security_groups
1314
+ :list: true
1315
+ VpcSecurityGroups:
1316
+ :ignore: true
1317
+ :children:
1318
+ VpcSecurityGroup:
1319
+ :rename: :vpc_security_groups
1320
+ :list: true
1321
+ ClusterParameterGroups:
1322
+ :ignore: true
1323
+ :children:
1324
+ ClusterParameterGroup:
1325
+ :rename: :cluster_parameter_groups
1326
+ :list: true
1327
+ PendingModifiedValues:
1328
+ :children:
1329
+ NumberOfNodes:
1330
+ :type: :integer
1331
+ AutomatedSnapshotRetentionPeriod:
1332
+ :type: :integer
1333
+ AllowVersionUpgrade:
1334
+ :type: :boolean
1335
+ NumberOfNodes:
1336
+ :type: :integer
1337
+ PubliclyAccessible:
1338
+ :type: :boolean
1339
+ Encrypted:
1340
+ :type: :boolean
1341
+ RestoreStatus:
1342
+ :children:
1343
+ CurrentRestoreRateInMegaBytesPerSecond:
1344
+ :type: :float
1345
+ SnapshotSizeInMegaBytes:
1346
+ :type: :integer
1347
+ ProgressInMegaBytes:
1348
+ :type: :integer
1349
+ ElapsedTimeInSeconds:
1350
+ :type: :integer
1351
+ EstimatedTimeToCompletionInSeconds:
1352
+ :type: :integer
1353
+ ClusterSnapshotCopyStatus:
1354
+ :children:
1355
+ RetentionPeriod:
1356
+ :type: :integer
1357
+ ClusterNodes:
1358
+ :ignore: true
1359
+ :children:
1360
+ member:
1361
+ :rename: :cluster_nodes
1362
+ :list: true
1363
+ :ignore: true
1364
+ - :name: EnableLogging
1365
+ :method: :enable_logging
1366
+ :inputs:
1367
+ ClusterIdentifier:
1368
+ - :string
1369
+ - :required
1370
+ BucketName:
1371
+ - :string
1372
+ - :required
1373
+ S3KeyPrefix:
1374
+ - :string
1375
+ :outputs:
1376
+ :children:
1377
+ EnableLoggingResult:
1378
+ :ignore: true
1379
+ :children:
1380
+ LoggingEnabled:
1381
+ :type: :boolean
1382
+ LastSuccessfulDeliveryTime:
1383
+ :type: :time
1384
+ LastFailureTime:
1385
+ :type: :time
1386
+ - :name: EnableSnapshotCopy
1387
+ :method: :enable_snapshot_copy
1388
+ :inputs:
1389
+ ClusterIdentifier:
1390
+ - :string
1391
+ - :required
1392
+ DestinationRegion:
1393
+ - :string
1394
+ - :required
1395
+ RetentionPeriod:
1396
+ - :integer
1397
+ :outputs:
1398
+ :children:
1399
+ EnableSnapshotCopyResult:
1400
+ :ignore: true
1401
+ :children:
1402
+ Cluster:
1403
+ :children:
1404
+ Endpoint:
1405
+ :children:
1406
+ Port:
1407
+ :type: :integer
1408
+ ClusterCreateTime:
1409
+ :type: :time
1410
+ AutomatedSnapshotRetentionPeriod:
1411
+ :type: :integer
1412
+ ClusterSecurityGroups:
1413
+ :ignore: true
1414
+ :children:
1415
+ ClusterSecurityGroup:
1416
+ :rename: :cluster_security_groups
1417
+ :list: true
1418
+ VpcSecurityGroups:
1419
+ :ignore: true
1420
+ :children:
1421
+ VpcSecurityGroup:
1422
+ :rename: :vpc_security_groups
1423
+ :list: true
1424
+ ClusterParameterGroups:
1425
+ :ignore: true
1426
+ :children:
1427
+ ClusterParameterGroup:
1428
+ :rename: :cluster_parameter_groups
1429
+ :list: true
1430
+ PendingModifiedValues:
1431
+ :children:
1432
+ NumberOfNodes:
1433
+ :type: :integer
1434
+ AutomatedSnapshotRetentionPeriod:
1435
+ :type: :integer
1436
+ AllowVersionUpgrade:
1437
+ :type: :boolean
1438
+ NumberOfNodes:
1439
+ :type: :integer
1440
+ PubliclyAccessible:
1441
+ :type: :boolean
1442
+ Encrypted:
1443
+ :type: :boolean
1444
+ RestoreStatus:
1445
+ :children:
1446
+ CurrentRestoreRateInMegaBytesPerSecond:
1447
+ :type: :float
1448
+ SnapshotSizeInMegaBytes:
1449
+ :type: :integer
1450
+ ProgressInMegaBytes:
1451
+ :type: :integer
1452
+ ElapsedTimeInSeconds:
1453
+ :type: :integer
1454
+ EstimatedTimeToCompletionInSeconds:
1455
+ :type: :integer
1456
+ ClusterSnapshotCopyStatus:
1457
+ :children:
1458
+ RetentionPeriod:
1459
+ :type: :integer
1460
+ ClusterNodes:
1461
+ :ignore: true
1462
+ :children:
1463
+ member:
1464
+ :rename: :cluster_nodes
1465
+ :list: true
1466
+ :ignore: true
1467
+ - :name: ModifyCluster
1468
+ :method: :modify_cluster
1469
+ :inputs:
1470
+ ClusterIdentifier:
1471
+ - :string
1472
+ - :required
1473
+ ClusterType:
1474
+ - :string
1475
+ NodeType:
1476
+ - :string
1477
+ NumberOfNodes:
1478
+ - :integer
1479
+ ClusterSecurityGroups:
1480
+ - :membered_list:
1481
+ - :string
1482
+ VpcSecurityGroupIds:
1483
+ - :membered_list:
1484
+ - :string
1485
+ MasterUserPassword:
1486
+ - :string
1487
+ ClusterParameterGroupName:
1488
+ - :string
1489
+ AutomatedSnapshotRetentionPeriod:
1490
+ - :integer
1491
+ PreferredMaintenanceWindow:
1492
+ - :string
1493
+ ClusterVersion:
1494
+ - :string
1495
+ AllowVersionUpgrade:
1496
+ - :boolean
1497
+ HsmClientCertificateIdentifier:
1498
+ - :string
1499
+ HsmConfigurationIdentifier:
1500
+ - :string
1501
+ NewClusterIdentifier:
1502
+ - :string
1503
+ :outputs:
1504
+ :children:
1505
+ ModifyClusterResult:
1506
+ :ignore: true
1507
+ :children:
1508
+ Cluster:
1509
+ :children:
1510
+ Endpoint:
1511
+ :children:
1512
+ Port:
1513
+ :type: :integer
1514
+ ClusterCreateTime:
1515
+ :type: :time
1516
+ AutomatedSnapshotRetentionPeriod:
1517
+ :type: :integer
1518
+ ClusterSecurityGroups:
1519
+ :ignore: true
1520
+ :children:
1521
+ ClusterSecurityGroup:
1522
+ :rename: :cluster_security_groups
1523
+ :list: true
1524
+ VpcSecurityGroups:
1525
+ :ignore: true
1526
+ :children:
1527
+ VpcSecurityGroup:
1528
+ :rename: :vpc_security_groups
1529
+ :list: true
1530
+ ClusterParameterGroups:
1531
+ :ignore: true
1532
+ :children:
1533
+ ClusterParameterGroup:
1534
+ :rename: :cluster_parameter_groups
1535
+ :list: true
1536
+ PendingModifiedValues:
1537
+ :children:
1538
+ NumberOfNodes:
1539
+ :type: :integer
1540
+ AutomatedSnapshotRetentionPeriod:
1541
+ :type: :integer
1542
+ AllowVersionUpgrade:
1543
+ :type: :boolean
1544
+ NumberOfNodes:
1545
+ :type: :integer
1546
+ PubliclyAccessible:
1547
+ :type: :boolean
1548
+ Encrypted:
1549
+ :type: :boolean
1550
+ RestoreStatus:
1551
+ :children:
1552
+ CurrentRestoreRateInMegaBytesPerSecond:
1553
+ :type: :float
1554
+ SnapshotSizeInMegaBytes:
1555
+ :type: :integer
1556
+ ProgressInMegaBytes:
1557
+ :type: :integer
1558
+ ElapsedTimeInSeconds:
1559
+ :type: :integer
1560
+ EstimatedTimeToCompletionInSeconds:
1561
+ :type: :integer
1562
+ ClusterSnapshotCopyStatus:
1563
+ :children:
1564
+ RetentionPeriod:
1565
+ :type: :integer
1566
+ ClusterNodes:
1567
+ :ignore: true
1568
+ :children:
1569
+ member:
1570
+ :rename: :cluster_nodes
1571
+ :list: true
1572
+ :ignore: true
1573
+ - :name: ModifyClusterParameterGroup
1574
+ :method: :modify_cluster_parameter_group
1575
+ :inputs:
1576
+ ParameterGroupName:
1577
+ - :string
1578
+ - :required
1579
+ Parameters:
1580
+ - :membered_list:
1581
+ - :structure:
1582
+ ParameterName:
1583
+ - :string
1584
+ ParameterValue:
1585
+ - :string
1586
+ Description:
1587
+ - :string
1588
+ Source:
1589
+ - :string
1590
+ DataType:
1591
+ - :string
1592
+ AllowedValues:
1593
+ - :string
1594
+ IsModifiable:
1595
+ - :boolean
1596
+ MinimumEngineVersion:
1597
+ - :string
1598
+ - :required
1599
+ :outputs:
1600
+ :children:
1601
+ ModifyClusterParameterGroupResult:
1602
+ :ignore: true
1603
+ - :name: ModifyClusterSubnetGroup
1604
+ :method: :modify_cluster_subnet_group
1605
+ :inputs:
1606
+ ClusterSubnetGroupName:
1607
+ - :string
1608
+ - :required
1609
+ Description:
1610
+ - :string
1611
+ SubnetIds:
1612
+ - :membered_list:
1613
+ - :string
1614
+ - :required
1615
+ :outputs:
1616
+ :children:
1617
+ ModifyClusterSubnetGroupResult:
1618
+ :ignore: true
1619
+ :children:
1620
+ ClusterSubnetGroup:
1621
+ :children:
1622
+ Subnets:
1623
+ :ignore: true
1624
+ :children:
1625
+ Subnet:
1626
+ :rename: :subnets
1627
+ :list: true
1628
+ :ignore: true
1629
+ - :name: ModifyEventSubscription
1630
+ :method: :modify_event_subscription
1631
+ :inputs:
1632
+ SubscriptionName:
1633
+ - :string
1634
+ - :required
1635
+ SnsTopicArn:
1636
+ - :string
1637
+ SourceType:
1638
+ - :string
1639
+ SourceIds:
1640
+ - :membered_list:
1641
+ - :string
1642
+ EventCategories:
1643
+ - :membered_list:
1644
+ - :string
1645
+ Severity:
1646
+ - :string
1647
+ Enabled:
1648
+ - :boolean
1649
+ :outputs:
1650
+ :children:
1651
+ ModifyEventSubscriptionResult:
1652
+ :ignore: true
1653
+ :children:
1654
+ EventSubscription:
1655
+ :children:
1656
+ SubscriptionCreationTime:
1657
+ :type: :time
1658
+ SourceIdsList:
1659
+ :ignore: true
1660
+ :children:
1661
+ SourceId:
1662
+ :rename: :source_ids_list
1663
+ :list: true
1664
+ EventCategoriesList:
1665
+ :ignore: true
1666
+ :children:
1667
+ EventCategory:
1668
+ :rename: :event_categories_list
1669
+ :list: true
1670
+ Enabled:
1671
+ :type: :boolean
1672
+ :ignore: true
1673
+ - :name: ModifySnapshotCopyRetentionPeriod
1674
+ :method: :modify_snapshot_copy_retention_period
1675
+ :inputs:
1676
+ ClusterIdentifier:
1677
+ - :string
1678
+ - :required
1679
+ RetentionPeriod:
1680
+ - :integer
1681
+ - :required
1682
+ :outputs:
1683
+ :children:
1684
+ ModifySnapshotCopyRetentionPeriodResult:
1685
+ :ignore: true
1686
+ :children:
1687
+ Cluster:
1688
+ :children:
1689
+ Endpoint:
1690
+ :children:
1691
+ Port:
1692
+ :type: :integer
1693
+ ClusterCreateTime:
1694
+ :type: :time
1695
+ AutomatedSnapshotRetentionPeriod:
1696
+ :type: :integer
1697
+ ClusterSecurityGroups:
1698
+ :ignore: true
1699
+ :children:
1700
+ ClusterSecurityGroup:
1701
+ :rename: :cluster_security_groups
1702
+ :list: true
1703
+ VpcSecurityGroups:
1704
+ :ignore: true
1705
+ :children:
1706
+ VpcSecurityGroup:
1707
+ :rename: :vpc_security_groups
1708
+ :list: true
1709
+ ClusterParameterGroups:
1710
+ :ignore: true
1711
+ :children:
1712
+ ClusterParameterGroup:
1713
+ :rename: :cluster_parameter_groups
1714
+ :list: true
1715
+ PendingModifiedValues:
1716
+ :children:
1717
+ NumberOfNodes:
1718
+ :type: :integer
1719
+ AutomatedSnapshotRetentionPeriod:
1720
+ :type: :integer
1721
+ AllowVersionUpgrade:
1722
+ :type: :boolean
1723
+ NumberOfNodes:
1724
+ :type: :integer
1725
+ PubliclyAccessible:
1726
+ :type: :boolean
1727
+ Encrypted:
1728
+ :type: :boolean
1729
+ RestoreStatus:
1730
+ :children:
1731
+ CurrentRestoreRateInMegaBytesPerSecond:
1732
+ :type: :float
1733
+ SnapshotSizeInMegaBytes:
1734
+ :type: :integer
1735
+ ProgressInMegaBytes:
1736
+ :type: :integer
1737
+ ElapsedTimeInSeconds:
1738
+ :type: :integer
1739
+ EstimatedTimeToCompletionInSeconds:
1740
+ :type: :integer
1741
+ ClusterSnapshotCopyStatus:
1742
+ :children:
1743
+ RetentionPeriod:
1744
+ :type: :integer
1745
+ ClusterNodes:
1746
+ :ignore: true
1747
+ :children:
1748
+ member:
1749
+ :rename: :cluster_nodes
1750
+ :list: true
1751
+ :ignore: true
1752
+ - :name: PurchaseReservedNodeOffering
1753
+ :method: :purchase_reserved_node_offering
1754
+ :inputs:
1755
+ ReservedNodeOfferingId:
1756
+ - :string
1757
+ - :required
1758
+ NodeCount:
1759
+ - :integer
1760
+ :outputs:
1761
+ :children:
1762
+ PurchaseReservedNodeOfferingResult:
1763
+ :ignore: true
1764
+ :children:
1765
+ ReservedNode:
1766
+ :children:
1767
+ StartTime:
1768
+ :type: :time
1769
+ Duration:
1770
+ :type: :integer
1771
+ FixedPrice:
1772
+ :type: :float
1773
+ UsagePrice:
1774
+ :type: :float
1775
+ NodeCount:
1776
+ :type: :integer
1777
+ RecurringCharges:
1778
+ :ignore: true
1779
+ :children:
1780
+ RecurringCharge:
1781
+ :rename: :recurring_charges
1782
+ :list: true
1783
+ :children:
1784
+ RecurringChargeAmount:
1785
+ :type: :float
1786
+ :ignore: true
1787
+ - :name: RebootCluster
1788
+ :method: :reboot_cluster
1789
+ :inputs:
1790
+ ClusterIdentifier:
1791
+ - :string
1792
+ - :required
1793
+ :outputs:
1794
+ :children:
1795
+ RebootClusterResult:
1796
+ :ignore: true
1797
+ :children:
1798
+ Cluster:
1799
+ :children:
1800
+ Endpoint:
1801
+ :children:
1802
+ Port:
1803
+ :type: :integer
1804
+ ClusterCreateTime:
1805
+ :type: :time
1806
+ AutomatedSnapshotRetentionPeriod:
1807
+ :type: :integer
1808
+ ClusterSecurityGroups:
1809
+ :ignore: true
1810
+ :children:
1811
+ ClusterSecurityGroup:
1812
+ :rename: :cluster_security_groups
1813
+ :list: true
1814
+ VpcSecurityGroups:
1815
+ :ignore: true
1816
+ :children:
1817
+ VpcSecurityGroup:
1818
+ :rename: :vpc_security_groups
1819
+ :list: true
1820
+ ClusterParameterGroups:
1821
+ :ignore: true
1822
+ :children:
1823
+ ClusterParameterGroup:
1824
+ :rename: :cluster_parameter_groups
1825
+ :list: true
1826
+ PendingModifiedValues:
1827
+ :children:
1828
+ NumberOfNodes:
1829
+ :type: :integer
1830
+ AutomatedSnapshotRetentionPeriod:
1831
+ :type: :integer
1832
+ AllowVersionUpgrade:
1833
+ :type: :boolean
1834
+ NumberOfNodes:
1835
+ :type: :integer
1836
+ PubliclyAccessible:
1837
+ :type: :boolean
1838
+ Encrypted:
1839
+ :type: :boolean
1840
+ RestoreStatus:
1841
+ :children:
1842
+ CurrentRestoreRateInMegaBytesPerSecond:
1843
+ :type: :float
1844
+ SnapshotSizeInMegaBytes:
1845
+ :type: :integer
1846
+ ProgressInMegaBytes:
1847
+ :type: :integer
1848
+ ElapsedTimeInSeconds:
1849
+ :type: :integer
1850
+ EstimatedTimeToCompletionInSeconds:
1851
+ :type: :integer
1852
+ ClusterSnapshotCopyStatus:
1853
+ :children:
1854
+ RetentionPeriod:
1855
+ :type: :integer
1856
+ ClusterNodes:
1857
+ :ignore: true
1858
+ :children:
1859
+ member:
1860
+ :rename: :cluster_nodes
1861
+ :list: true
1862
+ :ignore: true
1863
+ - :name: ResetClusterParameterGroup
1864
+ :method: :reset_cluster_parameter_group
1865
+ :inputs:
1866
+ ParameterGroupName:
1867
+ - :string
1868
+ - :required
1869
+ ResetAllParameters:
1870
+ - :boolean
1871
+ Parameters:
1872
+ - :membered_list:
1873
+ - :structure:
1874
+ ParameterName:
1875
+ - :string
1876
+ ParameterValue:
1877
+ - :string
1878
+ Description:
1879
+ - :string
1880
+ Source:
1881
+ - :string
1882
+ DataType:
1883
+ - :string
1884
+ AllowedValues:
1885
+ - :string
1886
+ IsModifiable:
1887
+ - :boolean
1888
+ MinimumEngineVersion:
1889
+ - :string
1890
+ :outputs:
1891
+ :children:
1892
+ ResetClusterParameterGroupResult:
1893
+ :ignore: true
1894
+ - :name: RestoreFromClusterSnapshot
1895
+ :method: :restore_from_cluster_snapshot
1896
+ :inputs:
1897
+ ClusterIdentifier:
1898
+ - :string
1899
+ - :required
1900
+ SnapshotIdentifier:
1901
+ - :string
1902
+ - :required
1903
+ SnapshotClusterIdentifier:
1904
+ - :string
1905
+ Port:
1906
+ - :integer
1907
+ AvailabilityZone:
1908
+ - :string
1909
+ AllowVersionUpgrade:
1910
+ - :boolean
1911
+ ClusterSubnetGroupName:
1912
+ - :string
1913
+ PubliclyAccessible:
1914
+ - :boolean
1915
+ OwnerAccount:
1916
+ - :string
1917
+ HsmClientCertificateIdentifier:
1918
+ - :string
1919
+ HsmConfigurationIdentifier:
1920
+ - :string
1921
+ ElasticIp:
1922
+ - :string
1923
+ ClusterParameterGroupName:
1924
+ - :string
1925
+ ClusterSecurityGroups:
1926
+ - :membered_list:
1927
+ - :string
1928
+ VpcSecurityGroupIds:
1929
+ - :membered_list:
1930
+ - :string
1931
+ PreferredMaintenanceWindow:
1932
+ - :string
1933
+ AutomatedSnapshotRetentionPeriod:
1934
+ - :integer
1935
+ :outputs:
1936
+ :children:
1937
+ RestoreFromClusterSnapshotResult:
1938
+ :ignore: true
1939
+ :children:
1940
+ Cluster:
1941
+ :children:
1942
+ Endpoint:
1943
+ :children:
1944
+ Port:
1945
+ :type: :integer
1946
+ ClusterCreateTime:
1947
+ :type: :time
1948
+ AutomatedSnapshotRetentionPeriod:
1949
+ :type: :integer
1950
+ ClusterSecurityGroups:
1951
+ :ignore: true
1952
+ :children:
1953
+ ClusterSecurityGroup:
1954
+ :rename: :cluster_security_groups
1955
+ :list: true
1956
+ VpcSecurityGroups:
1957
+ :ignore: true
1958
+ :children:
1959
+ VpcSecurityGroup:
1960
+ :rename: :vpc_security_groups
1961
+ :list: true
1962
+ ClusterParameterGroups:
1963
+ :ignore: true
1964
+ :children:
1965
+ ClusterParameterGroup:
1966
+ :rename: :cluster_parameter_groups
1967
+ :list: true
1968
+ PendingModifiedValues:
1969
+ :children:
1970
+ NumberOfNodes:
1971
+ :type: :integer
1972
+ AutomatedSnapshotRetentionPeriod:
1973
+ :type: :integer
1974
+ AllowVersionUpgrade:
1975
+ :type: :boolean
1976
+ NumberOfNodes:
1977
+ :type: :integer
1978
+ PubliclyAccessible:
1979
+ :type: :boolean
1980
+ Encrypted:
1981
+ :type: :boolean
1982
+ RestoreStatus:
1983
+ :children:
1984
+ CurrentRestoreRateInMegaBytesPerSecond:
1985
+ :type: :float
1986
+ SnapshotSizeInMegaBytes:
1987
+ :type: :integer
1988
+ ProgressInMegaBytes:
1989
+ :type: :integer
1990
+ ElapsedTimeInSeconds:
1991
+ :type: :integer
1992
+ EstimatedTimeToCompletionInSeconds:
1993
+ :type: :integer
1994
+ ClusterSnapshotCopyStatus:
1995
+ :children:
1996
+ RetentionPeriod:
1997
+ :type: :integer
1998
+ ClusterNodes:
1999
+ :ignore: true
2000
+ :children:
2001
+ member:
2002
+ :rename: :cluster_nodes
2003
+ :list: true
2004
+ :ignore: true
2005
+ - :name: RevokeClusterSecurityGroupIngress
2006
+ :method: :revoke_cluster_security_group_ingress
2007
+ :inputs:
2008
+ ClusterSecurityGroupName:
2009
+ - :string
2010
+ - :required
2011
+ CIDRIP:
2012
+ - :string
2013
+ EC2SecurityGroupName:
2014
+ - :string
2015
+ EC2SecurityGroupOwnerId:
2016
+ - :string
2017
+ :outputs:
2018
+ :children:
2019
+ RevokeClusterSecurityGroupIngressResult:
2020
+ :ignore: true
2021
+ :children:
2022
+ ClusterSecurityGroup:
2023
+ :children:
2024
+ EC2SecurityGroups:
2025
+ :ignore: true
2026
+ :children:
2027
+ EC2SecurityGroup:
2028
+ :rename: :ec2_security_groups
2029
+ :list: true
2030
+ IPRanges:
2031
+ :ignore: true
2032
+ :children:
2033
+ IPRange:
2034
+ :rename: :ip_ranges
2035
+ :list: true
2036
+ :ignore: true
2037
+ - :name: RevokeSnapshotAccess
2038
+ :method: :revoke_snapshot_access
2039
+ :inputs:
2040
+ SnapshotIdentifier:
2041
+ - :string
2042
+ - :required
2043
+ SnapshotClusterIdentifier:
2044
+ - :string
2045
+ AccountWithRestoreAccess:
2046
+ - :string
2047
+ - :required
2048
+ :outputs:
2049
+ :children:
2050
+ RevokeSnapshotAccessResult:
2051
+ :ignore: true
2052
+ :children:
2053
+ Snapshot:
2054
+ :children:
2055
+ SnapshotCreateTime:
2056
+ :type: :time
2057
+ Port:
2058
+ :type: :integer
2059
+ ClusterCreateTime:
2060
+ :type: :time
2061
+ NumberOfNodes:
2062
+ :type: :integer
2063
+ Encrypted:
2064
+ :type: :boolean
2065
+ EncryptedWithHSM:
2066
+ :type: :boolean
2067
+ AccountsWithRestoreAccess:
2068
+ :ignore: true
2069
+ :children:
2070
+ AccountWithRestoreAccess:
2071
+ :rename: :accounts_with_restore_access
2072
+ :list: true
2073
+ TotalBackupSizeInMegaBytes:
2074
+ :type: :float
2075
+ ActualIncrementalBackupSizeInMegaBytes:
2076
+ :type: :float
2077
+ BackupProgressInMegaBytes:
2078
+ :type: :float
2079
+ CurrentBackupRateInMegaBytesPerSecond:
2080
+ :type: :float
2081
+ EstimatedSecondsToCompletion:
2082
+ :type: :integer
2083
+ ElapsedTimeInSeconds:
2084
+ :type: :integer
2085
+ :ignore: true
2086
+ - :name: RotateEncryptionKey
2087
+ :method: :rotate_encryption_key
2088
+ :inputs:
2089
+ ClusterIdentifier:
2090
+ - :string
2091
+ - :required
2092
+ :outputs:
2093
+ :children:
2094
+ RotateEncryptionKeyResult:
2095
+ :ignore: true
2096
+ :children:
2097
+ Cluster:
2098
+ :children:
2099
+ Endpoint:
2100
+ :children:
2101
+ Port:
2102
+ :type: :integer
2103
+ ClusterCreateTime:
2104
+ :type: :time
2105
+ AutomatedSnapshotRetentionPeriod:
2106
+ :type: :integer
2107
+ ClusterSecurityGroups:
2108
+ :ignore: true
2109
+ :children:
2110
+ ClusterSecurityGroup:
2111
+ :rename: :cluster_security_groups
2112
+ :list: true
2113
+ VpcSecurityGroups:
2114
+ :ignore: true
2115
+ :children:
2116
+ VpcSecurityGroup:
2117
+ :rename: :vpc_security_groups
2118
+ :list: true
2119
+ ClusterParameterGroups:
2120
+ :ignore: true
2121
+ :children:
2122
+ ClusterParameterGroup:
2123
+ :rename: :cluster_parameter_groups
2124
+ :list: true
2125
+ PendingModifiedValues:
2126
+ :children:
2127
+ NumberOfNodes:
2128
+ :type: :integer
2129
+ AutomatedSnapshotRetentionPeriod:
2130
+ :type: :integer
2131
+ AllowVersionUpgrade:
2132
+ :type: :boolean
2133
+ NumberOfNodes:
2134
+ :type: :integer
2135
+ PubliclyAccessible:
2136
+ :type: :boolean
2137
+ Encrypted:
2138
+ :type: :boolean
2139
+ RestoreStatus:
2140
+ :children:
2141
+ CurrentRestoreRateInMegaBytesPerSecond:
2142
+ :type: :float
2143
+ SnapshotSizeInMegaBytes:
2144
+ :type: :integer
2145
+ ProgressInMegaBytes:
2146
+ :type: :integer
2147
+ ElapsedTimeInSeconds:
2148
+ :type: :integer
2149
+ EstimatedTimeToCompletionInSeconds:
2150
+ :type: :integer
2151
+ ClusterSnapshotCopyStatus:
2152
+ :children:
2153
+ RetentionPeriod:
2154
+ :type: :integer
2155
+ ClusterNodes:
2156
+ :ignore: true
2157
+ :children:
2158
+ member:
2159
+ :rename: :cluster_nodes
2160
+ :list: true
2161
+ :ignore: true