File Coverage

blib/lib/Paws/Kinesis/GetRecordsOutput.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::Kinesis::GetRecordsOutput;
3 1     1   435 use Moose;
  1         3  
  1         7  
4             has MillisBehindLatest => (is => 'ro', isa => 'Int');
5             has NextShardIterator => (is => 'ro', isa => 'Str');
6             has Records => (is => 'ro', isa => 'ArrayRef[Paws::Kinesis::Record]', required => 1);
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::Kinesis::GetRecordsOutput
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 MillisBehindLatest => Int
20              
21             The number of milliseconds the GetRecords response is from the tip of
22             the stream, indicating how far behind current time the consumer is. A
23             value of zero indicates record processing is caught up, and there are
24             no new records to process at this moment.
25              
26              
27             =head2 NextShardIterator => Str
28              
29             The next position in the shard from which to start sequentially reading
30             data records. If set to C<null>, the shard has been closed and the
31             requested iterator will not return any more data.
32              
33              
34             =head2 B<REQUIRED> Records => ArrayRef[L<Paws::Kinesis::Record>]
35              
36             The data records retrieved from the shard.
37              
38              
39             =head2 _request_id => Str
40              
41              
42             =cut
43              
44             1;