line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::StepFunctions::GetActivityTaskOutput; |
3
|
1
|
|
|
1
|
|
290
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has Input => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'input' ); |
5
|
|
|
|
|
|
|
has TaskToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'taskToken' ); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::StepFunctions::GetActivityTaskOutput |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 Input => Str |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
The JSON input data for the task. |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head2 TaskToken => Str |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
A token that identifies the scheduled task. This token must be copied |
26
|
|
|
|
|
|
|
and included in subsequent calls to SendTaskHeartbeat, SendTaskSuccess |
27
|
|
|
|
|
|
|
or SendTaskFailure in order to report the progress or completion of the |
28
|
|
|
|
|
|
|
task. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 _request_id => Str |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=cut |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
1; |