File Coverage

blib/lib/Paws/SSM/GetMaintenanceWindowExecutionTaskInvocationResult.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              
2             package Paws::SSM::GetMaintenanceWindowExecutionTaskInvocationResult;
3 1     1   303 use Moose;
  1         2  
  1         5  
4             has EndTime => (is => 'ro', isa => 'Str');
5             has ExecutionId => (is => 'ro', isa => 'Str');
6             has InvocationId => (is => 'ro', isa => 'Str');
7             has OwnerInformation => (is => 'ro', isa => 'Str');
8             has Parameters => (is => 'ro', isa => 'Str');
9             has StartTime => (is => 'ro', isa => 'Str');
10             has Status => (is => 'ro', isa => 'Str');
11             has StatusDetails => (is => 'ro', isa => 'Str');
12             has TaskExecutionId => (is => 'ro', isa => 'Str');
13             has TaskType => (is => 'ro', isa => 'Str');
14             has WindowExecutionId => (is => 'ro', isa => 'Str');
15             has WindowTargetId => (is => 'ro', isa => 'Str');
16              
17             has _request_id => (is => 'ro', isa => 'Str');
18              
19             ### main pod documentation begin ###
20              
21             =head1 NAME
22              
23             Paws::SSM::GetMaintenanceWindowExecutionTaskInvocationResult
24              
25             =head1 ATTRIBUTES
26              
27              
28             =head2 EndTime => Str
29              
30             The time that the task finished executing on the target.
31              
32              
33             =head2 ExecutionId => Str
34              
35             The execution ID.
36              
37              
38             =head2 InvocationId => Str
39              
40             The invocation ID.
41              
42              
43             =head2 OwnerInformation => Str
44              
45             User-provided value to be included in any CloudWatch events raised
46             while running tasks for these targets in this Maintenance Window.
47              
48              
49             =head2 Parameters => Str
50              
51             The parameters used at the time that the task executed.
52              
53              
54             =head2 StartTime => Str
55              
56             The time that the task started executing on the target.
57              
58              
59             =head2 Status => Str
60              
61             The task status for an invocation.
62              
63             Valid values are: C<"PENDING">, C<"IN_PROGRESS">, C<"SUCCESS">, C<"FAILED">, C<"TIMED_OUT">, C<"CANCELLING">, C<"CANCELLED">, C<"SKIPPED_OVERLAPPING">
64             =head2 StatusDetails => Str
65              
66             The details explaining the status. Details are only available for
67             certain status values.
68              
69              
70             =head2 TaskExecutionId => Str
71              
72             The task execution ID.
73              
74              
75             =head2 TaskType => Str
76              
77             Retrieves the task type for a Maintenance Window. Task types include
78             the following: LAMBDA, STEP_FUNCTION, AUTOMATION, RUN_COMMAND.
79              
80             Valid values are: C<"RUN_COMMAND">, C<"AUTOMATION">, C<"STEP_FUNCTIONS">, C<"LAMBDA">
81             =head2 WindowExecutionId => Str
82              
83             The Maintenance Window execution ID.
84              
85              
86             =head2 WindowTargetId => Str
87              
88             The Maintenance Window target ID.
89              
90              
91             =head2 _request_id => Str
92              
93              
94             =cut
95              
96             1;