@aws-amplify/storage 5.9.19 → 5.9.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/AwsClients/S3/abortMultipartUpload.d.ts +9 -9
- package/lib/AwsClients/S3/completeMultipartUpload.d.ts +9 -9
- package/lib/AwsClients/S3/copyObject.d.ts +9 -9
- package/lib/AwsClients/S3/createMultipartUpload.d.ts +9 -9
- package/lib/AwsClients/S3/deleteObject.d.ts +9 -9
- package/lib/AwsClients/S3/getObject.d.ts +9 -9
- package/lib/AwsClients/S3/headObject.d.ts +9 -9
- package/lib/AwsClients/S3/listObjectsV2.d.ts +9 -9
- package/lib/AwsClients/S3/listParts.d.ts +9 -9
- package/lib/AwsClients/S3/putObject.d.ts +9 -9
- package/lib/AwsClients/S3/uploadPart.d.ts +9 -9
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib-esm/AwsClients/S3/abortMultipartUpload.d.ts +9 -9
- package/lib-esm/AwsClients/S3/completeMultipartUpload.d.ts +9 -9
- package/lib-esm/AwsClients/S3/copyObject.d.ts +9 -9
- package/lib-esm/AwsClients/S3/createMultipartUpload.d.ts +9 -9
- package/lib-esm/AwsClients/S3/deleteObject.d.ts +9 -9
- package/lib-esm/AwsClients/S3/getObject.d.ts +9 -9
- package/lib-esm/AwsClients/S3/headObject.d.ts +9 -9
- package/lib-esm/AwsClients/S3/listObjectsV2.d.ts +9 -9
- package/lib-esm/AwsClients/S3/listParts.d.ts +9 -9
- package/lib-esm/AwsClients/S3/putObject.d.ts +9 -9
- package/lib-esm/AwsClients/S3/uploadPart.d.ts +9 -9
- package/lib-esm/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
|
@@ -4,18 +4,18 @@ import { MetadataBearer } from '@aws-sdk/types';
|
|
|
4
4
|
import type { AbortMultipartUploadCommandInput } from './types';
|
|
5
5
|
export type AbortMultipartUploadInput = Pick<AbortMultipartUploadCommandInput, 'Bucket' | 'Key' | 'UploadId'>;
|
|
6
6
|
export type AbortMultipartUploadOutput = MetadataBearer;
|
|
7
|
-
export declare const abortMultipartUpload: (config: Omit<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "
|
|
7
|
+
export declare const abortMultipartUpload: (config: Omit<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "emitter" | "responseType" | "abortSignal" | "computeDelay" | "region" | "endpointResolver" | "userAgentHeader" | "userAgentValue" | "retryDecider" | "maxAttempts" | "credentials" | "service" | "uriEscapePath"> & {
|
|
8
|
+
emitter?: import("events").EventEmitter;
|
|
9
|
+
responseType?: "text" | "blob";
|
|
10
|
+
abortSignal?: AbortSignal;
|
|
11
|
+
computeDelay?: (attempt: number) => number;
|
|
8
12
|
region?: string;
|
|
13
|
+
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
14
|
+
userAgentHeader?: string;
|
|
15
|
+
userAgentValue?: string;
|
|
16
|
+
retryDecider?: (response?: HttpResponse, error?: unknown) => Promise<boolean>;
|
|
9
17
|
maxAttempts?: number;
|
|
10
18
|
credentials?: import("@aws-sdk/types").Credentials | (() => Promise<import("@aws-sdk/types").Credentials>);
|
|
11
|
-
retryDecider?: (response?: HttpResponse, error?: unknown) => Promise<boolean>;
|
|
12
|
-
computeDelay?: (attempt: number) => number;
|
|
13
|
-
abortSignal?: AbortSignal;
|
|
14
19
|
service?: string;
|
|
15
20
|
uriEscapePath?: boolean;
|
|
16
|
-
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
17
|
-
emitter?: import("events").EventEmitter;
|
|
18
|
-
responseType?: "blob" | "text";
|
|
19
|
-
userAgentHeader?: string;
|
|
20
|
-
userAgentValue?: string;
|
|
21
21
|
}, input: AbortMultipartUploadInput) => Promise<MetadataBearer>;
|
|
@@ -3,18 +3,18 @@ import { Endpoint, HttpResponse } from '@aws-amplify/core/internals/aws-client-u
|
|
|
3
3
|
import type { CompleteMultipartUploadCommandInput, CompleteMultipartUploadCommandOutput } from './types';
|
|
4
4
|
export type CompleteMultipartUploadInput = Pick<CompleteMultipartUploadCommandInput, 'Bucket' | 'Key' | 'UploadId' | 'MultipartUpload' | 'SSECustomerAlgorithm' | 'SSECustomerKey' | 'SSECustomerKeyMD5'>;
|
|
5
5
|
export type CompleteMultipartUploadOutput = Pick<CompleteMultipartUploadCommandOutput, '$metadata' | 'Key' | 'ETag' | 'Location'>;
|
|
6
|
-
export declare const completeMultipartUpload: (config: Omit<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "
|
|
6
|
+
export declare const completeMultipartUpload: (config: Omit<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "emitter" | "responseType" | "abortSignal" | "computeDelay" | "region" | "endpointResolver" | "userAgentHeader" | "userAgentValue" | "retryDecider" | "maxAttempts" | "credentials" | "service" | "uriEscapePath"> & {
|
|
7
|
+
emitter?: import("events").EventEmitter;
|
|
8
|
+
responseType?: "text" | "blob";
|
|
9
|
+
abortSignal?: AbortSignal;
|
|
10
|
+
computeDelay?: (attempt: number) => number;
|
|
7
11
|
region?: string;
|
|
12
|
+
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
13
|
+
userAgentHeader?: string;
|
|
14
|
+
userAgentValue?: string;
|
|
15
|
+
retryDecider?: (response?: HttpResponse, error?: unknown) => Promise<boolean>;
|
|
8
16
|
maxAttempts?: number;
|
|
9
17
|
credentials?: import("@aws-sdk/types/types/credentials").Credentials | (() => Promise<import("@aws-sdk/types/types/credentials").Credentials>);
|
|
10
|
-
retryDecider?: (response?: HttpResponse, error?: unknown) => Promise<boolean>;
|
|
11
|
-
computeDelay?: (attempt: number) => number;
|
|
12
|
-
abortSignal?: AbortSignal;
|
|
13
18
|
service?: string;
|
|
14
19
|
uriEscapePath?: boolean;
|
|
15
|
-
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
16
|
-
emitter?: import("events").EventEmitter;
|
|
17
|
-
responseType?: "blob" | "text";
|
|
18
|
-
userAgentHeader?: string;
|
|
19
|
-
userAgentValue?: string;
|
|
20
20
|
}, input: CompleteMultipartUploadInput) => Promise<CompleteMultipartUploadOutput>;
|
|
@@ -7,18 +7,18 @@ import type { CopyObjectCommandInput } from './types';
|
|
|
7
7
|
*/
|
|
8
8
|
export type CopyObjectInput = Pick<CopyObjectCommandInput, 'Bucket' | 'CopySource' | 'Key' | 'MetadataDirective' | 'CacheControl' | 'ContentType' | 'ContentDisposition' | 'ContentLanguage' | 'Expires' | 'ACL' | 'ServerSideEncryption' | 'SSECustomerAlgorithm' | 'SSECustomerKey' | 'SSECustomerKeyMD5' | 'SSEKMSKeyId' | 'Tagging' | 'Metadata'>;
|
|
9
9
|
export type CopyObjectOutput = MetadataBearer;
|
|
10
|
-
export declare const copyObject: (config: Omit<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "
|
|
10
|
+
export declare const copyObject: (config: Omit<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "emitter" | "responseType" | "abortSignal" | "computeDelay" | "region" | "endpointResolver" | "userAgentHeader" | "userAgentValue" | "retryDecider" | "maxAttempts" | "credentials" | "service" | "uriEscapePath"> & {
|
|
11
|
+
emitter?: import("events").EventEmitter;
|
|
12
|
+
responseType?: "text" | "blob";
|
|
13
|
+
abortSignal?: AbortSignal;
|
|
14
|
+
computeDelay?: (attempt: number) => number;
|
|
11
15
|
region?: string;
|
|
16
|
+
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
17
|
+
userAgentHeader?: string;
|
|
18
|
+
userAgentValue?: string;
|
|
19
|
+
retryDecider?: (response?: HttpResponse, error?: unknown) => Promise<boolean>;
|
|
12
20
|
maxAttempts?: number;
|
|
13
21
|
credentials?: import("@aws-sdk/types").Credentials | (() => Promise<import("@aws-sdk/types").Credentials>);
|
|
14
|
-
retryDecider?: (response?: HttpResponse, error?: unknown) => Promise<boolean>;
|
|
15
|
-
computeDelay?: (attempt: number) => number;
|
|
16
|
-
abortSignal?: AbortSignal;
|
|
17
22
|
service?: string;
|
|
18
23
|
uriEscapePath?: boolean;
|
|
19
|
-
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
20
|
-
emitter?: import("events").EventEmitter;
|
|
21
|
-
responseType?: "blob" | "text";
|
|
22
|
-
userAgentHeader?: string;
|
|
23
|
-
userAgentValue?: string;
|
|
24
24
|
}, input: CopyObjectInput) => Promise<MetadataBearer>;
|
|
@@ -4,18 +4,18 @@ import type { CreateMultipartUploadCommandInput, CreateMultipartUploadCommandOut
|
|
|
4
4
|
import type { PutObjectInput } from './putObject';
|
|
5
5
|
export type CreateMultipartUploadInput = Extract<CreateMultipartUploadCommandInput, PutObjectInput>;
|
|
6
6
|
export type CreateMultipartUploadOutput = Pick<CreateMultipartUploadCommandOutput, 'UploadId' | '$metadata'>;
|
|
7
|
-
export declare const createMultipartUpload: (config: Omit<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "
|
|
7
|
+
export declare const createMultipartUpload: (config: Omit<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "emitter" | "responseType" | "abortSignal" | "computeDelay" | "region" | "endpointResolver" | "userAgentHeader" | "userAgentValue" | "retryDecider" | "maxAttempts" | "credentials" | "service" | "uriEscapePath"> & {
|
|
8
|
+
emitter?: import("events").EventEmitter;
|
|
9
|
+
responseType?: "text" | "blob";
|
|
10
|
+
abortSignal?: AbortSignal;
|
|
11
|
+
computeDelay?: (attempt: number) => number;
|
|
8
12
|
region?: string;
|
|
13
|
+
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
14
|
+
userAgentHeader?: string;
|
|
15
|
+
userAgentValue?: string;
|
|
16
|
+
retryDecider?: (response?: HttpResponse, error?: unknown) => Promise<boolean>;
|
|
9
17
|
maxAttempts?: number;
|
|
10
18
|
credentials?: import("@aws-sdk/types/types/credentials").Credentials | (() => Promise<import("@aws-sdk/types/types/credentials").Credentials>);
|
|
11
|
-
retryDecider?: (response?: HttpResponse, error?: unknown) => Promise<boolean>;
|
|
12
|
-
computeDelay?: (attempt: number) => number;
|
|
13
|
-
abortSignal?: AbortSignal;
|
|
14
19
|
service?: string;
|
|
15
20
|
uriEscapePath?: boolean;
|
|
16
|
-
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
17
|
-
emitter?: import("events").EventEmitter;
|
|
18
|
-
responseType?: "blob" | "text";
|
|
19
|
-
userAgentHeader?: string;
|
|
20
|
-
userAgentValue?: string;
|
|
21
21
|
}, input: CreateMultipartUploadCommandInput) => Promise<CreateMultipartUploadOutput>;
|
|
@@ -3,18 +3,18 @@ import { Endpoint, HttpResponse } from '@aws-amplify/core/internals/aws-client-u
|
|
|
3
3
|
import type { DeleteObjectCommandInput, DeleteObjectCommandOutput } from './types';
|
|
4
4
|
export type DeleteObjectInput = Pick<DeleteObjectCommandInput, 'Bucket' | 'Key'>;
|
|
5
5
|
export type DeleteObjectOutput = DeleteObjectCommandOutput;
|
|
6
|
-
export declare const deleteObject: (config: Omit<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "
|
|
6
|
+
export declare const deleteObject: (config: Omit<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "emitter" | "responseType" | "abortSignal" | "computeDelay" | "region" | "endpointResolver" | "userAgentHeader" | "userAgentValue" | "retryDecider" | "maxAttempts" | "credentials" | "service" | "uriEscapePath"> & {
|
|
7
|
+
emitter?: import("events").EventEmitter;
|
|
8
|
+
responseType?: "text" | "blob";
|
|
9
|
+
abortSignal?: AbortSignal;
|
|
10
|
+
computeDelay?: (attempt: number) => number;
|
|
7
11
|
region?: string;
|
|
12
|
+
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
13
|
+
userAgentHeader?: string;
|
|
14
|
+
userAgentValue?: string;
|
|
15
|
+
retryDecider?: (response?: HttpResponse, error?: unknown) => Promise<boolean>;
|
|
8
16
|
maxAttempts?: number;
|
|
9
17
|
credentials?: import("@aws-sdk/types/types/credentials").Credentials | (() => Promise<import("@aws-sdk/types/types/credentials").Credentials>);
|
|
10
|
-
retryDecider?: (response?: HttpResponse, error?: unknown) => Promise<boolean>;
|
|
11
|
-
computeDelay?: (attempt: number) => number;
|
|
12
|
-
abortSignal?: AbortSignal;
|
|
13
18
|
service?: string;
|
|
14
19
|
uriEscapePath?: boolean;
|
|
15
|
-
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
16
|
-
emitter?: import("events").EventEmitter;
|
|
17
|
-
responseType?: "blob" | "text";
|
|
18
|
-
userAgentHeader?: string;
|
|
19
|
-
userAgentValue?: string;
|
|
20
20
|
}, input: DeleteObjectInput) => Promise<DeleteObjectCommandOutput>;
|
|
@@ -4,20 +4,20 @@ import { S3EndpointResolverOptions } from './base';
|
|
|
4
4
|
import type { GetObjectCommandInput, GetObjectCommandOutput } from './types';
|
|
5
5
|
export type GetObjectInput = Pick<GetObjectCommandInput, 'Bucket' | 'Key' | 'ResponseCacheControl' | 'ResponseContentDisposition' | 'ResponseContentEncoding' | 'ResponseContentLanguage' | 'ResponseContentType' | 'SSECustomerAlgorithm' | 'SSECustomerKey' | 'SSECustomerKeyMD5'>;
|
|
6
6
|
export type GetObjectOutput = GetObjectCommandOutput;
|
|
7
|
-
export declare const getObject: (config: Omit<UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<import("@aws-amplify/core/internals/aws-client-utils").HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<import("@aws-amplify/core/internals/aws-client-utils").HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "
|
|
7
|
+
export declare const getObject: (config: Omit<UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<import("@aws-amplify/core/internals/aws-client-utils").HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<import("@aws-amplify/core/internals/aws-client-utils").HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "emitter" | "responseType" | "abortSignal" | "computeDelay" | "region" | "endpointResolver" | "userAgentHeader" | "userAgentValue" | "retryDecider" | "maxAttempts" | "credentials" | "service" | "uriEscapePath"> & {
|
|
8
|
+
emitter?: import("events").EventEmitter;
|
|
9
|
+
responseType?: "text" | "blob";
|
|
10
|
+
abortSignal?: AbortSignal;
|
|
11
|
+
computeDelay?: (attempt: number) => number;
|
|
8
12
|
region?: string;
|
|
13
|
+
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
14
|
+
userAgentHeader?: string;
|
|
15
|
+
userAgentValue?: string;
|
|
16
|
+
retryDecider?: (response?: import("@aws-amplify/core/internals/aws-client-utils").HttpResponse, error?: unknown) => Promise<boolean>;
|
|
9
17
|
maxAttempts?: number;
|
|
10
18
|
credentials?: import("@aws-sdk/types/types/credentials").Credentials | (() => Promise<import("@aws-sdk/types/types/credentials").Credentials>);
|
|
11
|
-
retryDecider?: (response?: import("@aws-amplify/core/internals/aws-client-utils").HttpResponse, error?: unknown) => Promise<boolean>;
|
|
12
|
-
computeDelay?: (attempt: number) => number;
|
|
13
|
-
abortSignal?: AbortSignal;
|
|
14
19
|
service?: string;
|
|
15
20
|
uriEscapePath?: boolean;
|
|
16
|
-
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
17
|
-
emitter?: import("events").EventEmitter;
|
|
18
|
-
responseType?: "blob" | "text";
|
|
19
|
-
userAgentHeader?: string;
|
|
20
|
-
userAgentValue?: string;
|
|
21
21
|
}, input: GetObjectInput) => Promise<GetObjectCommandOutput>;
|
|
22
22
|
/**
|
|
23
23
|
* Get a presigned URL for the `getObject` API.
|
|
@@ -3,18 +3,18 @@ import { Endpoint } from '@aws-amplify/core/internals/aws-client-utils';
|
|
|
3
3
|
import type { HeadObjectCommandInput, HeadObjectCommandOutput } from './types';
|
|
4
4
|
export type HeadObjectInput = Pick<HeadObjectCommandInput, 'Bucket' | 'Key' | 'SSECustomerKey' | 'SSECustomerKeyMD5' | 'SSECustomerAlgorithm'>;
|
|
5
5
|
export type HeadObjectOutput = Pick<HeadObjectCommandOutput, '$metadata' | 'ContentLength' | 'ContentType' | 'ETag' | 'LastModified' | 'Metadata' | 'VersionId'>;
|
|
6
|
-
export declare const headObject: (config: Omit<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<import("@aws-amplify/core/internals/aws-client-utils").HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<import("@aws-amplify/core/internals/aws-client-utils").HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "
|
|
6
|
+
export declare const headObject: (config: Omit<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<import("@aws-amplify/core/internals/aws-client-utils").HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<import("@aws-amplify/core/internals/aws-client-utils").HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "emitter" | "responseType" | "abortSignal" | "computeDelay" | "region" | "endpointResolver" | "userAgentHeader" | "userAgentValue" | "retryDecider" | "maxAttempts" | "credentials" | "service" | "uriEscapePath"> & {
|
|
7
|
+
emitter?: import("events").EventEmitter;
|
|
8
|
+
responseType?: "text" | "blob";
|
|
9
|
+
abortSignal?: AbortSignal;
|
|
10
|
+
computeDelay?: (attempt: number) => number;
|
|
7
11
|
region?: string;
|
|
12
|
+
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
13
|
+
userAgentHeader?: string;
|
|
14
|
+
userAgentValue?: string;
|
|
15
|
+
retryDecider?: (response?: import("@aws-amplify/core/internals/aws-client-utils").HttpResponse, error?: unknown) => Promise<boolean>;
|
|
8
16
|
maxAttempts?: number;
|
|
9
17
|
credentials?: import("@aws-sdk/types/types/credentials").Credentials | (() => Promise<import("@aws-sdk/types/types/credentials").Credentials>);
|
|
10
|
-
retryDecider?: (response?: import("@aws-amplify/core/internals/aws-client-utils").HttpResponse, error?: unknown) => Promise<boolean>;
|
|
11
|
-
computeDelay?: (attempt: number) => number;
|
|
12
|
-
abortSignal?: AbortSignal;
|
|
13
18
|
service?: string;
|
|
14
19
|
uriEscapePath?: boolean;
|
|
15
|
-
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
16
|
-
emitter?: import("events").EventEmitter;
|
|
17
|
-
responseType?: "blob" | "text";
|
|
18
|
-
userAgentHeader?: string;
|
|
19
|
-
userAgentValue?: string;
|
|
20
20
|
}, input: HeadObjectInput) => Promise<HeadObjectOutput>;
|
|
@@ -3,18 +3,18 @@ import { Endpoint, HttpResponse } from '@aws-amplify/core/internals/aws-client-u
|
|
|
3
3
|
import type { ListObjectsV2CommandInput, ListObjectsV2CommandOutput } from './types';
|
|
4
4
|
export type ListObjectsV2Input = ListObjectsV2CommandInput;
|
|
5
5
|
export type ListObjectsV2Output = ListObjectsV2CommandOutput;
|
|
6
|
-
export declare const listObjectsV2: (config: Omit<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "
|
|
6
|
+
export declare const listObjectsV2: (config: Omit<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "emitter" | "responseType" | "abortSignal" | "computeDelay" | "region" | "endpointResolver" | "userAgentHeader" | "userAgentValue" | "retryDecider" | "maxAttempts" | "credentials" | "service" | "uriEscapePath"> & {
|
|
7
|
+
emitter?: import("events").EventEmitter;
|
|
8
|
+
responseType?: "text" | "blob";
|
|
9
|
+
abortSignal?: AbortSignal;
|
|
10
|
+
computeDelay?: (attempt: number) => number;
|
|
7
11
|
region?: string;
|
|
12
|
+
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
13
|
+
userAgentHeader?: string;
|
|
14
|
+
userAgentValue?: string;
|
|
15
|
+
retryDecider?: (response?: HttpResponse, error?: unknown) => Promise<boolean>;
|
|
8
16
|
maxAttempts?: number;
|
|
9
17
|
credentials?: import("@aws-sdk/types/types/credentials").Credentials | (() => Promise<import("@aws-sdk/types/types/credentials").Credentials>);
|
|
10
|
-
retryDecider?: (response?: HttpResponse, error?: unknown) => Promise<boolean>;
|
|
11
|
-
computeDelay?: (attempt: number) => number;
|
|
12
|
-
abortSignal?: AbortSignal;
|
|
13
18
|
service?: string;
|
|
14
19
|
uriEscapePath?: boolean;
|
|
15
|
-
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
16
|
-
emitter?: import("events").EventEmitter;
|
|
17
|
-
responseType?: "blob" | "text";
|
|
18
|
-
userAgentHeader?: string;
|
|
19
|
-
userAgentValue?: string;
|
|
20
20
|
}, input: ListObjectsV2CommandInput) => Promise<ListObjectsV2CommandOutput>;
|
|
@@ -3,18 +3,18 @@ import { Endpoint, HttpResponse } from '@aws-amplify/core/internals/aws-client-u
|
|
|
3
3
|
import type { ListPartsCommandInput, ListPartsCommandOutput } from './types';
|
|
4
4
|
export type ListPartsInput = Pick<ListPartsCommandInput, 'Bucket' | 'Key' | 'UploadId' | 'SSECustomerAlgorithm' | 'SSECustomerKey' | 'SSECustomerKeyMD5'>;
|
|
5
5
|
export type ListPartsOutput = Pick<ListPartsCommandOutput, 'Parts' | 'UploadId' | '$metadata'>;
|
|
6
|
-
export declare const listParts: (config: Omit<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "
|
|
6
|
+
export declare const listParts: (config: Omit<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "emitter" | "responseType" | "abortSignal" | "computeDelay" | "region" | "endpointResolver" | "userAgentHeader" | "userAgentValue" | "retryDecider" | "maxAttempts" | "credentials" | "service" | "uriEscapePath"> & {
|
|
7
|
+
emitter?: import("events").EventEmitter;
|
|
8
|
+
responseType?: "text" | "blob";
|
|
9
|
+
abortSignal?: AbortSignal;
|
|
10
|
+
computeDelay?: (attempt: number) => number;
|
|
7
11
|
region?: string;
|
|
12
|
+
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
13
|
+
userAgentHeader?: string;
|
|
14
|
+
userAgentValue?: string;
|
|
15
|
+
retryDecider?: (response?: HttpResponse, error?: unknown) => Promise<boolean>;
|
|
8
16
|
maxAttempts?: number;
|
|
9
17
|
credentials?: import("@aws-sdk/types/types/credentials").Credentials | (() => Promise<import("@aws-sdk/types/types/credentials").Credentials>);
|
|
10
|
-
retryDecider?: (response?: HttpResponse, error?: unknown) => Promise<boolean>;
|
|
11
|
-
computeDelay?: (attempt: number) => number;
|
|
12
|
-
abortSignal?: AbortSignal;
|
|
13
18
|
service?: string;
|
|
14
19
|
uriEscapePath?: boolean;
|
|
15
|
-
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
16
|
-
emitter?: import("events").EventEmitter;
|
|
17
|
-
responseType?: "blob" | "text";
|
|
18
|
-
userAgentHeader?: string;
|
|
19
|
-
userAgentValue?: string;
|
|
20
20
|
}, input: ListPartsInput) => Promise<ListPartsOutput>;
|
|
@@ -6,18 +6,18 @@ import type { PutObjectCommandInput, PutObjectCommandOutput } from './types';
|
|
|
6
6
|
*/
|
|
7
7
|
export type PutObjectInput = Pick<PutObjectCommandInput, 'Bucket' | 'Key' | 'Body' | 'ServerSideEncryption' | 'SSECustomerAlgorithm' | 'SSECustomerKey' | 'SSECustomerKeyMD5' | 'SSEKMSKeyId' | 'ACL' | 'CacheControl' | 'ContentDisposition' | 'ContentEncoding' | 'ContentType' | 'ContentMD5' | 'Expires' | 'Metadata' | 'Tagging'>;
|
|
8
8
|
export type PutObjectOutput = Pick<PutObjectCommandOutput, '$metadata' | 'ETag' | 'VersionId'>;
|
|
9
|
-
export declare const putObject: (config: Omit<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "
|
|
9
|
+
export declare const putObject: (config: Omit<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "emitter" | "responseType" | "abortSignal" | "computeDelay" | "region" | "endpointResolver" | "userAgentHeader" | "userAgentValue" | "retryDecider" | "maxAttempts" | "credentials" | "service" | "uriEscapePath"> & {
|
|
10
|
+
emitter?: import("events").EventEmitter;
|
|
11
|
+
responseType?: "text" | "blob";
|
|
12
|
+
abortSignal?: AbortSignal;
|
|
13
|
+
computeDelay?: (attempt: number) => number;
|
|
10
14
|
region?: string;
|
|
15
|
+
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
16
|
+
userAgentHeader?: string;
|
|
17
|
+
userAgentValue?: string;
|
|
18
|
+
retryDecider?: (response?: HttpResponse, error?: unknown) => Promise<boolean>;
|
|
11
19
|
maxAttempts?: number;
|
|
12
20
|
credentials?: import("@aws-sdk/types/types/credentials").Credentials | (() => Promise<import("@aws-sdk/types/types/credentials").Credentials>);
|
|
13
|
-
retryDecider?: (response?: HttpResponse, error?: unknown) => Promise<boolean>;
|
|
14
|
-
computeDelay?: (attempt: number) => number;
|
|
15
|
-
abortSignal?: AbortSignal;
|
|
16
21
|
service?: string;
|
|
17
22
|
uriEscapePath?: boolean;
|
|
18
|
-
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
19
|
-
emitter?: import("events").EventEmitter;
|
|
20
|
-
responseType?: "blob" | "text";
|
|
21
|
-
userAgentHeader?: string;
|
|
22
|
-
userAgentValue?: string;
|
|
23
23
|
}, input: PutObjectInput) => Promise<PutObjectOutput>;
|
|
@@ -3,18 +3,18 @@ import { Endpoint, HttpResponse } from '@aws-amplify/core/internals/aws-client-u
|
|
|
3
3
|
import type { UploadPartCommandInput, UploadPartCommandOutput } from './types';
|
|
4
4
|
export type UploadPartInput = Pick<UploadPartCommandInput, 'PartNumber' | 'Body' | 'UploadId' | 'Bucket' | 'Key' | 'ContentMD5' | 'SSECustomerAlgorithm' | 'SSECustomerKey' | 'SSECustomerKeyMD5'>;
|
|
5
5
|
export type UploadPartOutput = Pick<UploadPartCommandOutput, '$metadata' | 'ETag'>;
|
|
6
|
-
export declare const uploadPart: (config: Omit<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "
|
|
6
|
+
export declare const uploadPart: (config: Omit<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions & Partial<import("@aws-amplify/core/internals/aws-client-utils").UserAgentOptions & import("@aws-amplify/core/internals/aws-client-utils").RetryOptions<HttpResponse> & import("@aws-amplify/core/internals/aws-client-utils").SigningOptions & import("./runtime/xhrTransferHandler").XhrTransferHandlerOptions & import("@aws-amplify/core/internals/aws-client-utils").ServiceClientOptions>, "emitter" | "responseType" | "abortSignal" | "computeDelay" | "region" | "endpointResolver" | "userAgentHeader" | "userAgentValue" | "retryDecider" | "maxAttempts" | "credentials" | "service" | "uriEscapePath"> & {
|
|
7
|
+
emitter?: import("events").EventEmitter;
|
|
8
|
+
responseType?: "text" | "blob";
|
|
9
|
+
abortSignal?: AbortSignal;
|
|
10
|
+
computeDelay?: (attempt: number) => number;
|
|
7
11
|
region?: string;
|
|
12
|
+
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
13
|
+
userAgentHeader?: string;
|
|
14
|
+
userAgentValue?: string;
|
|
15
|
+
retryDecider?: (response?: HttpResponse, error?: unknown) => Promise<boolean>;
|
|
8
16
|
maxAttempts?: number;
|
|
9
17
|
credentials?: import("@aws-sdk/types/types/credentials").Credentials | (() => Promise<import("@aws-sdk/types/types/credentials").Credentials>);
|
|
10
|
-
retryDecider?: (response?: HttpResponse, error?: unknown) => Promise<boolean>;
|
|
11
|
-
computeDelay?: (attempt: number) => number;
|
|
12
|
-
abortSignal?: AbortSignal;
|
|
13
18
|
service?: string;
|
|
14
19
|
uriEscapePath?: boolean;
|
|
15
|
-
endpointResolver?: (options: import("@aws-amplify/core/internals/aws-client-utils").EndpointResolverOptions, input?: any) => Endpoint;
|
|
16
|
-
emitter?: import("events").EventEmitter;
|
|
17
|
-
responseType?: "blob" | "text";
|
|
18
|
-
userAgentHeader?: string;
|
|
19
|
-
userAgentValue?: string;
|
|
20
20
|
}, input: UploadPartInput) => Promise<UploadPartOutput>;
|