File Coverage

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