File Coverage

blib/lib/Paws/MigrationHub/NotifyMigrationTaskState.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::MigrationHub::NotifyMigrationTaskState;
3 1     1   544 use Moose;
  1         2  
  1         8  
4             has DryRun => (is => 'ro', isa => 'Bool');
5             has MigrationTaskName => (is => 'ro', isa => 'Str', required => 1);
6             has NextUpdateSeconds => (is => 'ro', isa => 'Int', required => 1);
7             has ProgressUpdateStream => (is => 'ro', isa => 'Str', required => 1);
8             has Task => (is => 'ro', isa => 'Paws::MigrationHub::Task', required => 1);
9             has UpdateDateTime => (is => 'ro', isa => 'Str', required => 1);
10              
11 1     1   7364 use MooseX::ClassAttribute;
  1         4  
  1         10  
12              
13             class_has _api_call => (isa => 'Str', is => 'ro', default => 'NotifyMigrationTaskState');
14             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::MigrationHub::NotifyMigrationTaskStateResult');
15             class_has _result_key => (isa => 'Str', is => 'ro');
16             1;
17              
18             ### main pod documentation begin ###
19              
20             =head1 NAME
21              
22             Paws::MigrationHub::NotifyMigrationTaskState - Arguments for method NotifyMigrationTaskState on Paws::MigrationHub
23              
24             =head1 DESCRIPTION
25              
26             This class represents the parameters used for calling the method NotifyMigrationTaskState on the
27             AWS Migration Hub service. Use the attributes of this class
28             as arguments to method NotifyMigrationTaskState.
29              
30             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to NotifyMigrationTaskState.
31              
32             As an example:
33              
34             $service_obj->NotifyMigrationTaskState(Att1 => $value1, Att2 => $value2, ...);
35              
36             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.
37              
38             =head1 ATTRIBUTES
39              
40              
41             =head2 DryRun => Bool
42              
43             Optional boolean flag to indicate whether any effect should take place.
44             Used to test if the caller has permission to make the call.
45              
46              
47              
48             =head2 B<REQUIRED> MigrationTaskName => Str
49              
50             Unique identifier that references the migration task.
51              
52              
53              
54             =head2 B<REQUIRED> NextUpdateSeconds => Int
55              
56             Number of seconds after the UpdateDateTime within which the Migration
57             Hub can expect an update. If Migration Hub does not receive an update
58             within the specified interval, then the migration task will be
59             considered stale.
60              
61              
62              
63             =head2 B<REQUIRED> ProgressUpdateStream => Str
64              
65             The name of the ProgressUpdateStream.
66              
67              
68              
69             =head2 B<REQUIRED> Task => L<Paws::MigrationHub::Task>
70              
71             Information about the task's progress and status.
72              
73              
74              
75             =head2 B<REQUIRED> UpdateDateTime => Str
76              
77             The timestamp when the task was gathered.
78              
79              
80              
81              
82             =head1 SEE ALSO
83              
84             This class forms part of L<Paws>, documenting arguments for method NotifyMigrationTaskState in L<Paws::MigrationHub>
85              
86             =head1 BUGS and CONTRIBUTIONS
87              
88             The source code is located here: https://github.com/pplu/aws-sdk-perl
89              
90             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
91              
92             =cut
93