import { _UnmarshalledCopyObjectResult } from "./_CopyObjectResult"; import * as __aws_sdk_types from "@aws-sdk/types"; /** * CopyObjectOutput shape */ export interface CopyObjectOutput extends __aws_sdk_types.MetadataBearer { /** * _CopyObjectResult shape */ CopyObjectResult?: _UnmarshalledCopyObjectResult; /** *
If the object expiration is configured, the response includes this header.
*/ Expiration?: string; /** * _CopySourceVersionId shape */ CopySourceVersionId?: string; /** *Version ID of the newly created copy.
*/ VersionId?: string; /** *The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).
*/ ServerSideEncryption?: "AES256" | "aws:kms" | string; /** *If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.
*/ SSECustomerAlgorithm?: string; /** *If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.
*/ SSECustomerKeyMD5?: string; /** *If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.
*/ SSEKMSKeyId?: string; /** *If present, indicates that the requester was successfully charged for the request.
*/ RequestCharged?: "requester" | string; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }