File Coverage

blib/lib/Paws/OpsWorks/Command.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::OpsWorks::Command;
2 1     1   497 use Moose;
  1         2  
  1         8  
3             has AcknowledgedAt => (is => 'ro', isa => 'Str');
4             has CommandId => (is => 'ro', isa => 'Str');
5             has CompletedAt => (is => 'ro', isa => 'Str');
6             has CreatedAt => (is => 'ro', isa => 'Str');
7             has DeploymentId => (is => 'ro', isa => 'Str');
8             has ExitCode => (is => 'ro', isa => 'Int');
9             has InstanceId => (is => 'ro', isa => 'Str');
10             has LogUrl => (is => 'ro', isa => 'Str');
11             has Status => (is => 'ro', isa => 'Str');
12             has Type => (is => 'ro', isa => 'Str');
13             1;
14              
15             ### main pod documentation begin ###
16              
17             =head1 NAME
18              
19             Paws::OpsWorks::Command
20              
21             =head1 USAGE
22              
23             This class represents one of two things:
24              
25             =head3 Arguments in a call to a service
26              
27             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
28             Each attribute should be used as a named argument in the calls that expect this type of object.
29              
30             As an example, if Att1 is expected to be a Paws::OpsWorks::Command object:
31              
32             $service_obj->Method(Att1 => { AcknowledgedAt => $value, ..., Type => $value });
33              
34             =head3 Results returned from an API call
35              
36             Use accessors for each attribute. If Att1 is expected to be an Paws::OpsWorks::Command object:
37              
38             $result = $service_obj->Method(...);
39             $result->Att1->AcknowledgedAt
40              
41             =head1 DESCRIPTION
42              
43             Describes a command.
44              
45             =head1 ATTRIBUTES
46              
47              
48             =head2 AcknowledgedAt => Str
49              
50             Date and time when the command was acknowledged.
51              
52              
53             =head2 CommandId => Str
54              
55             The command ID.
56              
57              
58             =head2 CompletedAt => Str
59              
60             Date when the command completed.
61              
62              
63             =head2 CreatedAt => Str
64              
65             Date and time when the command was run.
66              
67              
68             =head2 DeploymentId => Str
69              
70             The command deployment ID.
71              
72              
73             =head2 ExitCode => Int
74              
75             The command exit code.
76              
77              
78             =head2 InstanceId => Str
79              
80             The ID of the instance where the command was executed.
81              
82              
83             =head2 LogUrl => Str
84              
85             The URL of the command log.
86              
87              
88             =head2 Status => Str
89              
90             The command status:
91              
92             =over
93              
94             =item *
95              
96             failed
97              
98             =item *
99              
100             successful
101              
102             =item *
103              
104             skipped
105              
106             =item *
107              
108             pending
109              
110             =back
111              
112              
113              
114             =head2 Type => Str
115              
116             The command type:
117              
118             =over
119              
120             =item *
121              
122             C<configure>
123              
124             =item *
125              
126             C<deploy>
127              
128             =item *
129              
130             C<execute_recipes>
131              
132             =item *
133              
134             C<install_dependencies>
135              
136             =item *
137              
138             C<restart>
139              
140             =item *
141              
142             C<rollback>
143              
144             =item *
145              
146             C<setup>
147              
148             =item *
149              
150             C<start>
151              
152             =item *
153              
154             C<stop>
155              
156             =item *
157              
158             C<undeploy>
159              
160             =item *
161              
162             C<update_custom_cookbooks>
163              
164             =item *
165              
166             C<update_dependencies>
167              
168             =back
169              
170              
171              
172              
173             =head1 SEE ALSO
174              
175             This class forms part of L<Paws>, describing an object used in L<Paws::OpsWorks>
176              
177             =head1 BUGS and CONTRIBUTIONS
178              
179             The source code is located here: https://github.com/pplu/aws-sdk-perl
180              
181             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
182              
183             =cut
184