File Coverage

blib/lib/Paws/DynamoDBStreams/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::DynamoDBStreams::GetRecordsOutput;
3 1     1   414 use Moose;
  1         3  
  1         7  
4             has NextShardIterator => (is => 'ro', isa => 'Str');
5             has Records => (is => 'ro', isa => 'ArrayRef[Paws::DynamoDBStreams::Record]');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::DynamoDBStreams::GetRecordsOutput
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 NextShardIterator => Str
19              
20             The next position in the shard from which to start sequentially reading
21             stream records. If set to C<null>, the shard has been closed and the
22             requested iterator will not return any more data.
23              
24              
25             =head2 Records => ArrayRef[L<Paws::DynamoDBStreams::Record>]
26              
27             The stream records from the shard, which were retrieved using the shard
28             iterator.
29              
30              
31             =head2 _request_id => Str
32              
33              
34             =cut
35              
36             1;