File Coverage

blib/lib/Paws/S3/DeleteObject.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::S3::DeleteObject;
3 1     1   792 use Moose;
  1     1   5  
  1         11  
  1         704  
  1         3  
  1         10  
4             has Bucket => (is => 'ro', isa => 'Str', uri_name => 'Bucket', traits => ['ParamInURI'], required => 1);
5             has Key => (is => 'ro', isa => 'Str', uri_name => 'Key', traits => ['ParamInURI'], required => 1);
6             has MFA => (is => 'ro', isa => 'Str', header_name => 'x-amz-mfa', traits => ['ParamInHeader']);
7             has RequestPayer => (is => 'ro', isa => 'Str', header_name => 'x-amz-request-payer', traits => ['ParamInHeader']);
8             has VersionId => (is => 'ro', isa => 'Str', query_name => 'versionId', traits => ['ParamInQuery']);
9              
10 1     1   11198 use MooseX::ClassAttribute;
  1     1   4  
  1         12  
  1         8304  
  1         3  
  1         10  
11              
12             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DeleteObject');
13             class_has _api_uri => (isa => 'Str', is => 'ro', default => '/{Bucket}/{Key+}');
14             class_has _api_method => (isa => 'Str', is => 'ro', default => 'DELETE');
15             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::S3::DeleteObjectOutput');
16             class_has _result_key => (isa => 'Str', is => 'ro');
17            
18             1;
19              
20             ### main pod documentation begin ###
21              
22             =head1 NAME
23              
24             Paws::S3::DeleteObject - Arguments for method DeleteObject on Paws::S3
25              
26             =head1 DESCRIPTION
27              
28             This class represents the parameters used for calling the method DeleteObject on the
29             Amazon Simple Storage Service service. Use the attributes of this class
30             as arguments to method DeleteObject.
31              
32             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DeleteObject.
33              
34             As an example:
35              
36             $service_obj->DeleteObject(Att1 => $value1, Att2 => $value2, ...);
37              
38             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
39              
40             =head1 ATTRIBUTES
41              
42              
43             =head2 B<REQUIRED> Bucket => Str
44              
45              
46              
47              
48              
49             =head2 B<REQUIRED> Key => Str
50              
51              
52              
53              
54              
55             =head2 MFA => Str
56              
57             The concatenation of the authentication device's serial number, a
58             space, and the value that is displayed on your authentication device.
59              
60              
61              
62             =head2 RequestPayer => Str
63              
64              
65              
66             Valid values are: C<"requester">
67              
68             =head2 VersionId => Str
69              
70             VersionId used to reference a specific version of the object.
71              
72              
73              
74              
75             =head1 SEE ALSO
76              
77             This class forms part of L<Paws>, documenting arguments for method DeleteObject in L<Paws::S3>
78              
79             =head1 BUGS and CONTRIBUTIONS
80              
81             The source code is located here: https://github.com/pplu/aws-sdk-perl
82              
83             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
84              
85             =cut
86