File Coverage

blib/lib/Net/Amazon/S3/Request/Role/Query/Param/Max_keys.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             package Net::Amazon::S3::Request::Role::Query::Param::Max_keys;
2             # ABSTRACT: max-keys query param role
3             $Net::Amazon::S3::Request::Role::Query::Param::Max_keys::VERSION = '0.99';
4 99     99   71429 use Moose::Role;
  99         294  
  99         827  
5              
6             with 'Net::Amazon::S3::Request::Role::Query::Param' => {
7             param => 'max_keys',
8             query_param => 'max-keys',
9             constraint => 'Maybe[Str]',
10             required => 0,
11             default => 1000,
12             };
13              
14             1;
15              
16             __END__
17              
18             =pod
19              
20             =encoding UTF-8
21              
22             =head1 NAME
23              
24             Net::Amazon::S3::Request::Role::Query::Param::Max_keys - max-keys query param role
25              
26             =head1 VERSION
27              
28             version 0.99
29              
30             =head1 AUTHOR
31              
32             Branislav ZahradnĂ­k <barney@cpan.org>
33              
34             =head1 COPYRIGHT AND LICENSE
35              
36             This software is copyright (c) 2021 by Amazon Digital Services, Leon Brocard, Brad Fitzpatrick, Pedro Figueiredo, Rusty Conover, Branislav ZahradnĂ­k.
37              
38             This is free software; you can redistribute it and/or modify it under
39             the same terms as the Perl 5 programming language system itself.
40              
41             =cut