aws-sdk 1.32.0 → 1.50.0

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