File Coverage

blib/lib/Paws/SSM/StepExecution.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::SSM::StepExecution;
2 1     1   846 use Moose;
  1         3  
  1         13  
3             has Action => (is => 'ro', isa => 'Str');
4             has ExecutionEndTime => (is => 'ro', isa => 'Str');
5             has ExecutionStartTime => (is => 'ro', isa => 'Str');
6             has FailureDetails => (is => 'ro', isa => 'Paws::SSM::FailureDetails');
7             has FailureMessage => (is => 'ro', isa => 'Str');
8             has Inputs => (is => 'ro', isa => 'Paws::SSM::NormalStringMap');
9             has Outputs => (is => 'ro', isa => 'Paws::SSM::AutomationParameterMap');
10             has Response => (is => 'ro', isa => 'Str');
11             has ResponseCode => (is => 'ro', isa => 'Str');
12             has StepName => (is => 'ro', isa => 'Str');
13             has StepStatus => (is => 'ro', isa => 'Str');
14             1;
15              
16             ### main pod documentation begin ###
17              
18             =head1 NAME
19              
20             Paws::SSM::StepExecution
21              
22             =head1 USAGE
23              
24             This class represents one of two things:
25              
26             =head3 Arguments in a call to a service
27              
28             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
29             Each attribute should be used as a named argument in the calls that expect this type of object.
30              
31             As an example, if Att1 is expected to be a Paws::SSM::StepExecution object:
32              
33             $service_obj->Method(Att1 => { Action => $value, ..., StepStatus => $value });
34              
35             =head3 Results returned from an API call
36              
37             Use accessors for each attribute. If Att1 is expected to be an Paws::SSM::StepExecution object:
38              
39             $result = $service_obj->Method(...);
40             $result->Att1->Action
41              
42             =head1 DESCRIPTION
43              
44             Detailed information about an the execution state of an Automation
45             step.
46              
47             =head1 ATTRIBUTES
48              
49              
50             =head2 Action => Str
51              
52             The action this step performs. The action determines the behavior of
53             the step.
54              
55              
56             =head2 ExecutionEndTime => Str
57              
58             If a step has finished execution, this contains the time the execution
59             ended. If the step has not yet concluded, this field is not populated.
60              
61              
62             =head2 ExecutionStartTime => Str
63              
64             If a step has begun execution, this contains the time the step started.
65             If the step is in Pending status, this field is not populated.
66              
67              
68             =head2 FailureDetails => L<Paws::SSM::FailureDetails>
69              
70             Information about the Automation failure.
71              
72              
73             =head2 FailureMessage => Str
74              
75             If a step failed, this message explains why the execution failed.
76              
77              
78             =head2 Inputs => L<Paws::SSM::NormalStringMap>
79              
80             Fully-resolved values passed into the step before execution.
81              
82              
83             =head2 Outputs => L<Paws::SSM::AutomationParameterMap>
84              
85             Returned values from the execution of the step.
86              
87              
88             =head2 Response => Str
89              
90             A message associated with the response code for an execution.
91              
92              
93             =head2 ResponseCode => Str
94              
95             The response code returned by the execution of the step.
96              
97              
98             =head2 StepName => Str
99              
100             The name of this execution step.
101              
102              
103             =head2 StepStatus => Str
104              
105             The execution status for this step. Valid values include: Pending,
106             InProgress, Success, Cancelled, Failed, and TimedOut.
107              
108              
109              
110             =head1 SEE ALSO
111              
112             This class forms part of L<Paws>, describing an object used in L<Paws::SSM>
113              
114             =head1 BUGS and CONTRIBUTIONS
115              
116             The source code is located here: https://github.com/pplu/aws-sdk-perl
117              
118             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
119              
120             =cut
121