File Coverage

blib/lib/Paws/ElasticBeanstalk/ApplicationDescription.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Paws::ElasticBeanstalk::ApplicationDescription;
2 1     1   462 use Moose;
  1     1   3  
  1         7  
  1         816  
  1         4  
  1         10  
3             has ApplicationName => (is => 'ro', isa => 'Str');
4             has ConfigurationTemplates => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
5             has DateCreated => (is => 'ro', isa => 'Str');
6             has DateUpdated => (is => 'ro', isa => 'Str');
7             has Description => (is => 'ro', isa => 'Str');
8             has ResourceLifecycleConfig => (is => 'ro', isa => 'Paws::ElasticBeanstalk::ApplicationResourceLifecycleConfig');
9             has Versions => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
10             1;
11              
12             ### main pod documentation begin ###
13              
14             =head1 NAME
15              
16             Paws::ElasticBeanstalk::ApplicationDescription
17              
18             =head1 USAGE
19              
20             This class represents one of two things:
21              
22             =head3 Arguments in a call to a service
23              
24             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
25             Each attribute should be used as a named argument in the calls that expect this type of object.
26              
27             As an example, if Att1 is expected to be a Paws::ElasticBeanstalk::ApplicationDescription object:
28              
29             $service_obj->Method(Att1 => { ApplicationName => $value, ..., Versions => $value });
30              
31             =head3 Results returned from an API call
32              
33             Use accessors for each attribute. If Att1 is expected to be an Paws::ElasticBeanstalk::ApplicationDescription object:
34              
35             $result = $service_obj->Method(...);
36             $result->Att1->ApplicationName
37              
38             =head1 DESCRIPTION
39              
40             Describes the properties of an application.
41              
42             =head1 ATTRIBUTES
43              
44              
45             =head2 ApplicationName => Str
46              
47             The name of the application.
48              
49              
50             =head2 ConfigurationTemplates => ArrayRef[Str|Undef]
51              
52             The names of the configuration templates associated with this
53             application.
54              
55              
56             =head2 DateCreated => Str
57              
58             The date when the application was created.
59              
60              
61             =head2 DateUpdated => Str
62              
63             The date when the application was last modified.
64              
65              
66             =head2 Description => Str
67              
68             User-defined description of the application.
69              
70              
71             =head2 ResourceLifecycleConfig => L<Paws::ElasticBeanstalk::ApplicationResourceLifecycleConfig>
72              
73             The lifecycle settings for the application.
74              
75              
76             =head2 Versions => ArrayRef[Str|Undef]
77              
78             The names of the versions for this application.
79              
80              
81              
82             =head1 SEE ALSO
83              
84             This class forms part of L<Paws>, describing an object used in L<Paws::ElasticBeanstalk>
85              
86             =head1 BUGS and CONTRIBUTIONS
87              
88             The source code is located here: https://github.com/pplu/aws-sdk-perl
89              
90             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
91              
92             =cut
93