File Coverage

blib/lib/Paws/DataPipeline/QueryObjectsOutput.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::DataPipeline::QueryObjectsOutput;
3 1     1   515 use Moose;
  1         3  
  1         8  
4             has HasMoreResults => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'hasMoreResults' );
5             has Ids => (is => 'ro', isa => 'ArrayRef[Str|Undef]', traits => ['NameInRequest'], request_name => 'ids' );
6             has Marker => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'marker' );
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::DataPipeline::QueryObjectsOutput
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 HasMoreResults => Bool
20              
21             Indicates whether there are more results that can be obtained by a
22             subsequent call.
23              
24              
25             =head2 Ids => ArrayRef[Str|Undef]
26              
27             The identifiers that match the query selectors.
28              
29              
30             =head2 Marker => Str
31              
32             The starting point for the next page of results. To view the next page
33             of results, call C<QueryObjects> again with this marker value. If the
34             value is null, there are no more results.
35              
36              
37             =head2 _request_id => Str
38              
39              
40             =cut
41              
42             1;