line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::SimpleWorkflow::ListClosedWorkflowExecutions; |
3
|
1
|
|
|
1
|
|
509
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
10
|
|
4
|
|
|
|
|
|
|
has CloseStatusFilter => (is => 'ro', isa => 'Paws::SimpleWorkflow::CloseStatusFilter', traits => ['NameInRequest'], request_name => 'closeStatusFilter' ); |
5
|
|
|
|
|
|
|
has CloseTimeFilter => (is => 'ro', isa => 'Paws::SimpleWorkflow::ExecutionTimeFilter', traits => ['NameInRequest'], request_name => 'closeTimeFilter' ); |
6
|
|
|
|
|
|
|
has Domain => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'domain' , required => 1); |
7
|
|
|
|
|
|
|
has ExecutionFilter => (is => 'ro', isa => 'Paws::SimpleWorkflow::WorkflowExecutionFilter', traits => ['NameInRequest'], request_name => 'executionFilter' ); |
8
|
|
|
|
|
|
|
has MaximumPageSize => (is => 'ro', isa => 'Int', traits => ['NameInRequest'], request_name => 'maximumPageSize' ); |
9
|
|
|
|
|
|
|
has NextPageToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextPageToken' ); |
10
|
|
|
|
|
|
|
has ReverseOrder => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'reverseOrder' ); |
11
|
|
|
|
|
|
|
has StartTimeFilter => (is => 'ro', isa => 'Paws::SimpleWorkflow::ExecutionTimeFilter', traits => ['NameInRequest'], request_name => 'startTimeFilter' ); |
12
|
|
|
|
|
|
|
has TagFilter => (is => 'ro', isa => 'Paws::SimpleWorkflow::TagFilter', traits => ['NameInRequest'], request_name => 'tagFilter' ); |
13
|
|
|
|
|
|
|
has TypeFilter => (is => 'ro', isa => 'Paws::SimpleWorkflow::WorkflowTypeFilter', traits => ['NameInRequest'], request_name => 'typeFilter' ); |
14
|
|
|
|
|
|
|
|
15
|
1
|
|
|
1
|
|
6534
|
use MooseX::ClassAttribute; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
9
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
class_has _api_call => (isa => 'Str', is => 'ro', default => 'ListClosedWorkflowExecutions'); |
18
|
|
|
|
|
|
|
class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::SimpleWorkflow::WorkflowExecutionInfos'); |
19
|
|
|
|
|
|
|
class_has _result_key => (isa => 'Str', is => 'ro'); |
20
|
|
|
|
|
|
|
1; |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
### main pod documentation begin ### |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 NAME |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Paws::SimpleWorkflow::ListClosedWorkflowExecutions - Arguments for method ListClosedWorkflowExecutions on Paws::SimpleWorkflow |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 DESCRIPTION |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
This class represents the parameters used for calling the method ListClosedWorkflowExecutions on the |
31
|
|
|
|
|
|
|
Amazon Simple Workflow Service service. Use the attributes of this class |
32
|
|
|
|
|
|
|
as arguments to method ListClosedWorkflowExecutions. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListClosedWorkflowExecutions. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
As an example: |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
$service_obj->ListClosedWorkflowExecutions(Att1 => $value1, Att2 => $value2, ...); |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head2 CloseStatusFilter => L<Paws::SimpleWorkflow::CloseStatusFilter> |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
If specified, only workflow executions that match this I<close status> |
48
|
|
|
|
|
|
|
are listed. For example, if TERMINATED is specified, then only |
49
|
|
|
|
|
|
|
TERMINATED workflow executions are listed. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
C<closeStatusFilter>, C<executionFilter>, C<typeFilter> and |
52
|
|
|
|
|
|
|
C<tagFilter> are mutually exclusive. You can specify at most one of |
53
|
|
|
|
|
|
|
these in a request. |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=head2 CloseTimeFilter => L<Paws::SimpleWorkflow::ExecutionTimeFilter> |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
If specified, the workflow executions are included in the returned |
60
|
|
|
|
|
|
|
results based on whether their close times are within the range |
61
|
|
|
|
|
|
|
specified by this filter. Also, if this parameter is specified, the |
62
|
|
|
|
|
|
|
returned results are ordered by their close times. |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
C<startTimeFilter> and C<closeTimeFilter> are mutually exclusive. You |
65
|
|
|
|
|
|
|
must specify one of these in a request but not both. |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=head2 B<REQUIRED> Domain => Str |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
The name of the domain that contains the workflow executions to list. |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
=head2 ExecutionFilter => L<Paws::SimpleWorkflow::WorkflowExecutionFilter> |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
If specified, only workflow executions matching the workflow ID |
78
|
|
|
|
|
|
|
specified in the filter are returned. |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
C<closeStatusFilter>, C<executionFilter>, C<typeFilter> and |
81
|
|
|
|
|
|
|
C<tagFilter> are mutually exclusive. You can specify at most one of |
82
|
|
|
|
|
|
|
these in a request. |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
=head2 MaximumPageSize => Int |
87
|
|
|
|
|
|
|
|
88
|
|
|
|
|
|
|
The maximum number of results that are returned per call. |
89
|
|
|
|
|
|
|
C<nextPageToken> can be used to obtain futher pages of results. The |
90
|
|
|
|
|
|
|
default is 1000, which is the maximum allowed page size. You can, |
91
|
|
|
|
|
|
|
however, specify a page size I<smaller> than the maximum. |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
This is an upper limit only; the actual number of results returned per |
94
|
|
|
|
|
|
|
call may be fewer than the specified maximum. |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
=head2 NextPageToken => Str |
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
If a C<NextPageToken> was returned by a previous call, there are more |
101
|
|
|
|
|
|
|
results available. To retrieve the next page of results, make the call |
102
|
|
|
|
|
|
|
again using the returned token in C<nextPageToken>. Keep all other |
103
|
|
|
|
|
|
|
arguments unchanged. |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
The configured C<maximumPageSize> determines how many results can be |
106
|
|
|
|
|
|
|
returned in a single call. |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
|
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
=head2 ReverseOrder => Bool |
111
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
When set to C<true>, returns the results in reverse order. By default |
113
|
|
|
|
|
|
|
the results are returned in descending order of the start or the close |
114
|
|
|
|
|
|
|
time of the executions. |
115
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
|
117
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
=head2 StartTimeFilter => L<Paws::SimpleWorkflow::ExecutionTimeFilter> |
119
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
If specified, the workflow executions are included in the returned |
121
|
|
|
|
|
|
|
results based on whether their start times are within the range |
122
|
|
|
|
|
|
|
specified by this filter. Also, if this parameter is specified, the |
123
|
|
|
|
|
|
|
returned results are ordered by their start times. |
124
|
|
|
|
|
|
|
|
125
|
|
|
|
|
|
|
C<startTimeFilter> and C<closeTimeFilter> are mutually exclusive. You |
126
|
|
|
|
|
|
|
must specify one of these in a request but not both. |
127
|
|
|
|
|
|
|
|
128
|
|
|
|
|
|
|
|
129
|
|
|
|
|
|
|
|
130
|
|
|
|
|
|
|
=head2 TagFilter => L<Paws::SimpleWorkflow::TagFilter> |
131
|
|
|
|
|
|
|
|
132
|
|
|
|
|
|
|
If specified, only executions that have the matching tag are listed. |
133
|
|
|
|
|
|
|
|
134
|
|
|
|
|
|
|
C<closeStatusFilter>, C<executionFilter>, C<typeFilter> and |
135
|
|
|
|
|
|
|
C<tagFilter> are mutually exclusive. You can specify at most one of |
136
|
|
|
|
|
|
|
these in a request. |
137
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
|
139
|
|
|
|
|
|
|
|
140
|
|
|
|
|
|
|
=head2 TypeFilter => L<Paws::SimpleWorkflow::WorkflowTypeFilter> |
141
|
|
|
|
|
|
|
|
142
|
|
|
|
|
|
|
If specified, only executions of the type specified in the filter are |
143
|
|
|
|
|
|
|
returned. |
144
|
|
|
|
|
|
|
|
145
|
|
|
|
|
|
|
C<closeStatusFilter>, C<executionFilter>, C<typeFilter> and |
146
|
|
|
|
|
|
|
C<tagFilter> are mutually exclusive. You can specify at most one of |
147
|
|
|
|
|
|
|
these in a request. |
148
|
|
|
|
|
|
|
|
149
|
|
|
|
|
|
|
|
150
|
|
|
|
|
|
|
|
151
|
|
|
|
|
|
|
|
152
|
|
|
|
|
|
|
=head1 SEE ALSO |
153
|
|
|
|
|
|
|
|
154
|
|
|
|
|
|
|
This class forms part of L<Paws>, documenting arguments for method ListClosedWorkflowExecutions in L<Paws::SimpleWorkflow> |
155
|
|
|
|
|
|
|
|
156
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
157
|
|
|
|
|
|
|
|
158
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
159
|
|
|
|
|
|
|
|
160
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
161
|
|
|
|
|
|
|
|
162
|
|
|
|
|
|
|
=cut |
163
|
|
|
|
|
|
|
|