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,823 @@
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: '2010-12-01'
16
+ :operations:
17
+ - :name: CheckDNSAvailability
18
+ :method: :check_dns_availability
19
+ :inputs:
20
+ CNAMEPrefix:
21
+ - :string
22
+ - :required
23
+ :outputs:
24
+ :children:
25
+ CheckDNSAvailabilityResult:
26
+ :ignore: true
27
+ :children:
28
+ Available:
29
+ :type: :boolean
30
+ - :name: CreateApplication
31
+ :method: :create_application
32
+ :inputs:
33
+ ApplicationName:
34
+ - :string
35
+ - :required
36
+ Description:
37
+ - :string
38
+ :outputs:
39
+ :children:
40
+ CreateApplicationResult:
41
+ :ignore: true
42
+ :children:
43
+ Application:
44
+ :children:
45
+ DateCreated:
46
+ :type: :time
47
+ DateUpdated:
48
+ :type: :time
49
+ Versions:
50
+ :ignore: true
51
+ :children:
52
+ member:
53
+ :rename: :versions
54
+ :list: true
55
+ ConfigurationTemplates:
56
+ :ignore: true
57
+ :children:
58
+ member:
59
+ :rename: :configuration_templates
60
+ :list: true
61
+ - :name: CreateApplicationVersion
62
+ :method: :create_application_version
63
+ :inputs:
64
+ ApplicationName:
65
+ - :string
66
+ - :required
67
+ VersionLabel:
68
+ - :string
69
+ - :required
70
+ Description:
71
+ - :string
72
+ SourceBundle:
73
+ - :structure:
74
+ S3Bucket:
75
+ - :string
76
+ S3Key:
77
+ - :string
78
+ AutoCreateApplication:
79
+ - :boolean
80
+ :outputs:
81
+ :children:
82
+ CreateApplicationVersionResult:
83
+ :ignore: true
84
+ :children:
85
+ ApplicationVersion:
86
+ :children:
87
+ DateCreated:
88
+ :type: :time
89
+ DateUpdated:
90
+ :type: :time
91
+ - :name: CreateConfigurationTemplate
92
+ :method: :create_configuration_template
93
+ :inputs:
94
+ ApplicationName:
95
+ - :string
96
+ - :required
97
+ TemplateName:
98
+ - :string
99
+ - :required
100
+ SolutionStackName:
101
+ - :string
102
+ SourceConfiguration:
103
+ - :structure:
104
+ ApplicationName:
105
+ - :string
106
+ TemplateName:
107
+ - :string
108
+ EnvironmentId:
109
+ - :string
110
+ Description:
111
+ - :string
112
+ OptionSettings:
113
+ - :membered_list:
114
+ - :structure:
115
+ Namespace:
116
+ - :string
117
+ OptionName:
118
+ - :string
119
+ Value:
120
+ - :string
121
+ :outputs:
122
+ :children:
123
+ CreateConfigurationTemplateResult:
124
+ :ignore: true
125
+ :children:
126
+ DateCreated:
127
+ :type: :time
128
+ DateUpdated:
129
+ :type: :time
130
+ OptionSettings:
131
+ :ignore: true
132
+ :children:
133
+ member:
134
+ :rename: :option_settings
135
+ :list: true
136
+ - :name: CreateEnvironment
137
+ :method: :create_environment
138
+ :inputs:
139
+ ApplicationName:
140
+ - :string
141
+ - :required
142
+ VersionLabel:
143
+ - :string
144
+ EnvironmentName:
145
+ - :string
146
+ - :required
147
+ TemplateName:
148
+ - :string
149
+ SolutionStackName:
150
+ - :string
151
+ CNAMEPrefix:
152
+ - :string
153
+ Description:
154
+ - :string
155
+ OptionSettings:
156
+ - :membered_list:
157
+ - :structure:
158
+ Namespace:
159
+ - :string
160
+ OptionName:
161
+ - :string
162
+ Value:
163
+ - :string
164
+ OptionsToRemove:
165
+ - :membered_list:
166
+ - :structure:
167
+ Namespace:
168
+ - :string
169
+ OptionName:
170
+ - :string
171
+ :outputs:
172
+ :children:
173
+ CreateEnvironmentResult:
174
+ :ignore: true
175
+ :children:
176
+ DateCreated:
177
+ :type: :time
178
+ DateUpdated:
179
+ :type: :time
180
+ Resources:
181
+ :children:
182
+ LoadBalancer:
183
+ :children:
184
+ Listeners:
185
+ :ignore: true
186
+ :children:
187
+ member:
188
+ :rename: :listeners
189
+ :list: true
190
+ :children:
191
+ Port:
192
+ :type: :integer
193
+ - :name: CreateStorageLocation
194
+ :method: :create_storage_location
195
+ :inputs: {}
196
+ :outputs:
197
+ :children:
198
+ CreateStorageLocationResult:
199
+ :ignore: true
200
+ - :name: DeleteApplication
201
+ :method: :delete_application
202
+ :inputs:
203
+ ApplicationName:
204
+ - :string
205
+ - :required
206
+ :outputs:
207
+ :children:
208
+ DeleteApplicationResult:
209
+ :ignore: true
210
+ - :name: DeleteApplicationVersion
211
+ :method: :delete_application_version
212
+ :inputs:
213
+ ApplicationName:
214
+ - :string
215
+ - :required
216
+ VersionLabel:
217
+ - :string
218
+ - :required
219
+ DeleteSourceBundle:
220
+ - :boolean
221
+ :outputs:
222
+ :children:
223
+ DeleteApplicationVersionResult:
224
+ :ignore: true
225
+ - :name: DeleteConfigurationTemplate
226
+ :method: :delete_configuration_template
227
+ :inputs:
228
+ ApplicationName:
229
+ - :string
230
+ - :required
231
+ TemplateName:
232
+ - :string
233
+ - :required
234
+ :outputs:
235
+ :children:
236
+ DeleteConfigurationTemplateResult:
237
+ :ignore: true
238
+ - :name: DeleteEnvironmentConfiguration
239
+ :method: :delete_environment_configuration
240
+ :inputs:
241
+ ApplicationName:
242
+ - :string
243
+ - :required
244
+ EnvironmentName:
245
+ - :string
246
+ - :required
247
+ :outputs:
248
+ :children:
249
+ DeleteEnvironmentConfigurationResult:
250
+ :ignore: true
251
+ - :name: DescribeApplicationVersions
252
+ :method: :describe_application_versions
253
+ :inputs:
254
+ ApplicationName:
255
+ - :string
256
+ VersionLabels:
257
+ - :membered_list:
258
+ - :string
259
+ :outputs:
260
+ :children:
261
+ DescribeApplicationVersionsResult:
262
+ :ignore: true
263
+ :children:
264
+ ApplicationVersions:
265
+ :ignore: true
266
+ :children:
267
+ member:
268
+ :rename: :application_versions
269
+ :list: true
270
+ :children:
271
+ DateCreated:
272
+ :type: :time
273
+ DateUpdated:
274
+ :type: :time
275
+ - :name: DescribeApplications
276
+ :method: :describe_applications
277
+ :inputs:
278
+ ApplicationNames:
279
+ - :membered_list:
280
+ - :string
281
+ :outputs:
282
+ :children:
283
+ DescribeApplicationsResult:
284
+ :ignore: true
285
+ :children:
286
+ Applications:
287
+ :ignore: true
288
+ :children:
289
+ member:
290
+ :rename: :applications
291
+ :list: true
292
+ :children:
293
+ DateCreated:
294
+ :type: :time
295
+ DateUpdated:
296
+ :type: :time
297
+ Versions:
298
+ :ignore: true
299
+ :children:
300
+ member:
301
+ :rename: :versions
302
+ :list: true
303
+ ConfigurationTemplates:
304
+ :ignore: true
305
+ :children:
306
+ member:
307
+ :rename: :configuration_templates
308
+ :list: true
309
+ - :name: DescribeConfigurationOptions
310
+ :method: :describe_configuration_options
311
+ :inputs:
312
+ ApplicationName:
313
+ - :string
314
+ TemplateName:
315
+ - :string
316
+ EnvironmentName:
317
+ - :string
318
+ SolutionStackName:
319
+ - :string
320
+ Options:
321
+ - :membered_list:
322
+ - :structure:
323
+ Namespace:
324
+ - :string
325
+ OptionName:
326
+ - :string
327
+ :outputs:
328
+ :children:
329
+ DescribeConfigurationOptionsResult:
330
+ :ignore: true
331
+ :children:
332
+ Options:
333
+ :ignore: true
334
+ :children:
335
+ member:
336
+ :rename: :options
337
+ :list: true
338
+ :children:
339
+ UserDefined:
340
+ :type: :boolean
341
+ ValueOptions:
342
+ :ignore: true
343
+ :children:
344
+ member:
345
+ :rename: :value_options
346
+ :list: true
347
+ MinValue:
348
+ :type: :integer
349
+ MaxValue:
350
+ :type: :integer
351
+ MaxLength:
352
+ :type: :integer
353
+ - :name: DescribeConfigurationSettings
354
+ :method: :describe_configuration_settings
355
+ :inputs:
356
+ ApplicationName:
357
+ - :string
358
+ - :required
359
+ TemplateName:
360
+ - :string
361
+ EnvironmentName:
362
+ - :string
363
+ :outputs:
364
+ :children:
365
+ DescribeConfigurationSettingsResult:
366
+ :ignore: true
367
+ :children:
368
+ ConfigurationSettings:
369
+ :ignore: true
370
+ :children:
371
+ member:
372
+ :rename: :configuration_settings
373
+ :list: true
374
+ :children:
375
+ DateCreated:
376
+ :type: :time
377
+ DateUpdated:
378
+ :type: :time
379
+ OptionSettings:
380
+ :ignore: true
381
+ :children:
382
+ member:
383
+ :rename: :option_settings
384
+ :list: true
385
+ - :name: DescribeEnvironmentResources
386
+ :method: :describe_environment_resources
387
+ :inputs:
388
+ EnvironmentId:
389
+ - :string
390
+ EnvironmentName:
391
+ - :string
392
+ :outputs:
393
+ :children:
394
+ DescribeEnvironmentResourcesResult:
395
+ :ignore: true
396
+ :children:
397
+ EnvironmentResources:
398
+ :children:
399
+ AutoScalingGroups:
400
+ :ignore: true
401
+ :children:
402
+ member:
403
+ :rename: :auto_scaling_groups
404
+ :list: true
405
+ Instances:
406
+ :ignore: true
407
+ :children:
408
+ member:
409
+ :rename: :instances
410
+ :list: true
411
+ LaunchConfigurations:
412
+ :ignore: true
413
+ :children:
414
+ member:
415
+ :rename: :launch_configurations
416
+ :list: true
417
+ LoadBalancers:
418
+ :ignore: true
419
+ :children:
420
+ member:
421
+ :rename: :load_balancers
422
+ :list: true
423
+ Triggers:
424
+ :ignore: true
425
+ :children:
426
+ member:
427
+ :rename: :triggers
428
+ :list: true
429
+ - :name: DescribeEnvironments
430
+ :method: :describe_environments
431
+ :inputs:
432
+ ApplicationName:
433
+ - :string
434
+ VersionLabel:
435
+ - :string
436
+ EnvironmentIds:
437
+ - :membered_list:
438
+ - :string
439
+ EnvironmentNames:
440
+ - :membered_list:
441
+ - :string
442
+ IncludeDeleted:
443
+ - :boolean
444
+ IncludedDeletedBackTo:
445
+ - :timestamp
446
+ :outputs:
447
+ :children:
448
+ DescribeEnvironmentsResult:
449
+ :ignore: true
450
+ :children:
451
+ Environments:
452
+ :ignore: true
453
+ :children:
454
+ member:
455
+ :rename: :environments
456
+ :list: true
457
+ :children:
458
+ DateCreated:
459
+ :type: :time
460
+ DateUpdated:
461
+ :type: :time
462
+ Resources:
463
+ :children:
464
+ LoadBalancer:
465
+ :children:
466
+ Listeners:
467
+ :ignore: true
468
+ :children:
469
+ member:
470
+ :rename: :listeners
471
+ :list: true
472
+ :children:
473
+ Port:
474
+ :type: :integer
475
+ - :name: DescribeEvents
476
+ :method: :describe_events
477
+ :inputs:
478
+ ApplicationName:
479
+ - :string
480
+ VersionLabel:
481
+ - :string
482
+ TemplateName:
483
+ - :string
484
+ EnvironmentId:
485
+ - :string
486
+ EnvironmentName:
487
+ - :string
488
+ RequestId:
489
+ - :string
490
+ Severity:
491
+ - :string
492
+ StartTime:
493
+ - :timestamp
494
+ EndTime:
495
+ - :timestamp
496
+ MaxRecords:
497
+ - :integer
498
+ NextToken:
499
+ - :string
500
+ :outputs:
501
+ :children:
502
+ DescribeEventsResult:
503
+ :ignore: true
504
+ :children:
505
+ Events:
506
+ :ignore: true
507
+ :children:
508
+ member:
509
+ :rename: :events
510
+ :list: true
511
+ :children:
512
+ EventDate:
513
+ :type: :time
514
+ - :name: ListAvailableSolutionStacks
515
+ :method: :list_available_solution_stacks
516
+ :inputs: {}
517
+ :outputs:
518
+ :children:
519
+ ListAvailableSolutionStacksResult:
520
+ :ignore: true
521
+ :children:
522
+ SolutionStacks:
523
+ :ignore: true
524
+ :children:
525
+ member:
526
+ :rename: :solution_stacks
527
+ :list: true
528
+ SolutionStackDetails:
529
+ :ignore: true
530
+ :children:
531
+ member:
532
+ :rename: :solution_stack_details
533
+ :list: true
534
+ :children:
535
+ PermittedFileTypes:
536
+ :ignore: true
537
+ :children:
538
+ member:
539
+ :rename: :permitted_file_types
540
+ :list: true
541
+ - :name: RebuildEnvironment
542
+ :method: :rebuild_environment
543
+ :inputs:
544
+ EnvironmentId:
545
+ - :string
546
+ EnvironmentName:
547
+ - :string
548
+ :outputs:
549
+ :children:
550
+ RebuildEnvironmentResult:
551
+ :ignore: true
552
+ - :name: RequestEnvironmentInfo
553
+ :method: :request_environment_info
554
+ :inputs:
555
+ EnvironmentId:
556
+ - :string
557
+ EnvironmentName:
558
+ - :string
559
+ InfoType:
560
+ - :string
561
+ - :required
562
+ :outputs:
563
+ :children:
564
+ RequestEnvironmentInfoResult:
565
+ :ignore: true
566
+ - :name: RestartAppServer
567
+ :method: :restart_app_server
568
+ :inputs:
569
+ EnvironmentId:
570
+ - :string
571
+ EnvironmentName:
572
+ - :string
573
+ :outputs:
574
+ :children:
575
+ RestartAppServerResult:
576
+ :ignore: true
577
+ - :name: RetrieveEnvironmentInfo
578
+ :method: :retrieve_environment_info
579
+ :inputs:
580
+ EnvironmentId:
581
+ - :string
582
+ EnvironmentName:
583
+ - :string
584
+ InfoType:
585
+ - :string
586
+ - :required
587
+ :outputs:
588
+ :children:
589
+ RetrieveEnvironmentInfoResult:
590
+ :ignore: true
591
+ :children:
592
+ EnvironmentInfo:
593
+ :ignore: true
594
+ :children:
595
+ member:
596
+ :rename: :environment_info
597
+ :list: true
598
+ :children:
599
+ SampleTimestamp:
600
+ :type: :time
601
+ - :name: SwapEnvironmentCNAMEs
602
+ :method: :swap_environment_cnam_es
603
+ :inputs:
604
+ SourceEnvironmentId:
605
+ - :string
606
+ SourceEnvironmentName:
607
+ - :string
608
+ DestinationEnvironmentId:
609
+ - :string
610
+ DestinationEnvironmentName:
611
+ - :string
612
+ :outputs:
613
+ :children:
614
+ SwapEnvironmentCNAMEsResult:
615
+ :ignore: true
616
+ - :name: TerminateEnvironment
617
+ :method: :terminate_environment
618
+ :inputs:
619
+ EnvironmentId:
620
+ - :string
621
+ EnvironmentName:
622
+ - :string
623
+ TerminateResources:
624
+ - :boolean
625
+ :outputs:
626
+ :children:
627
+ TerminateEnvironmentResult:
628
+ :ignore: true
629
+ :children:
630
+ DateCreated:
631
+ :type: :time
632
+ DateUpdated:
633
+ :type: :time
634
+ Resources:
635
+ :children:
636
+ LoadBalancer:
637
+ :children:
638
+ Listeners:
639
+ :ignore: true
640
+ :children:
641
+ member:
642
+ :rename: :listeners
643
+ :list: true
644
+ :children:
645
+ Port:
646
+ :type: :integer
647
+ - :name: UpdateApplication
648
+ :method: :update_application
649
+ :inputs:
650
+ ApplicationName:
651
+ - :string
652
+ - :required
653
+ Description:
654
+ - :string
655
+ :outputs:
656
+ :children:
657
+ UpdateApplicationResult:
658
+ :ignore: true
659
+ :children:
660
+ Application:
661
+ :children:
662
+ DateCreated:
663
+ :type: :time
664
+ DateUpdated:
665
+ :type: :time
666
+ Versions:
667
+ :ignore: true
668
+ :children:
669
+ member:
670
+ :rename: :versions
671
+ :list: true
672
+ ConfigurationTemplates:
673
+ :ignore: true
674
+ :children:
675
+ member:
676
+ :rename: :configuration_templates
677
+ :list: true
678
+ - :name: UpdateApplicationVersion
679
+ :method: :update_application_version
680
+ :inputs:
681
+ ApplicationName:
682
+ - :string
683
+ - :required
684
+ VersionLabel:
685
+ - :string
686
+ - :required
687
+ Description:
688
+ - :string
689
+ :outputs:
690
+ :children:
691
+ UpdateApplicationVersionResult:
692
+ :ignore: true
693
+ :children:
694
+ ApplicationVersion:
695
+ :children:
696
+ DateCreated:
697
+ :type: :time
698
+ DateUpdated:
699
+ :type: :time
700
+ - :name: UpdateConfigurationTemplate
701
+ :method: :update_configuration_template
702
+ :inputs:
703
+ ApplicationName:
704
+ - :string
705
+ - :required
706
+ TemplateName:
707
+ - :string
708
+ - :required
709
+ Description:
710
+ - :string
711
+ OptionSettings:
712
+ - :membered_list:
713
+ - :structure:
714
+ Namespace:
715
+ - :string
716
+ OptionName:
717
+ - :string
718
+ Value:
719
+ - :string
720
+ OptionsToRemove:
721
+ - :membered_list:
722
+ - :structure:
723
+ Namespace:
724
+ - :string
725
+ OptionName:
726
+ - :string
727
+ :outputs:
728
+ :children:
729
+ UpdateConfigurationTemplateResult:
730
+ :ignore: true
731
+ :children:
732
+ DateCreated:
733
+ :type: :time
734
+ DateUpdated:
735
+ :type: :time
736
+ OptionSettings:
737
+ :ignore: true
738
+ :children:
739
+ member:
740
+ :rename: :option_settings
741
+ :list: true
742
+ - :name: UpdateEnvironment
743
+ :method: :update_environment
744
+ :inputs:
745
+ EnvironmentId:
746
+ - :string
747
+ EnvironmentName:
748
+ - :string
749
+ VersionLabel:
750
+ - :string
751
+ TemplateName:
752
+ - :string
753
+ Description:
754
+ - :string
755
+ OptionSettings:
756
+ - :membered_list:
757
+ - :structure:
758
+ Namespace:
759
+ - :string
760
+ OptionName:
761
+ - :string
762
+ Value:
763
+ - :string
764
+ OptionsToRemove:
765
+ - :membered_list:
766
+ - :structure:
767
+ Namespace:
768
+ - :string
769
+ OptionName:
770
+ - :string
771
+ :outputs:
772
+ :children:
773
+ UpdateEnvironmentResult:
774
+ :ignore: true
775
+ :children:
776
+ DateCreated:
777
+ :type: :time
778
+ DateUpdated:
779
+ :type: :time
780
+ Resources:
781
+ :children:
782
+ LoadBalancer:
783
+ :children:
784
+ Listeners:
785
+ :ignore: true
786
+ :children:
787
+ member:
788
+ :rename: :listeners
789
+ :list: true
790
+ :children:
791
+ Port:
792
+ :type: :integer
793
+ - :name: ValidateConfigurationSettings
794
+ :method: :validate_configuration_settings
795
+ :inputs:
796
+ ApplicationName:
797
+ - :string
798
+ - :required
799
+ TemplateName:
800
+ - :string
801
+ EnvironmentName:
802
+ - :string
803
+ OptionSettings:
804
+ - :membered_list:
805
+ - :structure:
806
+ Namespace:
807
+ - :string
808
+ OptionName:
809
+ - :string
810
+ Value:
811
+ - :string
812
+ - :required
813
+ :outputs:
814
+ :children:
815
+ ValidateConfigurationSettingsResult:
816
+ :ignore: true
817
+ :children:
818
+ Messages:
819
+ :ignore: true
820
+ :children:
821
+ member:
822
+ :rename: :messages
823
+ :list: true