line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::StepFunctions::DescribeExecutionOutput; |
3
|
1
|
|
|
1
|
|
294
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has ExecutionArn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'executionArn' , required => 1); |
5
|
|
|
|
|
|
|
has Input => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'input' , required => 1); |
6
|
|
|
|
|
|
|
has Name => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'name' ); |
7
|
|
|
|
|
|
|
has Output => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'output' ); |
8
|
|
|
|
|
|
|
has StartDate => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'startDate' , required => 1); |
9
|
|
|
|
|
|
|
has StateMachineArn => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'stateMachineArn' , required => 1); |
10
|
|
|
|
|
|
|
has Status => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'status' , required => 1); |
11
|
|
|
|
|
|
|
has StopDate => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'stopDate' ); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
### main pod documentation begin ### |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 NAME |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Paws::StepFunctions::DescribeExecutionOutput |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 B<REQUIRED> ExecutionArn => Str |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
The Amazon Resource Name (ARN) that identifies the execution. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 B<REQUIRED> Input => Str |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
The JSON input data of the execution. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 Name => Str |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
The name of the execution. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head2 Output => Str |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
The JSON output data of the execution. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head2 B<REQUIRED> StartDate => Str |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
The date the execution was started. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head2 B<REQUIRED> StateMachineArn => Str |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
The Amazon Resource Name (ARN) of the executed stated machine. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head2 B<REQUIRED> Status => Str |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
The current status of the execution. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
Valid values are: C<"RUNNING">, C<"SUCCEEDED">, C<"FAILED">, C<"TIMED_OUT">, C<"ABORTED"> |
59
|
|
|
|
|
|
|
=head2 StopDate => Str |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
If the execution has already ended, the date the execution stopped. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=head2 _request_id => Str |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=cut |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
1; |