File Coverage

blib/lib/Paws/S3/CompleteMultipartUploadOutput.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::CompleteMultipartUploadOutput;
3 1     1   282 use Moose;
  1     1   2  
  1         7  
  1         348  
  1         2  
  1         5  
4             has Bucket => (is => 'ro', isa => 'Str');
5             has ETag => (is => 'ro', isa => 'Str');
6             has Expiration => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'x-amz-expiration');
7             has Key => (is => 'ro', isa => 'Str');
8             has Location => (is => 'ro', isa => 'Str');
9             has RequestCharged => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'x-amz-request-charged');
10             has ServerSideEncryption => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'x-amz-server-side-encryption');
11             has SSEKMSKeyId => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'x-amz-server-side-encryption-aws-kms-key-id');
12             has VersionId => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'x-amz-version-id');
13              
14             has _request_id => (is => 'ro', isa => 'Str');
15             1;
16              
17             ### main pod documentation begin ###
18              
19             =head1 NAME
20              
21             Paws::S3::CompleteMultipartUploadOutput
22              
23             =head1 ATTRIBUTES
24              
25              
26             =head2 Bucket => Str
27              
28              
29              
30              
31              
32             =head2 ETag => Str
33              
34             Entity tag of the object.
35              
36              
37              
38             =head2 Expiration => Str
39              
40             If the object expiration is configured, this will contain the
41             expiration date (expiry-date) and rule ID (rule-id). The value of
42             rule-id is URL encoded.
43              
44              
45              
46             =head2 Key => Str
47              
48              
49              
50              
51              
52             =head2 Location => Str
53              
54              
55              
56              
57              
58             =head2 RequestCharged => Str
59              
60              
61              
62             Valid values are: C<"requester">
63              
64             =head2 ServerSideEncryption => Str
65              
66             The Server-side encryption algorithm used when storing this object in
67             S3 (e.g., AES256, aws:kms).
68              
69             Valid values are: C<"AES256">, C<"aws:kms">
70              
71             =head2 SSEKMSKeyId => Str
72              
73             If present, specifies the ID of the AWS Key Management Service (KMS)
74             master encryption key that was used for the object.
75              
76              
77              
78             =head2 VersionId => Str
79              
80             Version of the object.
81              
82              
83              
84              
85             =cut
86