Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
    • Yandex Cloud Partner program
  • Blog
  • Pricing
  • Documentation
© 2025 Direct Cursus Technology L.L.C.
Yandex Object Storage
  • Terraform reference
    • Authentication with the API
      • How to use the API
      • Signing requests
        • All services and methods
          • All methods
          • upload
          • get
          • patch
          • copy
          • getObjectMeta
          • delete
          • deleteMultipleObjects
          • options
          • selectObjectContent
          • putObjectRetention
          • putObjectLegalHold
          • getObjectRetention
          • getObjectLegalHold
          • putObjectTagging
          • getObjectTagging
          • deleteObjectTagging
        • Common request headers
        • Common response headers
        • Responses
  • Monitoring metrics
  • Audit Trails events
  • Bucket logs
  • Release notes
  • FAQ

In this article:

  • Request
  • Path parameters
  • Headers
  • Response
  • Headers
  • Response codes
  • Data schema
  1. API reference
  2. REST (Amazon S3-compatible)
  3. REST
  4. Object
  5. copy

copy method

Written by
Yandex Cloud
Updated at April 10, 2025
  • Request
    • Path parameters
    • Headers
  • Response
    • Headers
    • Response codes
    • Data schema

Creates a copy of an object stored in Object Storage. Objects up to 5 GB can be copied with a single copy operation. For objects larger than 5 GB, use the copyPart operation.

To specify the copy source, use the X-Amz-Copy-Source header. The copy request must not provide any data other than headers.

Note

Object Storage does not lock an object for writing and can simultaneously accept multiple requests that copy objects to the same target object. After all the requests are completed, the target object is the one whose copy operation was run last.

The object metadata is copied along with the object. If required, you can change the metadata by explicitly setting the appropriate headers.

You can also use headers to:

  • Change an object's storage class.
  • Add conditions for copying an object.
  • Put a lock on an object (if the bucket is versioned and object lock is enabled).

The user must have permission to read the source object and write data to the target bucket.

For more information on getting started with the API and the general request format, see How to use the S3 API.

RequestRequest

PUT /{bucket}/{key} HTTP/2

Path parametersPath parameters

Parameter Description
bucket Name of the bucket.
key Key of the target object, which is the ID the object is saved with in Object Storage.

HeadersHeaders

The required headers are listed in the table below.

Header Description
X-Amz-Copy-Source Name of the bucket and the object key to copy, separated by /.

Example: X-Amz-Copy-Source: /source_bucket/sourceObject.

If the bucket has versioning enabled, you can copy a specific version of the object. To do this, specify the object version ID in the header by adding ?versionId=<version-id> to the header value, e.g., /mybucket/image.png?versionId=0005E4A66AD990A4. If you do not specify a version ID, the most recent version of the object will be copied.

Make sure to also use the required common headers.

Use the headers from the table below if you need to change the default behavior for the copy method.

Header Description
X-Amz-Metadata-Directive Metadata copying mode.

If the header value is COPY, the object metadata is copied and all X-Amz-Meta-* headers are ignored. This is how the copy method works by default.

If the header value is REPLACE, the object metadata is replaced with that provided in the request.

The X-Amz-Storage-Class header is not copied; you have to add it to the request manually, if required.
X-Amz-Copy-Source-If-Match Condition for copying an object.

If the object's ETag matches that specified in the header, the object is copied.

If the condition is not met, Object Storage returns error 412.

Can be used together with the X-Amz-Copy-Source-If-Unmodified-Since header.
X-Amz-Copy-Source-If-None-Match Condition for copying an object.

If the object's ETag does not match that specified in the header, the object is copied.

If the condition is not met, Object Storage returns error 412.

Can be used together with the X-Amz-Copy-Source-If-Modified-Since header.
X-Amz-Copy-Source-If-Unmodified-Since Condition for copying an object.

The object is copied if it has not been modified since the specified time.

If the condition is not met, Object Storage returns error 412.

Can be used together with the X-Amz-Copy-Source-If-Match header.
X-Amz-Copy-Source-If-Modified-Since Condition for copying an object.

The object is copied if it has been modified since the specified time.

If the condition is not met, Object Storage returns error 412.

Can be used together with the X-Amz-Copy-Source-If-None-Match header.
X-Amz-Server-Side-Encryption Default encryption algorithm used for new objects.
X-Amz-Server-Side-Encryption-Aws-Kms-Key-Id ID of the KMS key used by default to encrypt new objects.
X-Amz-Storage-Class Object storage class.

Possible values:
  • STANDARD: Standard storage
  • COLD, STANDARD_IA, or NEARLINE: Cold storage
  • ICE or GLACIER: Ice storage
If the header is not specified, the object storage is defined in the bucket settings.
X-Amz-Object-Lock-Mode

Type of retention put on the object (if the bucket is versioned and object lock is enabled in it):

  • GOVERNANCE: Governance-mode retention.
  • COMPLIANCE: Compliance-mode retention.

For an object version, you can use only retention (the X-Amz-Object-Lock-Mode and X-Amz-Object-Lock-Retain-Until-Date headers), only legal hold (X-Amz-Object-Lock-Legal-Hold), or both at the same time. For more information about their combined use, see Object lock types.

X-Amz-Object-Lock-Retain-Until-Date Retention end date and time in any format described in the HTTP standard, e.g., Mon, 12 Dec 2022 09:00:00 GMT. Specify it only with the X-Amz-Object-Lock-Mode header.
X-Amz-Object-Lock-Legal-Hold

Type of legal hold put on the object (if the bucket is versioned and object lock is enabled in it):

  • ON: Enabled.
  • OFF: Disabled.

For an object version, you can use only retention (the X-Amz-Object-Lock-Mode and X-Amz-Object-Lock-Retain-Until-Date headers), only legal hold (X-Amz-Object-Lock-Legal-Hold), or both at the same time. For more information about their combined use, see Object lock types.

X-Amz-Meta-* User-defined metadata.

Object Storage transforms all headers starting with X-Amz-Meta- as follows: X-Amz-Meta-foo-bar_baz → X-Amz-Meta-Foo-Bar_baz.

Total user-defined header size must not exceed 2 KB. The size of user-defined data is determined as the length of the UTF-8 encoded string. The size includes both header names and their values.

Headers with X-Amz-Metadata-Directive: COPY are ignored.

ResponseResponse

HeadersHeaders

A response may contain common headers and the headers listed in the table below.

Header Description
X-Amz-Storage-Class Object storage class.

Possible values:
  • STANDARD: Standard storage
  • COLD: Cold storage
  • ICE: Ice storage

Response codesResponse codes

For a list of possible responses, see Responses.

Data schemaData schema

<CopyObjectResult>
   <LastModified>2019-02-15T14:32:00</LastModified>
   <ETag>"9bgh7535f2734ec974343yuc93985328"</ETag>
</CopyObjectResult>
Element Description
CopyObjectResult Contains response elements.

Path: /CopyObjectResult.
ETag ETag of the target object. Since metadata is not counted in when calculating ETag, the source and target object ETag values must be equal.

Path: /CopyObjectResult/ETag.
LastModified Date of the object's last modification.

Path: /CopyObjectResult/LastModified.

See alsoSee also

  • Debugging requests using the AWS CLI
  • Example of sending a signed request using curl
  • Code example for generating a signature

Was the article helpful?

Previous
patch
Next
getObjectMeta
© 2025 Direct Cursus Technology L.L.C.