File Coverage

blib/lib/Paws/CodePipeline/PipelineExecution.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Paws::CodePipeline::PipelineExecution;
2 1     1   404 use Moose;
  1         2  
  1         8  
3             has ArtifactRevisions => (is => 'ro', isa => 'ArrayRef[Paws::CodePipeline::ArtifactRevision]', request_name => 'artifactRevisions', traits => ['NameInRequest']);
4             has PipelineExecutionId => (is => 'ro', isa => 'Str', request_name => 'pipelineExecutionId', traits => ['NameInRequest']);
5             has PipelineName => (is => 'ro', isa => 'Str', request_name => 'pipelineName', traits => ['NameInRequest']);
6             has PipelineVersion => (is => 'ro', isa => 'Int', request_name => 'pipelineVersion', traits => ['NameInRequest']);
7             has Status => (is => 'ro', isa => 'Str', request_name => 'status', traits => ['NameInRequest']);
8             1;
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::CodePipeline::PipelineExecution
15              
16             =head1 USAGE
17              
18             This class represents one of two things:
19              
20             =head3 Arguments in a call to a service
21              
22             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
23             Each attribute should be used as a named argument in the calls that expect this type of object.
24              
25             As an example, if Att1 is expected to be a Paws::CodePipeline::PipelineExecution object:
26              
27             $service_obj->Method(Att1 => { ArtifactRevisions => $value, ..., Status => $value });
28              
29             =head3 Results returned from an API call
30              
31             Use accessors for each attribute. If Att1 is expected to be an Paws::CodePipeline::PipelineExecution object:
32              
33             $result = $service_obj->Method(...);
34             $result->Att1->ArtifactRevisions
35              
36             =head1 DESCRIPTION
37              
38             Represents information about an execution of a pipeline.
39              
40             =head1 ATTRIBUTES
41              
42              
43             =head2 ArtifactRevisions => ArrayRef[L<Paws::CodePipeline::ArtifactRevision>]
44              
45             A list of ArtifactRevision objects included in a pipeline execution.
46              
47              
48             =head2 PipelineExecutionId => Str
49              
50             The ID of the pipeline execution.
51              
52              
53             =head2 PipelineName => Str
54              
55             The name of the pipeline that was executed.
56              
57              
58             =head2 PipelineVersion => Int
59              
60             The version number of the pipeline that was executed.
61              
62              
63             =head2 Status => Str
64              
65             The status of the pipeline execution.
66              
67             =over
68              
69             =item *
70              
71             InProgress: The pipeline execution is currently running.
72              
73             =item *
74              
75             Succeeded: The pipeline execution was completed successfully.
76              
77             =item *
78              
79             Superseded: While this pipeline execution was waiting for the next
80             stage to be completed, a newer pipeline execution advanced and
81             continued through the pipeline instead.
82              
83             =item *
84              
85             Failed: The pipeline execution was not completed successfully.
86              
87             =back
88              
89              
90              
91              
92             =head1 SEE ALSO
93              
94             This class forms part of L<Paws>, describing an object used in L<Paws::CodePipeline>
95              
96             =head1 BUGS and CONTRIBUTIONS
97              
98             The source code is located here: https://github.com/pplu/aws-sdk-perl
99              
100             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
101              
102             =cut
103