File Coverage

blib/lib/Paws/DMS/TableStatistics.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::TableStatistics;
2 1     1   436 use Moose;
  1         3  
  1         8  
3             has Ddls => (is => 'ro', isa => 'Int');
4             has Deletes => (is => 'ro', isa => 'Int');
5             has FullLoadCondtnlChkFailedRows => (is => 'ro', isa => 'Int');
6             has FullLoadErrorRows => (is => 'ro', isa => 'Int');
7             has FullLoadRows => (is => 'ro', isa => 'Int');
8             has Inserts => (is => 'ro', isa => 'Int');
9             has LastUpdateTime => (is => 'ro', isa => 'Str');
10             has SchemaName => (is => 'ro', isa => 'Str');
11             has TableName => (is => 'ro', isa => 'Str');
12             has TableState => (is => 'ro', isa => 'Str');
13             has Updates => (is => 'ro', isa => 'Int');
14             1;
15              
16             ### main pod documentation begin ###
17              
18             =head1 NAME
19              
20             Paws::DMS::TableStatistics
21              
22             =head1 USAGE
23              
24             This class represents one of two things:
25              
26             =head3 Arguments in a call to a service
27              
28             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
29             Each attribute should be used as a named argument in the calls that expect this type of object.
30              
31             As an example, if Att1 is expected to be a Paws::DMS::TableStatistics object:
32              
33             $service_obj->Method(Att1 => { Ddls => $value, ..., Updates => $value });
34              
35             =head3 Results returned from an API call
36              
37             Use accessors for each attribute. If Att1 is expected to be an Paws::DMS::TableStatistics object:
38              
39             $result = $service_obj->Method(...);
40             $result->Att1->Ddls
41              
42             =head1 DESCRIPTION
43              
44             This class has no description
45              
46             =head1 ATTRIBUTES
47              
48              
49             =head2 Ddls => Int
50              
51             The Data Definition Language (DDL) used to build and modify the
52             structure of your tables.
53              
54              
55             =head2 Deletes => Int
56              
57             The number of delete actions performed on a table.
58              
59              
60             =head2 FullLoadCondtnlChkFailedRows => Int
61              
62             The number of rows that failed conditional checks during the Full Load
63             operation (valid only for DynamoDB as a target migrations).
64              
65              
66             =head2 FullLoadErrorRows => Int
67              
68             The number of rows that failed to load during the Full Load operation
69             (valid only for DynamoDB as a target migrations).
70              
71              
72             =head2 FullLoadRows => Int
73              
74             The number of rows added during the Full Load operation.
75              
76              
77             =head2 Inserts => Int
78              
79             The number of insert actions performed on a table.
80              
81              
82             =head2 LastUpdateTime => Str
83              
84             The last time the table was updated.
85              
86              
87             =head2 SchemaName => Str
88              
89             The schema name.
90              
91              
92             =head2 TableName => Str
93              
94             The name of the table.
95              
96              
97             =head2 TableState => Str
98              
99             The state of the table.
100              
101              
102             =head2 Updates => Int
103              
104             The number of update actions performed on a table.
105              
106              
107              
108             =head1 SEE ALSO
109              
110             This class forms part of L<Paws>, describing an object used in L<Paws::DMS>
111              
112             =head1 BUGS and CONTRIBUTIONS
113              
114             The source code is located here: https://github.com/pplu/aws-sdk-perl
115              
116             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
117              
118             =cut
119