File Coverage

blib/lib/Paws/ElasticBeanstalk/DescribeConfigurationOptions.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::ElasticBeanstalk::DescribeConfigurationOptions;
3 1     1   545 use Moose;
  1     1   3  
  1         7  
  1         620  
  1         3  
  1         6  
4             has ApplicationName => (is => 'ro', isa => 'Str');
5             has EnvironmentName => (is => 'ro', isa => 'Str');
6             has Options => (is => 'ro', isa => 'ArrayRef[Paws::ElasticBeanstalk::OptionSpecification]');
7             has PlatformArn => (is => 'ro', isa => 'Str');
8             has SolutionStackName => (is => 'ro', isa => 'Str');
9             has TemplateName => (is => 'ro', isa => 'Str');
10              
11 1     1   7095 use MooseX::ClassAttribute;
  1     1   3  
  1         8  
  1         7005  
  1         3  
  1         8  
12              
13             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeConfigurationOptions');
14             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::ElasticBeanstalk::ConfigurationOptionsDescription');
15             class_has _result_key => (isa => 'Str', is => 'ro', default => 'DescribeConfigurationOptionsResult');
16             1;
17              
18             ### main pod documentation begin ###
19              
20             =head1 NAME
21              
22             Paws::ElasticBeanstalk::DescribeConfigurationOptions - Arguments for method DescribeConfigurationOptions on Paws::ElasticBeanstalk
23              
24             =head1 DESCRIPTION
25              
26             This class represents the parameters used for calling the method DescribeConfigurationOptions on the
27             AWS Elastic Beanstalk service. Use the attributes of this class
28             as arguments to method DescribeConfigurationOptions.
29              
30             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeConfigurationOptions.
31              
32             As an example:
33              
34             $service_obj->DescribeConfigurationOptions(Att1 => $value1, Att2 => $value2, ...);
35              
36             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
37              
38             =head1 ATTRIBUTES
39              
40              
41             =head2 ApplicationName => Str
42              
43             The name of the application associated with the configuration template
44             or environment. Only needed if you want to describe the configuration
45             options associated with either the configuration template or
46             environment.
47              
48              
49              
50             =head2 EnvironmentName => Str
51              
52             The name of the environment whose configuration options you want to
53             describe.
54              
55              
56              
57             =head2 Options => ArrayRef[L<Paws::ElasticBeanstalk::OptionSpecification>]
58              
59             If specified, restricts the descriptions to only the specified options.
60              
61              
62              
63             =head2 PlatformArn => Str
64              
65             The ARN of the custom platform.
66              
67              
68              
69             =head2 SolutionStackName => Str
70              
71             The name of the solution stack whose configuration options you want to
72             describe.
73              
74              
75              
76             =head2 TemplateName => Str
77              
78             The name of the configuration template whose configuration options you
79             want to describe.
80              
81              
82              
83              
84             =head1 SEE ALSO
85              
86             This class forms part of L<Paws>, documenting arguments for method DescribeConfigurationOptions in L<Paws::ElasticBeanstalk>
87              
88             =head1 BUGS and CONTRIBUTIONS
89              
90             The source code is located here: https://github.com/pplu/aws-sdk-perl
91              
92             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
93              
94             =cut
95