Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CreateMultipartUploadOutput

import type { CreateMultipartUploadOutput } from "https://aws-api.deno.dev/v0.4/services/s3.ts?docs=full";
interface CreateMultipartUploadOutput {
AbortDate?: Date | number | null;
AbortRuleId?: string | null;
Bucket?: string | null;
BucketKeyEnabled?: boolean | null;
ChecksumAlgorithm?: ChecksumAlgorithm | null;
Key?: string | null;
RequestCharged?: RequestCharged | null;
ServerSideEncryption?: ServerSideEncryption | null;
SSECustomerAlgorithm?: string | null;
SSECustomerKeyMD5?: string | null;
SSEKMSEncryptionContext?: string | null;
SSEKMSKeyId?: string | null;
UploadId?: string | null;
}

§Properties

§
AbortDate?: Date | number | null
[src]

If the bucket has a lifecycle rule configured with an action to abort incomplete multipart uploads and the prefix in the lifecycle rule matches the object name in the request, the response includes this header. The header indicates when the initiated multipart upload becomes eligible for an abort operation. For more information, see Aborting Incomplete Multipart Uploads Using a Bucket Lifecycle Policy.

The response also includes the x-amz-abort-rule-id header that provides the ID of the lifecycle configuration rule that defines this action.

§
AbortRuleId?: string | null
[src]

This header is returned along with the x-amz-abort-date header. It identifies the applicable lifecycle configuration rule that defines the action to abort incomplete multipart uploads.

§
Bucket?: string | null
[src]

The name of the bucket to which the multipart upload was initiated. Does not return the access point ARN or access point alias if used.

When using this action with an access point, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using access points in the Amazon S3 User Guide.

When using this action with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form _AccessPointName_-_AccountId_._outpostID_.s3-outposts._Region_.amazonaws.com. When using this action with S3 on Outposts through the Amazon Web Services SDKs, you provide the Outposts bucket ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see Using Amazon S3 on Outposts in the Amazon S3 User Guide.

§
BucketKeyEnabled?: boolean | null
[src]

Indicates whether the multipart upload uses an S3 Bucket Key for server-side encryption with Amazon Web Services KMS (SSE-KMS).

§
ChecksumAlgorithm?: ChecksumAlgorithm | null
[src]

The algorithm that was used to create a checksum of the object.

§
Key?: string | null
[src]

Object key for which the multipart upload was initiated.

§
RequestCharged?: RequestCharged | null
[src]
§
ServerSideEncryption?: ServerSideEncryption | null
[src]

The server-side encryption algorithm used when storing this object in Amazon S3 (for example, AES256, aws:kms).

§
SSECustomerAlgorithm?: string | null
[src]

If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.

§
SSECustomerKeyMD5?: string | null
[src]

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.

§
SSEKMSEncryptionContext?: string | null
[src]

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.

§
SSEKMSKeyId?: string | null
[src]

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.

§
UploadId?: string | null
[src]

ID for the initiated multipart upload.