aws-sdk 1.6.9 → 1.7.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 (56) hide show
  1. data/README.rdoc +1 -1
  2. data/lib/aws.rb +8 -0
  3. data/lib/aws/api_config/CloudSearch-2011-02-01.yml +681 -0
  4. data/lib/aws/api_config/DynamoDB-2011-12-05.yml +4 -0
  5. data/lib/aws/api_config/EMR-2009-03-31.yml +18 -0
  6. data/lib/aws/api_config/ElastiCache-2012-03-09.yml +777 -0
  7. data/lib/aws/api_config/ElasticBeanstalk-2010-12-01.yml +823 -0
  8. data/lib/aws/api_config/RDS-2012-07-31.yml +1621 -0
  9. data/lib/aws/cloud_search.rb +31 -0
  10. data/lib/aws/cloud_search/client.rb +558 -0
  11. data/lib/aws/cloud_search/config.rb +18 -0
  12. data/lib/aws/cloud_search/errors.rb +22 -0
  13. data/lib/aws/cloud_search/request.rb +23 -0
  14. data/lib/aws/cloud_watch/alarm.rb +1 -1
  15. data/lib/aws/cloud_watch/metric.rb +3 -3
  16. data/lib/aws/core.rb +18 -3
  17. data/lib/aws/core/configuration.rb +11 -0
  18. data/lib/aws/core/inflection.rb +1 -0
  19. data/lib/aws/core/service_interface.rb +1 -1
  20. data/lib/aws/dynamo_db/batch_get.rb +19 -12
  21. data/lib/aws/dynamo_db/client.rb +27 -1
  22. data/lib/aws/dynamo_db/config.rb +2 -0
  23. data/lib/aws/dynamo_db/item_collection.rb +2 -2
  24. data/lib/aws/dynamo_db/table.rb +8 -2
  25. data/lib/aws/ec2/reserved_instances.rb +3 -0
  26. data/lib/aws/ec2/reserved_instances_offering.rb +3 -1
  27. data/lib/aws/elastic_beanstalk.rb +48 -0
  28. data/lib/aws/elastic_beanstalk/client.rb +867 -0
  29. data/lib/aws/elastic_beanstalk/config.rb +18 -0
  30. data/lib/aws/elastic_beanstalk/errors.rb +22 -0
  31. data/lib/aws/elastic_beanstalk/request.rb +23 -0
  32. data/lib/aws/elasticache.rb +48 -0
  33. data/lib/aws/elasticache/client.rb +758 -0
  34. data/lib/aws/elasticache/config.rb +18 -0
  35. data/lib/aws/elasticache/errors.rb +22 -0
  36. data/lib/aws/elasticache/request.rb +23 -0
  37. data/lib/aws/emr/client.rb +30 -6
  38. data/lib/aws/emr/job_flow.rb +10 -0
  39. data/lib/aws/rds.rb +69 -0
  40. data/lib/aws/rds/client.rb +1592 -0
  41. data/lib/aws/rds/config.rb +18 -0
  42. data/lib/aws/rds/db_instance.rb +201 -0
  43. data/lib/aws/rds/db_instance_collection.rb +75 -0
  44. data/lib/aws/rds/db_snapshot.rb +163 -0
  45. data/lib/aws/rds/db_snapshot_collection.rb +89 -0
  46. data/lib/aws/rds/errors.rb +22 -0
  47. data/lib/aws/rds/request.rb +23 -0
  48. data/lib/aws/s3/bucket_tag_collection.rb +1 -1
  49. data/lib/aws/s3/client.rb +4 -2
  50. data/lib/aws/s3/errors.rb +0 -1
  51. data/lib/aws/s3/object_collection.rb +40 -22
  52. data/lib/aws/s3/object_version.rb +7 -2
  53. data/lib/aws/s3/request.rb +1 -1
  54. data/lib/aws/s3/s3_object.rb +35 -11
  55. data/lib/aws/version.rb +1 -1
  56. metadata +33 -2
@@ -0,0 +1,1621 @@
1
+ # Copyright 2011-2012 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License"). You
4
+ # may not use this file except in compliance with the License. A copy of
5
+ # the License is located at
6
+ #
7
+ # http://aws.amazon.com/apache2.0/
8
+ #
9
+ # or in the "license" file accompanying this file. This file is
10
+ # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
11
+ # ANY KIND, either express or implied. See the License for the specific
12
+ # language governing permissions and limitations under the License.
13
+
14
+ ---
15
+ :api_version: '2012-07-31'
16
+ :operations:
17
+ - :name: AuthorizeDBSecurityGroupIngress
18
+ :method: :authorize_db_security_group_ingress
19
+ :inputs:
20
+ DBSecurityGroupName:
21
+ - :string
22
+ - :required
23
+ CIDRIP:
24
+ - :string
25
+ EC2SecurityGroupName:
26
+ - :string
27
+ EC2SecurityGroupId:
28
+ - :string
29
+ EC2SecurityGroupOwnerId:
30
+ - :string
31
+ :outputs:
32
+ :children:
33
+ AuthorizeDBSecurityGroupIngressResult:
34
+ :ignore: true
35
+ :children:
36
+ DBSecurityGroup:
37
+ :children:
38
+ EC2SecurityGroups:
39
+ :ignore: true
40
+ :children:
41
+ EC2SecurityGroup:
42
+ :rename: :ec2_security_groups
43
+ :list: true
44
+ IPRanges:
45
+ :ignore: true
46
+ :children:
47
+ IPRange:
48
+ :rename: :ip_ranges
49
+ :list: true
50
+ :ignore: true
51
+ - :name: CopyDBSnapshot
52
+ :method: :copy_db_snapshot
53
+ :inputs:
54
+ SourceDBSnapshotIdentifier:
55
+ - :string
56
+ - :required
57
+ TargetDBSnapshotIdentifier:
58
+ - :string
59
+ - :required
60
+ :outputs:
61
+ :children:
62
+ CopyDBSnapshotResult:
63
+ :ignore: true
64
+ :children:
65
+ DBSnapshot:
66
+ :children:
67
+ SnapshotCreateTime:
68
+ :type: :time
69
+ AllocatedStorage:
70
+ :type: :integer
71
+ Port:
72
+ :type: :integer
73
+ InstanceCreateTime:
74
+ :type: :time
75
+ :ignore: true
76
+ - :name: CreateDBInstance
77
+ :method: :create_db_instance
78
+ :inputs:
79
+ DBName:
80
+ - :string
81
+ DBInstanceIdentifier:
82
+ - :string
83
+ - :required
84
+ AllocatedStorage:
85
+ - :integer
86
+ - :required
87
+ DBInstanceClass:
88
+ - :string
89
+ - :required
90
+ Engine:
91
+ - :string
92
+ - :required
93
+ MasterUsername:
94
+ - :string
95
+ - :required
96
+ MasterUserPassword:
97
+ - :string
98
+ - :required
99
+ DBSecurityGroups:
100
+ - :membered_list:
101
+ - :string
102
+ AvailabilityZone:
103
+ - :string
104
+ DBSubnetGroupName:
105
+ - :string
106
+ PreferredMaintenanceWindow:
107
+ - :string
108
+ DBParameterGroupName:
109
+ - :string
110
+ BackupRetentionPeriod:
111
+ - :integer
112
+ PreferredBackupWindow:
113
+ - :string
114
+ Port:
115
+ - :integer
116
+ MultiAZ:
117
+ - :boolean
118
+ EngineVersion:
119
+ - :string
120
+ AutoMinorVersionUpgrade:
121
+ - :boolean
122
+ LicenseModel:
123
+ - :string
124
+ OptionGroupName:
125
+ - :string
126
+ CharacterSetName:
127
+ - :string
128
+ :outputs:
129
+ :children:
130
+ CreateDBInstanceResult:
131
+ :ignore: true
132
+ :children:
133
+ DBInstance:
134
+ :children:
135
+ Endpoint:
136
+ :children:
137
+ Port:
138
+ :type: :integer
139
+ AllocatedStorage:
140
+ :type: :integer
141
+ InstanceCreateTime:
142
+ :type: :time
143
+ BackupRetentionPeriod:
144
+ :type: :integer
145
+ DBSecurityGroups:
146
+ :ignore: true
147
+ :children:
148
+ DBSecurityGroup:
149
+ :rename: :db_security_groups
150
+ :list: true
151
+ DBParameterGroups:
152
+ :ignore: true
153
+ :children:
154
+ DBParameterGroup:
155
+ :rename: :db_parameter_groups
156
+ :list: true
157
+ DBSubnetGroup:
158
+ :children:
159
+ Subnets:
160
+ :ignore: true
161
+ :children:
162
+ Subnet:
163
+ :rename: :subnets
164
+ :list: true
165
+ PendingModifiedValues:
166
+ :children:
167
+ AllocatedStorage:
168
+ :type: :integer
169
+ Port:
170
+ :type: :integer
171
+ BackupRetentionPeriod:
172
+ :type: :integer
173
+ MultiAZ:
174
+ :type: :boolean
175
+ LatestRestorableTime:
176
+ :type: :time
177
+ MultiAZ:
178
+ :type: :boolean
179
+ AutoMinorVersionUpgrade:
180
+ :type: :boolean
181
+ ReadReplicaDBInstanceIdentifiers:
182
+ :ignore: true
183
+ :children:
184
+ ReadReplicaDBInstanceIdentifier:
185
+ :rename: :read_replica_db_instance_identifiers
186
+ :list: true
187
+ :ignore: true
188
+ - :name: CreateDBInstanceReadReplica
189
+ :method: :create_db_instance_read_replica
190
+ :inputs:
191
+ DBInstanceIdentifier:
192
+ - :string
193
+ - :required
194
+ SourceDBInstanceIdentifier:
195
+ - :string
196
+ - :required
197
+ DBInstanceClass:
198
+ - :string
199
+ AvailabilityZone:
200
+ - :string
201
+ Port:
202
+ - :integer
203
+ AutoMinorVersionUpgrade:
204
+ - :boolean
205
+ OptionGroupName:
206
+ - :string
207
+ :outputs:
208
+ :children:
209
+ CreateDBInstanceReadReplicaResult:
210
+ :ignore: true
211
+ :children:
212
+ DBInstance:
213
+ :children:
214
+ Endpoint:
215
+ :children:
216
+ Port:
217
+ :type: :integer
218
+ AllocatedStorage:
219
+ :type: :integer
220
+ InstanceCreateTime:
221
+ :type: :time
222
+ BackupRetentionPeriod:
223
+ :type: :integer
224
+ DBSecurityGroups:
225
+ :ignore: true
226
+ :children:
227
+ DBSecurityGroup:
228
+ :rename: :db_security_groups
229
+ :list: true
230
+ DBParameterGroups:
231
+ :ignore: true
232
+ :children:
233
+ DBParameterGroup:
234
+ :rename: :db_parameter_groups
235
+ :list: true
236
+ DBSubnetGroup:
237
+ :children:
238
+ Subnets:
239
+ :ignore: true
240
+ :children:
241
+ Subnet:
242
+ :rename: :subnets
243
+ :list: true
244
+ PendingModifiedValues:
245
+ :children:
246
+ AllocatedStorage:
247
+ :type: :integer
248
+ Port:
249
+ :type: :integer
250
+ BackupRetentionPeriod:
251
+ :type: :integer
252
+ MultiAZ:
253
+ :type: :boolean
254
+ LatestRestorableTime:
255
+ :type: :time
256
+ MultiAZ:
257
+ :type: :boolean
258
+ AutoMinorVersionUpgrade:
259
+ :type: :boolean
260
+ ReadReplicaDBInstanceIdentifiers:
261
+ :ignore: true
262
+ :children:
263
+ ReadReplicaDBInstanceIdentifier:
264
+ :rename: :read_replica_db_instance_identifiers
265
+ :list: true
266
+ :ignore: true
267
+ - :name: CreateDBParameterGroup
268
+ :method: :create_db_parameter_group
269
+ :inputs:
270
+ DBParameterGroupName:
271
+ - :string
272
+ - :required
273
+ DBParameterGroupFamily:
274
+ - :string
275
+ - :required
276
+ Description:
277
+ - :string
278
+ - :required
279
+ :outputs:
280
+ :children:
281
+ CreateDBParameterGroupResult:
282
+ :ignore: true
283
+ :children:
284
+ DBParameterGroup:
285
+ :ignore: true
286
+ - :name: CreateDBSecurityGroup
287
+ :method: :create_db_security_group
288
+ :inputs:
289
+ DBSecurityGroupName:
290
+ - :string
291
+ - :required
292
+ DBSecurityGroupDescription:
293
+ - :string
294
+ - :required
295
+ EC2VpcId:
296
+ - :string
297
+ :outputs:
298
+ :children:
299
+ CreateDBSecurityGroupResult:
300
+ :ignore: true
301
+ :children:
302
+ DBSecurityGroup:
303
+ :children:
304
+ EC2SecurityGroups:
305
+ :ignore: true
306
+ :children:
307
+ EC2SecurityGroup:
308
+ :rename: :ec2_security_groups
309
+ :list: true
310
+ IPRanges:
311
+ :ignore: true
312
+ :children:
313
+ IPRange:
314
+ :rename: :ip_ranges
315
+ :list: true
316
+ :ignore: true
317
+ - :name: CreateDBSnapshot
318
+ :method: :create_db_snapshot
319
+ :inputs:
320
+ DBSnapshotIdentifier:
321
+ - :string
322
+ - :required
323
+ DBInstanceIdentifier:
324
+ - :string
325
+ - :required
326
+ :outputs:
327
+ :children:
328
+ CreateDBSnapshotResult:
329
+ :ignore: true
330
+ :children:
331
+ DBSnapshot:
332
+ :children:
333
+ SnapshotCreateTime:
334
+ :type: :time
335
+ AllocatedStorage:
336
+ :type: :integer
337
+ Port:
338
+ :type: :integer
339
+ InstanceCreateTime:
340
+ :type: :time
341
+ :ignore: true
342
+ - :name: CreateDBSubnetGroup
343
+ :method: :create_db_subnet_group
344
+ :inputs:
345
+ DBSubnetGroupName:
346
+ - :string
347
+ - :required
348
+ DBSubnetGroupDescription:
349
+ - :string
350
+ - :required
351
+ SubnetIds:
352
+ - :membered_list:
353
+ - :string
354
+ - :required
355
+ :outputs:
356
+ :children:
357
+ CreateDBSubnetGroupResult:
358
+ :ignore: true
359
+ :children:
360
+ DBSubnetGroup:
361
+ :children:
362
+ Subnets:
363
+ :ignore: true
364
+ :children:
365
+ Subnet:
366
+ :rename: :subnets
367
+ :list: true
368
+ :ignore: true
369
+ - :name: CreateOptionGroup
370
+ :method: :create_option_group
371
+ :inputs:
372
+ OptionGroupName:
373
+ - :string
374
+ - :required
375
+ EngineName:
376
+ - :string
377
+ - :required
378
+ MajorEngineVersion:
379
+ - :string
380
+ - :required
381
+ OptionGroupDescription:
382
+ - :string
383
+ - :required
384
+ :outputs:
385
+ :children:
386
+ CreateOptionGroupResult:
387
+ :ignore: true
388
+ :children:
389
+ OptionGroup:
390
+ :children:
391
+ Options:
392
+ :ignore: true
393
+ :children:
394
+ Option:
395
+ :rename: :options
396
+ :list: true
397
+ :children:
398
+ Port:
399
+ :type: :integer
400
+ DBSecurityGroupMemberships:
401
+ :ignore: true
402
+ :children:
403
+ DBSecurityGroup:
404
+ :rename: :db_security_group_memberships
405
+ :list: true
406
+ :ignore: true
407
+ - :name: DeleteDBInstance
408
+ :method: :delete_db_instance
409
+ :inputs:
410
+ DBInstanceIdentifier:
411
+ - :string
412
+ - :required
413
+ SkipFinalSnapshot:
414
+ - :boolean
415
+ FinalDBSnapshotIdentifier:
416
+ - :string
417
+ :outputs:
418
+ :children:
419
+ DeleteDBInstanceResult:
420
+ :ignore: true
421
+ :children:
422
+ DBInstance:
423
+ :children:
424
+ Endpoint:
425
+ :children:
426
+ Port:
427
+ :type: :integer
428
+ AllocatedStorage:
429
+ :type: :integer
430
+ InstanceCreateTime:
431
+ :type: :time
432
+ BackupRetentionPeriod:
433
+ :type: :integer
434
+ DBSecurityGroups:
435
+ :ignore: true
436
+ :children:
437
+ DBSecurityGroup:
438
+ :rename: :db_security_groups
439
+ :list: true
440
+ DBParameterGroups:
441
+ :ignore: true
442
+ :children:
443
+ DBParameterGroup:
444
+ :rename: :db_parameter_groups
445
+ :list: true
446
+ DBSubnetGroup:
447
+ :children:
448
+ Subnets:
449
+ :ignore: true
450
+ :children:
451
+ Subnet:
452
+ :rename: :subnets
453
+ :list: true
454
+ PendingModifiedValues:
455
+ :children:
456
+ AllocatedStorage:
457
+ :type: :integer
458
+ Port:
459
+ :type: :integer
460
+ BackupRetentionPeriod:
461
+ :type: :integer
462
+ MultiAZ:
463
+ :type: :boolean
464
+ LatestRestorableTime:
465
+ :type: :time
466
+ MultiAZ:
467
+ :type: :boolean
468
+ AutoMinorVersionUpgrade:
469
+ :type: :boolean
470
+ ReadReplicaDBInstanceIdentifiers:
471
+ :ignore: true
472
+ :children:
473
+ ReadReplicaDBInstanceIdentifier:
474
+ :rename: :read_replica_db_instance_identifiers
475
+ :list: true
476
+ :ignore: true
477
+ - :name: DeleteDBParameterGroup
478
+ :method: :delete_db_parameter_group
479
+ :inputs:
480
+ DBParameterGroupName:
481
+ - :string
482
+ - :required
483
+ :outputs:
484
+ :children:
485
+ DeleteDBParameterGroupResult:
486
+ :ignore: true
487
+ - :name: DeleteDBSecurityGroup
488
+ :method: :delete_db_security_group
489
+ :inputs:
490
+ DBSecurityGroupName:
491
+ - :string
492
+ - :required
493
+ :outputs:
494
+ :children:
495
+ DeleteDBSecurityGroupResult:
496
+ :ignore: true
497
+ - :name: DeleteDBSnapshot
498
+ :method: :delete_db_snapshot
499
+ :inputs:
500
+ DBSnapshotIdentifier:
501
+ - :string
502
+ - :required
503
+ :outputs:
504
+ :children:
505
+ DeleteDBSnapshotResult:
506
+ :ignore: true
507
+ :children:
508
+ DBSnapshot:
509
+ :children:
510
+ SnapshotCreateTime:
511
+ :type: :time
512
+ AllocatedStorage:
513
+ :type: :integer
514
+ Port:
515
+ :type: :integer
516
+ InstanceCreateTime:
517
+ :type: :time
518
+ :ignore: true
519
+ - :name: DeleteDBSubnetGroup
520
+ :method: :delete_db_subnet_group
521
+ :inputs:
522
+ DBSubnetGroupName:
523
+ - :string
524
+ - :required
525
+ :outputs:
526
+ :children:
527
+ DeleteDBSubnetGroupResult:
528
+ :ignore: true
529
+ - :name: DeleteOptionGroup
530
+ :method: :delete_option_group
531
+ :inputs:
532
+ OptionGroupName:
533
+ - :string
534
+ - :required
535
+ :outputs:
536
+ :children:
537
+ DeleteOptionGroupResult:
538
+ :ignore: true
539
+ - :name: DescribeDBEngineVersions
540
+ :method: :describe_db_engine_versions
541
+ :inputs:
542
+ Engine:
543
+ - :string
544
+ EngineVersion:
545
+ - :string
546
+ DBParameterGroupFamily:
547
+ - :string
548
+ MaxRecords:
549
+ - :integer
550
+ Marker:
551
+ - :string
552
+ DefaultOnly:
553
+ - :boolean
554
+ ListSupportedCharacterSets:
555
+ - :boolean
556
+ :outputs:
557
+ :children:
558
+ DescribeDBEngineVersionsResult:
559
+ :ignore: true
560
+ :children:
561
+ DBEngineVersions:
562
+ :ignore: true
563
+ :children:
564
+ DBEngineVersion:
565
+ :rename: :db_engine_versions
566
+ :list: true
567
+ :children:
568
+ SupportedCharacterSets:
569
+ :ignore: true
570
+ :children:
571
+ CharacterSet:
572
+ :rename: :supported_character_sets
573
+ :list: true
574
+ - :name: DescribeDBInstances
575
+ :method: :describe_db_instances
576
+ :inputs:
577
+ DBInstanceIdentifier:
578
+ - :string
579
+ MaxRecords:
580
+ - :integer
581
+ Marker:
582
+ - :string
583
+ :outputs:
584
+ :children:
585
+ DescribeDBInstancesResult:
586
+ :ignore: true
587
+ :children:
588
+ DBInstances:
589
+ :ignore: true
590
+ :children:
591
+ DBInstance:
592
+ :rename: :db_instances
593
+ :list: true
594
+ :children:
595
+ Endpoint:
596
+ :children:
597
+ Port:
598
+ :type: :integer
599
+ AllocatedStorage:
600
+ :type: :integer
601
+ InstanceCreateTime:
602
+ :type: :time
603
+ BackupRetentionPeriod:
604
+ :type: :integer
605
+ DBSecurityGroups:
606
+ :ignore: true
607
+ :children:
608
+ DBSecurityGroup:
609
+ :rename: :db_security_groups
610
+ :list: true
611
+ DBParameterGroups:
612
+ :ignore: true
613
+ :children:
614
+ DBParameterGroup:
615
+ :rename: :db_parameter_groups
616
+ :list: true
617
+ DBSubnetGroup:
618
+ :children:
619
+ Subnets:
620
+ :ignore: true
621
+ :children:
622
+ Subnet:
623
+ :rename: :subnets
624
+ :list: true
625
+ PendingModifiedValues:
626
+ :children:
627
+ AllocatedStorage:
628
+ :type: :integer
629
+ Port:
630
+ :type: :integer
631
+ BackupRetentionPeriod:
632
+ :type: :integer
633
+ MultiAZ:
634
+ :type: :boolean
635
+ LatestRestorableTime:
636
+ :type: :time
637
+ MultiAZ:
638
+ :type: :boolean
639
+ AutoMinorVersionUpgrade:
640
+ :type: :boolean
641
+ ReadReplicaDBInstanceIdentifiers:
642
+ :ignore: true
643
+ :children:
644
+ ReadReplicaDBInstanceIdentifier:
645
+ :rename: :read_replica_db_instance_identifiers
646
+ :list: true
647
+ - :name: DescribeDBParameterGroups
648
+ :method: :describe_db_parameter_groups
649
+ :inputs:
650
+ DBParameterGroupName:
651
+ - :string
652
+ MaxRecords:
653
+ - :integer
654
+ Marker:
655
+ - :string
656
+ :outputs:
657
+ :children:
658
+ DescribeDBParameterGroupsResult:
659
+ :ignore: true
660
+ :children:
661
+ DBParameterGroups:
662
+ :ignore: true
663
+ :children:
664
+ DBParameterGroup:
665
+ :rename: :db_parameter_groups
666
+ :list: true
667
+ - :name: DescribeDBParameters
668
+ :method: :describe_db_parameters
669
+ :inputs:
670
+ DBParameterGroupName:
671
+ - :string
672
+ - :required
673
+ Source:
674
+ - :string
675
+ MaxRecords:
676
+ - :integer
677
+ Marker:
678
+ - :string
679
+ :outputs:
680
+ :children:
681
+ DescribeDBParametersResult:
682
+ :ignore: true
683
+ :children:
684
+ Parameters:
685
+ :ignore: true
686
+ :children:
687
+ Parameter:
688
+ :rename: :parameters
689
+ :list: true
690
+ :children:
691
+ IsModifiable:
692
+ :type: :boolean
693
+ - :name: DescribeDBSecurityGroups
694
+ :method: :describe_db_security_groups
695
+ :inputs:
696
+ DBSecurityGroupName:
697
+ - :string
698
+ MaxRecords:
699
+ - :integer
700
+ Marker:
701
+ - :string
702
+ :outputs:
703
+ :children:
704
+ DescribeDBSecurityGroupsResult:
705
+ :ignore: true
706
+ :children:
707
+ DBSecurityGroups:
708
+ :ignore: true
709
+ :children:
710
+ DBSecurityGroup:
711
+ :rename: :db_security_groups
712
+ :list: true
713
+ :children:
714
+ EC2SecurityGroups:
715
+ :ignore: true
716
+ :children:
717
+ EC2SecurityGroup:
718
+ :rename: :ec2_security_groups
719
+ :list: true
720
+ IPRanges:
721
+ :ignore: true
722
+ :children:
723
+ IPRange:
724
+ :rename: :ip_ranges
725
+ :list: true
726
+ - :name: DescribeDBSnapshots
727
+ :method: :describe_db_snapshots
728
+ :inputs:
729
+ DBInstanceIdentifier:
730
+ - :string
731
+ DBSnapshotIdentifier:
732
+ - :string
733
+ SnapshotType:
734
+ - :string
735
+ MaxRecords:
736
+ - :integer
737
+ Marker:
738
+ - :string
739
+ :outputs:
740
+ :children:
741
+ DescribeDBSnapshotsResult:
742
+ :ignore: true
743
+ :children:
744
+ DBSnapshots:
745
+ :ignore: true
746
+ :children:
747
+ DBSnapshot:
748
+ :rename: :db_snapshots
749
+ :list: true
750
+ :children:
751
+ SnapshotCreateTime:
752
+ :type: :time
753
+ AllocatedStorage:
754
+ :type: :integer
755
+ Port:
756
+ :type: :integer
757
+ InstanceCreateTime:
758
+ :type: :time
759
+ - :name: DescribeDBSubnetGroups
760
+ :method: :describe_db_subnet_groups
761
+ :inputs:
762
+ DBSubnetGroupName:
763
+ - :string
764
+ MaxRecords:
765
+ - :integer
766
+ Marker:
767
+ - :string
768
+ :outputs:
769
+ :children:
770
+ DescribeDBSubnetGroupsResult:
771
+ :ignore: true
772
+ :children:
773
+ DBSubnetGroups:
774
+ :ignore: true
775
+ :children:
776
+ DBSubnetGroup:
777
+ :rename: :db_subnet_groups
778
+ :list: true
779
+ :children:
780
+ Subnets:
781
+ :ignore: true
782
+ :children:
783
+ Subnet:
784
+ :rename: :subnets
785
+ :list: true
786
+ - :name: DescribeEngineDefaultParameters
787
+ :method: :describe_engine_default_parameters
788
+ :inputs:
789
+ DBParameterGroupFamily:
790
+ - :string
791
+ - :required
792
+ MaxRecords:
793
+ - :integer
794
+ Marker:
795
+ - :string
796
+ :outputs:
797
+ :children:
798
+ DescribeEngineDefaultParametersResult:
799
+ :ignore: true
800
+ :children:
801
+ EngineDefaults:
802
+ :children:
803
+ Parameters:
804
+ :ignore: true
805
+ :children:
806
+ Parameter:
807
+ :rename: :parameters
808
+ :list: true
809
+ :children:
810
+ IsModifiable:
811
+ :type: :boolean
812
+ :ignore: true
813
+ - :name: DescribeEvents
814
+ :method: :describe_events
815
+ :inputs:
816
+ SourceIdentifier:
817
+ - :string
818
+ SourceType:
819
+ - :string
820
+ StartTime:
821
+ - :timestamp
822
+ EndTime:
823
+ - :timestamp
824
+ Duration:
825
+ - :integer
826
+ MaxRecords:
827
+ - :integer
828
+ Marker:
829
+ - :string
830
+ :outputs:
831
+ :children:
832
+ DescribeEventsResult:
833
+ :ignore: true
834
+ :children:
835
+ Events:
836
+ :ignore: true
837
+ :children:
838
+ Event:
839
+ :rename: :events
840
+ :list: true
841
+ :children:
842
+ Date:
843
+ :type: :time
844
+ - :name: DescribeOptionGroupOptions
845
+ :method: :describe_option_group_options
846
+ :inputs:
847
+ EngineName:
848
+ - :string
849
+ - :required
850
+ MajorEngineVersion:
851
+ - :string
852
+ MaxRecords:
853
+ - :integer
854
+ Marker:
855
+ - :string
856
+ :outputs:
857
+ :children:
858
+ DescribeOptionGroupOptionsResult:
859
+ :ignore: true
860
+ :children:
861
+ OptionGroupOptions:
862
+ :ignore: true
863
+ :children:
864
+ OptionGroupOption:
865
+ :rename: :option_group_options
866
+ :list: true
867
+ :children:
868
+ PortRequired:
869
+ :type: :boolean
870
+ DefaultPort:
871
+ :type: :integer
872
+ OptionsDependedOn:
873
+ :ignore: true
874
+ :children:
875
+ OptionName:
876
+ :rename: :options_depended_on
877
+ :list: true
878
+ - :name: DescribeOptionGroups
879
+ :method: :describe_option_groups
880
+ :inputs:
881
+ OptionGroupName:
882
+ - :string
883
+ Marker:
884
+ - :string
885
+ MaxRecords:
886
+ - :integer
887
+ EngineName:
888
+ - :string
889
+ MajorEngineVersion:
890
+ - :string
891
+ :outputs:
892
+ :children:
893
+ DescribeOptionGroupsResult:
894
+ :ignore: true
895
+ :children:
896
+ OptionGroupsList:
897
+ :ignore: true
898
+ :children:
899
+ OptionGroup:
900
+ :rename: :option_groups_list
901
+ :list: true
902
+ :children:
903
+ Options:
904
+ :ignore: true
905
+ :children:
906
+ Option:
907
+ :rename: :options
908
+ :list: true
909
+ :children:
910
+ Port:
911
+ :type: :integer
912
+ DBSecurityGroupMemberships:
913
+ :ignore: true
914
+ :children:
915
+ DBSecurityGroup:
916
+ :rename: :db_security_group_memberships
917
+ :list: true
918
+ - :name: DescribeOrderableDBInstanceOptions
919
+ :method: :describe_orderable_db_instance_options
920
+ :inputs:
921
+ Engine:
922
+ - :string
923
+ - :required
924
+ EngineVersion:
925
+ - :string
926
+ DBInstanceClass:
927
+ - :string
928
+ LicenseModel:
929
+ - :string
930
+ MaxRecords:
931
+ - :integer
932
+ Marker:
933
+ - :string
934
+ :outputs:
935
+ :children:
936
+ DescribeOrderableDBInstanceOptionsResult:
937
+ :ignore: true
938
+ :children:
939
+ OrderableDBInstanceOptions:
940
+ :ignore: true
941
+ :children:
942
+ OrderableDBInstanceOption:
943
+ :rename: :orderable_db_instance_options
944
+ :list: true
945
+ :children:
946
+ AvailabilityZones:
947
+ :ignore: true
948
+ :children:
949
+ AvailabilityZone:
950
+ :rename: :availability_zones
951
+ :list: true
952
+ MultiAZCapable:
953
+ :type: :boolean
954
+ ReadReplicaCapable:
955
+ :type: :boolean
956
+ VpcCapable:
957
+ :type: :boolean
958
+ VpcMultiAZCapable:
959
+ :type: :boolean
960
+ VpcReadReplicaCapable:
961
+ :type: :boolean
962
+ - :name: DescribeReservedDBInstances
963
+ :method: :describe_reserved_db_instances
964
+ :inputs:
965
+ ReservedDBInstanceId:
966
+ - :string
967
+ ReservedDBInstancesOfferingId:
968
+ - :string
969
+ DBInstanceClass:
970
+ - :string
971
+ Duration:
972
+ - :string
973
+ ProductDescription:
974
+ - :string
975
+ OfferingType:
976
+ - :string
977
+ MultiAZ:
978
+ - :boolean
979
+ MaxRecords:
980
+ - :integer
981
+ Marker:
982
+ - :string
983
+ :outputs:
984
+ :children:
985
+ DescribeReservedDBInstancesResult:
986
+ :ignore: true
987
+ :children:
988
+ ReservedDBInstances:
989
+ :ignore: true
990
+ :children:
991
+ ReservedDBInstance:
992
+ :rename: :reserved_db_instances
993
+ :list: true
994
+ :children:
995
+ StartTime:
996
+ :type: :time
997
+ Duration:
998
+ :type: :integer
999
+ FixedPrice:
1000
+ :type: :float
1001
+ UsagePrice:
1002
+ :type: :float
1003
+ DBInstanceCount:
1004
+ :type: :integer
1005
+ MultiAZ:
1006
+ :type: :boolean
1007
+ RecurringCharges:
1008
+ :ignore: true
1009
+ :children:
1010
+ RecurringCharge:
1011
+ :rename: :recurring_charges
1012
+ :list: true
1013
+ :children:
1014
+ RecurringChargeAmount:
1015
+ :type: :float
1016
+ - :name: DescribeReservedDBInstancesOfferings
1017
+ :method: :describe_reserved_db_instances_offerings
1018
+ :inputs:
1019
+ ReservedDBInstancesOfferingId:
1020
+ - :string
1021
+ DBInstanceClass:
1022
+ - :string
1023
+ Duration:
1024
+ - :string
1025
+ ProductDescription:
1026
+ - :string
1027
+ OfferingType:
1028
+ - :string
1029
+ MultiAZ:
1030
+ - :boolean
1031
+ MaxRecords:
1032
+ - :integer
1033
+ Marker:
1034
+ - :string
1035
+ :outputs:
1036
+ :children:
1037
+ DescribeReservedDBInstancesOfferingsResult:
1038
+ :ignore: true
1039
+ :children:
1040
+ ReservedDBInstancesOfferings:
1041
+ :ignore: true
1042
+ :children:
1043
+ ReservedDBInstancesOffering:
1044
+ :rename: :reserved_db_instances_offerings
1045
+ :list: true
1046
+ :children:
1047
+ Duration:
1048
+ :type: :integer
1049
+ FixedPrice:
1050
+ :type: :float
1051
+ UsagePrice:
1052
+ :type: :float
1053
+ MultiAZ:
1054
+ :type: :boolean
1055
+ RecurringCharges:
1056
+ :ignore: true
1057
+ :children:
1058
+ RecurringCharge:
1059
+ :rename: :recurring_charges
1060
+ :list: true
1061
+ :children:
1062
+ RecurringChargeAmount:
1063
+ :type: :float
1064
+ - :name: ModifyDBInstance
1065
+ :method: :modify_db_instance
1066
+ :inputs:
1067
+ DBInstanceIdentifier:
1068
+ - :string
1069
+ - :required
1070
+ AllocatedStorage:
1071
+ - :integer
1072
+ DBInstanceClass:
1073
+ - :string
1074
+ DBSecurityGroups:
1075
+ - :membered_list:
1076
+ - :string
1077
+ ApplyImmediately:
1078
+ - :boolean
1079
+ MasterUserPassword:
1080
+ - :string
1081
+ DBParameterGroupName:
1082
+ - :string
1083
+ BackupRetentionPeriod:
1084
+ - :integer
1085
+ PreferredBackupWindow:
1086
+ - :string
1087
+ PreferredMaintenanceWindow:
1088
+ - :string
1089
+ MultiAZ:
1090
+ - :boolean
1091
+ EngineVersion:
1092
+ - :string
1093
+ AllowMajorVersionUpgrade:
1094
+ - :boolean
1095
+ AutoMinorVersionUpgrade:
1096
+ - :boolean
1097
+ OptionGroupName:
1098
+ - :string
1099
+ :outputs:
1100
+ :children:
1101
+ ModifyDBInstanceResult:
1102
+ :ignore: true
1103
+ :children:
1104
+ DBInstance:
1105
+ :children:
1106
+ Endpoint:
1107
+ :children:
1108
+ Port:
1109
+ :type: :integer
1110
+ AllocatedStorage:
1111
+ :type: :integer
1112
+ InstanceCreateTime:
1113
+ :type: :time
1114
+ BackupRetentionPeriod:
1115
+ :type: :integer
1116
+ DBSecurityGroups:
1117
+ :ignore: true
1118
+ :children:
1119
+ DBSecurityGroup:
1120
+ :rename: :db_security_groups
1121
+ :list: true
1122
+ DBParameterGroups:
1123
+ :ignore: true
1124
+ :children:
1125
+ DBParameterGroup:
1126
+ :rename: :db_parameter_groups
1127
+ :list: true
1128
+ DBSubnetGroup:
1129
+ :children:
1130
+ Subnets:
1131
+ :ignore: true
1132
+ :children:
1133
+ Subnet:
1134
+ :rename: :subnets
1135
+ :list: true
1136
+ PendingModifiedValues:
1137
+ :children:
1138
+ AllocatedStorage:
1139
+ :type: :integer
1140
+ Port:
1141
+ :type: :integer
1142
+ BackupRetentionPeriod:
1143
+ :type: :integer
1144
+ MultiAZ:
1145
+ :type: :boolean
1146
+ LatestRestorableTime:
1147
+ :type: :time
1148
+ MultiAZ:
1149
+ :type: :boolean
1150
+ AutoMinorVersionUpgrade:
1151
+ :type: :boolean
1152
+ ReadReplicaDBInstanceIdentifiers:
1153
+ :ignore: true
1154
+ :children:
1155
+ ReadReplicaDBInstanceIdentifier:
1156
+ :rename: :read_replica_db_instance_identifiers
1157
+ :list: true
1158
+ :ignore: true
1159
+ - :name: ModifyDBParameterGroup
1160
+ :method: :modify_db_parameter_group
1161
+ :inputs:
1162
+ DBParameterGroupName:
1163
+ - :string
1164
+ - :required
1165
+ Parameters:
1166
+ - :membered_list:
1167
+ - :structure:
1168
+ ParameterName:
1169
+ - :string
1170
+ ParameterValue:
1171
+ - :string
1172
+ Description:
1173
+ - :string
1174
+ Source:
1175
+ - :string
1176
+ ApplyType:
1177
+ - :string
1178
+ DataType:
1179
+ - :string
1180
+ AllowedValues:
1181
+ - :string
1182
+ IsModifiable:
1183
+ - :boolean
1184
+ MinimumEngineVersion:
1185
+ - :string
1186
+ ApplyMethod:
1187
+ - :string
1188
+ - :required
1189
+ :outputs:
1190
+ :children:
1191
+ ModifyDBParameterGroupResult:
1192
+ :ignore: true
1193
+ - :name: ModifyDBSubnetGroup
1194
+ :method: :modify_db_subnet_group
1195
+ :inputs:
1196
+ DBSubnetGroupName:
1197
+ - :string
1198
+ - :required
1199
+ DBSubnetGroupDescription:
1200
+ - :string
1201
+ SubnetIds:
1202
+ - :membered_list:
1203
+ - :string
1204
+ - :required
1205
+ :outputs:
1206
+ :children:
1207
+ ModifyDBSubnetGroupResult:
1208
+ :ignore: true
1209
+ :children:
1210
+ DBSubnetGroup:
1211
+ :children:
1212
+ Subnets:
1213
+ :ignore: true
1214
+ :children:
1215
+ Subnet:
1216
+ :rename: :subnets
1217
+ :list: true
1218
+ :ignore: true
1219
+ - :name: ModifyOptionGroup
1220
+ :method: :modify_option_group
1221
+ :inputs:
1222
+ OptionGroupName:
1223
+ - :string
1224
+ - :required
1225
+ OptionsToInclude:
1226
+ - :membered_list:
1227
+ - :structure:
1228
+ OptionName:
1229
+ - :string
1230
+ - :required
1231
+ Port:
1232
+ - :integer
1233
+ DBSecurityGroupMemberships:
1234
+ - :membered_list:
1235
+ - :string
1236
+ OptionsToRemove:
1237
+ - :membered_list:
1238
+ - :string
1239
+ ApplyImmediately:
1240
+ - :boolean
1241
+ :outputs:
1242
+ :children:
1243
+ ModifyOptionGroupResult:
1244
+ :ignore: true
1245
+ :children:
1246
+ OptionGroup:
1247
+ :children:
1248
+ Options:
1249
+ :ignore: true
1250
+ :children:
1251
+ Option:
1252
+ :rename: :options
1253
+ :list: true
1254
+ :children:
1255
+ Port:
1256
+ :type: :integer
1257
+ DBSecurityGroupMemberships:
1258
+ :ignore: true
1259
+ :children:
1260
+ DBSecurityGroup:
1261
+ :rename: :db_security_group_memberships
1262
+ :list: true
1263
+ :ignore: true
1264
+ - :name: PurchaseReservedDBInstancesOffering
1265
+ :method: :purchase_reserved_db_instances_offering
1266
+ :inputs:
1267
+ ReservedDBInstancesOfferingId:
1268
+ - :string
1269
+ - :required
1270
+ ReservedDBInstanceId:
1271
+ - :string
1272
+ DBInstanceCount:
1273
+ - :integer
1274
+ :outputs:
1275
+ :children:
1276
+ PurchaseReservedDBInstancesOfferingResult:
1277
+ :ignore: true
1278
+ :children:
1279
+ ReservedDBInstance:
1280
+ :children:
1281
+ StartTime:
1282
+ :type: :time
1283
+ Duration:
1284
+ :type: :integer
1285
+ FixedPrice:
1286
+ :type: :float
1287
+ UsagePrice:
1288
+ :type: :float
1289
+ DBInstanceCount:
1290
+ :type: :integer
1291
+ MultiAZ:
1292
+ :type: :boolean
1293
+ RecurringCharges:
1294
+ :ignore: true
1295
+ :children:
1296
+ RecurringCharge:
1297
+ :rename: :recurring_charges
1298
+ :list: true
1299
+ :children:
1300
+ RecurringChargeAmount:
1301
+ :type: :float
1302
+ :ignore: true
1303
+ - :name: RebootDBInstance
1304
+ :method: :reboot_db_instance
1305
+ :inputs:
1306
+ DBInstanceIdentifier:
1307
+ - :string
1308
+ - :required
1309
+ ForceFailover:
1310
+ - :boolean
1311
+ :outputs:
1312
+ :children:
1313
+ RebootDBInstanceResult:
1314
+ :ignore: true
1315
+ :children:
1316
+ DBInstance:
1317
+ :children:
1318
+ Endpoint:
1319
+ :children:
1320
+ Port:
1321
+ :type: :integer
1322
+ AllocatedStorage:
1323
+ :type: :integer
1324
+ InstanceCreateTime:
1325
+ :type: :time
1326
+ BackupRetentionPeriod:
1327
+ :type: :integer
1328
+ DBSecurityGroups:
1329
+ :ignore: true
1330
+ :children:
1331
+ DBSecurityGroup:
1332
+ :rename: :db_security_groups
1333
+ :list: true
1334
+ DBParameterGroups:
1335
+ :ignore: true
1336
+ :children:
1337
+ DBParameterGroup:
1338
+ :rename: :db_parameter_groups
1339
+ :list: true
1340
+ DBSubnetGroup:
1341
+ :children:
1342
+ Subnets:
1343
+ :ignore: true
1344
+ :children:
1345
+ Subnet:
1346
+ :rename: :subnets
1347
+ :list: true
1348
+ PendingModifiedValues:
1349
+ :children:
1350
+ AllocatedStorage:
1351
+ :type: :integer
1352
+ Port:
1353
+ :type: :integer
1354
+ BackupRetentionPeriod:
1355
+ :type: :integer
1356
+ MultiAZ:
1357
+ :type: :boolean
1358
+ LatestRestorableTime:
1359
+ :type: :time
1360
+ MultiAZ:
1361
+ :type: :boolean
1362
+ AutoMinorVersionUpgrade:
1363
+ :type: :boolean
1364
+ ReadReplicaDBInstanceIdentifiers:
1365
+ :ignore: true
1366
+ :children:
1367
+ ReadReplicaDBInstanceIdentifier:
1368
+ :rename: :read_replica_db_instance_identifiers
1369
+ :list: true
1370
+ :ignore: true
1371
+ - :name: ResetDBParameterGroup
1372
+ :method: :reset_db_parameter_group
1373
+ :inputs:
1374
+ DBParameterGroupName:
1375
+ - :string
1376
+ - :required
1377
+ ResetAllParameters:
1378
+ - :boolean
1379
+ Parameters:
1380
+ - :membered_list:
1381
+ - :structure:
1382
+ ParameterName:
1383
+ - :string
1384
+ ParameterValue:
1385
+ - :string
1386
+ Description:
1387
+ - :string
1388
+ Source:
1389
+ - :string
1390
+ ApplyType:
1391
+ - :string
1392
+ DataType:
1393
+ - :string
1394
+ AllowedValues:
1395
+ - :string
1396
+ IsModifiable:
1397
+ - :boolean
1398
+ MinimumEngineVersion:
1399
+ - :string
1400
+ ApplyMethod:
1401
+ - :string
1402
+ :outputs:
1403
+ :children:
1404
+ ResetDBParameterGroupResult:
1405
+ :ignore: true
1406
+ - :name: RestoreDBInstanceFromDBSnapshot
1407
+ :method: :restore_db_instance_from_db_snapshot
1408
+ :inputs:
1409
+ DBInstanceIdentifier:
1410
+ - :string
1411
+ - :required
1412
+ DBSnapshotIdentifier:
1413
+ - :string
1414
+ - :required
1415
+ DBInstanceClass:
1416
+ - :string
1417
+ Port:
1418
+ - :integer
1419
+ AvailabilityZone:
1420
+ - :string
1421
+ DBSubnetGroupName:
1422
+ - :string
1423
+ MultiAZ:
1424
+ - :boolean
1425
+ AutoMinorVersionUpgrade:
1426
+ - :boolean
1427
+ LicenseModel:
1428
+ - :string
1429
+ DBName:
1430
+ - :string
1431
+ Engine:
1432
+ - :string
1433
+ OptionGroupName:
1434
+ - :string
1435
+ :outputs:
1436
+ :children:
1437
+ RestoreDBInstanceFromDBSnapshotResult:
1438
+ :ignore: true
1439
+ :children:
1440
+ DBInstance:
1441
+ :children:
1442
+ Endpoint:
1443
+ :children:
1444
+ Port:
1445
+ :type: :integer
1446
+ AllocatedStorage:
1447
+ :type: :integer
1448
+ InstanceCreateTime:
1449
+ :type: :time
1450
+ BackupRetentionPeriod:
1451
+ :type: :integer
1452
+ DBSecurityGroups:
1453
+ :ignore: true
1454
+ :children:
1455
+ DBSecurityGroup:
1456
+ :rename: :db_security_groups
1457
+ :list: true
1458
+ DBParameterGroups:
1459
+ :ignore: true
1460
+ :children:
1461
+ DBParameterGroup:
1462
+ :rename: :db_parameter_groups
1463
+ :list: true
1464
+ DBSubnetGroup:
1465
+ :children:
1466
+ Subnets:
1467
+ :ignore: true
1468
+ :children:
1469
+ Subnet:
1470
+ :rename: :subnets
1471
+ :list: true
1472
+ PendingModifiedValues:
1473
+ :children:
1474
+ AllocatedStorage:
1475
+ :type: :integer
1476
+ Port:
1477
+ :type: :integer
1478
+ BackupRetentionPeriod:
1479
+ :type: :integer
1480
+ MultiAZ:
1481
+ :type: :boolean
1482
+ LatestRestorableTime:
1483
+ :type: :time
1484
+ MultiAZ:
1485
+ :type: :boolean
1486
+ AutoMinorVersionUpgrade:
1487
+ :type: :boolean
1488
+ ReadReplicaDBInstanceIdentifiers:
1489
+ :ignore: true
1490
+ :children:
1491
+ ReadReplicaDBInstanceIdentifier:
1492
+ :rename: :read_replica_db_instance_identifiers
1493
+ :list: true
1494
+ :ignore: true
1495
+ - :name: RestoreDBInstanceToPointInTime
1496
+ :method: :restore_db_instance_to_point_in_time
1497
+ :inputs:
1498
+ SourceDBInstanceIdentifier:
1499
+ - :string
1500
+ - :required
1501
+ TargetDBInstanceIdentifier:
1502
+ - :string
1503
+ - :required
1504
+ RestoreTime:
1505
+ - :timestamp
1506
+ UseLatestRestorableTime:
1507
+ - :boolean
1508
+ DBInstanceClass:
1509
+ - :string
1510
+ Port:
1511
+ - :integer
1512
+ AvailabilityZone:
1513
+ - :string
1514
+ DBSubnetGroupName:
1515
+ - :string
1516
+ MultiAZ:
1517
+ - :boolean
1518
+ AutoMinorVersionUpgrade:
1519
+ - :boolean
1520
+ LicenseModel:
1521
+ - :string
1522
+ DBName:
1523
+ - :string
1524
+ Engine:
1525
+ - :string
1526
+ OptionGroupName:
1527
+ - :string
1528
+ :outputs:
1529
+ :children:
1530
+ RestoreDBInstanceToPointInTimeResult:
1531
+ :ignore: true
1532
+ :children:
1533
+ DBInstance:
1534
+ :children:
1535
+ Endpoint:
1536
+ :children:
1537
+ Port:
1538
+ :type: :integer
1539
+ AllocatedStorage:
1540
+ :type: :integer
1541
+ InstanceCreateTime:
1542
+ :type: :time
1543
+ BackupRetentionPeriod:
1544
+ :type: :integer
1545
+ DBSecurityGroups:
1546
+ :ignore: true
1547
+ :children:
1548
+ DBSecurityGroup:
1549
+ :rename: :db_security_groups
1550
+ :list: true
1551
+ DBParameterGroups:
1552
+ :ignore: true
1553
+ :children:
1554
+ DBParameterGroup:
1555
+ :rename: :db_parameter_groups
1556
+ :list: true
1557
+ DBSubnetGroup:
1558
+ :children:
1559
+ Subnets:
1560
+ :ignore: true
1561
+ :children:
1562
+ Subnet:
1563
+ :rename: :subnets
1564
+ :list: true
1565
+ PendingModifiedValues:
1566
+ :children:
1567
+ AllocatedStorage:
1568
+ :type: :integer
1569
+ Port:
1570
+ :type: :integer
1571
+ BackupRetentionPeriod:
1572
+ :type: :integer
1573
+ MultiAZ:
1574
+ :type: :boolean
1575
+ LatestRestorableTime:
1576
+ :type: :time
1577
+ MultiAZ:
1578
+ :type: :boolean
1579
+ AutoMinorVersionUpgrade:
1580
+ :type: :boolean
1581
+ ReadReplicaDBInstanceIdentifiers:
1582
+ :ignore: true
1583
+ :children:
1584
+ ReadReplicaDBInstanceIdentifier:
1585
+ :rename: :read_replica_db_instance_identifiers
1586
+ :list: true
1587
+ :ignore: true
1588
+ - :name: RevokeDBSecurityGroupIngress
1589
+ :method: :revoke_db_security_group_ingress
1590
+ :inputs:
1591
+ DBSecurityGroupName:
1592
+ - :string
1593
+ - :required
1594
+ CIDRIP:
1595
+ - :string
1596
+ EC2SecurityGroupName:
1597
+ - :string
1598
+ EC2SecurityGroupId:
1599
+ - :string
1600
+ EC2SecurityGroupOwnerId:
1601
+ - :string
1602
+ :outputs:
1603
+ :children:
1604
+ RevokeDBSecurityGroupIngressResult:
1605
+ :ignore: true
1606
+ :children:
1607
+ DBSecurityGroup:
1608
+ :children:
1609
+ EC2SecurityGroups:
1610
+ :ignore: true
1611
+ :children:
1612
+ EC2SecurityGroup:
1613
+ :rename: :ec2_security_groups
1614
+ :list: true
1615
+ IPRanges:
1616
+ :ignore: true
1617
+ :children:
1618
+ IPRange:
1619
+ :rename: :ip_ranges
1620
+ :list: true
1621
+ :ignore: true