File Coverage

blib/lib/Paws/SDB/SelectResult.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::SDB::SelectResult;
3 1     1   710 use Moose;
  1     1   3  
  1         11  
  1         529  
  1         3  
  1         8  
4             has Items => (is => 'ro', isa => 'ArrayRef[Paws::SDB::Item]', request_name => 'Item', traits => ['NameInRequest',]);
5             has NextToken => (is => 'ro', isa => 'Str');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8             1;
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::SDB::SelectResult
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 Items => ArrayRef[L<Paws::SDB::Item>]
20              
21             A list of items that match the select expression.
22              
23              
24             =head2 NextToken => Str
25              
26             An opaque token indicating that more items than C<MaxNumberOfItems>
27             were matched, the response size exceeded 1 megabyte, or the execution
28             time exceeded 5 seconds.
29              
30              
31             =head2 _request_id => Str
32              
33              
34             =cut
35