line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::EC2::CancelImportTaskResult; |
3
|
1
|
|
|
1
|
|
294
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has ImportTaskId => (is => 'ro', isa => 'Str', request_name => 'importTaskId', traits => ['NameInRequest',]); |
5
|
|
|
|
|
|
|
has PreviousState => (is => 'ro', isa => 'Str', request_name => 'previousState', traits => ['NameInRequest',]); |
6
|
|
|
|
|
|
|
has State => (is => 'ro', isa => 'Str', request_name => 'state', traits => ['NameInRequest',]); |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
### main pod documentation begin ### |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 NAME |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
Paws::EC2::CancelImportTaskResult |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head2 ImportTaskId => Str |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
The ID of the task being canceled. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 PreviousState => Str |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
The current state of the task being canceled. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head2 State => Str |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
The current state of the task being canceled. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head2 _request_id => Str |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=cut |
39
|
|
|
|
|
|
|
|