File Coverage

blib/lib/Paws/DataPipeline/DescribeObjectsOutput.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::DescribeObjectsOutput;
3 1     1   541 use Moose;
  1         3  
  1         7  
4             has HasMoreResults => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'hasMoreResults' );
5             has Marker => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'marker' );
6             has PipelineObjects => (is => 'ro', isa => 'ArrayRef[Paws::DataPipeline::PipelineObject]', traits => ['NameInRequest'], request_name => 'pipelineObjects' , required => 1);
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::DataPipeline::DescribeObjectsOutput
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 HasMoreResults => Bool
20              
21             Indicates whether there are more results to return.
22              
23              
24             =head2 Marker => Str
25              
26             The starting point for the next page of results. To view the next page
27             of results, call C<DescribeObjects> again with this marker value. If
28             the value is null, there are no more results.
29              
30              
31             =head2 B<REQUIRED> PipelineObjects => ArrayRef[L<Paws::DataPipeline::PipelineObject>]
32              
33             An array of object definitions.
34              
35              
36             =head2 _request_id => Str
37              
38              
39             =cut
40              
41             1;