line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::SimpleWorkflow::WorkflowExecutionDetail; |
3
|
1
|
|
|
1
|
|
571
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
10
|
|
4
|
|
|
|
|
|
|
has ExecutionConfiguration => (is => 'ro', isa => 'Paws::SimpleWorkflow::WorkflowExecutionConfiguration', traits => ['NameInRequest'], request_name => 'executionConfiguration' , required => 1); |
5
|
|
|
|
|
|
|
has ExecutionInfo => (is => 'ro', isa => 'Paws::SimpleWorkflow::WorkflowExecutionInfo', traits => ['NameInRequest'], request_name => 'executionInfo' , required => 1); |
6
|
|
|
|
|
|
|
has LatestActivityTaskTimestamp => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'latestActivityTaskTimestamp' ); |
7
|
|
|
|
|
|
|
has LatestExecutionContext => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'latestExecutionContext' ); |
8
|
|
|
|
|
|
|
has OpenCounts => (is => 'ro', isa => 'Paws::SimpleWorkflow::WorkflowExecutionOpenCounts', traits => ['NameInRequest'], request_name => 'openCounts' , required => 1); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
### main pod documentation begin ### |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 NAME |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Paws::SimpleWorkflow::WorkflowExecutionDetail |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 B<REQUIRED> ExecutionConfiguration => L<Paws::SimpleWorkflow::WorkflowExecutionConfiguration> |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
The configuration settings for this workflow execution including |
24
|
|
|
|
|
|
|
timeout values, tasklist etc. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head2 B<REQUIRED> ExecutionInfo => L<Paws::SimpleWorkflow::WorkflowExecutionInfo> |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Information about the workflow execution. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 LatestActivityTaskTimestamp => Str |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
The time when the last activity task was scheduled for this workflow |
35
|
|
|
|
|
|
|
execution. You can use this information to determine if the workflow |
36
|
|
|
|
|
|
|
has not made progress for an unusually long period of time and might |
37
|
|
|
|
|
|
|
require a corrective action. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head2 LatestExecutionContext => Str |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
The latest executionContext provided by the decider for this workflow |
43
|
|
|
|
|
|
|
execution. A decider can provide an executionContext (a free-form |
44
|
|
|
|
|
|
|
string) when closing a decision task using |
45
|
|
|
|
|
|
|
RespondDecisionTaskCompleted. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 B<REQUIRED> OpenCounts => L<Paws::SimpleWorkflow::WorkflowExecutionOpenCounts> |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
The number of tasks for this workflow execution. This includes open and |
51
|
|
|
|
|
|
|
closed tasks of all types. |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head2 _request_id => Str |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=cut |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
1; |