File Coverage

blib/lib/Paws/CodeDeploy/LifecycleEvent.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::CodeDeploy::LifecycleEvent;
2 1     1   590 use Moose;
  1         3  
  1         8  
3             has Diagnostics => (is => 'ro', isa => 'Paws::CodeDeploy::Diagnostics', request_name => 'diagnostics', traits => ['NameInRequest']);
4             has EndTime => (is => 'ro', isa => 'Str', request_name => 'endTime', traits => ['NameInRequest']);
5             has LifecycleEventName => (is => 'ro', isa => 'Str', request_name => 'lifecycleEventName', traits => ['NameInRequest']);
6             has StartTime => (is => 'ro', isa => 'Str', request_name => 'startTime', 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::CodeDeploy::LifecycleEvent
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::CodeDeploy::LifecycleEvent object:
26              
27             $service_obj->Method(Att1 => { Diagnostics => $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::CodeDeploy::LifecycleEvent object:
32              
33             $result = $service_obj->Method(...);
34             $result->Att1->Diagnostics
35              
36             =head1 DESCRIPTION
37              
38             Information about a deployment lifecycle event.
39              
40             =head1 ATTRIBUTES
41              
42              
43             =head2 Diagnostics => L<Paws::CodeDeploy::Diagnostics>
44              
45             Diagnostic information about the deployment lifecycle event.
46              
47              
48             =head2 EndTime => Str
49              
50             A timestamp indicating when the deployment lifecycle event ended.
51              
52              
53             =head2 LifecycleEventName => Str
54              
55             The deployment lifecycle event name, such as ApplicationStop,
56             BeforeInstall, AfterInstall, ApplicationStart, or ValidateService.
57              
58              
59             =head2 StartTime => Str
60              
61             A timestamp indicating when the deployment lifecycle event started.
62              
63              
64             =head2 Status => Str
65              
66             The deployment lifecycle event status:
67              
68             =over
69              
70             =item *
71              
72             Pending: The deployment lifecycle event is pending.
73              
74             =item *
75              
76             InProgress: The deployment lifecycle event is in progress.
77              
78             =item *
79              
80             Succeeded: The deployment lifecycle event ran successfully.
81              
82             =item *
83              
84             Failed: The deployment lifecycle event has failed.
85              
86             =item *
87              
88             Skipped: The deployment lifecycle event has been skipped.
89              
90             =item *
91              
92             Unknown: The deployment lifecycle event is unknown.
93              
94             =back
95              
96              
97              
98              
99             =head1 SEE ALSO
100              
101             This class forms part of L<Paws>, describing an object used in L<Paws::CodeDeploy>
102              
103             =head1 BUGS and CONTRIBUTIONS
104              
105             The source code is located here: https://github.com/pplu/aws-sdk-perl
106              
107             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
108              
109             =cut
110