File Coverage

blib/lib/Paws/S3/UploadPartOutput.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::UploadPartOutput;
3 1     1   531 use Moose;
  1     1   3  
  1         8  
  1         424  
  1         3  
  1         9  
4             has ETag => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'ETag');
5             has RequestCharged => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'x-amz-request-charged');
6             has ServerSideEncryption => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'x-amz-server-side-encryption');
7             has SSECustomerAlgorithm => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'x-amz-server-side-encryption-customer-algorithm');
8             has SSECustomerKeyMD5 => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'x-amz-server-side-encryption-customer-key-MD5');
9             has SSEKMSKeyId => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'x-amz-server-side-encryption-aws-kms-key-id');
10              
11             has _request_id => (is => 'ro', isa => 'Str');
12             1;
13              
14             ### main pod documentation begin ###
15              
16             =head1 NAME
17              
18             Paws::S3::UploadPartOutput
19              
20             =head1 ATTRIBUTES
21              
22              
23             =head2 ETag => Str
24              
25             Entity tag for the uploaded object.
26              
27              
28              
29             =head2 RequestCharged => Str
30              
31              
32              
33             Valid values are: C<"requester">
34              
35             =head2 ServerSideEncryption => Str
36              
37             The Server-side encryption algorithm used when storing this object in
38             S3 (e.g., AES256, aws:kms).
39              
40             Valid values are: C<"AES256">, C<"aws:kms">
41              
42             =head2 SSECustomerAlgorithm => Str
43              
44             If server-side encryption with a customer-provided encryption key was
45             requested, the response will include this header confirming the
46             encryption algorithm used.
47              
48              
49              
50             =head2 SSECustomerKeyMD5 => Str
51              
52             If server-side encryption with a customer-provided encryption key was
53             requested, the response will include this header to provide round trip
54             message integrity verification of the customer-provided encryption key.
55              
56              
57              
58             =head2 SSEKMSKeyId => Str
59              
60             If present, specifies the ID of the AWS Key Management Service (KMS)
61             master encryption key that was used for the object.
62              
63              
64              
65              
66             =cut
67