File Coverage

blib/lib/Paws/SSM/MaintenanceWindowExecutionTaskIdentity.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::MaintenanceWindowExecutionTaskIdentity;
2 1     1   919 use Moose;
  1         4  
  1         16  
3             has EndTime => (is => 'ro', isa => 'Str');
4             has StartTime => (is => 'ro', isa => 'Str');
5             has Status => (is => 'ro', isa => 'Str');
6             has StatusDetails => (is => 'ro', isa => 'Str');
7             has TaskArn => (is => 'ro', isa => 'Str');
8             has TaskExecutionId => (is => 'ro', isa => 'Str');
9             has TaskType => (is => 'ro', isa => 'Str');
10             has WindowExecutionId => (is => 'ro', isa => 'Str');
11             1;
12              
13             ### main pod documentation begin ###
14              
15             =head1 NAME
16              
17             Paws::SSM::MaintenanceWindowExecutionTaskIdentity
18              
19             =head1 USAGE
20              
21             This class represents one of two things:
22              
23             =head3 Arguments in a call to a service
24              
25             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
26             Each attribute should be used as a named argument in the calls that expect this type of object.
27              
28             As an example, if Att1 is expected to be a Paws::SSM::MaintenanceWindowExecutionTaskIdentity object:
29              
30             $service_obj->Method(Att1 => { EndTime => $value, ..., WindowExecutionId => $value });
31              
32             =head3 Results returned from an API call
33              
34             Use accessors for each attribute. If Att1 is expected to be an Paws::SSM::MaintenanceWindowExecutionTaskIdentity object:
35              
36             $result = $service_obj->Method(...);
37             $result->Att1->EndTime
38              
39             =head1 DESCRIPTION
40              
41             Information about a task execution performed as part of a Maintenance
42             Window execution.
43              
44             =head1 ATTRIBUTES
45              
46              
47             =head2 EndTime => Str
48              
49             The time the task execution finished.
50              
51              
52             =head2 StartTime => Str
53              
54             The time the task execution started.
55              
56              
57             =head2 Status => Str
58              
59             The status of the task execution.
60              
61              
62             =head2 StatusDetails => Str
63              
64             The details explaining the status of the task execution. Only available
65             for certain status values.
66              
67              
68             =head2 TaskArn => Str
69              
70             The ARN of the executed task.
71              
72              
73             =head2 TaskExecutionId => Str
74              
75             The ID of the specific task execution in the Maintenance Window
76             execution.
77              
78              
79             =head2 TaskType => Str
80              
81             The type of executed task.
82              
83              
84             =head2 WindowExecutionId => Str
85              
86             The ID of the Maintenance Window execution that ran the task.
87              
88              
89              
90             =head1 SEE ALSO
91              
92             This class forms part of L<Paws>, describing an object used in L<Paws::SSM>
93              
94             =head1 BUGS and CONTRIBUTIONS
95              
96             The source code is located here: https://github.com/pplu/aws-sdk-perl
97              
98             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
99              
100             =cut
101