File Coverage

blib/lib/Paws/S3/DeleteObjectOutput.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              
2             package Paws::S3::DeleteObjectOutput;
3 1     1   432 use Moose;
  1     1   2  
  1         9  
  1         355  
  1         2  
  1         6  
4             has DeleteMarker => (is => 'ro', isa => 'Bool', traits => ['ParamInHeader'], header_name => 'x-amz-delete-marker');
5             has RequestCharged => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'x-amz-request-charged');
6             has VersionId => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'x-amz-version-id');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9             1;
10              
11             ### main pod documentation begin ###
12              
13             =head1 NAME
14              
15             Paws::S3::DeleteObjectOutput
16              
17             =head1 ATTRIBUTES
18              
19              
20             =head2 DeleteMarker => Bool
21              
22             Specifies whether the versioned object that was permanently deleted was
23             (true) or was not (false) a delete marker.
24              
25              
26              
27             =head2 RequestCharged => Str
28              
29              
30              
31             Valid values are: C<"requester">
32              
33             =head2 VersionId => Str
34              
35             Returns the version ID of the delete marker created as a result of the
36             DELETE operation.
37              
38              
39              
40              
41             =cut
42