File Coverage

blib/lib/Net/Amazon/S3/Operation/Bucket/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::Delete::Request;
2             # ABSTRACT: An internal class to delete a bucket
3             $Net::Amazon::S3::Operation::Bucket::Delete::Request::VERSION = '0.99';
4 99     99   810 use Moose 0.85;
  99         2678  
  99         759  
5             extends 'Net::Amazon::S3::Request::Bucket';
6              
7             with 'Net::Amazon::S3::Request::Role::HTTP::Method::DELETE';
8              
9             __PACKAGE__->meta->make_immutable;
10              
11             1;
12              
13             __END__
14              
15             =pod
16              
17             =encoding UTF-8
18              
19             =head1 NAME
20              
21             Net::Amazon::S3::Operation::Bucket::Delete::Request - An internal class to delete a bucket
22              
23             =head1 VERSION
24              
25             version 0.99
26              
27             =head1 SYNOPSIS
28              
29             my $request = Net::Amazon::S3::Operation::Bucket::Delete::Request->new (
30             s3 => $s3,
31             bucket => $bucket,
32             );
33              
34             =head1 DESCRIPTION
35              
36             This module deletes a bucket.
37              
38             Implements operation L<< DeleteBucket|https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucket.html >>
39              
40             =for test_synopsis no strict 'vars'
41              
42             =head1 METHODS
43              
44             =head2 http_request
45              
46             This method returns a HTTP::Request object.
47              
48             =head1 AUTHOR
49              
50             Branislav Zahradník <barney@cpan.org>
51              
52             =head1 COPYRIGHT AND LICENSE
53              
54             This software is copyright (c) 2021 by Amazon Digital Services, Leon Brocard, Brad Fitzpatrick, Pedro Figueiredo, Rusty Conover, Branislav Zahradník.
55              
56             This is free software; you can redistribute it and/or modify it under
57             the same terms as the Perl 5 programming language system itself.
58              
59             =cut