File Coverage

blib/lib/Paws/S3/CopyObjectOutput.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::CopyObjectOutput;
3 1     1   813 use Moose;
  1     1   5  
  1         13  
  1         483  
  1         3  
  1         6  
4             has CopyObjectResult => (is => 'ro', isa => 'Paws::S3::CopyObjectResult');
5             has CopySourceVersionId => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'x-amz-copy-source-version-id');
6             has Expiration => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'x-amz-expiration');
7             has RequestCharged => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'x-amz-request-charged');
8             has ServerSideEncryption => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'x-amz-server-side-encryption');
9             has SSECustomerAlgorithm => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'x-amz-server-side-encryption-customer-algorithm');
10             has SSECustomerKeyMD5 => (is => 'ro', isa => 'Str', traits => ['ParamInHeader'], header_name => 'x-amz-server-side-encryption-customer-key-MD5');
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::CopyObjectOutput
22              
23             =head1 ATTRIBUTES
24              
25              
26             =head2 CopyObjectResult => L<Paws::S3::CopyObjectResult>
27              
28              
29              
30              
31              
32             =head2 CopySourceVersionId => Str
33              
34              
35              
36              
37              
38             =head2 Expiration => Str
39              
40             If the object expiration is configured, the response includes this
41             header.
42              
43              
44              
45             =head2 RequestCharged => Str
46              
47              
48              
49             Valid values are: C<"requester">
50              
51             =head2 ServerSideEncryption => Str
52              
53             The Server-side encryption algorithm used when storing this object in
54             S3 (e.g., AES256, aws:kms).
55              
56             Valid values are: C<"AES256">, C<"aws:kms">
57              
58             =head2 SSECustomerAlgorithm => Str
59              
60             If server-side encryption with a customer-provided encryption key was
61             requested, the response will include this header confirming the
62             encryption algorithm used.
63              
64              
65              
66             =head2 SSECustomerKeyMD5 => Str
67              
68             If server-side encryption with a customer-provided encryption key was
69             requested, the response will include this header to provide round trip
70             message integrity verification of the customer-provided encryption key.
71              
72              
73              
74             =head2 SSEKMSKeyId => Str
75              
76             If present, specifies the ID of the AWS Key Management Service (KMS)
77             master encryption key that was used for the object.
78              
79              
80              
81             =head2 VersionId => Str
82              
83             Version ID of the newly created copy.
84              
85              
86              
87              
88             =cut
89