line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::EC2::DescribeImportSnapshotTasksResult; |
3
|
1
|
|
|
1
|
|
484
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has ImportSnapshotTasks => (is => 'ro', isa => 'ArrayRef[Paws::EC2::ImportSnapshotTask]', request_name => 'importSnapshotTaskSet', traits => ['NameInRequest',]); |
5
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str', request_name => 'nextToken', traits => ['NameInRequest',]); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
1; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
### main pod documentation begin ### |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 NAME |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
Paws::EC2::DescribeImportSnapshotTasksResult |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 ImportSnapshotTasks => ArrayRef[L<Paws::EC2::ImportSnapshotTask>] |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
A list of zero or more import snapshot tasks that are currently active |
22
|
|
|
|
|
|
|
or were completed or canceled in the previous 7 days. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 NextToken => Str |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
The token to use to get the next page of results. This value is C<null> |
28
|
|
|
|
|
|
|
when there are no more results to return. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 _request_id => Str |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=cut |
35
|
|
|
|
|
|
|
|