import * as __aws_sdk_types from "@aws-sdk/types"; /** * CreateMultipartUploadOutput shape */ export interface CreateMultipartUploadOutput extends __aws_sdk_types.MetadataBearer { /** *

Date when multipart upload will become eligible for abort operation by lifecycle.

*/ AbortDate?: Date; /** *

Id of the lifecycle rule that makes a multipart upload eligible for abort operation.

*/ AbortRuleId?: string; /** *

Name of the bucket to which the multipart upload was initiated.

*/ Bucket?: string; /** *

Object key for which the multipart upload was initiated.

*/ Key?: string; /** *

ID for the initiated multipart upload.

*/ UploadId?: 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; }