File Coverage

blib/lib/Net/Amazon/S3/Operation/Object/Head/Request.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Net::Amazon::S3::Operation::Object::Head::Request;
2             # ABSTRACT: An internal class to handle HeadObject request
3             $Net::Amazon::S3::Operation::Object::Head::Request::VERSION = '0.99';
4 99     99   829 use Moose 0.85;
  99         2536  
  99         771  
5 99     99   668403 use MooseX::StrictConstructor 0.16;
  99         2275  
  99         755  
6              
7             extends 'Net::Amazon::S3::Request::Object';
8              
9             with 'Net::Amazon::S3::Request::Role::HTTP::Method::HEAD';
10              
11             __PACKAGE__->meta->make_immutable;
12              
13             1;
14              
15             __END__
16              
17             =pod
18              
19             =encoding UTF-8
20              
21             =head1 NAME
22              
23             Net::Amazon::S3::Operation::Object::Head::Request - An internal class to handle HeadObject request
24              
25             =head1 VERSION
26              
27             version 0.99
28              
29             =head1 DESCRIPTION
30              
31             Implements operation L<< HeadObject|https://docs.aws.amazon.com/AmazonS3/latest/API/API_HeadObject.html >>.
32              
33             =head1 COPYRIGHT AND LICENSE
34              
35             This module is part of L<Net::Amazon::S3> distribution.
36              
37             =head1 AUTHOR
38              
39             Branislav Zahradník <barney@cpan.org>
40              
41             =head1 COPYRIGHT AND LICENSE
42              
43             This software is copyright (c) 2021 by Amazon Digital Services, Leon Brocard, Brad Fitzpatrick, Pedro Figueiredo, Rusty Conover, Branislav Zahradník.
44              
45             This is free software; you can redistribute it and/or modify it under
46             the same terms as the Perl 5 programming language system itself.
47              
48             =cut