File Coverage

blib/lib/Paws/ElasticBeanstalk/ApplicationVersionDescription.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::ApplicationVersionDescription;
2 1     1   429 use Moose;
  1     1   3  
  1         6  
  1         932  
  1         75  
  1         15  
3             has ApplicationName => (is => 'ro', isa => 'Str');
4             has BuildArn => (is => 'ro', isa => 'Str');
5             has DateCreated => (is => 'ro', isa => 'Str');
6             has DateUpdated => (is => 'ro', isa => 'Str');
7             has Description => (is => 'ro', isa => 'Str');
8             has SourceBuildInformation => (is => 'ro', isa => 'Paws::ElasticBeanstalk::SourceBuildInformation');
9             has SourceBundle => (is => 'ro', isa => 'Paws::ElasticBeanstalk::S3Location');
10             has Status => (is => 'ro', isa => 'Str');
11             has VersionLabel => (is => 'ro', isa => 'Str');
12             1;
13              
14             ### main pod documentation begin ###
15              
16             =head1 NAME
17              
18             Paws::ElasticBeanstalk::ApplicationVersionDescription
19              
20             =head1 USAGE
21              
22             This class represents one of two things:
23              
24             =head3 Arguments in a call to a service
25              
26             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
27             Each attribute should be used as a named argument in the calls that expect this type of object.
28              
29             As an example, if Att1 is expected to be a Paws::ElasticBeanstalk::ApplicationVersionDescription object:
30              
31             $service_obj->Method(Att1 => { ApplicationName => $value, ..., VersionLabel => $value });
32              
33             =head3 Results returned from an API call
34              
35             Use accessors for each attribute. If Att1 is expected to be an Paws::ElasticBeanstalk::ApplicationVersionDescription object:
36              
37             $result = $service_obj->Method(...);
38             $result->Att1->ApplicationName
39              
40             =head1 DESCRIPTION
41              
42             Describes the properties of an application version.
43              
44             =head1 ATTRIBUTES
45              
46              
47             =head2 ApplicationName => Str
48              
49             The name of the application to which the application version belongs.
50              
51              
52             =head2 BuildArn => Str
53              
54             Reference to the artifact from the AWS CodeBuild build.
55              
56              
57             =head2 DateCreated => Str
58              
59             The creation date of the application version.
60              
61              
62             =head2 DateUpdated => Str
63              
64             The last modified date of the application version.
65              
66              
67             =head2 Description => Str
68              
69             The description of the application version.
70              
71              
72             =head2 SourceBuildInformation => L<Paws::ElasticBeanstalk::SourceBuildInformation>
73              
74             If the version's source code was retrieved from AWS CodeCommit, the
75             location of the source code for the application version.
76              
77              
78             =head2 SourceBundle => L<Paws::ElasticBeanstalk::S3Location>
79              
80             The storage location of the application version's source bundle in
81             Amazon S3.
82              
83              
84             =head2 Status => Str
85              
86             The processing status of the application version.
87              
88              
89             =head2 VersionLabel => Str
90              
91             A unique identifier for the application version.
92              
93              
94              
95             =head1 SEE ALSO
96              
97             This class forms part of L<Paws>, describing an object used in L<Paws::ElasticBeanstalk>
98              
99             =head1 BUGS and CONTRIBUTIONS
100              
101             The source code is located here: https://github.com/pplu/aws-sdk-perl
102              
103             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
104              
105             =cut
106