File Coverage

blib/lib/Paws/MigrationHub/ListMigrationTasksResult.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::MigrationHub::ListMigrationTasksResult;
3 1     1   641 use Moose;
  1         5  
  1         12  
4             has MigrationTaskSummaryList => (is => 'ro', isa => 'ArrayRef[Paws::MigrationHub::MigrationTaskSummary]');
5             has NextToken => (is => 'ro', isa => 'Str');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::MigrationHub::ListMigrationTasksResult
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 MigrationTaskSummaryList => ArrayRef[L<Paws::MigrationHub::MigrationTaskSummary>]
19              
20             Lists the migration task's summary which includes:
21             C<MigrationTaskName>, C<ProgressPercent>, C<ProgressUpdateStream>,
22             C<Status>, and the C<UpdateDateTime> for each task.
23              
24              
25             =head2 NextToken => Str
26              
27             If there are more migration tasks than the max result, return the next
28             token to be passed to the next call as a bookmark of where to start
29             from.
30              
31              
32             =head2 _request_id => Str
33              
34              
35             =cut
36              
37             1;