File Coverage

blib/lib/Paws/CodeBuild/ListProjectsOutput.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::CodeBuild::ListProjectsOutput;
3 1     1   698 use Moose;
  1         3  
  1         9  
4             has NextToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextToken' );
5             has Projects => (is => 'ro', isa => 'ArrayRef[Str|Undef]', traits => ['NameInRequest'], request_name => 'projects' );
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::CodeBuild::ListProjectsOutput
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 NextToken => Str
19              
20             If there are more than 100 items in the list, only the first 100 items
21             are returned, along with a unique string called a I<next token>. To get
22             the next batch of items in the list, call this operation again, adding
23             the next token to the call.
24              
25              
26             =head2 Projects => ArrayRef[Str|Undef]
27              
28             The list of build project names, with each build project name
29             representing a single build project.
30              
31              
32             =head2 _request_id => Str
33              
34              
35             =cut
36              
37             1;