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