File Coverage

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