AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
Returns information about the CopyObject response and response metadata.
Namespace: Amazon.S3.Model
Assembly: AWSSDK.S3.dll
Version: 3.x.y.z
public class CopyObjectResponse : AmazonWebServiceResponse
The CopyObjectResponse type exposes the following members
Name | Description | |
---|---|---|
![]() |
CopyObjectResponse() |
Name | Type | Description | |
---|---|---|---|
![]() |
BucketKeyEnabled | System.Boolean |
Gets and sets the property BucketKeyEnabled. Indicates whether the copied object uses an S3 Bucket Key for server-side encryption with Amazon Web Services KMS (SSE-KMS). |
![]() |
ChecksumCRC32 | System.String |
Gets and sets the property ChecksumCRC32. The base64-encoded, 32-bit CRC32 checksum of the object. |
![]() |
ChecksumCRC32C | System.String |
Gets and sets the property ChecksumCRC32C. The base64-encoded, 32-bit CRC32C checksum of the object. |
![]() |
ChecksumSHA1 | System.String |
Gets and sets the property ChecksumSHA1. The base64-encoded, 160-bit SHA-1 digest of the object. |
![]() |
ChecksumSHA256 | System.String |
Gets and sets the property ChecksumSHA256. The base64-encoded, 256-bit SHA-256 digest of the object. |
![]() |
ContentLength | System.Int64 | Inherited from Amazon.Runtime.AmazonWebServiceResponse. |
![]() |
ETag | System.String |
Gets and sets the ETag property. |
![]() |
Expiration | Amazon.S3.Model.Expiration |
Gets and sets the Expiration property. Specifies the expiration date for the object and the rule governing the expiration. Is null if expiration is not applicable. |
![]() |
HttpStatusCode | System.Net.HttpStatusCode | Inherited from Amazon.Runtime.AmazonWebServiceResponse. |
![]() |
LastModified | System.String |
Gets and sets the LastModified property. |
![]() |
RequestCharged | Amazon.S3.RequestCharged |
If present, indicates that the requester was successfully charged for the request. |
![]() |
ResponseMetadata | Amazon.Runtime.ResponseMetadata | Inherited from Amazon.Runtime.AmazonWebServiceResponse. |
![]() |
ServerSideEncryptionCustomerMethod | Amazon.S3.ServerSideEncryptionCustomerMethod |
The Server-side encryption algorithm to be used with the customer provided key. |
![]() |
ServerSideEncryptionCustomerProvidedKeyMD5 | System.String |
The MD5 of the customer encryption key specified in the ServerSideEncryptionCustomerProvidedKey property. The MD5 is base 64 encoded. This field is optional, the SDK will calculate the MD5 if this is not set. |
![]() |
ServerSideEncryptionKeyManagementServiceEncryptionContext | System.String |
Specifies the AWS KMS Encryption Context to use for object encryption. The value of this header is a base64-encoded UTF-8 string holding JSON with the encryption context key-value pairs. If present, specifies the Amazon Web Services KMS Encryption Context to use for object encryption. The value of this header is a base64-encoded UTF-8 string holding JSON with the encryption context key-value pairs. |
![]() |
ServerSideEncryptionKeyManagementServiceKeyId | System.String |
The id of the AWS Key Management Service key that Amazon S3 uses to encrypt and decrypt the object. If present, specifies the ID of the Amazon Web Services Key Management Service (Amazon Web Services KMS) symmetric customer managed key that was used for the object. |
![]() |
ServerSideEncryptionMethod | Amazon.S3.ServerSideEncryptionMethod |
The Server-side encryption algorithm used when storing this object in S3. |
![]() |
SourceVersionId | System.String |
Gets and sets the SourceVersionId property. This is the Version Id of the Source Object |
![]() |
VersionId | System.String |
Version ID of the newly created copy. |
This example shows how to copy an object from one bucket/key to a different bucket/key.
// Create a client AmazonS3Client client = new AmazonS3Client(); // Create a CopyObject request CopyObjectRequest request = new CopyObjectRequest { SourceBucket = "SampleBucket", SourceKey = "Item1", DestinationBucket = "AnotherBucket", DestinationKey = "Copy1", CannedACL = S3CannedACL.PublicRead }; // Issue request client.CopyObject(request);
.NET Core App:
Supported in: 3.1
.NET Standard:
Supported in: 2.0
.NET Framework:
Supported in: 4.5, 4.0, 3.5