File Coverage

blib/lib/Paws/DMS/ReplicationTask.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             package Paws::DMS::ReplicationTask;
2 1     1   716 use Moose;
  1         4  
  1         10  
3             has LastFailureMessage => (is => 'ro', isa => 'Str');
4             has MigrationType => (is => 'ro', isa => 'Str');
5             has ReplicationInstanceArn => (is => 'ro', isa => 'Str');
6             has ReplicationTaskArn => (is => 'ro', isa => 'Str');
7             has ReplicationTaskCreationDate => (is => 'ro', isa => 'Str');
8             has ReplicationTaskIdentifier => (is => 'ro', isa => 'Str');
9             has ReplicationTaskSettings => (is => 'ro', isa => 'Str');
10             has ReplicationTaskStartDate => (is => 'ro', isa => 'Str');
11             has ReplicationTaskStats => (is => 'ro', isa => 'Paws::DMS::ReplicationTaskStats');
12             has SourceEndpointArn => (is => 'ro', isa => 'Str');
13             has Status => (is => 'ro', isa => 'Str');
14             has StopReason => (is => 'ro', isa => 'Str');
15             has TableMappings => (is => 'ro', isa => 'Str');
16             has TargetEndpointArn => (is => 'ro', isa => 'Str');
17             1;
18              
19             ### main pod documentation begin ###
20              
21             =head1 NAME
22              
23             Paws::DMS::ReplicationTask
24              
25             =head1 USAGE
26              
27             This class represents one of two things:
28              
29             =head3 Arguments in a call to a service
30              
31             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
32             Each attribute should be used as a named argument in the calls that expect this type of object.
33              
34             As an example, if Att1 is expected to be a Paws::DMS::ReplicationTask object:
35              
36             $service_obj->Method(Att1 => { LastFailureMessage => $value, ..., TargetEndpointArn => $value });
37              
38             =head3 Results returned from an API call
39              
40             Use accessors for each attribute. If Att1 is expected to be an Paws::DMS::ReplicationTask object:
41              
42             $result = $service_obj->Method(...);
43             $result->Att1->LastFailureMessage
44              
45             =head1 DESCRIPTION
46              
47             This class has no description
48              
49             =head1 ATTRIBUTES
50              
51              
52             =head2 LastFailureMessage => Str
53              
54             The last error (failure) message generated for the replication
55             instance.
56              
57              
58             =head2 MigrationType => Str
59              
60             The type of migration.
61              
62              
63             =head2 ReplicationInstanceArn => Str
64              
65             The Amazon Resource Name (ARN) of the replication instance.
66              
67              
68             =head2 ReplicationTaskArn => Str
69              
70             The Amazon Resource Name (ARN) of the replication task.
71              
72              
73             =head2 ReplicationTaskCreationDate => Str
74              
75             The date the replication task was created.
76              
77              
78             =head2 ReplicationTaskIdentifier => Str
79              
80             The replication task identifier.
81              
82             Constraints:
83              
84             =over
85              
86             =item *
87              
88             Must contain from 1 to 255 alphanumeric characters or hyphens.
89              
90             =item *
91              
92             First character must be a letter.
93              
94             =item *
95              
96             Cannot end with a hyphen or contain two consecutive hyphens.
97              
98             =back
99              
100              
101              
102             =head2 ReplicationTaskSettings => Str
103              
104             The settings for the replication task.
105              
106              
107             =head2 ReplicationTaskStartDate => Str
108              
109             The date the replication task is scheduled to start.
110              
111              
112             =head2 ReplicationTaskStats => L<Paws::DMS::ReplicationTaskStats>
113              
114             The statistics for the task, including elapsed time, tables loaded, and
115             table errors.
116              
117              
118             =head2 SourceEndpointArn => Str
119              
120             The Amazon Resource Name (ARN) string that uniquely identifies the
121             endpoint.
122              
123              
124             =head2 Status => Str
125              
126             The status of the replication task.
127              
128              
129             =head2 StopReason => Str
130              
131             The reason the replication task was stopped.
132              
133              
134             =head2 TableMappings => Str
135              
136             Table mappings specified in the task.
137              
138              
139             =head2 TargetEndpointArn => Str
140              
141             The Amazon Resource Name (ARN) string that uniquely identifies the
142             endpoint.
143              
144              
145              
146             =head1 SEE ALSO
147              
148             This class forms part of L<Paws>, describing an object used in L<Paws::DMS>
149              
150             =head1 BUGS and CONTRIBUTIONS
151              
152             The source code is located here: https://github.com/pplu/aws-sdk-perl
153              
154             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
155              
156             =cut
157