File Coverage

blib/lib/Net/Amazon/S3/Operation/Bucket/Tags/Delete/Request.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::Operation::Bucket::Tags::Delete::Request;
2             # ABSTRACT: Internal class to build PutObjectTagging requests
3             $Net::Amazon::S3::Operation::Bucket::Tags::Delete::Request::VERSION = '0.99';
4 99     99   775 use Moose 0.85;
  99         2650  
  99         729  
5              
6             extends 'Net::Amazon::S3::Request::Bucket';
7              
8             with 'Net::Amazon::S3::Request::Role::HTTP::Method::DELETE';
9             with 'Net::Amazon::S3::Request::Role::Query::Action::Tagging';
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::Bucket::Tags::Delete::Request - Internal class to build PutObjectTagging requests
24              
25             =head1 VERSION
26              
27             version 0.99
28              
29             =head1 SYNOPSIS
30              
31             my $request = Net::Amazon::S3::Operation::Bucket::Tags::Delete::Request->new (
32             s3 => $s3,
33             bucket => $bucket,
34             );
35              
36             =head1 DESCRIPTION
37              
38             Implements a request part of an operation L<DeleteBucketTagging|https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketTagging.html>
39              
40             =head1 PROPERIES
41              
42             =head2 tags
43              
44             Key/value tag pairs
45              
46             =head1 AUTHOR
47              
48             Branislav Zahradník <barney@cpan.org>
49              
50             =head1 COPYRIGHT AND LICENSE
51              
52             This module is a part of L<Net::Amazon::S3> distribution.
53              
54             =head1 AUTHOR
55              
56             Branislav Zahradník <barney@cpan.org>
57              
58             =head1 COPYRIGHT AND LICENSE
59              
60             This software is copyright (c) 2021 by Amazon Digital Services, Leon Brocard, Brad Fitzpatrick, Pedro Figueiredo, Rusty Conover, Branislav Zahradník.
61              
62             This is free software; you can redistribute it and/or modify it under
63             the same terms as the Perl 5 programming language system itself.
64              
65             =cut