File Coverage

blib/lib/Paws/DynamoDBStreams/ListStreamsOutput.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::ListStreamsOutput;
3 1     1   741 use Moose;
  1         4  
  1         13  
4             has LastEvaluatedStreamArn => (is => 'ro', isa => 'Str');
5             has Streams => (is => 'ro', isa => 'ArrayRef[Paws::DynamoDBStreams::Stream]');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::DynamoDBStreams::ListStreamsOutput
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 LastEvaluatedStreamArn => Str
19              
20             The stream ARN of the item where the operation stopped, inclusive of
21             the previous result set. Use this value to start a new operation,
22             excluding this value in the new request.
23              
24             If C<LastEvaluatedStreamArn> is empty, then the "last page" of results
25             has been processed and there is no more data to be retrieved.
26              
27             If C<LastEvaluatedStreamArn> is not empty, it does not necessarily mean
28             that there is more data in the result set. The only way to know when
29             you have reached the end of the result set is when
30             C<LastEvaluatedStreamArn> is empty.
31              
32              
33             =head2 Streams => ArrayRef[L<Paws::DynamoDBStreams::Stream>]
34              
35             A list of stream descriptors associated with the current account and
36             endpoint.
37              
38              
39             =head2 _request_id => Str
40              
41              
42             =cut
43              
44             1;