UNPKG

@aws-sdk/client-s3

Version:

AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native

1,244 lines (1,074 loc) 42.3 kB
import { Encryption, GlacierJobParameters, Grant, ObjectCannedACL, RequestCharged, RequestPayer, ServerSideEncryption, StorageClass, Tagging, Tier, } from "./models_0"; import { SENSITIVE_STRING } from "@aws-sdk/smithy-client"; import { Readable } from "stream"; /** * <p>A metadata key-value pair to store with an object.</p> */ export interface MetadataEntry { /** * <p>Name of the Object.</p> */ Name?: string; /** * <p>Value of the Object.</p> */ Value?: string; } export namespace MetadataEntry { export const filterSensitiveLog = (obj: MetadataEntry): any => ({ ...obj, }); } /** * <p>Describes an Amazon S3 location that will receive the results of the restore request.</p> */ export interface S3Location { /** * <p>The name of the bucket where the restore results will be placed.</p> */ BucketName: string | undefined; /** * <p>The prefix that is prepended to the restore results for this request.</p> */ Prefix: string | undefined; /** * <p>Contains the type of server-side encryption used.</p> */ Encryption?: Encryption; /** * <p>The canned ACL to apply to the restore results.</p> */ CannedACL?: ObjectCannedACL | string; /** * <p>A list of grants that control access to the staged results.</p> */ AccessControlList?: Grant[]; /** * <p>The tag-set that is applied to the restore results.</p> */ Tagging?: Tagging; /** * <p>A list of metadata to store with the restore results in S3.</p> */ UserMetadata?: MetadataEntry[]; /** * <p>The class of storage used to store the restore results.</p> */ StorageClass?: StorageClass | string; } export namespace S3Location { export const filterSensitiveLog = (obj: S3Location): any => ({ ...obj, ...(obj.Encryption && { Encryption: Encryption.filterSensitiveLog(obj.Encryption) }), }); } /** * <p>Describes the location where the restore job's output is stored.</p> */ export interface OutputLocation { /** * <p>Describes an S3 location that will receive the results of the restore request.</p> */ S3?: S3Location; } export namespace OutputLocation { export const filterSensitiveLog = (obj: OutputLocation): any => ({ ...obj, ...(obj.S3 && { S3: S3Location.filterSensitiveLog(obj.S3) }), }); } export type ExpressionType = "SQL"; export type CompressionType = "BZIP2" | "GZIP" | "NONE"; export enum FileHeaderInfo { IGNORE = "IGNORE", NONE = "NONE", USE = "USE", } /** * <p>Describes how an uncompressed comma-separated values (CSV)-formatted input object is * formatted.</p> */ export interface CSVInput { /** * <p>Describes the first line of input. Valid values are:</p> * <ul> * <li> * <p> * <code>NONE</code>: First line is not a header.</p> * </li> * <li> * <p> * <code>IGNORE</code>: First line is a header, but you can't use the header values * to indicate the column in an expression. You can use column position (such as _1, _2, * …) to indicate the column (<code>SELECT s._1 FROM OBJECT s</code>).</p> * </li> * <li> * <p> * <code>Use</code>: First line is a header, and you can use the header value to * identify a column in an expression (<code>SELECT "name" FROM OBJECT</code>). </p> * </li> * </ul> */ FileHeaderInfo?: FileHeaderInfo | string; /** * <p>A single character used to indicate that a row should be ignored when the character is * present at the start of that row. You can specify any character to indicate a comment * line.</p> */ Comments?: string; /** * <p>A single character used for escaping the quotation mark character inside an already * escaped value. For example, the value """ a , b """ is parsed as " a , b ".</p> */ QuoteEscapeCharacter?: string; /** * <p>A single character used to separate individual records in the input. Instead of the * default value, you can specify an arbitrary delimiter.</p> */ RecordDelimiter?: string; /** * <p>A single character used to separate individual fields in a record. You can specify an * arbitrary delimiter.</p> */ FieldDelimiter?: string; /** * <p>A single character used for escaping when the field delimiter is part of the value. For * example, if the value is <code>a, b</code>, Amazon S3 wraps this field value in quotation marks, * as follows: <code>" a , b "</code>.</p> * <p>Type: String</p> * <p>Default: <code>"</code> * </p> * <p>Ancestors: <code>CSV</code> * </p> */ QuoteCharacter?: string; /** * <p>Specifies that CSV field values may contain quoted record delimiters and such records * should be allowed. Default value is FALSE. Setting this value to TRUE may lower * performance.</p> */ AllowQuotedRecordDelimiter?: boolean; } export namespace CSVInput { export const filterSensitiveLog = (obj: CSVInput): any => ({ ...obj, }); } export enum JSONType { DOCUMENT = "DOCUMENT", LINES = "LINES", } /** * <p>Specifies JSON as object's input serialization format.</p> */ export interface JSONInput { /** * <p>The type of JSON. Valid values: Document, Lines.</p> */ Type?: JSONType | string; } export namespace JSONInput { export const filterSensitiveLog = (obj: JSONInput): any => ({ ...obj, }); } /** * <p>Container for Parquet.</p> */ export interface ParquetInput {} export namespace ParquetInput { export const filterSensitiveLog = (obj: ParquetInput): any => ({ ...obj, }); } /** * <p>Describes the serialization format of the object.</p> */ export interface InputSerialization { /** * <p>Describes the serialization of a CSV-encoded object.</p> */ CSV?: CSVInput; /** * <p>Specifies object's compression format. Valid values: NONE, GZIP, BZIP2. Default Value: * NONE.</p> */ CompressionType?: CompressionType | string; /** * <p>Specifies JSON as object's input serialization format.</p> */ JSON?: JSONInput; /** * <p>Specifies Parquet as object's input serialization format.</p> */ Parquet?: ParquetInput; } export namespace InputSerialization { export const filterSensitiveLog = (obj: InputSerialization): any => ({ ...obj, }); } export enum QuoteFields { ALWAYS = "ALWAYS", ASNEEDED = "ASNEEDED", } /** * <p>Describes how uncompressed comma-separated values (CSV)-formatted results are * formatted.</p> */ export interface CSVOutput { /** * <p>Indicates whether to use quotation marks around output fields. </p> * <ul> * <li> * <p> * <code>ALWAYS</code>: Always use quotation marks for output fields.</p> * </li> * <li> * <p> * <code>ASNEEDED</code>: Use quotation marks for output fields when needed.</p> * </li> * </ul> */ QuoteFields?: QuoteFields | string; /** * <p>The single character used for escaping the quote character inside an already escaped * value.</p> */ QuoteEscapeCharacter?: string; /** * <p>A single character used to separate individual records in the output. Instead of the * default value, you can specify an arbitrary delimiter.</p> */ RecordDelimiter?: string; /** * <p>The value used to separate individual fields in a record. You can specify an arbitrary * delimiter.</p> */ FieldDelimiter?: string; /** * <p>A single character used for escaping when the field delimiter is part of the value. For * example, if the value is <code>a, b</code>, Amazon S3 wraps this field value in quotation marks, * as follows: <code>" a , b "</code>.</p> */ QuoteCharacter?: string; } export namespace CSVOutput { export const filterSensitiveLog = (obj: CSVOutput): any => ({ ...obj, }); } /** * <p>Specifies JSON as request's output serialization format.</p> */ export interface JSONOutput { /** * <p>The value used to separate individual records in the output. If no value is specified, * Amazon S3 uses a newline character ('\n').</p> */ RecordDelimiter?: string; } export namespace JSONOutput { export const filterSensitiveLog = (obj: JSONOutput): any => ({ ...obj, }); } /** * <p>Describes how results of the Select job are serialized.</p> */ export interface OutputSerialization { /** * <p>Describes the serialization of CSV-encoded Select results.</p> */ CSV?: CSVOutput; /** * <p>Specifies JSON as request's output serialization format.</p> */ JSON?: JSONOutput; } export namespace OutputSerialization { export const filterSensitiveLog = (obj: OutputSerialization): any => ({ ...obj, }); } /** * <p>Describes the parameters for Select job types.</p> */ export interface SelectParameters { /** * <p>Describes the serialization format of the object.</p> */ InputSerialization: InputSerialization | undefined; /** * <p>The type of the provided expression (for example, SQL).</p> */ ExpressionType: ExpressionType | string | undefined; /** * <p>The expression that is used to query the object.</p> */ Expression: string | undefined; /** * <p>Describes how the results of the Select job are serialized.</p> */ OutputSerialization: OutputSerialization | undefined; } export namespace SelectParameters { export const filterSensitiveLog = (obj: SelectParameters): any => ({ ...obj, }); } export enum RestoreRequestType { SELECT = "SELECT", } /** * <p>Container for restore job parameters.</p> */ export interface RestoreRequest { /** * <p>Lifetime of the active copy in days. Do not use with restores that specify * <code>OutputLocation</code>.</p> * <p>The Days element is required for regular restores, and must not be provided for select * requests.</p> */ Days?: number; /** * <p>S3 Glacier related parameters pertaining to this job. Do not use with restores that * specify <code>OutputLocation</code>.</p> */ GlacierJobParameters?: GlacierJobParameters; /** * <p>Type of restore request.</p> */ Type?: RestoreRequestType | string; /** * <p>Retrieval tier at which the restore will be processed.</p> */ Tier?: Tier | string; /** * <p>The optional description for the job.</p> */ Description?: string; /** * <p>Describes the parameters for Select job types.</p> */ SelectParameters?: SelectParameters; /** * <p>Describes the location where the restore job's output is stored.</p> */ OutputLocation?: OutputLocation; } export namespace RestoreRequest { export const filterSensitiveLog = (obj: RestoreRequest): any => ({ ...obj, ...(obj.OutputLocation && { OutputLocation: OutputLocation.filterSensitiveLog(obj.OutputLocation) }), }); } export interface RestoreObjectRequest { /** * <p>The bucket name containing the object to restore. </p> * <p>When using this API with an access point, you must direct requests to the access point hostname. The access point hostname takes the form <i>AccessPointName</i>-<i>AccountId</i>.s3-accesspoint.<i>Region</i>.amazonaws.com. When using this operation with an access point through the AWS SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html">Using Access Points</a> in the <i>Amazon Simple Storage Service Developer Guide</i>.</p> * <p>When using this API with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form <i>AccessPointName</i>-<i>AccountId</i>.<i>outpostID</i>.s3-outposts.<i>Region</i>.amazonaws.com. When using this operation using S3 on Outposts through the AWS SDKs, you provide the Outposts bucket ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html">Using S3 on Outposts</a> in the <i>Amazon Simple Storage Service Developer Guide</i>.</p> */ Bucket: string | undefined; /** * <p>Object key for which the operation was initiated.</p> */ Key: string | undefined; /** * <p>VersionId used to reference a specific version of the object.</p> */ VersionId?: string; /** * <p>Container for restore job parameters.</p> */ RestoreRequest?: RestoreRequest; /** * <p>Confirms that the requester knows that they will be charged for the request. Bucket * owners need not specify this parameter in their requests. For information about downloading * objects from requester pays buckets, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html">Downloading Objects in * Requestor Pays Buckets</a> in the <i>Amazon S3 Developer Guide</i>.</p> */ RequestPayer?: RequestPayer | string; /** * <p>The account id of the expected bucket owner. If the bucket is owned by a different account, the request will fail with an HTTP <code>403 (Access Denied)</code> error.</p> */ ExpectedBucketOwner?: string; } export namespace RestoreObjectRequest { export const filterSensitiveLog = (obj: RestoreObjectRequest): any => ({ ...obj, ...(obj.RestoreRequest && { RestoreRequest: RestoreRequest.filterSensitiveLog(obj.RestoreRequest) }), }); } /** * <p></p> */ export interface ContinuationEvent {} export namespace ContinuationEvent { export const filterSensitiveLog = (obj: ContinuationEvent): any => ({ ...obj, }); } /** * <p>A message that indicates the request is complete and no more messages will be sent. You * should not assume that the request is complete until the client receives an * <code>EndEvent</code>.</p> */ export interface EndEvent {} export namespace EndEvent { export const filterSensitiveLog = (obj: EndEvent): any => ({ ...obj, }); } /** * <p>This data type contains information about progress of an operation.</p> */ export interface Progress { /** * <p>The current number of object bytes scanned.</p> */ BytesScanned?: number; /** * <p>The current number of uncompressed object bytes processed.</p> */ BytesProcessed?: number; /** * <p>The current number of bytes of records payload data returned.</p> */ BytesReturned?: number; } export namespace Progress { export const filterSensitiveLog = (obj: Progress): any => ({ ...obj, }); } /** * <p>This data type contains information about the progress event of an operation.</p> */ export interface ProgressEvent { /** * <p>The Progress event details.</p> */ Details?: Progress; } export namespace ProgressEvent { export const filterSensitiveLog = (obj: ProgressEvent): any => ({ ...obj, }); } /** * <p>The container for the records event.</p> */ export interface RecordsEvent { /** * <p>The byte array of partial, one or more result records.</p> */ Payload?: Uint8Array; } export namespace RecordsEvent { export const filterSensitiveLog = (obj: RecordsEvent): any => ({ ...obj, }); } /** * <p>Container for the stats details.</p> */ export interface Stats { /** * <p>The total number of object bytes scanned.</p> */ BytesScanned?: number; /** * <p>The total number of uncompressed object bytes processed.</p> */ BytesProcessed?: number; /** * <p>The total number of bytes of records payload data returned.</p> */ BytesReturned?: number; } export namespace Stats { export const filterSensitiveLog = (obj: Stats): any => ({ ...obj, }); } /** * <p>Container for the Stats Event.</p> */ export interface StatsEvent { /** * <p>The Stats event details.</p> */ Details?: Stats; } export namespace StatsEvent { export const filterSensitiveLog = (obj: StatsEvent): any => ({ ...obj, }); } /** * <p>The container for selecting objects from a content event stream.</p> */ export type SelectObjectContentEventStream = | SelectObjectContentEventStream.ContMember | SelectObjectContentEventStream.EndMember | SelectObjectContentEventStream.ProgressMember | SelectObjectContentEventStream.RecordsMember | SelectObjectContentEventStream.StatsMember | SelectObjectContentEventStream.$UnknownMember; export namespace SelectObjectContentEventStream { /** * <p>The Records Event.</p> */ export interface RecordsMember { Records: RecordsEvent; Stats?: never; Progress?: never; Cont?: never; End?: never; $unknown?: never; } /** * <p>The Stats Event.</p> */ export interface StatsMember { Records?: never; Stats: StatsEvent; Progress?: never; Cont?: never; End?: never; $unknown?: never; } /** * <p>The Progress Event.</p> */ export interface ProgressMember { Records?: never; Stats?: never; Progress: ProgressEvent; Cont?: never; End?: never; $unknown?: never; } /** * <p>The Continuation Event.</p> */ export interface ContMember { Records?: never; Stats?: never; Progress?: never; Cont: ContinuationEvent; End?: never; $unknown?: never; } /** * <p>The End Event.</p> */ export interface EndMember { Records?: never; Stats?: never; Progress?: never; Cont?: never; End: EndEvent; $unknown?: never; } export interface $UnknownMember { Records?: never; Stats?: never; Progress?: never; Cont?: never; End?: never; $unknown: [string, any]; } export interface Visitor<T> { Records: (value: RecordsEvent) => T; Stats: (value: StatsEvent) => T; Progress: (value: ProgressEvent) => T; Cont: (value: ContinuationEvent) => T; End: (value: EndEvent) => T; _: (name: string, value: any) => T; } export const visit = <T>(value: SelectObjectContentEventStream, visitor: Visitor<T>): T => { if (value.Records !== undefined) return visitor.Records(value.Records); if (value.Stats !== undefined) return visitor.Stats(value.Stats); if (value.Progress !== undefined) return visitor.Progress(value.Progress); if (value.Cont !== undefined) return visitor.Cont(value.Cont); if (value.End !== undefined) return visitor.End(value.End); return visitor._(value.$unknown[0], value.$unknown[1]); }; export const filterSensitiveLog = (obj: SelectObjectContentEventStream): any => { if (obj.Records !== undefined) return { Records: RecordsEvent.filterSensitiveLog(obj.Records) }; if (obj.Stats !== undefined) return { Stats: StatsEvent.filterSensitiveLog(obj.Stats) }; if (obj.Progress !== undefined) return { Progress: ProgressEvent.filterSensitiveLog(obj.Progress) }; if (obj.Cont !== undefined) return { Cont: ContinuationEvent.filterSensitiveLog(obj.Cont) }; if (obj.End !== undefined) return { End: EndEvent.filterSensitiveLog(obj.End) }; if (obj.$unknown !== undefined) return { [obj.$unknown[0]]: "UNKNOWN" }; }; } export interface SelectObjectContentOutput { /** * <p>The array of results.</p> */ Payload?: AsyncIterable<SelectObjectContentEventStream>; } export namespace SelectObjectContentOutput { export const filterSensitiveLog = (obj: SelectObjectContentOutput): any => ({ ...obj, ...(obj.Payload && { Payload: "STREAMING_CONTENT" }), }); } /** * <p>Container for specifying if periodic <code>QueryProgress</code> messages should be * sent.</p> */ export interface RequestProgress { /** * <p>Specifies whether periodic QueryProgress frames should be sent. Valid values: TRUE, * FALSE. Default value: FALSE.</p> */ Enabled?: boolean; } export namespace RequestProgress { export const filterSensitiveLog = (obj: RequestProgress): any => ({ ...obj, }); } /** * <p>Specifies the byte range of the object to get the records from. A record is processed * when its first byte is contained by the range. This parameter is optional, but when * specified, it must not be empty. See RFC 2616, Section 14.35.1 about how to specify the * start and end of the range.</p> */ export interface ScanRange { /** * <p>Specifies the start of the byte range. This parameter is optional. Valid values: * non-negative integers. The default value is 0. If only start is supplied, it means scan * from that point to the end of the file.For example; * <code><scanrange><start>50</start></scanrange></code> means scan * from byte 50 until the end of the file.</p> */ Start?: number; /** * <p>Specifies the end of the byte range. This parameter is optional. Valid values: * non-negative integers. The default value is one less than the size of the object being * queried. If only the End parameter is supplied, it is interpreted to mean scan the last N * bytes of the file. For example, * <code><scanrange><end>50</end></scanrange></code> means scan the * last 50 bytes.</p> */ End?: number; } export namespace ScanRange { export const filterSensitiveLog = (obj: ScanRange): any => ({ ...obj, }); } /** * <p>Request to filter the contents of an Amazon S3 object based on a simple Structured Query * Language (SQL) statement. In the request, along with the SQL expression, you must specify a * data serialization format (JSON or CSV) of the object. Amazon S3 uses this to parse object data * into records. It returns only records that match the specified SQL expression. You must * also specify the data serialization format for the response. For more information, see * <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectSELECTContent.html">S3Select API Documentation</a>.</p> */ export interface SelectObjectContentRequest { /** * <p>The S3 bucket.</p> */ Bucket: string | undefined; /** * <p>The object key.</p> */ Key: string | undefined; /** * <p>The SSE Algorithm used to encrypt the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ServerSideEncryptionCustomerKeys.html">Server-Side Encryption (Using Customer-Provided Encryption Keys</a>. </p> */ SSECustomerAlgorithm?: string; /** * <p>The SSE Customer Key. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ServerSideEncryptionCustomerKeys.html">Server-Side Encryption * (Using Customer-Provided Encryption Keys</a>. </p> */ SSECustomerKey?: string; /** * <p>The SSE Customer Key MD5. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ServerSideEncryptionCustomerKeys.html">Server-Side Encryption * (Using Customer-Provided Encryption Keys</a>. </p> */ SSECustomerKeyMD5?: string; /** * <p>The expression that is used to query the object.</p> */ Expression: string | undefined; /** * <p>The type of the provided expression (for example, SQL).</p> */ ExpressionType: ExpressionType | string | undefined; /** * <p>Specifies if periodic request progress information should be enabled.</p> */ RequestProgress?: RequestProgress; /** * <p>Describes the format of the data in the object that is being queried.</p> */ InputSerialization: InputSerialization | undefined; /** * <p>Describes the format of the data that you want Amazon S3 to return in response.</p> */ OutputSerialization: OutputSerialization | undefined; /** * <p>Specifies the byte range of the object to get the records from. A record is processed * when its first byte is contained by the range. This parameter is optional, but when * specified, it must not be empty. See RFC 2616, Section 14.35.1 about how to specify the * start and end of the range.</p> * <p> * <code>ScanRange</code>may be used in the following ways:</p> * <ul> * <li> * <p> * <code><scanrange><start>50</start><end>100</end></scanrange></code> * - process only the records starting between the bytes 50 and 100 (inclusive, counting * from zero)</p> * </li> * <li> * <p> * <code><scanrange><start>50</start></scanrange></code> - * process only the records starting after the byte 50</p> * </li> * <li> * <p> * <code><scanrange><end>50</end></scanrange></code> - * process only the records within the last 50 bytes of the file.</p> * </li> * </ul> */ ScanRange?: ScanRange; /** * <p>The account id of the expected bucket owner. If the bucket is owned by a different account, the request will fail with an HTTP <code>403 (Access Denied)</code> error.</p> */ ExpectedBucketOwner?: string; } export namespace SelectObjectContentRequest { export const filterSensitiveLog = (obj: SelectObjectContentRequest): any => ({ ...obj, ...(obj.SSECustomerKey && { SSECustomerKey: SENSITIVE_STRING }), }); } export interface UploadPartOutput { /** * <p>The server-side encryption algorithm used when storing this object in Amazon S3 (for example, * AES256, aws:kms).</p> */ ServerSideEncryption?: ServerSideEncryption | string; /** * <p>Entity tag for the uploaded object.</p> */ ETag?: string; /** * <p>If server-side encryption with a customer-provided encryption key was requested, the * response will include this header confirming the encryption algorithm used.</p> */ SSECustomerAlgorithm?: string; /** * <p>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.</p> */ SSECustomerKeyMD5?: string; /** * <p>If present, specifies the ID of the AWS Key Management Service (AWS KMS) symmetric * customer managed customer master key (CMK) was used for the object.</p> */ SSEKMSKeyId?: string; /** * <p>Indicates whether the multipart upload uses an S3 Bucket Key for server-side encryption with AWS KMS (SSE-KMS).</p> */ BucketKeyEnabled?: boolean; /** * <p>If present, indicates that the requester was successfully charged for the * request.</p> */ RequestCharged?: RequestCharged | string; } export namespace UploadPartOutput { export const filterSensitiveLog = (obj: UploadPartOutput): any => ({ ...obj, ...(obj.SSEKMSKeyId && { SSEKMSKeyId: SENSITIVE_STRING }), }); } export interface UploadPartRequest { /** * <p>Object data.</p> */ Body?: Readable | ReadableStream | Blob; /** * <p>The name of the bucket to which the multipart upload was initiated.</p> * <p>When using this API with an access point, you must direct requests to the access point hostname. The access point hostname takes the form <i>AccessPointName</i>-<i>AccountId</i>.s3-accesspoint.<i>Region</i>.amazonaws.com. When using this operation with an access point through the AWS SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html">Using Access Points</a> in the <i>Amazon Simple Storage Service Developer Guide</i>.</p> * <p>When using this API with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form <i>AccessPointName</i>-<i>AccountId</i>.<i>outpostID</i>.s3-outposts.<i>Region</i>.amazonaws.com. When using this operation using S3 on Outposts through the AWS SDKs, you provide the Outposts bucket ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html">Using S3 on Outposts</a> in the <i>Amazon Simple Storage Service Developer Guide</i>.</p> */ Bucket: string | undefined; /** * <p>Size of the body in bytes. This parameter is useful when the size of the body cannot be * determined automatically.</p> */ ContentLength?: number; /** * <p>The base64-encoded 128-bit MD5 digest of the part data. This parameter is auto-populated * when using the command from the CLI. This parameter is required if object lock parameters * are specified.</p> */ ContentMD5?: string; /** * <p>Object key for which the multipart upload was initiated.</p> */ Key: string | undefined; /** * <p>Part number of part being uploaded. This is a positive integer between 1 and * 10,000.</p> */ PartNumber: number | undefined; /** * <p>Upload ID identifying the multipart upload whose part is being uploaded.</p> */ UploadId: string | undefined; /** * <p>Specifies the algorithm to use to when encrypting the object (for example, * AES256).</p> */ SSECustomerAlgorithm?: string; /** * <p>Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This * value is used to store the object and then it is discarded; Amazon S3 does not store the * encryption key. The key must be appropriate for use with the algorithm specified in the * <code>x-amz-server-side-encryption-customer-algorithm header</code>. This must be the * same encryption key specified in the initiate multipart upload request.</p> */ SSECustomerKey?: string; /** * <p>Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses * this header for a message integrity check to ensure that the encryption key was transmitted * without error.</p> */ SSECustomerKeyMD5?: string; /** * <p>Confirms that the requester knows that they will be charged for the request. Bucket * owners need not specify this parameter in their requests. For information about downloading * objects from requester pays buckets, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html">Downloading Objects in * Requestor Pays Buckets</a> in the <i>Amazon S3 Developer Guide</i>.</p> */ RequestPayer?: RequestPayer | string; /** * <p>The account id of the expected bucket owner. If the bucket is owned by a different account, the request will fail with an HTTP <code>403 (Access Denied)</code> error.</p> */ ExpectedBucketOwner?: string; } export namespace UploadPartRequest { export const filterSensitiveLog = (obj: UploadPartRequest): any => ({ ...obj, ...(obj.SSECustomerKey && { SSECustomerKey: SENSITIVE_STRING }), }); } /** * <p>Container for all response elements.</p> */ export interface CopyPartResult { /** * <p>Entity tag of the object.</p> */ ETag?: string; /** * <p>Date and time at which the object was uploaded.</p> */ LastModified?: Date; } export namespace CopyPartResult { export const filterSensitiveLog = (obj: CopyPartResult): any => ({ ...obj, }); } export interface UploadPartCopyOutput { /** * <p>The version of the source object that was copied, if you have enabled versioning on the * source bucket.</p> */ CopySourceVersionId?: string; /** * <p>Container for all response elements.</p> */ CopyPartResult?: CopyPartResult; /** * <p>The server-side encryption algorithm used when storing this object in Amazon S3 (for example, * AES256, aws:kms).</p> */ ServerSideEncryption?: ServerSideEncryption | string; /** * <p>If server-side encryption with a customer-provided encryption key was requested, the * response will include this header confirming the encryption algorithm used.</p> */ SSECustomerAlgorithm?: string; /** * <p>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.</p> */ SSECustomerKeyMD5?: string; /** * <p>If present, specifies the ID of the AWS Key Management Service (AWS KMS) symmetric * customer managed customer master key (CMK) that was used for the object.</p> */ SSEKMSKeyId?: string; /** * <p>Indicates whether the multipart upload uses an S3 Bucket Key for server-side encryption with AWS KMS (SSE-KMS).</p> */ BucketKeyEnabled?: boolean; /** * <p>If present, indicates that the requester was successfully charged for the * request.</p> */ RequestCharged?: RequestCharged | string; } export namespace UploadPartCopyOutput { export const filterSensitiveLog = (obj: UploadPartCopyOutput): any => ({ ...obj, ...(obj.SSEKMSKeyId && { SSEKMSKeyId: SENSITIVE_STRING }), }); } export interface UploadPartCopyRequest { /** * <p>The bucket name.</p> * <p>When using this API with an access point, you must direct requests to the access point hostname. The access point hostname takes the form <i>AccessPointName</i>-<i>AccountId</i>.s3-accesspoint.<i>Region</i>.amazonaws.com. When using this operation with an access point through the AWS SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/using-access-points.html">Using Access Points</a> in the <i>Amazon Simple Storage Service Developer Guide</i>.</p> * <p>When using this API with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form <i>AccessPointName</i>-<i>AccountId</i>.<i>outpostID</i>.s3-outposts.<i>Region</i>.amazonaws.com. When using this operation using S3 on Outposts through the AWS SDKs, you provide the Outposts bucket ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/S3onOutposts.html">Using S3 on Outposts</a> in the <i>Amazon Simple Storage Service Developer Guide</i>.</p> */ Bucket: string | undefined; /** * <p>Specifies the source object for the copy operation. You specify the value in one of two * formats, depending on whether you want to access the source object through an <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/access-points.html">access * point</a>:</p> * <ul> * <li> * <p>For objects not accessed through an access point, specify the name of the source * bucket and key of the source object, separated by a slash (/). For example, to copy * the object <code>reports/january.pdf</code> from the bucket * <code>awsexamplebucket</code>, use * <code>awsexamplebucket/reports/january.pdf</code>. The value must be URL * encoded.</p> * </li> * <li> * <p>For objects accessed through access points, specify the Amazon Resource Name (ARN) of the object as accessed through the access point, in the format <code>arn:aws:s3:<Region>:<account-id>:accesspoint/<access-point-name>/object/<key></code>. For example, to copy the object <code>reports/january.pdf</code> through access point <code>my-access-point</code> owned by account <code>123456789012</code> in Region <code>us-west-2</code>, use the URL encoding of <code>arn:aws:s3:us-west-2:123456789012:accesspoint/my-access-point/object/reports/january.pdf</code>. The value must be URL encoded.</p> * <note> * <p>Amazon S3 supports copy operations using access points only when the source and destination buckets are in the same AWS Region.</p> * </note> * <p>Alternatively, for objects accessed through Amazon S3 on Outposts, specify the ARN of the object as accessed in the format <code>arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/object/<key></code>. For example, to copy the object <code>reports/january.pdf</code> through outpost <code>my-outpost</code> owned by account <code>123456789012</code> in Region <code>us-west-2</code>, use the URL encoding of <code>arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/object/reports/january.pdf</code>. The value must be URL encoded. </p> * </li> * </ul> * <p>To copy a specific version of an object, append <code>?versionId=<version-id></code> * to the value (for example, * <code>awsexamplebucket/reports/january.pdf?versionId=QUpfdndhfd8438MNFDN93jdnJFkdmqnh893</code>). * If you don't specify a version ID, Amazon S3 copies the latest version of the source * object.</p> */ CopySource: string | undefined; /** * <p>Copies the object if its entity tag (ETag) matches the specified tag.</p> */ CopySourceIfMatch?: string; /** * <p>Copies the object if it has been modified since the specified time.</p> */ CopySourceIfModifiedSince?: Date; /** * <p>Copies the object if its entity tag (ETag) is different than the specified ETag.</p> */ CopySourceIfNoneMatch?: string; /** * <p>Copies the object if it hasn't been modified since the specified time.</p> */ CopySourceIfUnmodifiedSince?: Date; /** * <p>The range of bytes to copy from the source object. The range value must use the form * bytes=first-last, where the first and last are the zero-based byte offsets to copy. For * example, bytes=0-9 indicates that you want to copy the first 10 bytes of the source. You * can copy a range only if the source object is greater than 5 MB.</p> */ CopySourceRange?: string; /** * <p>Object key for which the multipart upload was initiated.</p> */ Key: string | undefined; /** * <p>Part number of part being copied. This is a positive integer between 1 and * 10,000.</p> */ PartNumber: number | undefined; /** * <p>Upload ID identifying the multipart upload whose part is being copied.</p> */ UploadId: string | undefined; /** * <p>Specifies the algorithm to use to when encrypting the object (for example, * AES256).</p> */ SSECustomerAlgorithm?: string; /** * <p>Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This * value is used to store the object and then it is discarded; Amazon S3 does not store the * encryption key. The key must be appropriate for use with the algorithm specified in the * <code>x-amz-server-side-encryption-customer-algorithm</code> header. This must be the * same encryption key specified in the initiate multipart upload request.</p> */ SSECustomerKey?: string; /** * <p>Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses * this header for a message integrity check to ensure that the encryption key was transmitted * without error.</p> */ SSECustomerKeyMD5?: string; /** * <p>Specifies the algorithm to use when decrypting the source object (for example, * AES256).</p> */ CopySourceSSECustomerAlgorithm?: string; /** * <p>Specifies the customer-provided encryption key for Amazon S3 to use to decrypt the source * object. The encryption key provided in this header must be one that was used when the * source object was created.</p> */ CopySourceSSECustomerKey?: string; /** * <p>Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses * this header for a message integrity check to ensure that the encryption key was transmitted * without error.</p> */ CopySourceSSECustomerKeyMD5?: string; /** * <p>Confirms that the requester knows that they will be charged for the request. Bucket * owners need not specify this parameter in their requests. For information about downloading * objects from requester pays buckets, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html">Downloading Objects in * Requestor Pays Buckets</a> in the <i>Amazon S3 Developer Guide</i>.</p> */ RequestPayer?: RequestPayer | string; /** * <p>The account id of the expected destination bucket owner. If the destination bucket is owned by a different account, the request will fail with an HTTP <code>403 (Access Denied)</code> error.</p> */ ExpectedBucketOwner?: string; /** * <p>The account id of the expected source bucket owner. If the source bucket is owned by a different account, the request will fail with an HTTP <code>403 (Access Denied)</code> error.</p> */ ExpectedSourceBucketOwner?: string; } export namespace UploadPartCopyRequest { export const filterSensitiveLog = (obj: UploadPartCopyRequest): any => ({ ...obj, ...(obj.SSECustomerKey && { SSECustomerKey: SENSITIVE_STRING }), ...(obj.CopySourceSSECustomerKey && { CopySourceSSECustomerKey: SENSITIVE_STRING }), }); }