aws-sdk-euca 1.8.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,4368 @@
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-01'
16
+ :operations:
17
+ - :name: ActivateLicense
18
+ :method: :activate_license
19
+ :inputs:
20
+ LicenseId:
21
+ - :string
22
+ - :required
23
+ Capacity:
24
+ - :integer
25
+ - :required
26
+ :outputs: {}
27
+ - :name: AllocateAddress
28
+ :method: :allocate_address
29
+ :inputs:
30
+ Domain:
31
+ - :string
32
+ :outputs: {}
33
+ - :name: AssignPrivateIpAddresses
34
+ :method: :assign_private_ip_addresses
35
+ :inputs:
36
+ NetworkInterfaceId:
37
+ - :string
38
+ - :required
39
+ PrivateIpAddress:
40
+ - :list:
41
+ - :string
42
+ - :rename: privateIpAddresses
43
+ SecondaryPrivateIpAddressCount:
44
+ - :integer
45
+ AllowReassignment:
46
+ - :boolean
47
+ :outputs: {}
48
+ - :name: AssociateAddress
49
+ :method: :associate_address
50
+ :inputs:
51
+ InstanceId:
52
+ - :string
53
+ PublicIp:
54
+ - :string
55
+ AllocationId:
56
+ - :string
57
+ NetworkInterfaceId:
58
+ - :string
59
+ PrivateIpAddress:
60
+ - :string
61
+ AllowReassociation:
62
+ - :boolean
63
+ :outputs: {}
64
+ - :name: AssociateDhcpOptions
65
+ :method: :associate_dhcp_options
66
+ :inputs:
67
+ DhcpOptionsId:
68
+ - :string
69
+ - :required
70
+ VpcId:
71
+ - :string
72
+ - :required
73
+ :outputs: {}
74
+ - :name: AssociateRouteTable
75
+ :method: :associate_route_table
76
+ :inputs:
77
+ SubnetId:
78
+ - :string
79
+ - :required
80
+ RouteTableId:
81
+ - :string
82
+ - :required
83
+ :outputs: {}
84
+ - :name: AttachInternetGateway
85
+ :method: :attach_internet_gateway
86
+ :inputs:
87
+ InternetGatewayId:
88
+ - :string
89
+ - :required
90
+ VpcId:
91
+ - :string
92
+ - :required
93
+ :outputs: {}
94
+ - :name: AttachNetworkInterface
95
+ :method: :attach_network_interface
96
+ :inputs:
97
+ NetworkInterfaceId:
98
+ - :string
99
+ - :required
100
+ InstanceId:
101
+ - :string
102
+ - :required
103
+ DeviceIndex:
104
+ - :integer
105
+ - :required
106
+ :outputs: {}
107
+ - :name: AttachVolume
108
+ :method: :attach_volume
109
+ :inputs:
110
+ VolumeId:
111
+ - :string
112
+ - :required
113
+ InstanceId:
114
+ - :string
115
+ - :required
116
+ Device:
117
+ - :string
118
+ - :required
119
+ :outputs:
120
+ :children:
121
+ attachTime:
122
+ :type: :time
123
+ deleteOnTermination:
124
+ :type: :boolean
125
+ - :name: AttachVpnGateway
126
+ :method: :attach_vpn_gateway
127
+ :inputs:
128
+ VpnGatewayId:
129
+ - :string
130
+ - :required
131
+ VpcId:
132
+ - :string
133
+ - :required
134
+ :outputs: {}
135
+ - :name: AuthorizeSecurityGroupEgress
136
+ :method: :authorize_security_group_egress
137
+ :inputs:
138
+ GroupId:
139
+ - :string
140
+ - :required
141
+ SourceSecurityGroupName:
142
+ - :string
143
+ SourceSecurityGroupOwnerId:
144
+ - :string
145
+ IpProtocol:
146
+ - :string
147
+ FromPort:
148
+ - :integer
149
+ ToPort:
150
+ - :integer
151
+ CidrIp:
152
+ - :string
153
+ IpPermissions:
154
+ - :list:
155
+ - :structure:
156
+ IpProtocol:
157
+ - :string
158
+ - :rename: IpProtocol
159
+ FromPort:
160
+ - :integer
161
+ - :rename: FromPort
162
+ ToPort:
163
+ - :integer
164
+ - :rename: ToPort
165
+ Groups:
166
+ - :list:
167
+ - :structure:
168
+ UserId:
169
+ - :string
170
+ - :rename: UserId
171
+ GroupName:
172
+ - :string
173
+ - :rename: GroupName
174
+ GroupId:
175
+ - :string
176
+ - :rename: GroupId
177
+ - :rename: UserIdGroupPairs
178
+ IpRanges:
179
+ - :list:
180
+ - :structure:
181
+ CidrIp:
182
+ - :string
183
+ - :rename: CidrIp
184
+ - :rename: IpRanges
185
+ :outputs: {}
186
+ - :name: AuthorizeSecurityGroupIngress
187
+ :method: :authorize_security_group_ingress
188
+ :inputs:
189
+ GroupName:
190
+ - :string
191
+ GroupId:
192
+ - :string
193
+ SourceSecurityGroupName:
194
+ - :string
195
+ SourceSecurityGroupOwnerId:
196
+ - :string
197
+ IpProtocol:
198
+ - :string
199
+ FromPort:
200
+ - :integer
201
+ ToPort:
202
+ - :integer
203
+ CidrIp:
204
+ - :string
205
+ IpPermissions:
206
+ - :list:
207
+ - :structure:
208
+ IpProtocol:
209
+ - :string
210
+ - :rename: IpProtocol
211
+ FromPort:
212
+ - :integer
213
+ - :rename: FromPort
214
+ ToPort:
215
+ - :integer
216
+ - :rename: ToPort
217
+ Groups:
218
+ - :list:
219
+ - :structure:
220
+ UserId:
221
+ - :string
222
+ - :rename: UserId
223
+ GroupName:
224
+ - :string
225
+ - :rename: GroupName
226
+ GroupId:
227
+ - :string
228
+ - :rename: GroupId
229
+ - :rename: UserIdGroupPairs
230
+ IpRanges:
231
+ - :list:
232
+ - :structure:
233
+ CidrIp:
234
+ - :string
235
+ - :rename: CidrIp
236
+ - :rename: IpRanges
237
+ :outputs: {}
238
+ - :name: BundleInstance
239
+ :method: :bundle_instance
240
+ :inputs:
241
+ InstanceId:
242
+ - :string
243
+ - :required
244
+ Storage:
245
+ - :structure:
246
+ S3:
247
+ - :structure:
248
+ Bucket:
249
+ - :string
250
+ - :rename: Bucket
251
+ Prefix:
252
+ - :string
253
+ - :rename: Prefix
254
+ AWSAccessKeyId:
255
+ - :string
256
+ UploadPolicy:
257
+ - :string
258
+ - :rename: UploadPolicy
259
+ UploadPolicySignature:
260
+ - :string
261
+ - :rename: UploadPolicySignature
262
+ - :required
263
+ :outputs:
264
+ :children:
265
+ bundleInstanceTask:
266
+ :children:
267
+ startTime:
268
+ :type: :time
269
+ updateTime:
270
+ :type: :time
271
+ - :name: CancelBundleTask
272
+ :method: :cancel_bundle_task
273
+ :inputs:
274
+ BundleId:
275
+ - :string
276
+ - :required
277
+ :outputs:
278
+ :children:
279
+ bundleInstanceTask:
280
+ :children:
281
+ startTime:
282
+ :type: :time
283
+ updateTime:
284
+ :type: :time
285
+ - :name: CancelConversionTask
286
+ :method: :cancel_conversion_task
287
+ :inputs:
288
+ ConversionTaskId:
289
+ - :string
290
+ - :required
291
+ ReasonMessage:
292
+ - :string
293
+ :outputs: {}
294
+ - :name: CancelExportTask
295
+ :method: :cancel_export_task
296
+ :inputs:
297
+ ExportTaskId:
298
+ - :string
299
+ - :required
300
+ :outputs: {}
301
+ - :name: CancelReservedInstancesListing
302
+ :method: :cancel_reserved_instances_listing
303
+ :inputs:
304
+ ReservedInstancesListingId:
305
+ - :string
306
+ - :required
307
+ :outputs:
308
+ :children:
309
+ reservedInstancesListingsSet:
310
+ :ignore: true
311
+ :children:
312
+ item:
313
+ :rename: :reserved_instances_listings_set
314
+ :list: true
315
+ :children:
316
+ createDate:
317
+ :type: :time
318
+ updateDate:
319
+ :type: :time
320
+ instanceCounts:
321
+ :ignore: true
322
+ :children:
323
+ item:
324
+ :rename: :instance_counts
325
+ :list: true
326
+ :children:
327
+ instanceCount:
328
+ :type: :integer
329
+ priceSchedules:
330
+ :ignore: true
331
+ :children:
332
+ item:
333
+ :rename: :price_schedules
334
+ :list: true
335
+ :children:
336
+ term:
337
+ :type: :integer
338
+ price:
339
+ :type: :float
340
+ active:
341
+ :type: :boolean
342
+ tagSet:
343
+ :ignore: true
344
+ :children:
345
+ item:
346
+ :rename: :tag_set
347
+ :list: true
348
+ - :name: CancelSpotInstanceRequests
349
+ :method: :cancel_spot_instance_requests
350
+ :inputs:
351
+ SpotInstanceRequestId:
352
+ - :list:
353
+ - :string
354
+ - :required
355
+ - :rename: spotInstanceRequestIds
356
+ :outputs:
357
+ :children:
358
+ spotInstanceRequestSet:
359
+ :ignore: true
360
+ :children:
361
+ item:
362
+ :rename: :spot_instance_request_set
363
+ :list: true
364
+ - :name: ConfirmProductInstance
365
+ :method: :confirm_product_instance
366
+ :inputs:
367
+ ProductCode:
368
+ - :string
369
+ - :required
370
+ InstanceId:
371
+ - :string
372
+ - :required
373
+ :outputs: {}
374
+ - :name: CopyImage
375
+ :method: :copy_image
376
+ :inputs:
377
+ SourceRegion:
378
+ - :string
379
+ - :required
380
+ SourceImageId:
381
+ - :string
382
+ - :required
383
+ Name:
384
+ - :string
385
+ - :required
386
+ Description:
387
+ - :string
388
+ ClientToken:
389
+ - :string
390
+ :outputs: {}
391
+ - :name: CopySnapshot
392
+ :method: :copy_snapshot
393
+ :inputs:
394
+ SourceRegion:
395
+ - :string
396
+ - :required
397
+ SourceSnapshotId:
398
+ - :string
399
+ - :required
400
+ Description:
401
+ - :string
402
+ :outputs: {}
403
+ - :name: CreateCustomerGateway
404
+ :method: :create_customer_gateway
405
+ :inputs:
406
+ Type:
407
+ - :string
408
+ - :required
409
+ IpAddress:
410
+ - :string
411
+ - :required
412
+ - :rename: PublicIp
413
+ BgpAsn:
414
+ - :integer
415
+ - :required
416
+ :outputs:
417
+ :children:
418
+ customerGateway:
419
+ :children:
420
+ tagSet:
421
+ :ignore: true
422
+ :children:
423
+ item:
424
+ :rename: :tag_set
425
+ :list: true
426
+ - :name: CreateDhcpOptions
427
+ :method: :create_dhcp_options
428
+ :inputs:
429
+ DhcpConfiguration:
430
+ - :list:
431
+ - :structure:
432
+ Key:
433
+ - :string
434
+ - :rename: Key
435
+ Value:
436
+ - :list:
437
+ - :string
438
+ - :rename: Values
439
+ - :required
440
+ - :rename: DhcpConfigurations
441
+ :outputs:
442
+ :children:
443
+ dhcpOptions:
444
+ :children:
445
+ dhcpConfigurationSet:
446
+ :ignore: true
447
+ :children:
448
+ item:
449
+ :rename: :dhcp_configuration_set
450
+ :list: true
451
+ :children:
452
+ valueSet:
453
+ :ignore: true
454
+ :children:
455
+ item:
456
+ :rename: :value_set
457
+ :list: true
458
+ tagSet:
459
+ :ignore: true
460
+ :children:
461
+ item:
462
+ :rename: :tag_set
463
+ :list: true
464
+ - :name: CreateImage
465
+ :method: :create_image
466
+ :inputs:
467
+ InstanceId:
468
+ - :string
469
+ - :required
470
+ Name:
471
+ - :string
472
+ - :required
473
+ Description:
474
+ - :string
475
+ NoReboot:
476
+ - :boolean
477
+ BlockDeviceMapping:
478
+ - :list:
479
+ - :structure:
480
+ VirtualName:
481
+ - :string
482
+ - :rename: VirtualName
483
+ DeviceName:
484
+ - :string
485
+ - :rename: DeviceName
486
+ Ebs:
487
+ - :structure:
488
+ SnapshotId:
489
+ - :string
490
+ VolumeSize:
491
+ - :integer
492
+ DeleteOnTermination:
493
+ - :boolean
494
+ VolumeType:
495
+ - :string
496
+ Iops:
497
+ - :integer
498
+ NoDevice:
499
+ - :string
500
+ - :rename: blockDeviceMappings
501
+ :outputs: {}
502
+ - :name: CreateInstanceExportTask
503
+ :method: :create_instance_export_task
504
+ :inputs:
505
+ Description:
506
+ - :string
507
+ InstanceId:
508
+ - :string
509
+ - :required
510
+ TargetEnvironment:
511
+ - :string
512
+ ExportToS3:
513
+ - :structure:
514
+ DiskImageFormat:
515
+ - :string
516
+ ContainerFormat:
517
+ - :string
518
+ S3Bucket:
519
+ - :string
520
+ S3Prefix:
521
+ - :string
522
+ - :rename: exportToS3Task
523
+ :outputs: {}
524
+ - :name: CreateInternetGateway
525
+ :method: :create_internet_gateway
526
+ :inputs: {}
527
+ :outputs:
528
+ :children:
529
+ internetGateway:
530
+ :children:
531
+ attachmentSet:
532
+ :ignore: true
533
+ :children:
534
+ item:
535
+ :rename: :attachment_set
536
+ :list: true
537
+ tagSet:
538
+ :ignore: true
539
+ :children:
540
+ item:
541
+ :rename: :tag_set
542
+ :list: true
543
+ - :name: CreateKeyPair
544
+ :method: :create_key_pair
545
+ :inputs:
546
+ KeyName:
547
+ - :string
548
+ - :required
549
+ :outputs: {}
550
+ - :name: CreateNetworkAcl
551
+ :method: :create_network_acl
552
+ :inputs:
553
+ VpcId:
554
+ - :string
555
+ - :required
556
+ :outputs:
557
+ :children:
558
+ networkAcl:
559
+ :children:
560
+ default:
561
+ :type: :boolean
562
+ entrySet:
563
+ :ignore: true
564
+ :children:
565
+ item:
566
+ :rename: :entry_set
567
+ :list: true
568
+ :children:
569
+ ruleNumber:
570
+ :type: :integer
571
+ egress:
572
+ :type: :boolean
573
+ icmpTypeCode:
574
+ :children:
575
+ type:
576
+ :type: :integer
577
+ code:
578
+ :type: :integer
579
+ portRange:
580
+ :children:
581
+ from:
582
+ :type: :integer
583
+ to:
584
+ :type: :integer
585
+ associationSet:
586
+ :ignore: true
587
+ :children:
588
+ item:
589
+ :rename: :association_set
590
+ :list: true
591
+ tagSet:
592
+ :ignore: true
593
+ :children:
594
+ item:
595
+ :rename: :tag_set
596
+ :list: true
597
+ - :name: CreateNetworkAclEntry
598
+ :method: :create_network_acl_entry
599
+ :inputs:
600
+ NetworkAclId:
601
+ - :string
602
+ - :required
603
+ RuleNumber:
604
+ - :integer
605
+ - :required
606
+ Protocol:
607
+ - :string
608
+ - :required
609
+ RuleAction:
610
+ - :string
611
+ - :required
612
+ Egress:
613
+ - :boolean
614
+ - :required
615
+ CidrBlock:
616
+ - :string
617
+ - :required
618
+ Icmp:
619
+ - :structure:
620
+ Type:
621
+ - :integer
622
+ Code:
623
+ - :integer
624
+ - :rename: icmpTypeCode
625
+ PortRange:
626
+ - :structure:
627
+ From:
628
+ - :integer
629
+ To:
630
+ - :integer
631
+ :outputs: {}
632
+ - :name: CreateNetworkInterface
633
+ :method: :create_network_interface
634
+ :inputs:
635
+ SubnetId:
636
+ - :string
637
+ - :required
638
+ Description:
639
+ - :string
640
+ PrivateIpAddress:
641
+ - :string
642
+ SecurityGroupId:
643
+ - :list:
644
+ - :string
645
+ - :rename: groups
646
+ PrivateIpAddresses:
647
+ - :list:
648
+ - :structure:
649
+ PrivateIpAddress:
650
+ - :string
651
+ - :required
652
+ Primary:
653
+ - :boolean
654
+ SecondaryPrivateIpAddressCount:
655
+ - :integer
656
+ :outputs:
657
+ :children:
658
+ networkInterface:
659
+ :children:
660
+ requesterManaged:
661
+ :type: :boolean
662
+ sourceDestCheck:
663
+ :type: :boolean
664
+ groupSet:
665
+ :ignore: true
666
+ :children:
667
+ item:
668
+ :rename: :group_set
669
+ :list: true
670
+ attachment:
671
+ :children:
672
+ deviceIndex:
673
+ :type: :integer
674
+ attachTime:
675
+ :type: :time
676
+ deleteOnTermination:
677
+ :type: :boolean
678
+ tagSet:
679
+ :ignore: true
680
+ :children:
681
+ item:
682
+ :rename: :tag_set
683
+ :list: true
684
+ privateIpAddressesSet:
685
+ :ignore: true
686
+ :children:
687
+ item:
688
+ :rename: :private_ip_addresses_set
689
+ :list: true
690
+ :children:
691
+ primary:
692
+ :type: :boolean
693
+ - :name: CreatePlacementGroup
694
+ :method: :create_placement_group
695
+ :inputs:
696
+ GroupName:
697
+ - :string
698
+ - :required
699
+ Strategy:
700
+ - :string
701
+ - :required
702
+ :outputs: {}
703
+ - :name: CreateReservedInstancesListing
704
+ :method: :create_reserved_instances_listing
705
+ :inputs:
706
+ ReservedInstancesId:
707
+ - :string
708
+ - :required
709
+ InstanceCount:
710
+ - :integer
711
+ - :required
712
+ PriceSchedules:
713
+ - :list:
714
+ - :structure:
715
+ Term:
716
+ - :long
717
+ Price:
718
+ - :double
719
+ CurrencyCode:
720
+ - :string
721
+ - :required
722
+ ClientToken:
723
+ - :string
724
+ - :required
725
+ :outputs:
726
+ :children:
727
+ reservedInstancesListingsSet:
728
+ :ignore: true
729
+ :children:
730
+ item:
731
+ :rename: :reserved_instances_listings_set
732
+ :list: true
733
+ :children:
734
+ createDate:
735
+ :type: :time
736
+ updateDate:
737
+ :type: :time
738
+ instanceCounts:
739
+ :ignore: true
740
+ :children:
741
+ item:
742
+ :rename: :instance_counts
743
+ :list: true
744
+ :children:
745
+ instanceCount:
746
+ :type: :integer
747
+ priceSchedules:
748
+ :ignore: true
749
+ :children:
750
+ item:
751
+ :rename: :price_schedules
752
+ :list: true
753
+ :children:
754
+ term:
755
+ :type: :integer
756
+ price:
757
+ :type: :float
758
+ active:
759
+ :type: :boolean
760
+ tagSet:
761
+ :ignore: true
762
+ :children:
763
+ item:
764
+ :rename: :tag_set
765
+ :list: true
766
+ - :name: CreateRoute
767
+ :method: :create_route
768
+ :inputs:
769
+ RouteTableId:
770
+ - :string
771
+ - :required
772
+ DestinationCidrBlock:
773
+ - :string
774
+ - :required
775
+ GatewayId:
776
+ - :string
777
+ InstanceId:
778
+ - :string
779
+ NetworkInterfaceId:
780
+ - :string
781
+ :outputs: {}
782
+ - :name: CreateRouteTable
783
+ :method: :create_route_table
784
+ :inputs:
785
+ VpcId:
786
+ - :string
787
+ - :required
788
+ :outputs:
789
+ :children:
790
+ routeTable:
791
+ :children:
792
+ routeSet:
793
+ :ignore: true
794
+ :children:
795
+ item:
796
+ :rename: :route_set
797
+ :list: true
798
+ associationSet:
799
+ :ignore: true
800
+ :children:
801
+ item:
802
+ :rename: :association_set
803
+ :list: true
804
+ :children:
805
+ main:
806
+ :type: :boolean
807
+ tagSet:
808
+ :ignore: true
809
+ :children:
810
+ item:
811
+ :rename: :tag_set
812
+ :list: true
813
+ propagatingVgwSet:
814
+ :ignore: true
815
+ :children:
816
+ item:
817
+ :rename: :propagating_vgw_set
818
+ :list: true
819
+ - :name: CreateSecurityGroup
820
+ :method: :create_security_group
821
+ :inputs:
822
+ GroupName:
823
+ - :string
824
+ - :required
825
+ GroupDescription:
826
+ - :string
827
+ - :required
828
+ - :rename: Description
829
+ VpcId:
830
+ - :string
831
+ :outputs: {}
832
+ - :name: CreateSnapshot
833
+ :method: :create_snapshot
834
+ :inputs:
835
+ VolumeId:
836
+ - :string
837
+ - :required
838
+ Description:
839
+ - :string
840
+ :outputs:
841
+ :children:
842
+ startTime:
843
+ :type: :time
844
+ volumeSize:
845
+ :type: :integer
846
+ tagSet:
847
+ :ignore: true
848
+ :children:
849
+ item:
850
+ :rename: :tag_set
851
+ :list: true
852
+ - :name: CreateSpotDatafeedSubscription
853
+ :method: :create_spot_datafeed_subscription
854
+ :inputs:
855
+ Bucket:
856
+ - :string
857
+ - :required
858
+ Prefix:
859
+ - :string
860
+ :outputs: {}
861
+ - :name: CreateSubnet
862
+ :method: :create_subnet
863
+ :inputs:
864
+ VpcId:
865
+ - :string
866
+ - :required
867
+ CidrBlock:
868
+ - :string
869
+ - :required
870
+ AvailabilityZone:
871
+ - :string
872
+ :outputs:
873
+ :children:
874
+ subnet:
875
+ :children:
876
+ availableIpAddressCount:
877
+ :type: :integer
878
+ defaultForAz:
879
+ :type: :boolean
880
+ mapPublicIpOnLaunch:
881
+ :type: :boolean
882
+ tagSet:
883
+ :ignore: true
884
+ :children:
885
+ item:
886
+ :rename: :tag_set
887
+ :list: true
888
+ - :name: CreateTags
889
+ :method: :create_tags
890
+ :inputs:
891
+ ResourceId:
892
+ - :list:
893
+ - :string
894
+ - :required
895
+ - :rename: resources
896
+ Tag:
897
+ - :list:
898
+ - :structure:
899
+ Key:
900
+ - :string
901
+ Value:
902
+ - :string
903
+ - :required
904
+ - :rename: tags
905
+ :outputs: {}
906
+ - :name: CreateVolume
907
+ :method: :create_volume
908
+ :inputs:
909
+ Size:
910
+ - :integer
911
+ SnapshotId:
912
+ - :string
913
+ AvailabilityZone:
914
+ - :string
915
+ - :required
916
+ VolumeType:
917
+ - :string
918
+ Iops:
919
+ - :integer
920
+ :outputs:
921
+ :children:
922
+ size:
923
+ :type: :integer
924
+ createTime:
925
+ :type: :time
926
+ attachmentSet:
927
+ :ignore: true
928
+ :children:
929
+ item:
930
+ :rename: :attachment_set
931
+ :list: true
932
+ :children:
933
+ attachTime:
934
+ :type: :time
935
+ deleteOnTermination:
936
+ :type: :boolean
937
+ tagSet:
938
+ :ignore: true
939
+ :children:
940
+ item:
941
+ :rename: :tag_set
942
+ :list: true
943
+ iops:
944
+ :type: :integer
945
+ - :name: CreateVpc
946
+ :method: :create_vpc
947
+ :inputs:
948
+ CidrBlock:
949
+ - :string
950
+ - :required
951
+ InstanceTenancy:
952
+ - :string
953
+ :outputs:
954
+ :children:
955
+ vpc:
956
+ :children:
957
+ tagSet:
958
+ :ignore: true
959
+ :children:
960
+ item:
961
+ :rename: :tag_set
962
+ :list: true
963
+ isDefault:
964
+ :type: :boolean
965
+ - :name: CreateVpnConnection
966
+ :method: :create_vpn_connection
967
+ :inputs:
968
+ Type:
969
+ - :string
970
+ - :required
971
+ CustomerGatewayId:
972
+ - :string
973
+ - :required
974
+ VpnGatewayId:
975
+ - :string
976
+ - :required
977
+ Options:
978
+ - :structure:
979
+ StaticRoutesOnly:
980
+ - :boolean
981
+ :outputs:
982
+ :children:
983
+ vpnConnection:
984
+ :children:
985
+ tagSet:
986
+ :ignore: true
987
+ :children:
988
+ item:
989
+ :rename: :tag_set
990
+ :list: true
991
+ vgwTelemetry:
992
+ :ignore: true
993
+ :children:
994
+ item:
995
+ :rename: :vgw_telemetry
996
+ :list: true
997
+ :children:
998
+ lastStatusChange:
999
+ :type: :time
1000
+ acceptedRouteCount:
1001
+ :type: :integer
1002
+ options:
1003
+ :children:
1004
+ staticRoutesOnly:
1005
+ :type: :boolean
1006
+ routes:
1007
+ :ignore: true
1008
+ :children:
1009
+ item:
1010
+ :rename: :routes
1011
+ :list: true
1012
+ - :name: CreateVpnConnectionRoute
1013
+ :method: :create_vpn_connection_route
1014
+ :inputs:
1015
+ VpnConnectionId:
1016
+ - :string
1017
+ - :required
1018
+ DestinationCidrBlock:
1019
+ - :string
1020
+ - :required
1021
+ :outputs: {}
1022
+ - :name: CreateVpnGateway
1023
+ :method: :create_vpn_gateway
1024
+ :inputs:
1025
+ Type:
1026
+ - :string
1027
+ - :required
1028
+ AvailabilityZone:
1029
+ - :string
1030
+ :outputs:
1031
+ :children:
1032
+ vpnGateway:
1033
+ :children:
1034
+ attachments:
1035
+ :ignore: true
1036
+ :children:
1037
+ item:
1038
+ :rename: :attachments
1039
+ :list: true
1040
+ tagSet:
1041
+ :ignore: true
1042
+ :children:
1043
+ item:
1044
+ :rename: :tag_set
1045
+ :list: true
1046
+ type:
1047
+ :rename: :vpn_type
1048
+ - :name: DeactivateLicense
1049
+ :method: :deactivate_license
1050
+ :inputs:
1051
+ LicenseId:
1052
+ - :string
1053
+ - :required
1054
+ Capacity:
1055
+ - :integer
1056
+ - :required
1057
+ :outputs: {}
1058
+ - :name: DeleteCustomerGateway
1059
+ :method: :delete_customer_gateway
1060
+ :inputs:
1061
+ CustomerGatewayId:
1062
+ - :string
1063
+ - :required
1064
+ :outputs: {}
1065
+ - :name: DeleteDhcpOptions
1066
+ :method: :delete_dhcp_options
1067
+ :inputs:
1068
+ DhcpOptionsId:
1069
+ - :string
1070
+ - :required
1071
+ :outputs: {}
1072
+ - :name: DeleteInternetGateway
1073
+ :method: :delete_internet_gateway
1074
+ :inputs:
1075
+ InternetGatewayId:
1076
+ - :string
1077
+ - :required
1078
+ :outputs: {}
1079
+ - :name: DeleteKeyPair
1080
+ :method: :delete_key_pair
1081
+ :inputs:
1082
+ KeyName:
1083
+ - :string
1084
+ - :required
1085
+ :outputs: {}
1086
+ - :name: DeleteNetworkAcl
1087
+ :method: :delete_network_acl
1088
+ :inputs:
1089
+ NetworkAclId:
1090
+ - :string
1091
+ - :required
1092
+ :outputs: {}
1093
+ - :name: DeleteNetworkAclEntry
1094
+ :method: :delete_network_acl_entry
1095
+ :inputs:
1096
+ NetworkAclId:
1097
+ - :string
1098
+ - :required
1099
+ RuleNumber:
1100
+ - :integer
1101
+ - :required
1102
+ Egress:
1103
+ - :boolean
1104
+ - :required
1105
+ :outputs: {}
1106
+ - :name: DeleteNetworkInterface
1107
+ :method: :delete_network_interface
1108
+ :inputs:
1109
+ NetworkInterfaceId:
1110
+ - :string
1111
+ - :required
1112
+ :outputs: {}
1113
+ - :name: DeletePlacementGroup
1114
+ :method: :delete_placement_group
1115
+ :inputs:
1116
+ GroupName:
1117
+ - :string
1118
+ - :required
1119
+ :outputs: {}
1120
+ - :name: DeleteRoute
1121
+ :method: :delete_route
1122
+ :inputs:
1123
+ RouteTableId:
1124
+ - :string
1125
+ - :required
1126
+ DestinationCidrBlock:
1127
+ - :string
1128
+ - :required
1129
+ :outputs: {}
1130
+ - :name: DeleteRouteTable
1131
+ :method: :delete_route_table
1132
+ :inputs:
1133
+ RouteTableId:
1134
+ - :string
1135
+ - :required
1136
+ :outputs: {}
1137
+ - :name: DeleteSecurityGroup
1138
+ :method: :delete_security_group
1139
+ :inputs:
1140
+ GroupName:
1141
+ - :string
1142
+ GroupId:
1143
+ - :string
1144
+ :outputs: {}
1145
+ - :name: DeleteSnapshot
1146
+ :method: :delete_snapshot
1147
+ :inputs:
1148
+ SnapshotId:
1149
+ - :string
1150
+ - :required
1151
+ :outputs: {}
1152
+ - :name: DeleteSpotDatafeedSubscription
1153
+ :method: :delete_spot_datafeed_subscription
1154
+ :inputs: {}
1155
+ :outputs: {}
1156
+ - :name: DeleteSubnet
1157
+ :method: :delete_subnet
1158
+ :inputs:
1159
+ SubnetId:
1160
+ - :string
1161
+ - :required
1162
+ :outputs: {}
1163
+ - :name: DeleteTags
1164
+ :method: :delete_tags
1165
+ :inputs:
1166
+ ResourceId:
1167
+ - :list:
1168
+ - :string
1169
+ - :required
1170
+ - :rename: resources
1171
+ Tag:
1172
+ - :list:
1173
+ - :structure:
1174
+ Key:
1175
+ - :string
1176
+ Value:
1177
+ - :string
1178
+ - :rename: tags
1179
+ :outputs: {}
1180
+ - :name: DeleteVolume
1181
+ :method: :delete_volume
1182
+ :inputs:
1183
+ VolumeId:
1184
+ - :string
1185
+ - :required
1186
+ :outputs: {}
1187
+ - :name: DeleteVpc
1188
+ :method: :delete_vpc
1189
+ :inputs:
1190
+ VpcId:
1191
+ - :string
1192
+ - :required
1193
+ :outputs: {}
1194
+ - :name: DeleteVpnConnection
1195
+ :method: :delete_vpn_connection
1196
+ :inputs:
1197
+ VpnConnectionId:
1198
+ - :string
1199
+ - :required
1200
+ :outputs: {}
1201
+ - :name: DeleteVpnConnectionRoute
1202
+ :method: :delete_vpn_connection_route
1203
+ :inputs:
1204
+ VpnConnectionId:
1205
+ - :string
1206
+ - :required
1207
+ DestinationCidrBlock:
1208
+ - :string
1209
+ - :required
1210
+ :outputs: {}
1211
+ - :name: DeleteVpnGateway
1212
+ :method: :delete_vpn_gateway
1213
+ :inputs:
1214
+ VpnGatewayId:
1215
+ - :string
1216
+ - :required
1217
+ :outputs: {}
1218
+ - :name: DeregisterImage
1219
+ :method: :deregister_image
1220
+ :inputs:
1221
+ ImageId:
1222
+ - :string
1223
+ - :required
1224
+ :outputs: {}
1225
+ - :name: DescribeAccountAttributes
1226
+ :method: :describe_account_attributes
1227
+ :inputs:
1228
+ AttributeName:
1229
+ - :list:
1230
+ - :string
1231
+ - :rename: attributeNames
1232
+ :outputs:
1233
+ :children:
1234
+ accountAttributeSet:
1235
+ :ignore: true
1236
+ :children:
1237
+ item:
1238
+ :rename: :account_attribute_set
1239
+ :list: true
1240
+ :children:
1241
+ attributeValueSet:
1242
+ :ignore: true
1243
+ :children:
1244
+ item:
1245
+ :rename: :attribute_value_set
1246
+ :list: true
1247
+ - :name: DescribeAddresses
1248
+ :method: :describe_addresses
1249
+ :inputs:
1250
+ PublicIp:
1251
+ - :list:
1252
+ - :string
1253
+ - :rename: PublicIps
1254
+ Filter:
1255
+ - :list:
1256
+ - :structure:
1257
+ Name:
1258
+ - :string
1259
+ Value:
1260
+ - :list:
1261
+ - :string
1262
+ - :rename: Values
1263
+ - :rename: filters
1264
+ AllocationId:
1265
+ - :list:
1266
+ - :string
1267
+ - :rename: allocationIds
1268
+ :outputs:
1269
+ :children:
1270
+ addressesSet:
1271
+ :ignore: true
1272
+ :children:
1273
+ item:
1274
+ :rename: :addresses_set
1275
+ :list: true
1276
+ :index:
1277
+ :key: :public_ip
1278
+ :name: :address_index
1279
+ - :name: DescribeAvailabilityZones
1280
+ :method: :describe_availability_zones
1281
+ :inputs:
1282
+ ZoneName:
1283
+ - :list:
1284
+ - :string
1285
+ - :rename: ZoneNames
1286
+ Filter:
1287
+ - :list:
1288
+ - :structure:
1289
+ Name:
1290
+ - :string
1291
+ Value:
1292
+ - :list:
1293
+ - :string
1294
+ - :rename: Values
1295
+ - :rename: filters
1296
+ :outputs:
1297
+ :children:
1298
+ availabilityZoneInfo:
1299
+ :ignore: true
1300
+ :children:
1301
+ item:
1302
+ :rename: :availability_zone_info
1303
+ :list: true
1304
+ :children:
1305
+ messageSet:
1306
+ :ignore: true
1307
+ :children:
1308
+ item:
1309
+ :rename: :message_set
1310
+ :list: true
1311
+ - :name: DescribeBundleTasks
1312
+ :method: :describe_bundle_tasks
1313
+ :inputs:
1314
+ BundleId:
1315
+ - :list:
1316
+ - :string
1317
+ - :rename: BundleIds
1318
+ Filter:
1319
+ - :list:
1320
+ - :structure:
1321
+ Name:
1322
+ - :string
1323
+ Value:
1324
+ - :list:
1325
+ - :string
1326
+ - :rename: Values
1327
+ - :rename: filters
1328
+ :outputs:
1329
+ :children:
1330
+ bundleInstanceTasksSet:
1331
+ :ignore: true
1332
+ :children:
1333
+ item:
1334
+ :rename: :bundle_instance_tasks_set
1335
+ :list: true
1336
+ :children:
1337
+ startTime:
1338
+ :type: :time
1339
+ updateTime:
1340
+ :type: :time
1341
+ - :name: DescribeConversionTasks
1342
+ :method: :describe_conversion_tasks
1343
+ :inputs:
1344
+ Filter:
1345
+ - :list:
1346
+ - :structure:
1347
+ Name:
1348
+ - :string
1349
+ Value:
1350
+ - :list:
1351
+ - :string
1352
+ - :rename: Values
1353
+ - :rename: filters
1354
+ ConversionTaskId:
1355
+ - :list:
1356
+ - :string
1357
+ - :rename: conversionTaskIds
1358
+ :outputs:
1359
+ :children:
1360
+ conversionTasks:
1361
+ :ignore: true
1362
+ :children:
1363
+ item:
1364
+ :rename: :conversion_tasks
1365
+ :list: true
1366
+ :children:
1367
+ importInstance:
1368
+ :children:
1369
+ volumes:
1370
+ :ignore: true
1371
+ :children:
1372
+ item:
1373
+ :rename: :volumes
1374
+ :list: true
1375
+ :children:
1376
+ bytesConverted:
1377
+ :type: :integer
1378
+ image:
1379
+ :children:
1380
+ size:
1381
+ :type: :integer
1382
+ volume:
1383
+ :children:
1384
+ size:
1385
+ :type: :integer
1386
+ importVolume:
1387
+ :children:
1388
+ bytesConverted:
1389
+ :type: :integer
1390
+ image:
1391
+ :children:
1392
+ size:
1393
+ :type: :integer
1394
+ volume:
1395
+ :children:
1396
+ size:
1397
+ :type: :integer
1398
+ tagSet:
1399
+ :ignore: true
1400
+ :children:
1401
+ item:
1402
+ :rename: :tag_set
1403
+ :list: true
1404
+ - :name: DescribeCustomerGateways
1405
+ :method: :describe_customer_gateways
1406
+ :inputs:
1407
+ CustomerGatewayId:
1408
+ - :list:
1409
+ - :string
1410
+ - :rename: CustomerGatewayIds
1411
+ Filter:
1412
+ - :list:
1413
+ - :structure:
1414
+ Name:
1415
+ - :string
1416
+ Value:
1417
+ - :list:
1418
+ - :string
1419
+ - :rename: Values
1420
+ - :rename: Filters
1421
+ :outputs:
1422
+ :children:
1423
+ customerGatewaySet:
1424
+ :ignore: true
1425
+ :children:
1426
+ item:
1427
+ :rename: :customer_gateway_set
1428
+ :list: true
1429
+ :children:
1430
+ tagSet:
1431
+ :ignore: true
1432
+ :children:
1433
+ item:
1434
+ :rename: :tag_set
1435
+ :list: true
1436
+ type:
1437
+ :rename: :vpn_type
1438
+ - :name: DescribeDhcpOptions
1439
+ :method: :describe_dhcp_options
1440
+ :inputs:
1441
+ DhcpOptionsId:
1442
+ - :list:
1443
+ - :string
1444
+ - :rename: DhcpOptionsIds
1445
+ Filter:
1446
+ - :list:
1447
+ - :structure:
1448
+ Name:
1449
+ - :string
1450
+ Value:
1451
+ - :list:
1452
+ - :string
1453
+ - :rename: Values
1454
+ - :rename: filters
1455
+ :outputs:
1456
+ :children:
1457
+ dhcpOptionsSet:
1458
+ :ignore: true
1459
+ :children:
1460
+ item:
1461
+ :rename: :dhcp_options_set
1462
+ :list: true
1463
+ :children:
1464
+ dhcpConfigurationSet:
1465
+ :ignore: true
1466
+ :children:
1467
+ item:
1468
+ :rename: :dhcp_configuration_set
1469
+ :list: true
1470
+ :children:
1471
+ valueSet:
1472
+ :ignore: true
1473
+ :children:
1474
+ item:
1475
+ :rename: :value_set
1476
+ :list: true
1477
+ tagSet:
1478
+ :ignore: true
1479
+ :children:
1480
+ item:
1481
+ :rename: :tag_set
1482
+ :list: true
1483
+ - :name: DescribeExportTasks
1484
+ :method: :describe_export_tasks
1485
+ :inputs:
1486
+ ExportTaskId:
1487
+ - :list:
1488
+ - :string
1489
+ - :rename: exportTaskIds
1490
+ :outputs:
1491
+ :children:
1492
+ exportTaskSet:
1493
+ :ignore: true
1494
+ :children:
1495
+ item:
1496
+ :rename: :export_task_set
1497
+ :list: true
1498
+ - :name: DescribeImageAttribute
1499
+ :method: :describe_image_attribute
1500
+ :inputs:
1501
+ ImageId:
1502
+ - :string
1503
+ - :required
1504
+ Attribute:
1505
+ - :string
1506
+ - :required
1507
+ :outputs:
1508
+ :children:
1509
+ launchPermission:
1510
+ :ignore: true
1511
+ :children:
1512
+ item:
1513
+ :rename: :launch_permission
1514
+ :list: true
1515
+ productCodes:
1516
+ :ignore: true
1517
+ :children:
1518
+ item:
1519
+ :rename: :product_codes
1520
+ :list: true
1521
+ blockDeviceMapping:
1522
+ :ignore: true
1523
+ :children:
1524
+ item:
1525
+ :rename: :block_device_mapping
1526
+ :list: true
1527
+ :children:
1528
+ ebs:
1529
+ :children:
1530
+ volumeSize:
1531
+ :type: :integer
1532
+ deleteOnTermination:
1533
+ :type: :boolean
1534
+ iops:
1535
+ :type: :integer
1536
+ - :name: DescribeImages
1537
+ :method: :describe_images
1538
+ :inputs:
1539
+ ImageId:
1540
+ - :list:
1541
+ - :string
1542
+ - :rename: ImageIds
1543
+ Owner:
1544
+ - :list:
1545
+ - :string
1546
+ - :rename: Owners
1547
+ ExecutableBy:
1548
+ - :list:
1549
+ - :string
1550
+ - :rename: ExecutableUsers
1551
+ Filter:
1552
+ - :list:
1553
+ - :structure:
1554
+ Name:
1555
+ - :string
1556
+ Value:
1557
+ - :list:
1558
+ - :string
1559
+ - :rename: Values
1560
+ - :rename: filters
1561
+ :outputs:
1562
+ :children:
1563
+ imagesSet:
1564
+ :ignore: true
1565
+ :children:
1566
+ item:
1567
+ :rename: :images_set
1568
+ :list: true
1569
+ :children:
1570
+ isPublic:
1571
+ :type: :boolean
1572
+ productCodes:
1573
+ :ignore: true
1574
+ :children:
1575
+ item:
1576
+ :rename: :product_codes
1577
+ :list: true
1578
+ blockDeviceMapping:
1579
+ :ignore: true
1580
+ :children:
1581
+ item:
1582
+ :rename: :block_device_mapping
1583
+ :list: true
1584
+ :children:
1585
+ ebs:
1586
+ :children:
1587
+ volumeSize:
1588
+ :type: :integer
1589
+ deleteOnTermination:
1590
+ :type: :boolean
1591
+ iops:
1592
+ :type: :integer
1593
+ tagSet:
1594
+ :ignore: true
1595
+ :children:
1596
+ item:
1597
+ :rename: :tag_set
1598
+ :list: true
1599
+ :index:
1600
+ :key: :image_id
1601
+ :name: :image_index
1602
+ - :name: DescribeInstanceAttribute
1603
+ :method: :describe_instance_attribute
1604
+ :inputs:
1605
+ InstanceId:
1606
+ - :string
1607
+ - :required
1608
+ Attribute:
1609
+ - :string
1610
+ - :required
1611
+ :outputs:
1612
+ :children:
1613
+ disableApiTermination:
1614
+ :children:
1615
+ value:
1616
+ :type: :boolean
1617
+ blockDeviceMapping:
1618
+ :ignore: true
1619
+ :children:
1620
+ item:
1621
+ :rename: :block_device_mapping
1622
+ :list: true
1623
+ :children:
1624
+ ebs:
1625
+ :children:
1626
+ attachTime:
1627
+ :type: :time
1628
+ deleteOnTermination:
1629
+ :type: :boolean
1630
+ productCodes:
1631
+ :ignore: true
1632
+ :children:
1633
+ item:
1634
+ :rename: :product_codes
1635
+ :list: true
1636
+ ebsOptimized:
1637
+ :children:
1638
+ value:
1639
+ :type: :boolean
1640
+ - :name: DescribeInstanceStatus
1641
+ :method: :describe_instance_status
1642
+ :inputs:
1643
+ InstanceId:
1644
+ - :list:
1645
+ - :string
1646
+ - :rename: InstanceIds
1647
+ Filter:
1648
+ - :list:
1649
+ - :structure:
1650
+ Name:
1651
+ - :string
1652
+ Value:
1653
+ - :list:
1654
+ - :string
1655
+ - :rename: Values
1656
+ - :rename: filters
1657
+ NextToken:
1658
+ - :string
1659
+ MaxResults:
1660
+ - :integer
1661
+ IncludeAllInstances:
1662
+ - :boolean
1663
+ :outputs:
1664
+ :children:
1665
+ instanceStatusSet:
1666
+ :ignore: true
1667
+ :children:
1668
+ item:
1669
+ :rename: :instance_status_set
1670
+ :list: true
1671
+ :children:
1672
+ eventsSet:
1673
+ :ignore: true
1674
+ :children:
1675
+ item:
1676
+ :rename: :events_set
1677
+ :list: true
1678
+ :children:
1679
+ notBefore:
1680
+ :type: :time
1681
+ notAfter:
1682
+ :type: :time
1683
+ instanceState:
1684
+ :children:
1685
+ code:
1686
+ :type: :integer
1687
+ systemStatus:
1688
+ :children:
1689
+ details:
1690
+ :ignore: true
1691
+ :children:
1692
+ item:
1693
+ :rename: :details
1694
+ :list: true
1695
+ :children:
1696
+ impairedSince:
1697
+ :type: :time
1698
+ instanceStatus:
1699
+ :children:
1700
+ details:
1701
+ :ignore: true
1702
+ :children:
1703
+ item:
1704
+ :rename: :details
1705
+ :list: true
1706
+ :children:
1707
+ impairedSince:
1708
+ :type: :time
1709
+ - :name: DescribeInstances
1710
+ :method: :describe_instances
1711
+ :inputs:
1712
+ InstanceId:
1713
+ - :list:
1714
+ - :string
1715
+ - :rename: InstanceIds
1716
+ Filter:
1717
+ - :list:
1718
+ - :structure:
1719
+ Name:
1720
+ - :string
1721
+ Value:
1722
+ - :list:
1723
+ - :string
1724
+ - :rename: Values
1725
+ - :rename: filters
1726
+ :outputs:
1727
+ :children:
1728
+ reservationSet:
1729
+ :ignore: true
1730
+ :children:
1731
+ item:
1732
+ :rename: :reservation_set
1733
+ :list: true
1734
+ :children:
1735
+ groupSet:
1736
+ :ignore: true
1737
+ :children:
1738
+ item:
1739
+ :rename: :group_set
1740
+ :list: true
1741
+ instancesSet:
1742
+ :ignore: true
1743
+ :children:
1744
+ item:
1745
+ :rename: :instances_set
1746
+ :list: true
1747
+ :children:
1748
+ instanceState:
1749
+ :children:
1750
+ code:
1751
+ :type: :integer
1752
+ amiLaunchIndex:
1753
+ :type: :integer
1754
+ productCodes:
1755
+ :ignore: true
1756
+ :children:
1757
+ item:
1758
+ :rename: :product_codes
1759
+ :list: true
1760
+ launchTime:
1761
+ :type: :time
1762
+ blockDeviceMapping:
1763
+ :ignore: true
1764
+ :children:
1765
+ item:
1766
+ :rename: :block_device_mapping
1767
+ :list: true
1768
+ :children:
1769
+ ebs:
1770
+ :children:
1771
+ attachTime:
1772
+ :type: :time
1773
+ deleteOnTermination:
1774
+ :type: :boolean
1775
+ tagSet:
1776
+ :ignore: true
1777
+ :children:
1778
+ item:
1779
+ :rename: :tag_set
1780
+ :list: true
1781
+ groupSet:
1782
+ :ignore: true
1783
+ :children:
1784
+ item:
1785
+ :rename: :group_set
1786
+ :list: true
1787
+ sourceDestCheck:
1788
+ :type: :boolean
1789
+ networkInterfaceSet:
1790
+ :ignore: true
1791
+ :children:
1792
+ item:
1793
+ :rename: :network_interface_set
1794
+ :list: true
1795
+ :children:
1796
+ sourceDestCheck:
1797
+ :type: :boolean
1798
+ groupSet:
1799
+ :ignore: true
1800
+ :children:
1801
+ item:
1802
+ :rename: :group_set
1803
+ :list: true
1804
+ attachment:
1805
+ :children:
1806
+ deviceIndex:
1807
+ :type: :integer
1808
+ attachTime:
1809
+ :type: :time
1810
+ deleteOnTermination:
1811
+ :type: :boolean
1812
+ privateIpAddressesSet:
1813
+ :ignore: true
1814
+ :children:
1815
+ item:
1816
+ :rename: :private_ip_addresses_set
1817
+ :list: true
1818
+ :children:
1819
+ primary:
1820
+ :type: :boolean
1821
+ ebsOptimized:
1822
+ :type: :boolean
1823
+ :index:
1824
+ :key: :instance_id
1825
+ :name: :instance_index
1826
+ :index:
1827
+ :key_path:
1828
+ - :instances_set
1829
+ - :instance_id
1830
+ :name: :reservation_index
1831
+ - :name: DescribeInternetGateways
1832
+ :method: :describe_internet_gateways
1833
+ :inputs:
1834
+ InternetGatewayId:
1835
+ - :list:
1836
+ - :string
1837
+ - :rename: internetGatewayIds
1838
+ Filter:
1839
+ - :list:
1840
+ - :structure:
1841
+ Name:
1842
+ - :string
1843
+ Value:
1844
+ - :list:
1845
+ - :string
1846
+ - :rename: Values
1847
+ - :rename: filters
1848
+ :outputs:
1849
+ :children:
1850
+ internetGatewaySet:
1851
+ :ignore: true
1852
+ :children:
1853
+ item:
1854
+ :rename: :internet_gateway_set
1855
+ :list: true
1856
+ :children:
1857
+ attachmentSet:
1858
+ :ignore: true
1859
+ :children:
1860
+ item:
1861
+ :rename: :attachment_set
1862
+ :list: true
1863
+ tagSet:
1864
+ :ignore: true
1865
+ :children:
1866
+ item:
1867
+ :rename: :tag_set
1868
+ :list: true
1869
+ - :name: DescribeKeyPairs
1870
+ :method: :describe_key_pairs
1871
+ :inputs:
1872
+ KeyName:
1873
+ - :list:
1874
+ - :string
1875
+ - :rename: KeyNames
1876
+ Filter:
1877
+ - :list:
1878
+ - :structure:
1879
+ Name:
1880
+ - :string
1881
+ Value:
1882
+ - :list:
1883
+ - :string
1884
+ - :rename: Values
1885
+ - :rename: filters
1886
+ :outputs:
1887
+ :children:
1888
+ keySet:
1889
+ :ignore: true
1890
+ :children:
1891
+ item:
1892
+ :rename: :key_set
1893
+ :list: true
1894
+ :index:
1895
+ :key: :key_name
1896
+ :name: :key_index
1897
+ - :name: DescribeLicenses
1898
+ :method: :describe_licenses
1899
+ :inputs:
1900
+ LicenseId:
1901
+ - :list:
1902
+ - :string
1903
+ - :rename: licenseIds
1904
+ Filter:
1905
+ - :list:
1906
+ - :structure:
1907
+ Name:
1908
+ - :string
1909
+ Value:
1910
+ - :list:
1911
+ - :string
1912
+ - :rename: Values
1913
+ - :rename: filters
1914
+ :outputs:
1915
+ :children:
1916
+ licenseSet:
1917
+ :ignore: true
1918
+ :children:
1919
+ item:
1920
+ :rename: :license_set
1921
+ :list: true
1922
+ :children:
1923
+ capacitySet:
1924
+ :ignore: true
1925
+ :children:
1926
+ item:
1927
+ :rename: :capacity_set
1928
+ :list: true
1929
+ :children:
1930
+ capacity:
1931
+ :type: :integer
1932
+ instanceCapacity:
1933
+ :type: :integer
1934
+ earliestAllowedDeactivationTime:
1935
+ :type: :time
1936
+ tagSet:
1937
+ :ignore: true
1938
+ :children:
1939
+ item:
1940
+ :rename: :tag_set
1941
+ :list: true
1942
+ - :name: DescribeNetworkAcls
1943
+ :method: :describe_network_acls
1944
+ :inputs:
1945
+ NetworkAclId:
1946
+ - :list:
1947
+ - :string
1948
+ - :rename: networkAclIds
1949
+ Filter:
1950
+ - :list:
1951
+ - :structure:
1952
+ Name:
1953
+ - :string
1954
+ Value:
1955
+ - :list:
1956
+ - :string
1957
+ - :rename: Values
1958
+ - :rename: filters
1959
+ :outputs:
1960
+ :children:
1961
+ networkAclSet:
1962
+ :ignore: true
1963
+ :children:
1964
+ item:
1965
+ :rename: :network_acl_set
1966
+ :list: true
1967
+ :children:
1968
+ default:
1969
+ :type: :boolean
1970
+ entrySet:
1971
+ :ignore: true
1972
+ :children:
1973
+ item:
1974
+ :rename: :entry_set
1975
+ :list: true
1976
+ :children:
1977
+ ruleNumber:
1978
+ :type: :integer
1979
+ egress:
1980
+ :type: :boolean
1981
+ icmpTypeCode:
1982
+ :children:
1983
+ type:
1984
+ :type: :integer
1985
+ code:
1986
+ :type: :integer
1987
+ portRange:
1988
+ :children:
1989
+ from:
1990
+ :type: :integer
1991
+ to:
1992
+ :type: :integer
1993
+ associationSet:
1994
+ :ignore: true
1995
+ :children:
1996
+ item:
1997
+ :rename: :association_set
1998
+ :list: true
1999
+ tagSet:
2000
+ :ignore: true
2001
+ :children:
2002
+ item:
2003
+ :rename: :tag_set
2004
+ :list: true
2005
+ - :name: DescribeNetworkInterfaceAttribute
2006
+ :method: :describe_network_interface_attribute
2007
+ :inputs:
2008
+ NetworkInterfaceId:
2009
+ - :string
2010
+ - :required
2011
+ Description:
2012
+ - :string
2013
+ SourceDestCheck:
2014
+ - :string
2015
+ GroupSet:
2016
+ - :string
2017
+ - :rename: groups
2018
+ Attachment:
2019
+ - :string
2020
+ :outputs:
2021
+ :children:
2022
+ sourceDestCheck:
2023
+ :children:
2024
+ value:
2025
+ :type: :boolean
2026
+ groupSet:
2027
+ :ignore: true
2028
+ :children:
2029
+ item:
2030
+ :rename: :group_set
2031
+ :list: true
2032
+ attachment:
2033
+ :children:
2034
+ deviceIndex:
2035
+ :type: :integer
2036
+ attachTime:
2037
+ :type: :time
2038
+ deleteOnTermination:
2039
+ :type: :boolean
2040
+ - :name: DescribeNetworkInterfaces
2041
+ :method: :describe_network_interfaces
2042
+ :inputs:
2043
+ NetworkInterfaceId:
2044
+ - :list:
2045
+ - :string
2046
+ - :rename: networkInterfaceIds
2047
+ Filter:
2048
+ - :list:
2049
+ - :structure:
2050
+ Name:
2051
+ - :string
2052
+ Value:
2053
+ - :list:
2054
+ - :string
2055
+ - :rename: Values
2056
+ - :rename: filters
2057
+ :outputs:
2058
+ :children:
2059
+ networkInterfaceSet:
2060
+ :ignore: true
2061
+ :children:
2062
+ item:
2063
+ :rename: :network_interface_set
2064
+ :list: true
2065
+ :children:
2066
+ requesterManaged:
2067
+ :type: :boolean
2068
+ sourceDestCheck:
2069
+ :type: :boolean
2070
+ groupSet:
2071
+ :ignore: true
2072
+ :children:
2073
+ item:
2074
+ :rename: :groups
2075
+ :list: true
2076
+ attachment:
2077
+ :children:
2078
+ deviceIndex:
2079
+ :type: :integer
2080
+ attachTime:
2081
+ :type: :time
2082
+ deleteOnTermination:
2083
+ :type: :boolean
2084
+ tagSet:
2085
+ :ignore: true
2086
+ :children:
2087
+ item:
2088
+ :rename: :tag_set
2089
+ :list: true
2090
+ privateIpAddressesSet:
2091
+ :ignore: true
2092
+ :children:
2093
+ item:
2094
+ :rename: :private_ip_addresses_set
2095
+ :list: true
2096
+ :children:
2097
+ primary:
2098
+ :type: :boolean
2099
+ :rename: :set
2100
+ - :name: DescribePlacementGroups
2101
+ :method: :describe_placement_groups
2102
+ :inputs:
2103
+ GroupName:
2104
+ - :list:
2105
+ - :string
2106
+ - :rename: groupNames
2107
+ Filter:
2108
+ - :list:
2109
+ - :structure:
2110
+ Name:
2111
+ - :string
2112
+ Value:
2113
+ - :list:
2114
+ - :string
2115
+ - :rename: Values
2116
+ - :rename: filters
2117
+ :outputs:
2118
+ :children:
2119
+ placementGroupSet:
2120
+ :ignore: true
2121
+ :children:
2122
+ item:
2123
+ :rename: :placement_group_set
2124
+ :list: true
2125
+ - :name: DescribeRegions
2126
+ :method: :describe_regions
2127
+ :inputs:
2128
+ RegionName:
2129
+ - :list:
2130
+ - :string
2131
+ - :rename: RegionNames
2132
+ Filter:
2133
+ - :list:
2134
+ - :structure:
2135
+ Name:
2136
+ - :string
2137
+ Value:
2138
+ - :list:
2139
+ - :string
2140
+ - :rename: Values
2141
+ - :rename: filters
2142
+ :outputs:
2143
+ :children:
2144
+ regionInfo:
2145
+ :ignore: true
2146
+ :children:
2147
+ item:
2148
+ :rename: :region_info
2149
+ :list: true
2150
+ - :name: DescribeReservedInstances
2151
+ :method: :describe_reserved_instances
2152
+ :inputs:
2153
+ ReservedInstancesId:
2154
+ - :list:
2155
+ - :string
2156
+ - :rename: ReservedInstancesIds
2157
+ Filter:
2158
+ - :list:
2159
+ - :structure:
2160
+ Name:
2161
+ - :string
2162
+ Value:
2163
+ - :list:
2164
+ - :string
2165
+ - :rename: Values
2166
+ - :rename: filters
2167
+ OfferingType:
2168
+ - :string
2169
+ :outputs:
2170
+ :children:
2171
+ reservedInstancesSet:
2172
+ :ignore: true
2173
+ :children:
2174
+ item:
2175
+ :rename: :reserved_instances_set
2176
+ :list: true
2177
+ :children:
2178
+ start:
2179
+ :type: :time
2180
+ duration:
2181
+ :type: :integer
2182
+ usagePrice:
2183
+ :type: :float
2184
+ fixedPrice:
2185
+ :type: :float
2186
+ instanceCount:
2187
+ :type: :integer
2188
+ tagSet:
2189
+ :ignore: true
2190
+ :children:
2191
+ item:
2192
+ :rename: :tag_set
2193
+ :list: true
2194
+ recurringCharges:
2195
+ :ignore: true
2196
+ :children:
2197
+ item:
2198
+ :rename: :recurring_charges
2199
+ :list: true
2200
+ :children:
2201
+ amount:
2202
+ :type: :float
2203
+ - :name: DescribeReservedInstancesListings
2204
+ :method: :describe_reserved_instances_listings
2205
+ :inputs:
2206
+ ReservedInstancesId:
2207
+ - :string
2208
+ ReservedInstancesListingId:
2209
+ - :string
2210
+ Filters:
2211
+ - :list:
2212
+ - :structure:
2213
+ Name:
2214
+ - :string
2215
+ Value:
2216
+ - :list:
2217
+ - :string
2218
+ - :rename: Values
2219
+ :outputs:
2220
+ :children:
2221
+ reservedInstancesListingsSet:
2222
+ :ignore: true
2223
+ :children:
2224
+ item:
2225
+ :rename: :reserved_instances_listings_set
2226
+ :list: true
2227
+ :children:
2228
+ createDate:
2229
+ :type: :time
2230
+ updateDate:
2231
+ :type: :time
2232
+ instanceCounts:
2233
+ :ignore: true
2234
+ :children:
2235
+ item:
2236
+ :rename: :instance_counts
2237
+ :list: true
2238
+ :children:
2239
+ instanceCount:
2240
+ :type: :integer
2241
+ priceSchedules:
2242
+ :ignore: true
2243
+ :children:
2244
+ item:
2245
+ :rename: :price_schedules
2246
+ :list: true
2247
+ :children:
2248
+ term:
2249
+ :type: :integer
2250
+ price:
2251
+ :type: :float
2252
+ active:
2253
+ :type: :boolean
2254
+ tagSet:
2255
+ :ignore: true
2256
+ :children:
2257
+ item:
2258
+ :rename: :tag_set
2259
+ :list: true
2260
+ - :name: DescribeReservedInstancesOfferings
2261
+ :method: :describe_reserved_instances_offerings
2262
+ :inputs:
2263
+ ReservedInstancesOfferingId:
2264
+ - :list:
2265
+ - :string
2266
+ - :rename: ReservedInstancesOfferingIds
2267
+ InstanceType:
2268
+ - :string
2269
+ AvailabilityZone:
2270
+ - :string
2271
+ ProductDescription:
2272
+ - :string
2273
+ Filter:
2274
+ - :list:
2275
+ - :structure:
2276
+ Name:
2277
+ - :string
2278
+ Value:
2279
+ - :list:
2280
+ - :string
2281
+ - :rename: Values
2282
+ - :rename: filters
2283
+ InstanceTenancy:
2284
+ - :string
2285
+ OfferingType:
2286
+ - :string
2287
+ NextToken:
2288
+ - :string
2289
+ MaxResults:
2290
+ - :integer
2291
+ :outputs:
2292
+ :children:
2293
+ reservedInstancesOfferingsSet:
2294
+ :ignore: true
2295
+ :children:
2296
+ item:
2297
+ :rename: :reserved_instances_offerings_set
2298
+ :list: true
2299
+ :children:
2300
+ duration:
2301
+ :type: :integer
2302
+ usagePrice:
2303
+ :type: :float
2304
+ fixedPrice:
2305
+ :type: :float
2306
+ recurringCharges:
2307
+ :ignore: true
2308
+ :children:
2309
+ item:
2310
+ :rename: :recurring_charges
2311
+ :list: true
2312
+ :children:
2313
+ amount:
2314
+ :type: :float
2315
+ marketplace:
2316
+ :type: :boolean
2317
+ pricingDetailsSet:
2318
+ :ignore: true
2319
+ :children:
2320
+ item:
2321
+ :rename: :pricing_details_set
2322
+ :list: true
2323
+ :children:
2324
+ price:
2325
+ :type: :float
2326
+ count:
2327
+ :type: :integer
2328
+ - :name: DescribeRouteTables
2329
+ :method: :describe_route_tables
2330
+ :inputs:
2331
+ RouteTableId:
2332
+ - :list:
2333
+ - :string
2334
+ - :rename: routeTableIds
2335
+ Filter:
2336
+ - :list:
2337
+ - :structure:
2338
+ Name:
2339
+ - :string
2340
+ Value:
2341
+ - :list:
2342
+ - :string
2343
+ - :rename: Values
2344
+ - :rename: filters
2345
+ :outputs:
2346
+ :children:
2347
+ routeTableSet:
2348
+ :ignore: true
2349
+ :children:
2350
+ item:
2351
+ :rename: :route_table_set
2352
+ :list: true
2353
+ :children:
2354
+ routeSet:
2355
+ :ignore: true
2356
+ :children:
2357
+ item:
2358
+ :rename: :route_set
2359
+ :list: true
2360
+ associationSet:
2361
+ :ignore: true
2362
+ :children:
2363
+ item:
2364
+ :rename: :association_set
2365
+ :list: true
2366
+ :children:
2367
+ main:
2368
+ :type: :boolean
2369
+ tagSet:
2370
+ :ignore: true
2371
+ :children:
2372
+ item:
2373
+ :rename: :tag_set
2374
+ :list: true
2375
+ propagatingVgwSet:
2376
+ :ignore: true
2377
+ :children:
2378
+ item:
2379
+ :rename: :propagating_vgw_set
2380
+ :list: true
2381
+ - :name: DescribeSecurityGroups
2382
+ :method: :describe_security_groups
2383
+ :inputs:
2384
+ GroupName:
2385
+ - :list:
2386
+ - :string
2387
+ - :rename: GroupNames
2388
+ GroupId:
2389
+ - :list:
2390
+ - :string
2391
+ - :rename: GroupIds
2392
+ Filter:
2393
+ - :list:
2394
+ - :structure:
2395
+ Name:
2396
+ - :string
2397
+ Value:
2398
+ - :list:
2399
+ - :string
2400
+ - :rename: Values
2401
+ - :rename: filters
2402
+ :outputs:
2403
+ :children:
2404
+ securityGroupInfo:
2405
+ :ignore: true
2406
+ :children:
2407
+ item:
2408
+ :rename: :security_group_info
2409
+ :list: true
2410
+ :children:
2411
+ ipPermissions:
2412
+ :ignore: true
2413
+ :children:
2414
+ item:
2415
+ :rename: :ip_permissions
2416
+ :list: true
2417
+ :children:
2418
+ fromPort:
2419
+ :type: :integer
2420
+ toPort:
2421
+ :type: :integer
2422
+ groups:
2423
+ :ignore: true
2424
+ :children:
2425
+ item:
2426
+ :rename: :groups
2427
+ :list: true
2428
+ ipRanges:
2429
+ :ignore: true
2430
+ :children:
2431
+ item:
2432
+ :rename: :ip_ranges
2433
+ :list: true
2434
+ ipPermissionsEgress:
2435
+ :ignore: true
2436
+ :children:
2437
+ item:
2438
+ :rename: :ip_permissions_egress
2439
+ :list: true
2440
+ :children:
2441
+ fromPort:
2442
+ :type: :integer
2443
+ toPort:
2444
+ :type: :integer
2445
+ groups:
2446
+ :ignore: true
2447
+ :children:
2448
+ item:
2449
+ :rename: :groups
2450
+ :list: true
2451
+ ipRanges:
2452
+ :ignore: true
2453
+ :children:
2454
+ item:
2455
+ :rename: :ip_ranges
2456
+ :list: true
2457
+ tagSet:
2458
+ :ignore: true
2459
+ :children:
2460
+ item:
2461
+ :rename: :tag_set
2462
+ :list: true
2463
+ :index:
2464
+ :key: :group_id
2465
+ :name: :security_group_index
2466
+ - :name: DescribeSnapshotAttribute
2467
+ :method: :describe_snapshot_attribute
2468
+ :inputs:
2469
+ SnapshotId:
2470
+ - :string
2471
+ - :required
2472
+ Attribute:
2473
+ - :string
2474
+ - :required
2475
+ :outputs:
2476
+ :children:
2477
+ createVolumePermission:
2478
+ :ignore: true
2479
+ :children:
2480
+ item:
2481
+ :rename: :create_volume_permission
2482
+ :list: true
2483
+ productCodes:
2484
+ :ignore: true
2485
+ :children:
2486
+ item:
2487
+ :rename: :product_codes
2488
+ :list: true
2489
+ - :name: DescribeSnapshots
2490
+ :method: :describe_snapshots
2491
+ :inputs:
2492
+ SnapshotId:
2493
+ - :list:
2494
+ - :string
2495
+ - :rename: SnapshotIds
2496
+ Owner:
2497
+ - :list:
2498
+ - :string
2499
+ - :rename: OwnerIds
2500
+ RestorableBy:
2501
+ - :list:
2502
+ - :string
2503
+ - :rename: RestorableByUserIds
2504
+ Filter:
2505
+ - :list:
2506
+ - :structure:
2507
+ Name:
2508
+ - :string
2509
+ Value:
2510
+ - :list:
2511
+ - :string
2512
+ - :rename: Values
2513
+ - :rename: filters
2514
+ :outputs:
2515
+ :children:
2516
+ snapshotSet:
2517
+ :ignore: true
2518
+ :children:
2519
+ item:
2520
+ :rename: :snapshot_set
2521
+ :list: true
2522
+ :children:
2523
+ startTime:
2524
+ :type: :time
2525
+ volumeSize:
2526
+ :type: :integer
2527
+ tagSet:
2528
+ :ignore: true
2529
+ :children:
2530
+ item:
2531
+ :rename: :tag_set
2532
+ :list: true
2533
+ :index:
2534
+ :key: :snapshot_id
2535
+ :name: :snapshot_index
2536
+ - :name: DescribeSpotDatafeedSubscription
2537
+ :method: :describe_spot_datafeed_subscription
2538
+ :inputs: {}
2539
+ :outputs: {}
2540
+ - :name: DescribeSpotInstanceRequests
2541
+ :method: :describe_spot_instance_requests
2542
+ :inputs:
2543
+ SpotInstanceRequestId:
2544
+ - :list:
2545
+ - :string
2546
+ - :rename: spotInstanceRequestIds
2547
+ Filter:
2548
+ - :list:
2549
+ - :structure:
2550
+ Name:
2551
+ - :string
2552
+ Value:
2553
+ - :list:
2554
+ - :string
2555
+ - :rename: Values
2556
+ - :rename: filters
2557
+ :outputs:
2558
+ :children:
2559
+ spotInstanceRequestSet:
2560
+ :ignore: true
2561
+ :children:
2562
+ item:
2563
+ :rename: :spot_instance_request_set
2564
+ :list: true
2565
+ :children:
2566
+ status:
2567
+ :children:
2568
+ updateTime:
2569
+ :type: :time
2570
+ validFrom:
2571
+ :type: :time
2572
+ validUntil:
2573
+ :type: :time
2574
+ launchSpecification:
2575
+ :children:
2576
+ groupSet:
2577
+ :ignore: true
2578
+ :children:
2579
+ item:
2580
+ :rename: :group_set
2581
+ :list: true
2582
+ blockDeviceMapping:
2583
+ :ignore: true
2584
+ :children:
2585
+ item:
2586
+ :rename: :block_device_mapping
2587
+ :list: true
2588
+ :children:
2589
+ ebs:
2590
+ :children:
2591
+ volumeSize:
2592
+ :type: :integer
2593
+ deleteOnTermination:
2594
+ :type: :boolean
2595
+ iops:
2596
+ :type: :integer
2597
+ monitoringEnabled:
2598
+ :type: :boolean
2599
+ networkInterfaceSet:
2600
+ :ignore: true
2601
+ :children:
2602
+ item:
2603
+ :rename: :network_interface_set
2604
+ :list: true
2605
+ :children:
2606
+ deviceIndex:
2607
+ :type: :integer
2608
+ SecurityGroupId:
2609
+ :ignore: true
2610
+ :children:
2611
+ SecurityGroupId:
2612
+ :rename: :security_group_id
2613
+ :list: true
2614
+ deleteOnTermination:
2615
+ :type: :boolean
2616
+ privateIpAddressesSet:
2617
+ :ignore: true
2618
+ :children:
2619
+ item:
2620
+ :rename: :private_ip_addresses_set
2621
+ :list: true
2622
+ :children:
2623
+ primary:
2624
+ :type: :boolean
2625
+ secondaryPrivateIpAddressCount:
2626
+ :type: :integer
2627
+ ebsOptimized:
2628
+ :type: :boolean
2629
+ createTime:
2630
+ :type: :time
2631
+ tagSet:
2632
+ :ignore: true
2633
+ :children:
2634
+ item:
2635
+ :rename: :tag_set
2636
+ :list: true
2637
+ - :name: DescribeSpotPriceHistory
2638
+ :method: :describe_spot_price_history
2639
+ :inputs:
2640
+ StartTime:
2641
+ - :timestamp
2642
+ EndTime:
2643
+ - :timestamp
2644
+ InstanceType:
2645
+ - :list:
2646
+ - :string
2647
+ - :rename: instanceTypes
2648
+ ProductDescription:
2649
+ - :list:
2650
+ - :string
2651
+ - :rename: productDescriptions
2652
+ Filter:
2653
+ - :list:
2654
+ - :structure:
2655
+ Name:
2656
+ - :string
2657
+ Value:
2658
+ - :list:
2659
+ - :string
2660
+ - :rename: Values
2661
+ - :rename: filters
2662
+ AvailabilityZone:
2663
+ - :string
2664
+ MaxResults:
2665
+ - :integer
2666
+ NextToken:
2667
+ - :string
2668
+ :outputs:
2669
+ :children:
2670
+ spotPriceHistorySet:
2671
+ :ignore: true
2672
+ :children:
2673
+ item:
2674
+ :rename: :spot_price_history_set
2675
+ :list: true
2676
+ :children:
2677
+ timestamp:
2678
+ :type: :time
2679
+ - :name: DescribeSubnets
2680
+ :method: :describe_subnets
2681
+ :inputs:
2682
+ SubnetId:
2683
+ - :list:
2684
+ - :string
2685
+ - :rename: SubnetIds
2686
+ Filter:
2687
+ - :list:
2688
+ - :structure:
2689
+ Name:
2690
+ - :string
2691
+ Value:
2692
+ - :list:
2693
+ - :string
2694
+ - :rename: Values
2695
+ - :rename: Filters
2696
+ :outputs:
2697
+ :children:
2698
+ subnetSet:
2699
+ :ignore: true
2700
+ :children:
2701
+ item:
2702
+ :rename: :subnet_set
2703
+ :list: true
2704
+ :children:
2705
+ availableIpAddressCount:
2706
+ :type: :integer
2707
+ defaultForAz:
2708
+ :type: :boolean
2709
+ mapPublicIpOnLaunch:
2710
+ :type: :boolean
2711
+ tagSet:
2712
+ :ignore: true
2713
+ :children:
2714
+ item:
2715
+ :rename: :tag_set
2716
+ :list: true
2717
+ - :name: DescribeTags
2718
+ :method: :describe_tags
2719
+ :inputs:
2720
+ Filter:
2721
+ - :list:
2722
+ - :structure:
2723
+ Name:
2724
+ - :string
2725
+ Value:
2726
+ - :list:
2727
+ - :string
2728
+ - :rename: Values
2729
+ - :rename: filters
2730
+ :outputs:
2731
+ :children:
2732
+ tagSet:
2733
+ :ignore: true
2734
+ :children:
2735
+ item:
2736
+ :rename: :tag_set
2737
+ :list: true
2738
+ :index:
2739
+ :keys:
2740
+ - :resource_type
2741
+ - :resource_id
2742
+ - :key
2743
+ :name: :tag_index
2744
+ - :name: DescribeVolumeAttribute
2745
+ :method: :describe_volume_attribute
2746
+ :inputs:
2747
+ VolumeId:
2748
+ - :string
2749
+ - :required
2750
+ Attribute:
2751
+ - :string
2752
+ :outputs:
2753
+ :children:
2754
+ autoEnableIO:
2755
+ :children:
2756
+ value:
2757
+ :type: :boolean
2758
+ productCodes:
2759
+ :ignore: true
2760
+ :children:
2761
+ item:
2762
+ :rename: :product_codes
2763
+ :list: true
2764
+ - :name: DescribeVolumeStatus
2765
+ :method: :describe_volume_status
2766
+ :inputs:
2767
+ VolumeId:
2768
+ - :list:
2769
+ - :string
2770
+ - :rename: VolumeIds
2771
+ Filter:
2772
+ - :list:
2773
+ - :structure:
2774
+ Name:
2775
+ - :string
2776
+ Value:
2777
+ - :list:
2778
+ - :string
2779
+ - :rename: Values
2780
+ - :rename: filters
2781
+ NextToken:
2782
+ - :string
2783
+ MaxResults:
2784
+ - :integer
2785
+ :outputs:
2786
+ :children:
2787
+ volumeStatusSet:
2788
+ :ignore: true
2789
+ :children:
2790
+ item:
2791
+ :rename: :volume_status_set
2792
+ :list: true
2793
+ :children:
2794
+ volumeStatus:
2795
+ :children:
2796
+ details:
2797
+ :ignore: true
2798
+ :children:
2799
+ item:
2800
+ :rename: :details
2801
+ :list: true
2802
+ eventsSet:
2803
+ :ignore: true
2804
+ :children:
2805
+ item:
2806
+ :rename: :events_set
2807
+ :list: true
2808
+ :children:
2809
+ notBefore:
2810
+ :type: :time
2811
+ notAfter:
2812
+ :type: :time
2813
+ actionsSet:
2814
+ :ignore: true
2815
+ :children:
2816
+ item:
2817
+ :rename: :actions_set
2818
+ :list: true
2819
+ - :name: DescribeVolumes
2820
+ :method: :describe_volumes
2821
+ :inputs:
2822
+ VolumeId:
2823
+ - :list:
2824
+ - :string
2825
+ - :rename: VolumeIds
2826
+ Filter:
2827
+ - :list:
2828
+ - :structure:
2829
+ Name:
2830
+ - :string
2831
+ Value:
2832
+ - :list:
2833
+ - :string
2834
+ - :rename: Values
2835
+ - :rename: filters
2836
+ :outputs:
2837
+ :children:
2838
+ volumeSet:
2839
+ :ignore: true
2840
+ :children:
2841
+ item:
2842
+ :rename: :volume_set
2843
+ :list: true
2844
+ :children:
2845
+ size:
2846
+ :type: :integer
2847
+ createTime:
2848
+ :type: :time
2849
+ attachmentSet:
2850
+ :ignore: true
2851
+ :children:
2852
+ item:
2853
+ :rename: :attachment_set
2854
+ :list: true
2855
+ :children:
2856
+ attachTime:
2857
+ :type: :time
2858
+ deleteOnTermination:
2859
+ :type: :boolean
2860
+ tagSet:
2861
+ :ignore: true
2862
+ :children:
2863
+ item:
2864
+ :rename: :tag_set
2865
+ :list: true
2866
+ iops:
2867
+ :type: :integer
2868
+ :index:
2869
+ :key: :volume_id
2870
+ :name: :volume_index
2871
+ - :name: DescribeVpcAttribute
2872
+ :method: :describe_vpc_attribute
2873
+ :inputs:
2874
+ VpcId:
2875
+ - :string
2876
+ - :required
2877
+ Attribute:
2878
+ - :string
2879
+ :outputs:
2880
+ :children:
2881
+ enableDnsSupport:
2882
+ :children:
2883
+ value:
2884
+ :type: :boolean
2885
+ enableDnsHostnames:
2886
+ :children:
2887
+ value:
2888
+ :type: :boolean
2889
+ - :name: DescribeVpcs
2890
+ :method: :describe_vpcs
2891
+ :inputs:
2892
+ VpcId:
2893
+ - :list:
2894
+ - :string
2895
+ - :rename: VpcIds
2896
+ Filter:
2897
+ - :list:
2898
+ - :structure:
2899
+ Name:
2900
+ - :string
2901
+ Value:
2902
+ - :list:
2903
+ - :string
2904
+ - :rename: Values
2905
+ - :rename: Filters
2906
+ :outputs:
2907
+ :children:
2908
+ vpcSet:
2909
+ :ignore: true
2910
+ :children:
2911
+ item:
2912
+ :rename: :vpc_set
2913
+ :list: true
2914
+ :children:
2915
+ tagSet:
2916
+ :ignore: true
2917
+ :children:
2918
+ item:
2919
+ :rename: :tag_set
2920
+ :list: true
2921
+ isDefault:
2922
+ :type: :boolean
2923
+ - :name: DescribeVpnConnections
2924
+ :method: :describe_vpn_connections
2925
+ :inputs:
2926
+ VpnConnectionId:
2927
+ - :list:
2928
+ - :string
2929
+ - :rename: VpnConnectionIds
2930
+ Filter:
2931
+ - :list:
2932
+ - :structure:
2933
+ Name:
2934
+ - :string
2935
+ Value:
2936
+ - :list:
2937
+ - :string
2938
+ - :rename: Values
2939
+ - :rename: Filters
2940
+ :outputs:
2941
+ :children:
2942
+ vpnConnectionSet:
2943
+ :ignore: true
2944
+ :children:
2945
+ item:
2946
+ :rename: :vpn_connection_set
2947
+ :list: true
2948
+ :children:
2949
+ tagSet:
2950
+ :ignore: true
2951
+ :children:
2952
+ item:
2953
+ :rename: :tag_set
2954
+ :list: true
2955
+ vgwTelemetry:
2956
+ :ignore: true
2957
+ :children:
2958
+ item:
2959
+ :rename: :vgw_telemetry
2960
+ :list: true
2961
+ :children:
2962
+ lastStatusChange:
2963
+ :type: :time
2964
+ acceptedRouteCount:
2965
+ :type: :integer
2966
+ options:
2967
+ :children:
2968
+ staticRoutesOnly:
2969
+ :type: :boolean
2970
+ routes:
2971
+ :ignore: true
2972
+ :children:
2973
+ item:
2974
+ :rename: :routes
2975
+ :list: true
2976
+ type:
2977
+ :rename: :vpn_type
2978
+ - :name: DescribeVpnGateways
2979
+ :method: :describe_vpn_gateways
2980
+ :inputs:
2981
+ VpnGatewayId:
2982
+ - :list:
2983
+ - :string
2984
+ - :rename: VpnGatewayIds
2985
+ Filter:
2986
+ - :list:
2987
+ - :structure:
2988
+ Name:
2989
+ - :string
2990
+ Value:
2991
+ - :list:
2992
+ - :string
2993
+ - :rename: Values
2994
+ - :rename: Filters
2995
+ :outputs:
2996
+ :children:
2997
+ vpnGatewaySet:
2998
+ :ignore: true
2999
+ :children:
3000
+ item:
3001
+ :rename: :vpn_gateway_set
3002
+ :list: true
3003
+ :children:
3004
+ attachments:
3005
+ :ignore: true
3006
+ :children:
3007
+ item:
3008
+ :rename: :attachments
3009
+ :list: true
3010
+ tagSet:
3011
+ :ignore: true
3012
+ :children:
3013
+ item:
3014
+ :rename: :tag_set
3015
+ :list: true
3016
+ type:
3017
+ :rename: :vpn_type
3018
+ - :name: DetachInternetGateway
3019
+ :method: :detach_internet_gateway
3020
+ :inputs:
3021
+ InternetGatewayId:
3022
+ - :string
3023
+ - :required
3024
+ VpcId:
3025
+ - :string
3026
+ - :required
3027
+ :outputs: {}
3028
+ - :name: DetachNetworkInterface
3029
+ :method: :detach_network_interface
3030
+ :inputs:
3031
+ AttachmentId:
3032
+ - :string
3033
+ - :required
3034
+ Force:
3035
+ - :boolean
3036
+ :outputs: {}
3037
+ - :name: DetachVolume
3038
+ :method: :detach_volume
3039
+ :inputs:
3040
+ VolumeId:
3041
+ - :string
3042
+ - :required
3043
+ InstanceId:
3044
+ - :string
3045
+ Device:
3046
+ - :string
3047
+ Force:
3048
+ - :boolean
3049
+ :outputs:
3050
+ :children:
3051
+ attachTime:
3052
+ :type: :time
3053
+ deleteOnTermination:
3054
+ :type: :boolean
3055
+ - :name: DetachVpnGateway
3056
+ :method: :detach_vpn_gateway
3057
+ :inputs:
3058
+ VpnGatewayId:
3059
+ - :string
3060
+ - :required
3061
+ VpcId:
3062
+ - :string
3063
+ - :required
3064
+ :outputs: {}
3065
+ - :name: DisableVgwRoutePropagation
3066
+ :method: :disable_vgw_route_propagation
3067
+ :inputs:
3068
+ RouteTableId:
3069
+ - :string
3070
+ - :required
3071
+ GatewayId:
3072
+ - :string
3073
+ - :required
3074
+ :outputs: {}
3075
+ - :name: DisassociateAddress
3076
+ :method: :disassociate_address
3077
+ :inputs:
3078
+ PublicIp:
3079
+ - :string
3080
+ AssociationId:
3081
+ - :string
3082
+ :outputs: {}
3083
+ - :name: DisassociateRouteTable
3084
+ :method: :disassociate_route_table
3085
+ :inputs:
3086
+ AssociationId:
3087
+ - :string
3088
+ - :required
3089
+ :outputs: {}
3090
+ - :name: EnableVgwRoutePropagation
3091
+ :method: :enable_vgw_route_propagation
3092
+ :inputs:
3093
+ RouteTableId:
3094
+ - :string
3095
+ - :required
3096
+ GatewayId:
3097
+ - :string
3098
+ - :required
3099
+ :outputs: {}
3100
+ - :name: EnableVolumeIO
3101
+ :method: :enable_volume_io
3102
+ :inputs:
3103
+ VolumeId:
3104
+ - :string
3105
+ - :required
3106
+ :outputs: {}
3107
+ - :name: GetConsoleOutput
3108
+ :method: :get_console_output
3109
+ :inputs:
3110
+ InstanceId:
3111
+ - :string
3112
+ - :required
3113
+ :outputs:
3114
+ :children:
3115
+ timestamp:
3116
+ :type: :time
3117
+ - :name: GetPasswordData
3118
+ :method: :get_password_data
3119
+ :inputs:
3120
+ InstanceId:
3121
+ - :string
3122
+ - :required
3123
+ :outputs:
3124
+ :children:
3125
+ timestamp:
3126
+ :type: :time
3127
+ - :name: ImportInstance
3128
+ :method: :import_instance
3129
+ :inputs:
3130
+ Description:
3131
+ - :string
3132
+ LaunchSpecification:
3133
+ - :structure:
3134
+ Architecture:
3135
+ - :string
3136
+ SecurityGroup:
3137
+ - :list:
3138
+ - :string
3139
+ - :rename: securityGroups
3140
+ AdditionalInfo:
3141
+ - :string
3142
+ UserData:
3143
+ - :string
3144
+ InstanceType:
3145
+ - :string
3146
+ Placement:
3147
+ - :structure:
3148
+ AvailabilityZone:
3149
+ - :string
3150
+ - :rename: AvailabilityZone
3151
+ GroupName:
3152
+ - :string
3153
+ Tenancy:
3154
+ - :string
3155
+ BlockDeviceMapping:
3156
+ - :list:
3157
+ - :structure:
3158
+ VirtualName:
3159
+ - :string
3160
+ - :rename: VirtualName
3161
+ DeviceName:
3162
+ - :string
3163
+ - :rename: DeviceName
3164
+ Ebs:
3165
+ - :structure:
3166
+ SnapshotId:
3167
+ - :string
3168
+ VolumeSize:
3169
+ - :integer
3170
+ DeleteOnTermination:
3171
+ - :boolean
3172
+ VolumeType:
3173
+ - :string
3174
+ Iops:
3175
+ - :integer
3176
+ NoDevice:
3177
+ - :string
3178
+ - :rename: blockDeviceMappings
3179
+ Monitoring:
3180
+ - :boolean
3181
+ SubnetId:
3182
+ - :string
3183
+ DisableApiTermination:
3184
+ - :boolean
3185
+ InstanceInitiatedShutdownBehavior:
3186
+ - :string
3187
+ PrivateIpAddress:
3188
+ - :string
3189
+ DiskImage:
3190
+ - :list:
3191
+ - :structure:
3192
+ Image:
3193
+ - :structure:
3194
+ Format:
3195
+ - :string
3196
+ - :required
3197
+ Bytes:
3198
+ - :long
3199
+ - :required
3200
+ ImportManifestUrl:
3201
+ - :string
3202
+ - :required
3203
+ Description:
3204
+ - :string
3205
+ Volume:
3206
+ - :structure:
3207
+ Size:
3208
+ - :long
3209
+ - :required
3210
+ - :rename: diskImages
3211
+ Platform:
3212
+ - :string
3213
+ - :required
3214
+ :outputs:
3215
+ :children:
3216
+ conversionTask:
3217
+ :children:
3218
+ importInstance:
3219
+ :children:
3220
+ volumes:
3221
+ :ignore: true
3222
+ :children:
3223
+ item:
3224
+ :rename: :volumes
3225
+ :list: true
3226
+ :children:
3227
+ bytesConverted:
3228
+ :type: :integer
3229
+ image:
3230
+ :children:
3231
+ size:
3232
+ :type: :integer
3233
+ volume:
3234
+ :children:
3235
+ size:
3236
+ :type: :integer
3237
+ importVolume:
3238
+ :children:
3239
+ bytesConverted:
3240
+ :type: :integer
3241
+ image:
3242
+ :children:
3243
+ size:
3244
+ :type: :integer
3245
+ volume:
3246
+ :children:
3247
+ size:
3248
+ :type: :integer
3249
+ tagSet:
3250
+ :ignore: true
3251
+ :children:
3252
+ item:
3253
+ :rename: :tag_set
3254
+ :list: true
3255
+ - :name: ImportKeyPair
3256
+ :method: :import_key_pair
3257
+ :inputs:
3258
+ KeyName:
3259
+ - :string
3260
+ - :required
3261
+ PublicKeyMaterial:
3262
+ - :string
3263
+ - :required
3264
+ :outputs: {}
3265
+ - :name: ImportVolume
3266
+ :method: :import_volume
3267
+ :inputs:
3268
+ AvailabilityZone:
3269
+ - :string
3270
+ Image:
3271
+ - :structure:
3272
+ Format:
3273
+ - :string
3274
+ - :required
3275
+ Bytes:
3276
+ - :long
3277
+ - :required
3278
+ ImportManifestUrl:
3279
+ - :string
3280
+ - :required
3281
+ Description:
3282
+ - :string
3283
+ Volume:
3284
+ - :structure:
3285
+ Size:
3286
+ - :long
3287
+ - :required
3288
+ :outputs:
3289
+ :children:
3290
+ conversionTask:
3291
+ :children:
3292
+ importInstance:
3293
+ :children:
3294
+ volumes:
3295
+ :ignore: true
3296
+ :children:
3297
+ item:
3298
+ :rename: :volumes
3299
+ :list: true
3300
+ :children:
3301
+ bytesConverted:
3302
+ :type: :integer
3303
+ image:
3304
+ :children:
3305
+ size:
3306
+ :type: :integer
3307
+ volume:
3308
+ :children:
3309
+ size:
3310
+ :type: :integer
3311
+ importVolume:
3312
+ :children:
3313
+ bytesConverted:
3314
+ :type: :integer
3315
+ image:
3316
+ :children:
3317
+ size:
3318
+ :type: :integer
3319
+ volume:
3320
+ :children:
3321
+ size:
3322
+ :type: :integer
3323
+ tagSet:
3324
+ :ignore: true
3325
+ :children:
3326
+ item:
3327
+ :rename: :tag_set
3328
+ :list: true
3329
+ - :name: ModifyImageAttribute
3330
+ :method: :modify_image_attribute
3331
+ :inputs:
3332
+ ImageId:
3333
+ - :string
3334
+ - :required
3335
+ Attribute:
3336
+ - :string
3337
+ OperationType:
3338
+ - :string
3339
+ UserId:
3340
+ - :list:
3341
+ - :string
3342
+ - :rename: UserIds
3343
+ UserGroup:
3344
+ - :list:
3345
+ - :string
3346
+ - :rename: UserGroups
3347
+ ProductCode:
3348
+ - :list:
3349
+ - :string
3350
+ - :rename: ProductCodes
3351
+ Value:
3352
+ - :string
3353
+ LaunchPermission:
3354
+ - :structure:
3355
+ Add:
3356
+ - :list:
3357
+ - :structure:
3358
+ UserId:
3359
+ - :string
3360
+ - :rename: UserId
3361
+ Group:
3362
+ - :string
3363
+ - :rename: Group
3364
+ Remove:
3365
+ - :list:
3366
+ - :structure:
3367
+ UserId:
3368
+ - :string
3369
+ - :rename: UserId
3370
+ Group:
3371
+ - :string
3372
+ - :rename: Group
3373
+ Description:
3374
+ - :structure:
3375
+ Value:
3376
+ - :string
3377
+ :outputs: {}
3378
+ - :name: ModifyInstanceAttribute
3379
+ :method: :modify_instance_attribute
3380
+ :inputs:
3381
+ InstanceId:
3382
+ - :string
3383
+ - :required
3384
+ Attribute:
3385
+ - :string
3386
+ Value:
3387
+ - :string
3388
+ BlockDeviceMapping:
3389
+ - :list:
3390
+ - :structure:
3391
+ DeviceName:
3392
+ - :string
3393
+ Ebs:
3394
+ - :structure:
3395
+ VolumeId:
3396
+ - :string
3397
+ DeleteOnTermination:
3398
+ - :boolean
3399
+ VirtualName:
3400
+ - :string
3401
+ NoDevice:
3402
+ - :string
3403
+ - :rename: blockDeviceMappings
3404
+ SourceDestCheck:
3405
+ - :structure:
3406
+ Value:
3407
+ - :boolean
3408
+ DisableApiTermination:
3409
+ - :structure:
3410
+ Value:
3411
+ - :boolean
3412
+ InstanceType:
3413
+ - :structure:
3414
+ Value:
3415
+ - :string
3416
+ Kernel:
3417
+ - :structure:
3418
+ Value:
3419
+ - :string
3420
+ Ramdisk:
3421
+ - :structure:
3422
+ Value:
3423
+ - :string
3424
+ UserData:
3425
+ - :structure:
3426
+ Value:
3427
+ - :string
3428
+ InstanceInitiatedShutdownBehavior:
3429
+ - :structure:
3430
+ Value:
3431
+ - :string
3432
+ GroupId:
3433
+ - :list:
3434
+ - :string
3435
+ - :rename: groups
3436
+ EbsOptimized:
3437
+ - :structure:
3438
+ Value:
3439
+ - :boolean
3440
+ :outputs: {}
3441
+ - :name: ModifyNetworkInterfaceAttribute
3442
+ :method: :modify_network_interface_attribute
3443
+ :inputs:
3444
+ NetworkInterfaceId:
3445
+ - :string
3446
+ - :required
3447
+ Description:
3448
+ - :structure:
3449
+ Value:
3450
+ - :string
3451
+ SourceDestCheck:
3452
+ - :structure:
3453
+ Value:
3454
+ - :boolean
3455
+ SecurityGroupId:
3456
+ - :list:
3457
+ - :string
3458
+ - :rename: groups
3459
+ Attachment:
3460
+ - :structure:
3461
+ AttachmentId:
3462
+ - :string
3463
+ DeleteOnTermination:
3464
+ - :boolean
3465
+ :outputs: {}
3466
+ - :name: ModifySnapshotAttribute
3467
+ :method: :modify_snapshot_attribute
3468
+ :inputs:
3469
+ SnapshotId:
3470
+ - :string
3471
+ - :required
3472
+ Attribute:
3473
+ - :string
3474
+ OperationType:
3475
+ - :string
3476
+ UserId:
3477
+ - :list:
3478
+ - :string
3479
+ - :rename: UserIds
3480
+ UserGroup:
3481
+ - :list:
3482
+ - :string
3483
+ - :rename: GroupNames
3484
+ CreateVolumePermission:
3485
+ - :structure:
3486
+ Add:
3487
+ - :list:
3488
+ - :structure:
3489
+ UserId:
3490
+ - :string
3491
+ - :rename: UserId
3492
+ Group:
3493
+ - :string
3494
+ - :rename: Group
3495
+ Remove:
3496
+ - :list:
3497
+ - :structure:
3498
+ UserId:
3499
+ - :string
3500
+ - :rename: UserId
3501
+ Group:
3502
+ - :string
3503
+ - :rename: Group
3504
+ :outputs: {}
3505
+ - :name: ModifyVolumeAttribute
3506
+ :method: :modify_volume_attribute
3507
+ :inputs:
3508
+ VolumeId:
3509
+ - :string
3510
+ - :required
3511
+ AutoEnableIO:
3512
+ - :boolean
3513
+ :outputs: {}
3514
+ - :name: ModifyVpcAttribute
3515
+ :method: :modify_vpc_attribute
3516
+ :inputs:
3517
+ VpcId:
3518
+ - :string
3519
+ - :required
3520
+ - :rename: VpcId
3521
+ EnableDnsSupport:
3522
+ - :structure:
3523
+ Value:
3524
+ - :boolean
3525
+ EnableDnsHostnames:
3526
+ - :structure:
3527
+ Value:
3528
+ - :boolean
3529
+ :outputs: {}
3530
+ - :name: MonitorInstances
3531
+ :method: :monitor_instances
3532
+ :inputs:
3533
+ InstanceId:
3534
+ - :list:
3535
+ - :string
3536
+ - :required
3537
+ - :rename: InstanceIds
3538
+ :outputs:
3539
+ :children:
3540
+ instancesSet:
3541
+ :ignore: true
3542
+ :children:
3543
+ item:
3544
+ :rename: :instances_set
3545
+ :list: true
3546
+ - :name: PurchaseReservedInstancesOffering
3547
+ :method: :purchase_reserved_instances_offering
3548
+ :inputs:
3549
+ ReservedInstancesOfferingId:
3550
+ - :string
3551
+ - :required
3552
+ InstanceCount:
3553
+ - :integer
3554
+ - :required
3555
+ LimitPrice:
3556
+ - :structure:
3557
+ Amount:
3558
+ - :double
3559
+ CurrencyCode:
3560
+ - :string
3561
+ :outputs: {}
3562
+ - :name: RebootInstances
3563
+ :method: :reboot_instances
3564
+ :inputs:
3565
+ InstanceId:
3566
+ - :list:
3567
+ - :string
3568
+ - :required
3569
+ - :rename: InstanceIds
3570
+ :outputs: {}
3571
+ - :name: RegisterImage
3572
+ :method: :register_image
3573
+ :inputs:
3574
+ ImageLocation:
3575
+ - :string
3576
+ Name:
3577
+ - :string
3578
+ Description:
3579
+ - :string
3580
+ Architecture:
3581
+ - :string
3582
+ KernelId:
3583
+ - :string
3584
+ RamdiskId:
3585
+ - :string
3586
+ RootDeviceName:
3587
+ - :string
3588
+ BlockDeviceMapping:
3589
+ - :list:
3590
+ - :structure:
3591
+ VirtualName:
3592
+ - :string
3593
+ - :rename: VirtualName
3594
+ DeviceName:
3595
+ - :string
3596
+ - :rename: DeviceName
3597
+ Ebs:
3598
+ - :structure:
3599
+ SnapshotId:
3600
+ - :string
3601
+ VolumeSize:
3602
+ - :integer
3603
+ DeleteOnTermination:
3604
+ - :boolean
3605
+ VolumeType:
3606
+ - :string
3607
+ Iops:
3608
+ - :integer
3609
+ NoDevice:
3610
+ - :string
3611
+ - :rename: blockDeviceMappings
3612
+ :outputs: {}
3613
+ - :name: ReleaseAddress
3614
+ :method: :release_address
3615
+ :inputs:
3616
+ PublicIp:
3617
+ - :string
3618
+ AllocationId:
3619
+ - :string
3620
+ :outputs: {}
3621
+ - :name: ReplaceNetworkAclAssociation
3622
+ :method: :replace_network_acl_association
3623
+ :inputs:
3624
+ AssociationId:
3625
+ - :string
3626
+ - :required
3627
+ NetworkAclId:
3628
+ - :string
3629
+ - :required
3630
+ :outputs: {}
3631
+ - :name: ReplaceNetworkAclEntry
3632
+ :method: :replace_network_acl_entry
3633
+ :inputs:
3634
+ NetworkAclId:
3635
+ - :string
3636
+ - :required
3637
+ RuleNumber:
3638
+ - :integer
3639
+ - :required
3640
+ Protocol:
3641
+ - :string
3642
+ - :required
3643
+ RuleAction:
3644
+ - :string
3645
+ - :required
3646
+ Egress:
3647
+ - :boolean
3648
+ - :required
3649
+ CidrBlock:
3650
+ - :string
3651
+ - :required
3652
+ Icmp:
3653
+ - :structure:
3654
+ Type:
3655
+ - :integer
3656
+ Code:
3657
+ - :integer
3658
+ - :rename: icmpTypeCode
3659
+ PortRange:
3660
+ - :structure:
3661
+ From:
3662
+ - :integer
3663
+ To:
3664
+ - :integer
3665
+ :outputs: {}
3666
+ - :name: ReplaceRoute
3667
+ :method: :replace_route
3668
+ :inputs:
3669
+ RouteTableId:
3670
+ - :string
3671
+ - :required
3672
+ DestinationCidrBlock:
3673
+ - :string
3674
+ - :required
3675
+ GatewayId:
3676
+ - :string
3677
+ InstanceId:
3678
+ - :string
3679
+ NetworkInterfaceId:
3680
+ - :string
3681
+ :outputs: {}
3682
+ - :name: ReplaceRouteTableAssociation
3683
+ :method: :replace_route_table_association
3684
+ :inputs:
3685
+ AssociationId:
3686
+ - :string
3687
+ - :required
3688
+ RouteTableId:
3689
+ - :string
3690
+ - :required
3691
+ :outputs: {}
3692
+ - :name: ReportInstanceStatus
3693
+ :method: :report_instance_status
3694
+ :inputs:
3695
+ InstanceId:
3696
+ - :list:
3697
+ - :string
3698
+ - :rename: instances
3699
+ Status:
3700
+ - :string
3701
+ StartTime:
3702
+ - :timestamp
3703
+ EndTime:
3704
+ - :timestamp
3705
+ ReasonCode:
3706
+ - :list:
3707
+ - :string
3708
+ - :rename: reasonCodes
3709
+ Description:
3710
+ - :string
3711
+ :outputs: {}
3712
+ - :name: RequestSpotInstances
3713
+ :method: :request_spot_instances
3714
+ :inputs:
3715
+ SpotPrice:
3716
+ - :string
3717
+ - :required
3718
+ InstanceCount:
3719
+ - :integer
3720
+ Type:
3721
+ - :string
3722
+ ValidFrom:
3723
+ - :timestamp
3724
+ ValidUntil:
3725
+ - :timestamp
3726
+ LaunchGroup:
3727
+ - :string
3728
+ AvailabilityZoneGroup:
3729
+ - :string
3730
+ LaunchSpecification:
3731
+ - :structure:
3732
+ ImageId:
3733
+ - :string
3734
+ KeyName:
3735
+ - :string
3736
+ UserData:
3737
+ - :string
3738
+ AddressingType:
3739
+ - :string
3740
+ InstanceType:
3741
+ - :string
3742
+ Placement:
3743
+ - :structure:
3744
+ AvailabilityZone:
3745
+ - :string
3746
+ GroupName:
3747
+ - :string
3748
+ KernelId:
3749
+ - :string
3750
+ RamdiskId:
3751
+ - :string
3752
+ BlockDeviceMapping:
3753
+ - :list:
3754
+ - :structure:
3755
+ VirtualName:
3756
+ - :string
3757
+ - :rename: VirtualName
3758
+ DeviceName:
3759
+ - :string
3760
+ - :rename: DeviceName
3761
+ Ebs:
3762
+ - :structure:
3763
+ SnapshotId:
3764
+ - :string
3765
+ VolumeSize:
3766
+ - :integer
3767
+ DeleteOnTermination:
3768
+ - :boolean
3769
+ VolumeType:
3770
+ - :string
3771
+ Iops:
3772
+ - :integer
3773
+ NoDevice:
3774
+ - :string
3775
+ - :rename: blockDeviceMappings
3776
+ MonitoringEnabled:
3777
+ - :boolean
3778
+ SubnetId:
3779
+ - :string
3780
+ NetworkInterfaceSet:
3781
+ - :list:
3782
+ - :structure:
3783
+ NetworkInterfaceId:
3784
+ - :string
3785
+ DeviceIndex:
3786
+ - :integer
3787
+ SubnetId:
3788
+ - :string
3789
+ Description:
3790
+ - :string
3791
+ PrivateIpAddress:
3792
+ - :string
3793
+ SecurityGroupId:
3794
+ - :list:
3795
+ - :string
3796
+ - :rename: groups
3797
+ DeleteOnTermination:
3798
+ - :boolean
3799
+ PrivateIpAddressesSet:
3800
+ - :list:
3801
+ - :structure:
3802
+ PrivateIpAddress:
3803
+ - :string
3804
+ - :required
3805
+ Primary:
3806
+ - :boolean
3807
+ - :rename: privateIpAddresses
3808
+ SecondaryPrivateIpAddressCount:
3809
+ - :integer
3810
+ - :rename: networkInterfaces
3811
+ IamInstanceProfile:
3812
+ - :structure:
3813
+ Arn:
3814
+ - :string
3815
+ Name:
3816
+ - :string
3817
+ EbsOptimized:
3818
+ - :boolean
3819
+ SecurityGroup:
3820
+ - :list:
3821
+ - :string
3822
+ - :rename: SecurityGroups
3823
+ SecurityGroupId:
3824
+ - :list:
3825
+ - :string
3826
+ - :rename: SecurityGroupIds
3827
+ :outputs:
3828
+ :children:
3829
+ spotInstanceRequestSet:
3830
+ :ignore: true
3831
+ :children:
3832
+ item:
3833
+ :rename: :spot_instance_request_set
3834
+ :list: true
3835
+ :children:
3836
+ status:
3837
+ :children:
3838
+ updateTime:
3839
+ :type: :time
3840
+ validFrom:
3841
+ :type: :time
3842
+ validUntil:
3843
+ :type: :time
3844
+ launchSpecification:
3845
+ :children:
3846
+ groupSet:
3847
+ :ignore: true
3848
+ :children:
3849
+ item:
3850
+ :rename: :group_set
3851
+ :list: true
3852
+ blockDeviceMapping:
3853
+ :ignore: true
3854
+ :children:
3855
+ item:
3856
+ :rename: :block_device_mapping
3857
+ :list: true
3858
+ :children:
3859
+ ebs:
3860
+ :children:
3861
+ volumeSize:
3862
+ :type: :integer
3863
+ deleteOnTermination:
3864
+ :type: :boolean
3865
+ iops:
3866
+ :type: :integer
3867
+ monitoringEnabled:
3868
+ :type: :boolean
3869
+ networkInterfaceSet:
3870
+ :ignore: true
3871
+ :children:
3872
+ item:
3873
+ :rename: :network_interface_set
3874
+ :list: true
3875
+ :children:
3876
+ deviceIndex:
3877
+ :type: :integer
3878
+ SecurityGroupId:
3879
+ :ignore: true
3880
+ :children:
3881
+ SecurityGroupId:
3882
+ :rename: :security_group_id
3883
+ :list: true
3884
+ deleteOnTermination:
3885
+ :type: :boolean
3886
+ privateIpAddressesSet:
3887
+ :ignore: true
3888
+ :children:
3889
+ item:
3890
+ :rename: :private_ip_addresses_set
3891
+ :list: true
3892
+ :children:
3893
+ primary:
3894
+ :type: :boolean
3895
+ secondaryPrivateIpAddressCount:
3896
+ :type: :integer
3897
+ ebsOptimized:
3898
+ :type: :boolean
3899
+ createTime:
3900
+ :type: :time
3901
+ tagSet:
3902
+ :ignore: true
3903
+ :children:
3904
+ item:
3905
+ :rename: :tag_set
3906
+ :list: true
3907
+ - :name: ResetImageAttribute
3908
+ :method: :reset_image_attribute
3909
+ :inputs:
3910
+ ImageId:
3911
+ - :string
3912
+ - :required
3913
+ Attribute:
3914
+ - :string
3915
+ - :required
3916
+ :outputs: {}
3917
+ - :name: ResetInstanceAttribute
3918
+ :method: :reset_instance_attribute
3919
+ :inputs:
3920
+ InstanceId:
3921
+ - :string
3922
+ - :required
3923
+ Attribute:
3924
+ - :string
3925
+ - :required
3926
+ :outputs: {}
3927
+ - :name: ResetNetworkInterfaceAttribute
3928
+ :method: :reset_network_interface_attribute
3929
+ :inputs:
3930
+ NetworkInterfaceId:
3931
+ - :string
3932
+ - :required
3933
+ SourceDestCheck:
3934
+ - :string
3935
+ :outputs: {}
3936
+ - :name: ResetSnapshotAttribute
3937
+ :method: :reset_snapshot_attribute
3938
+ :inputs:
3939
+ SnapshotId:
3940
+ - :string
3941
+ - :required
3942
+ Attribute:
3943
+ - :string
3944
+ - :required
3945
+ :outputs: {}
3946
+ - :name: RevokeSecurityGroupEgress
3947
+ :method: :revoke_security_group_egress
3948
+ :inputs:
3949
+ GroupId:
3950
+ - :string
3951
+ - :required
3952
+ SourceSecurityGroupName:
3953
+ - :string
3954
+ SourceSecurityGroupOwnerId:
3955
+ - :string
3956
+ IpProtocol:
3957
+ - :string
3958
+ FromPort:
3959
+ - :integer
3960
+ ToPort:
3961
+ - :integer
3962
+ CidrIp:
3963
+ - :string
3964
+ IpPermissions:
3965
+ - :list:
3966
+ - :structure:
3967
+ IpProtocol:
3968
+ - :string
3969
+ - :rename: IpProtocol
3970
+ FromPort:
3971
+ - :integer
3972
+ - :rename: FromPort
3973
+ ToPort:
3974
+ - :integer
3975
+ - :rename: ToPort
3976
+ Groups:
3977
+ - :list:
3978
+ - :structure:
3979
+ UserId:
3980
+ - :string
3981
+ - :rename: UserId
3982
+ GroupName:
3983
+ - :string
3984
+ - :rename: GroupName
3985
+ GroupId:
3986
+ - :string
3987
+ - :rename: GroupId
3988
+ - :rename: UserIdGroupPairs
3989
+ IpRanges:
3990
+ - :list:
3991
+ - :structure:
3992
+ CidrIp:
3993
+ - :string
3994
+ - :rename: CidrIp
3995
+ - :rename: IpRanges
3996
+ :outputs: {}
3997
+ - :name: RevokeSecurityGroupIngress
3998
+ :method: :revoke_security_group_ingress
3999
+ :inputs:
4000
+ GroupName:
4001
+ - :string
4002
+ GroupId:
4003
+ - :string
4004
+ SourceSecurityGroupName:
4005
+ - :string
4006
+ SourceSecurityGroupOwnerId:
4007
+ - :string
4008
+ IpProtocol:
4009
+ - :string
4010
+ FromPort:
4011
+ - :integer
4012
+ ToPort:
4013
+ - :integer
4014
+ CidrIp:
4015
+ - :string
4016
+ IpPermissions:
4017
+ - :list:
4018
+ - :structure:
4019
+ IpProtocol:
4020
+ - :string
4021
+ - :rename: IpProtocol
4022
+ FromPort:
4023
+ - :integer
4024
+ - :rename: FromPort
4025
+ ToPort:
4026
+ - :integer
4027
+ - :rename: ToPort
4028
+ Groups:
4029
+ - :list:
4030
+ - :structure:
4031
+ UserId:
4032
+ - :string
4033
+ - :rename: UserId
4034
+ GroupName:
4035
+ - :string
4036
+ - :rename: GroupName
4037
+ GroupId:
4038
+ - :string
4039
+ - :rename: GroupId
4040
+ - :rename: UserIdGroupPairs
4041
+ IpRanges:
4042
+ - :list:
4043
+ - :structure:
4044
+ CidrIp:
4045
+ - :string
4046
+ - :rename: CidrIp
4047
+ - :rename: IpRanges
4048
+ :outputs: {}
4049
+ - :name: RunInstances
4050
+ :method: :run_instances
4051
+ :inputs:
4052
+ ImageId:
4053
+ - :string
4054
+ - :required
4055
+ MinCount:
4056
+ - :integer
4057
+ - :required
4058
+ MaxCount:
4059
+ - :integer
4060
+ - :required
4061
+ KeyName:
4062
+ - :string
4063
+ SecurityGroup:
4064
+ - :list:
4065
+ - :string
4066
+ - :rename: SecurityGroups
4067
+ SecurityGroupId:
4068
+ - :list:
4069
+ - :string
4070
+ - :rename: SecurityGroupIds
4071
+ UserData:
4072
+ - :string
4073
+ InstanceType:
4074
+ - :string
4075
+ Placement:
4076
+ - :structure:
4077
+ AvailabilityZone:
4078
+ - :string
4079
+ - :rename: AvailabilityZone
4080
+ GroupName:
4081
+ - :string
4082
+ Tenancy:
4083
+ - :string
4084
+ KernelId:
4085
+ - :string
4086
+ RamdiskId:
4087
+ - :string
4088
+ BlockDeviceMapping:
4089
+ - :list:
4090
+ - :structure:
4091
+ VirtualName:
4092
+ - :string
4093
+ - :rename: VirtualName
4094
+ DeviceName:
4095
+ - :string
4096
+ - :rename: DeviceName
4097
+ Ebs:
4098
+ - :structure:
4099
+ SnapshotId:
4100
+ - :string
4101
+ VolumeSize:
4102
+ - :integer
4103
+ DeleteOnTermination:
4104
+ - :boolean
4105
+ VolumeType:
4106
+ - :string
4107
+ Iops:
4108
+ - :integer
4109
+ NoDevice:
4110
+ - :string
4111
+ - :rename: BlockDeviceMappings
4112
+ Monitoring:
4113
+ - :structure:
4114
+ Enabled:
4115
+ - :boolean
4116
+ - :required
4117
+ SubnetId:
4118
+ - :string
4119
+ DisableApiTermination:
4120
+ - :boolean
4121
+ InstanceInitiatedShutdownBehavior:
4122
+ - :string
4123
+ License:
4124
+ - :structure:
4125
+ Pool:
4126
+ - :string
4127
+ PrivateIpAddress:
4128
+ - :string
4129
+ ClientToken:
4130
+ - :string
4131
+ AdditionalInfo:
4132
+ - :string
4133
+ NetworkInterface:
4134
+ - :list:
4135
+ - :structure:
4136
+ NetworkInterfaceId:
4137
+ - :string
4138
+ DeviceIndex:
4139
+ - :integer
4140
+ SubnetId:
4141
+ - :string
4142
+ Description:
4143
+ - :string
4144
+ PrivateIpAddress:
4145
+ - :string
4146
+ SecurityGroupId:
4147
+ - :list:
4148
+ - :string
4149
+ - :rename: groups
4150
+ DeleteOnTermination:
4151
+ - :boolean
4152
+ PrivateIpAddressesSet:
4153
+ - :list:
4154
+ - :structure:
4155
+ PrivateIpAddress:
4156
+ - :string
4157
+ - :required
4158
+ Primary:
4159
+ - :boolean
4160
+ - :rename: privateIpAddresses
4161
+ SecondaryPrivateIpAddressCount:
4162
+ - :integer
4163
+ - :rename: networkInterfaces
4164
+ IamInstanceProfile:
4165
+ - :structure:
4166
+ Arn:
4167
+ - :string
4168
+ Name:
4169
+ - :string
4170
+ EbsOptimized:
4171
+ - :boolean
4172
+ :outputs:
4173
+ :children:
4174
+ groupSet:
4175
+ :ignore: true
4176
+ :children:
4177
+ item:
4178
+ :rename: :group_set
4179
+ :list: true
4180
+ instancesSet:
4181
+ :ignore: true
4182
+ :children:
4183
+ item:
4184
+ :rename: :instances_set
4185
+ :list: true
4186
+ :children:
4187
+ instanceState:
4188
+ :children:
4189
+ code:
4190
+ :type: :integer
4191
+ amiLaunchIndex:
4192
+ :type: :integer
4193
+ productCodes:
4194
+ :ignore: true
4195
+ :children:
4196
+ item:
4197
+ :rename: :product_codes
4198
+ :list: true
4199
+ launchTime:
4200
+ :type: :time
4201
+ blockDeviceMapping:
4202
+ :ignore: true
4203
+ :children:
4204
+ item:
4205
+ :rename: :block_device_mapping
4206
+ :list: true
4207
+ :children:
4208
+ ebs:
4209
+ :children:
4210
+ attachTime:
4211
+ :type: :time
4212
+ deleteOnTermination:
4213
+ :type: :boolean
4214
+ tagSet:
4215
+ :ignore: true
4216
+ :children:
4217
+ item:
4218
+ :rename: :tag_set
4219
+ :list: true
4220
+ groupSet:
4221
+ :ignore: true
4222
+ :children:
4223
+ item:
4224
+ :rename: :group_set
4225
+ :list: true
4226
+ sourceDestCheck:
4227
+ :type: :boolean
4228
+ networkInterfaceSet:
4229
+ :ignore: true
4230
+ :children:
4231
+ item:
4232
+ :rename: :network_interface_set
4233
+ :list: true
4234
+ :children:
4235
+ sourceDestCheck:
4236
+ :type: :boolean
4237
+ groupSet:
4238
+ :ignore: true
4239
+ :children:
4240
+ item:
4241
+ :rename: :group_set
4242
+ :list: true
4243
+ attachment:
4244
+ :children:
4245
+ deviceIndex:
4246
+ :type: :integer
4247
+ attachTime:
4248
+ :type: :time
4249
+ deleteOnTermination:
4250
+ :type: :boolean
4251
+ privateIpAddressesSet:
4252
+ :ignore: true
4253
+ :children:
4254
+ item:
4255
+ :rename: :private_ip_addresses_set
4256
+ :list: true
4257
+ :children:
4258
+ primary:
4259
+ :type: :boolean
4260
+ ebsOptimized:
4261
+ :type: :boolean
4262
+ - :name: StartInstances
4263
+ :method: :start_instances
4264
+ :inputs:
4265
+ InstanceId:
4266
+ - :list:
4267
+ - :string
4268
+ - :required
4269
+ - :rename: InstanceIds
4270
+ AdditionalInfo:
4271
+ - :string
4272
+ :outputs:
4273
+ :children:
4274
+ instancesSet:
4275
+ :ignore: true
4276
+ :children:
4277
+ item:
4278
+ :rename: :instances_set
4279
+ :list: true
4280
+ :children:
4281
+ currentState:
4282
+ :children:
4283
+ code:
4284
+ :type: :integer
4285
+ previousState:
4286
+ :children:
4287
+ code:
4288
+ :type: :integer
4289
+ - :name: StopInstances
4290
+ :method: :stop_instances
4291
+ :inputs:
4292
+ InstanceId:
4293
+ - :list:
4294
+ - :string
4295
+ - :required
4296
+ - :rename: InstanceIds
4297
+ Force:
4298
+ - :boolean
4299
+ :outputs:
4300
+ :children:
4301
+ instancesSet:
4302
+ :ignore: true
4303
+ :children:
4304
+ item:
4305
+ :rename: :instances_set
4306
+ :list: true
4307
+ :children:
4308
+ currentState:
4309
+ :children:
4310
+ code:
4311
+ :type: :integer
4312
+ previousState:
4313
+ :children:
4314
+ code:
4315
+ :type: :integer
4316
+ - :name: TerminateInstances
4317
+ :method: :terminate_instances
4318
+ :inputs:
4319
+ InstanceId:
4320
+ - :list:
4321
+ - :string
4322
+ - :required
4323
+ - :rename: InstanceIds
4324
+ :outputs:
4325
+ :children:
4326
+ instancesSet:
4327
+ :ignore: true
4328
+ :children:
4329
+ item:
4330
+ :rename: :instances_set
4331
+ :list: true
4332
+ :children:
4333
+ currentState:
4334
+ :children:
4335
+ code:
4336
+ :type: :integer
4337
+ previousState:
4338
+ :children:
4339
+ code:
4340
+ :type: :integer
4341
+ - :name: UnassignPrivateIpAddresses
4342
+ :method: :unassign_private_ip_addresses
4343
+ :inputs:
4344
+ NetworkInterfaceId:
4345
+ - :string
4346
+ - :required
4347
+ PrivateIpAddress:
4348
+ - :list:
4349
+ - :string
4350
+ - :required
4351
+ - :rename: privateIpAddresses
4352
+ :outputs: {}
4353
+ - :name: UnmonitorInstances
4354
+ :method: :unmonitor_instances
4355
+ :inputs:
4356
+ InstanceId:
4357
+ - :list:
4358
+ - :string
4359
+ - :required
4360
+ - :rename: InstanceIds
4361
+ :outputs:
4362
+ :children:
4363
+ instancesSet:
4364
+ :ignore: true
4365
+ :children:
4366
+ item:
4367
+ :rename: :instances_set
4368
+ :list: true