@aws-sdk/client-s3 3.1110.0 → 3.1111.0
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/dist-cjs/index.js +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +58 -58
- package/dist-types/runtimeConfig.d.ts +61 -61
- package/dist-types/runtimeConfig.native.d.ts +57 -57
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -99
- package/dist-types/ts3.4/runtimeConfig.d.ts +103 -103
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +101 -103
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -3
- package/package.json +9 -9
package/dist-cjs/index.js
CHANGED
|
@@ -4743,7 +4743,7 @@ var WriteGetObjectResponse$ = [9, n0, _WGOR,
|
|
|
4743
4743
|
class CreateSessionCommand extends command(_ep4, _mw0, "CreateSession", CreateSession$) {
|
|
4744
4744
|
}
|
|
4745
4745
|
|
|
4746
|
-
var version = "3.
|
|
4746
|
+
var version = "3.1110.0";
|
|
4747
4747
|
var packageInfo = {
|
|
4748
4748
|
version: version};
|
|
4749
4749
|
|
|
@@ -4,46 +4,7 @@ import type { S3ClientConfig } from "./S3Client";
|
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
7
|
-
|
|
8
|
-
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
9
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
12
|
-
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
13
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
14
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
15
|
-
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
16
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
17
|
-
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
18
|
-
streamHasher: import("@smithy/types").StreamHasher<import("stream").Readable> | import("@smithy/types").StreamHasher<Blob>;
|
|
19
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
21
|
-
cacheMiddleware?: boolean | undefined;
|
|
22
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/middleware-sdk-s3/s3").S3RestXmlProtocol;
|
|
23
|
-
protocolSettings: {
|
|
24
|
-
defaultNamespace?: string;
|
|
25
|
-
[setting: string]: unknown;
|
|
26
|
-
};
|
|
27
|
-
apiVersion: string;
|
|
28
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
29
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
30
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
31
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
32
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
33
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
34
|
-
disableHostPrefix: boolean;
|
|
35
|
-
serviceId: string;
|
|
36
|
-
profile?: string;
|
|
37
|
-
md5: import("@smithy/types").HashConstructor;
|
|
38
|
-
sha1: import("@smithy/types").HashConstructor;
|
|
39
|
-
getAwsChunkedEncodingStream: import("@smithy/types").GetAwsChunkedEncodingStream<any> | typeof import("@smithy/core/serde").getAwsChunkedEncodingStream;
|
|
40
|
-
logger: import("@smithy/types").Logger;
|
|
41
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
-
signingEscapePath: boolean;
|
|
43
|
-
useArnRegion: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
44
|
-
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
45
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
46
|
-
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
7
|
+
cacheMiddleware?: boolean;
|
|
47
8
|
requestChecksumCalculation?: import("@aws-sdk/checksums/flexible-checksums").RequestChecksumCalculation | import("@smithy/types").Provider<import("@aws-sdk/checksums/flexible-checksums").RequestChecksumCalculation>;
|
|
48
9
|
responseChecksumValidation?: import("@aws-sdk/checksums/flexible-checksums").ResponseChecksumValidation | import("@smithy/types").Provider<import("@aws-sdk/checksums/flexible-checksums").ResponseChecksumValidation>;
|
|
49
10
|
requestStreamBufferSize?: number | false;
|
|
@@ -56,24 +17,6 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
56
17
|
} & {
|
|
57
18
|
[algorithmId: string]: import("@smithy/types").ChecksumConstructor;
|
|
58
19
|
};
|
|
59
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
60
|
-
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
61
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
62
|
-
logger?: import("@smithy/types").Logger;
|
|
63
|
-
}) => import("@smithy/types").EndpointV2;
|
|
64
|
-
tls?: boolean;
|
|
65
|
-
ignoreConfiguredEndpointUrls?: boolean;
|
|
66
|
-
serviceConfiguredEndpoint?: never;
|
|
67
|
-
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
68
|
-
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
69
|
-
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3HttpAuthSchemeProvider;
|
|
70
|
-
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
71
|
-
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
72
|
-
systemClockOffset?: number;
|
|
73
|
-
signingRegion?: string;
|
|
74
|
-
signerConstructor: typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion | (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner);
|
|
75
|
-
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
76
|
-
sigv4aSigningRegionSet?: string[] | undefined | import("@smithy/types").Provider<string[] | undefined>;
|
|
77
20
|
forcePathStyle?: (boolean & (boolean | import("@smithy/types").Provider<boolean | undefined>)) | undefined;
|
|
78
21
|
useAccelerateEndpoint?: (boolean & (boolean | import("@smithy/types").Provider<boolean | undefined>)) | undefined;
|
|
79
22
|
disableMultiregionAccessPoints?: (boolean & (boolean | import("@smithy/types").Provider<boolean | undefined>)) | undefined;
|
|
@@ -81,9 +24,66 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
81
24
|
s3ExpressIdentityProvider?: import("@aws-sdk/middleware-sdk-s3/s3").S3ExpressIdentityProvider;
|
|
82
25
|
bucketEndpoint?: boolean;
|
|
83
26
|
expectContinueHeader?: boolean | number;
|
|
27
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
28
|
+
tls?: boolean;
|
|
29
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
30
|
+
serviceConfiguredEndpoint?: never;
|
|
84
31
|
clientContextParams?: {
|
|
85
32
|
disableS3ExpressSessionAuth?: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
86
33
|
};
|
|
87
34
|
useGlobalEndpoint?: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
88
35
|
disableS3ExpressSessionAuth?: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
36
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
37
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
38
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
39
|
+
sigv4aSigningRegionSet?: string[] | undefined | import("@smithy/types").Provider<string[] | undefined>;
|
|
40
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
41
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
42
|
+
systemClockOffset?: number;
|
|
43
|
+
signingRegion?: string;
|
|
44
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
45
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
46
|
+
apiVersion: string;
|
|
47
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
48
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
49
|
+
disableHostPrefix: boolean;
|
|
50
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
51
|
+
logger?: import("@smithy/types").Logger;
|
|
52
|
+
}) => import("@smithy/types").EndpointV2;
|
|
53
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
54
|
+
getAwsChunkedEncodingStream: import("@smithy/types").GetAwsChunkedEncodingStream<any> | typeof import("@smithy/core/serde").getAwsChunkedEncodingStream;
|
|
55
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3HttpAuthSchemeProvider;
|
|
56
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
57
|
+
logger: import("@smithy/types").Logger;
|
|
58
|
+
md5: import("@smithy/types").HashConstructor;
|
|
59
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/middleware-sdk-s3/s3").S3RestXmlProtocol;
|
|
60
|
+
protocolSettings: {
|
|
61
|
+
[setting: string]: unknown;
|
|
62
|
+
defaultNamespace?: string;
|
|
63
|
+
};
|
|
64
|
+
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
65
|
+
serviceId: string;
|
|
66
|
+
sha1: import("@smithy/types").HashConstructor;
|
|
67
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
68
|
+
signerConstructor: typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion | (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner);
|
|
69
|
+
signingEscapePath: boolean;
|
|
70
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
71
|
+
useArnRegion: boolean | import("@smithy/types").Provider<boolean | undefined> | undefined;
|
|
72
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
73
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
74
|
+
profile?: string;
|
|
75
|
+
runtime: string;
|
|
76
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
77
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
78
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
79
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
80
|
+
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
81
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
82
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
83
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
84
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
85
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
86
|
+
streamHasher: import("@smithy/types").StreamHasher<Blob> | import("@smithy/types").StreamHasher<import("stream").Readable>;
|
|
87
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
88
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
89
89
|
};
|
|
@@ -4,51 +4,7 @@ import type { S3ClientConfig } from "./S3Client";
|
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
6
6
|
export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
7
|
-
|
|
8
|
-
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
9
|
-
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
10
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
12
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
13
|
-
disableS3ExpressSessionAuth: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
14
|
-
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
15
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
16
|
-
region: string | import("@smithy/types").Provider<string>;
|
|
17
|
-
requestChecksumCalculation: import("@aws-sdk/checksums/flexible-checksums").RequestChecksumCalculation | import("@smithy/types").Provider<import("@aws-sdk/checksums/flexible-checksums").RequestChecksumCalculation>;
|
|
18
|
-
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
19
|
-
responseChecksumValidation: import("@aws-sdk/checksums/flexible-checksums").ResponseChecksumValidation | import("@smithy/types").Provider<import("@aws-sdk/checksums/flexible-checksums").ResponseChecksumValidation>;
|
|
20
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
21
|
-
sigv4aSigningRegionSet: string[] | import("@smithy/types").Provider<string[] | undefined>;
|
|
22
|
-
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
23
|
-
streamHasher: import("@smithy/types").StreamHasher<import("stream").Readable> | import("@smithy/types").StreamHasher<Blob>;
|
|
24
|
-
useArnRegion: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
25
|
-
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
26
|
-
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
27
|
-
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
28
|
-
cacheMiddleware?: boolean | undefined;
|
|
29
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/middleware-sdk-s3/s3").S3RestXmlProtocol;
|
|
30
|
-
protocolSettings: {
|
|
31
|
-
defaultNamespace?: string;
|
|
32
|
-
[setting: string]: unknown;
|
|
33
|
-
};
|
|
34
|
-
apiVersion: string;
|
|
35
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
36
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
37
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
38
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
39
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
40
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
41
|
-
disableHostPrefix: boolean;
|
|
42
|
-
serviceId: string;
|
|
43
|
-
profile?: string;
|
|
44
|
-
md5: import("@smithy/types").HashConstructor;
|
|
45
|
-
sha1: import("@smithy/types").HashConstructor;
|
|
46
|
-
getAwsChunkedEncodingStream: import("@smithy/types").GetAwsChunkedEncodingStream<any> | typeof import("@smithy/core/serde").getAwsChunkedEncodingStream;
|
|
47
|
-
logger: import("@smithy/types").Logger;
|
|
48
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
49
|
-
signingEscapePath: boolean;
|
|
50
|
-
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
51
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
7
|
+
cacheMiddleware?: boolean;
|
|
52
8
|
requestStreamBufferSize?: number | false;
|
|
53
9
|
checksumAlgorithms?: {
|
|
54
10
|
CRC32?: import("@smithy/types").ChecksumConstructor;
|
|
@@ -59,22 +15,6 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
59
15
|
} & {
|
|
60
16
|
[algorithmId: string]: import("@smithy/types").ChecksumConstructor;
|
|
61
17
|
};
|
|
62
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
63
|
-
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
64
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
65
|
-
logger?: import("@smithy/types").Logger;
|
|
66
|
-
}) => import("@smithy/types").EndpointV2;
|
|
67
|
-
tls?: boolean;
|
|
68
|
-
ignoreConfiguredEndpointUrls?: boolean;
|
|
69
|
-
serviceConfiguredEndpoint?: never;
|
|
70
|
-
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
71
|
-
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3HttpAuthSchemeProvider;
|
|
72
|
-
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
73
|
-
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
74
|
-
systemClockOffset?: number;
|
|
75
|
-
signingRegion?: string;
|
|
76
|
-
signerConstructor: typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion | (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner);
|
|
77
|
-
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
78
18
|
forcePathStyle?: (boolean & (boolean | import("@smithy/types").Provider<boolean | undefined>)) | undefined;
|
|
79
19
|
useAccelerateEndpoint?: (boolean & (boolean | import("@smithy/types").Provider<boolean | undefined>)) | undefined;
|
|
80
20
|
disableMultiregionAccessPoints?: (boolean & (boolean | import("@smithy/types").Provider<boolean | undefined>)) | undefined;
|
|
@@ -82,8 +22,68 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
82
22
|
s3ExpressIdentityProvider?: import("@aws-sdk/middleware-sdk-s3/s3").S3ExpressIdentityProvider;
|
|
83
23
|
bucketEndpoint?: boolean;
|
|
84
24
|
expectContinueHeader?: boolean | number;
|
|
25
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
26
|
+
tls?: boolean;
|
|
27
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
28
|
+
serviceConfiguredEndpoint?: never;
|
|
85
29
|
clientContextParams?: {
|
|
86
30
|
disableS3ExpressSessionAuth?: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
87
31
|
};
|
|
88
32
|
useGlobalEndpoint?: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
33
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
34
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
35
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
36
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
37
|
+
systemClockOffset?: number;
|
|
38
|
+
signingRegion?: string;
|
|
39
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
40
|
+
apiVersion: string;
|
|
41
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
42
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
43
|
+
disableHostPrefix: boolean;
|
|
44
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
45
|
+
logger?: import("@smithy/types").Logger;
|
|
46
|
+
}) => import("@smithy/types").EndpointV2;
|
|
47
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
48
|
+
getAwsChunkedEncodingStream: import("@smithy/types").GetAwsChunkedEncodingStream<any> | typeof import("@smithy/core/serde").getAwsChunkedEncodingStream;
|
|
49
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3HttpAuthSchemeProvider;
|
|
50
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
51
|
+
logger: import("@smithy/types").Logger;
|
|
52
|
+
md5: import("@smithy/types").HashConstructor;
|
|
53
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/middleware-sdk-s3/s3").S3RestXmlProtocol;
|
|
54
|
+
protocolSettings: {
|
|
55
|
+
[setting: string]: unknown;
|
|
56
|
+
defaultNamespace?: string;
|
|
57
|
+
};
|
|
58
|
+
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
59
|
+
serviceId: string;
|
|
60
|
+
sha1: import("@smithy/types").HashConstructor;
|
|
61
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
62
|
+
signerConstructor: typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion | (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner);
|
|
63
|
+
signingEscapePath: boolean;
|
|
64
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
65
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
66
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
67
|
+
runtime: string;
|
|
68
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").ResolvedDefaultsMode>;
|
|
69
|
+
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
70
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
71
|
+
credentialDefaultProvider: ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider) | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider);
|
|
72
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
73
|
+
disableS3ExpressSessionAuth: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
74
|
+
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
75
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
76
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
77
|
+
requestChecksumCalculation: import("@smithy/types").Provider<import("@aws-sdk/checksums/flexible-checksums").RequestChecksumCalculation> | import("@aws-sdk/checksums/flexible-checksums").RequestChecksumCalculation;
|
|
78
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
79
|
+
responseChecksumValidation: import("@smithy/types").Provider<import("@aws-sdk/checksums/flexible-checksums").ResponseChecksumValidation> | import("@aws-sdk/checksums/flexible-checksums").ResponseChecksumValidation;
|
|
80
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
81
|
+
sigv4aSigningRegionSet: string[] | import("@smithy/types").Provider<string[] | undefined>;
|
|
82
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
83
|
+
streamHasher: import("@smithy/types").StreamHasher<Blob> | import("@smithy/types").StreamHasher<import("stream").Readable>;
|
|
84
|
+
useArnRegion: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
85
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
86
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
87
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
88
|
+
profile?: string;
|
|
89
89
|
};
|
|
@@ -3,46 +3,7 @@ import type { S3ClientConfig } from "./S3Client";
|
|
|
3
3
|
* @internal
|
|
4
4
|
*/
|
|
5
5
|
export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
6
|
-
runtime: string;
|
|
7
|
-
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
8
6
|
cacheMiddleware?: boolean;
|
|
9
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/middleware-sdk-s3/s3").S3RestXmlProtocol;
|
|
10
|
-
protocolSettings: {
|
|
11
|
-
defaultNamespace?: string;
|
|
12
|
-
[setting: string]: unknown;
|
|
13
|
-
};
|
|
14
|
-
apiVersion: string;
|
|
15
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
16
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
17
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
18
|
-
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
19
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
20
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
21
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
22
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
23
|
-
disableHostPrefix: boolean;
|
|
24
|
-
serviceId: string;
|
|
25
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
26
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
27
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
28
|
-
profile?: string;
|
|
29
|
-
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
30
|
-
streamHasher: import("@smithy/types").StreamHasher<import("stream").Readable> | import("@smithy/types").StreamHasher<Blob>;
|
|
31
|
-
md5: import("@smithy/types").HashConstructor;
|
|
32
|
-
sha1: import("@smithy/types").HashConstructor;
|
|
33
|
-
getAwsChunkedEncodingStream: import("@smithy/types").GetAwsChunkedEncodingStream<any> | typeof import("@smithy/core/serde").getAwsChunkedEncodingStream;
|
|
34
|
-
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
35
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
36
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
37
|
-
logger: import("@smithy/types").Logger;
|
|
38
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
39
|
-
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
40
|
-
defaultsMode: import("@smithy/core/client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
41
|
-
signingEscapePath: boolean;
|
|
42
|
-
useArnRegion: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
43
|
-
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
44
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
45
|
-
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
46
7
|
requestChecksumCalculation?: import("@aws-sdk/checksums/flexible-checksums").RequestChecksumCalculation | import("@smithy/types").Provider<import("@aws-sdk/checksums/flexible-checksums").RequestChecksumCalculation>;
|
|
47
8
|
responseChecksumValidation?: import("@aws-sdk/checksums/flexible-checksums").ResponseChecksumValidation | import("@smithy/types").Provider<import("@aws-sdk/checksums/flexible-checksums").ResponseChecksumValidation>;
|
|
48
9
|
requestStreamBufferSize?: number | false;
|
|
@@ -55,24 +16,6 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
55
16
|
} & {
|
|
56
17
|
[algorithmId: string]: import("@smithy/types").ChecksumConstructor;
|
|
57
18
|
};
|
|
58
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
59
|
-
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
60
|
-
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
61
|
-
logger?: import("@smithy/types").Logger;
|
|
62
|
-
}) => import("@smithy/types").EndpointV2;
|
|
63
|
-
tls?: boolean;
|
|
64
|
-
ignoreConfiguredEndpointUrls?: boolean;
|
|
65
|
-
serviceConfiguredEndpoint?: never;
|
|
66
|
-
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
67
|
-
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
68
|
-
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3HttpAuthSchemeProvider;
|
|
69
|
-
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
70
|
-
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
71
|
-
systemClockOffset?: number;
|
|
72
|
-
signingRegion?: string;
|
|
73
|
-
signerConstructor: typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion | (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner);
|
|
74
|
-
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
75
|
-
sigv4aSigningRegionSet?: string[] | undefined | import("@smithy/types").Provider<string[] | undefined>;
|
|
76
19
|
forcePathStyle?: (boolean & (boolean | import("@smithy/types").Provider<boolean | undefined>)) | undefined;
|
|
77
20
|
useAccelerateEndpoint?: (boolean & (boolean | import("@smithy/types").Provider<boolean | undefined>)) | undefined;
|
|
78
21
|
disableMultiregionAccessPoints?: (boolean & (boolean | import("@smithy/types").Provider<boolean | undefined>)) | undefined;
|
|
@@ -80,9 +23,66 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
80
23
|
s3ExpressIdentityProvider?: import("@aws-sdk/middleware-sdk-s3/s3").S3ExpressIdentityProvider;
|
|
81
24
|
bucketEndpoint?: boolean;
|
|
82
25
|
expectContinueHeader?: boolean | number;
|
|
26
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Endpoint | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<string> | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
27
|
+
tls?: boolean;
|
|
28
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
29
|
+
serviceConfiguredEndpoint?: never;
|
|
83
30
|
clientContextParams?: {
|
|
84
31
|
disableS3ExpressSessionAuth?: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
85
32
|
};
|
|
86
33
|
useGlobalEndpoint?: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
87
34
|
disableS3ExpressSessionAuth?: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
35
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
36
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
37
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
38
|
+
sigv4aSigningRegionSet?: string[] | undefined | import("@smithy/types").Provider<string[] | undefined>;
|
|
39
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
40
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
41
|
+
systemClockOffset?: number;
|
|
42
|
+
signingRegion?: string;
|
|
43
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
44
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
45
|
+
apiVersion: string;
|
|
46
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
47
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
48
|
+
disableHostPrefix: boolean;
|
|
49
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
50
|
+
logger?: import("@smithy/types").Logger;
|
|
51
|
+
}) => import("@smithy/types").EndpointV2;
|
|
52
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
53
|
+
getAwsChunkedEncodingStream: import("@smithy/types").GetAwsChunkedEncodingStream<any> | typeof import("@smithy/core/serde").getAwsChunkedEncodingStream;
|
|
54
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3HttpAuthSchemeProvider;
|
|
55
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
56
|
+
logger: import("@smithy/types").Logger;
|
|
57
|
+
md5: import("@smithy/types").HashConstructor;
|
|
58
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof import("@aws-sdk/middleware-sdk-s3/s3").S3RestXmlProtocol;
|
|
59
|
+
protocolSettings: {
|
|
60
|
+
[setting: string]: unknown;
|
|
61
|
+
defaultNamespace?: string;
|
|
62
|
+
};
|
|
63
|
+
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
64
|
+
serviceId: string;
|
|
65
|
+
sha1: import("@smithy/types").HashConstructor;
|
|
66
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
67
|
+
signerConstructor: typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion | (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner);
|
|
68
|
+
signingEscapePath: boolean;
|
|
69
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
70
|
+
useArnRegion: boolean | import("@smithy/types").Provider<boolean | undefined> | undefined;
|
|
71
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
72
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
73
|
+
profile?: string;
|
|
74
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode> | import("@smithy/core/client").DefaultsMode;
|
|
75
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
76
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
77
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/core/client").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
78
|
+
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
79
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
80
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
81
|
+
requestHandler: import("@smithy/fetch-http-handler").FetchHttpHandler | import("@smithy/types").FetchHttpHandlerOptions | import("@smithy/types").NodeHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any>;
|
|
82
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
83
|
+
streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
|
|
84
|
+
streamHasher: import("@smithy/types").StreamHasher<Blob> | import("@smithy/types").StreamHasher<import("stream").Readable>;
|
|
85
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
86
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
87
|
+
runtime: string;
|
|
88
88
|
};
|
|
@@ -10,7 +10,7 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
10
10
|
base64Decoder: import("@smithy/types").Decoder;
|
|
11
11
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
12
12
|
disableHostPrefix: boolean;
|
|
13
|
-
endpointProvider: (
|
|
13
|
+
endpointProvider: (params: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
14
14
|
logger?: import("@smithy/types").Logger;
|
|
15
15
|
}) => import("@smithy/types").EndpointV2;
|
|
16
16
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
@@ -19,7 +19,7 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
19
19
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
20
20
|
logger: import("@smithy/types").Logger;
|
|
21
21
|
md5: import("@smithy/types").HashConstructor;
|
|
22
|
-
protocol: import("@smithy/types")
|
|
22
|
+
protocol: import("@smithy/types").$ClientProtocol<any, any> | import("@smithy/types").$ClientProtocolCtor<any, any> | typeof S3RestXmlProtocol;
|
|
23
23
|
protocolSettings: {
|
|
24
24
|
[setting: string]: unknown;
|
|
25
25
|
defaultNamespace?: string;
|
|
@@ -1,63 +1,7 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
2
|
import { S3ClientConfig } from "./S3Client";
|
|
3
3
|
export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
4
|
-
|
|
5
|
-
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
-
import("@smithy/core/client").ResolvedDefaultsMode
|
|
7
|
-
>;
|
|
8
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
|
-
defaultUserAgentProvider: (
|
|
13
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
14
|
-
) => Promise<import("@smithy/types").UserAgent>;
|
|
15
|
-
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
16
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
17
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
18
|
-
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
19
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
20
|
-
streamCollector: (
|
|
21
|
-
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
22
|
-
) => Promise<Uint8Array>;
|
|
23
|
-
streamHasher:
|
|
24
|
-
| import("@smithy/types").StreamHasher<import("stream").Readable>
|
|
25
|
-
| import("@smithy/types").StreamHasher<Blob>;
|
|
26
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
27
|
-
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
28
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
29
|
-
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
30
|
-
cacheMiddleware?: boolean | undefined;
|
|
31
|
-
protocol:
|
|
32
|
-
| import("@smithy/types").ClientProtocol<any, any>
|
|
33
|
-
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
34
|
-
| typeof import("@aws-sdk/middleware-sdk-s3/s3").S3RestXmlProtocol;
|
|
35
|
-
protocolSettings: {
|
|
36
|
-
defaultNamespace?: string;
|
|
37
|
-
[setting: string]: unknown;
|
|
38
|
-
};
|
|
39
|
-
apiVersion: string;
|
|
40
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
41
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
42
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
43
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
44
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
45
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
46
|
-
disableHostPrefix: boolean;
|
|
47
|
-
serviceId: string;
|
|
48
|
-
profile?: string;
|
|
49
|
-
md5: import("@smithy/types").HashConstructor;
|
|
50
|
-
sha1: import("@smithy/types").HashConstructor;
|
|
51
|
-
getAwsChunkedEncodingStream:
|
|
52
|
-
| import("@smithy/types").GetAwsChunkedEncodingStream<any>
|
|
53
|
-
| typeof import("@smithy/core/serde").getAwsChunkedEncodingStream;
|
|
54
|
-
logger: import("@smithy/types").Logger;
|
|
55
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
56
|
-
signingEscapePath: boolean;
|
|
57
|
-
useArnRegion: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
58
|
-
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
59
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
60
|
-
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
4
|
+
cacheMiddleware?: boolean;
|
|
61
5
|
requestChecksumCalculation?:
|
|
62
6
|
| import("@aws-sdk/checksums/flexible-checksums").RequestChecksumCalculation
|
|
63
7
|
| import("@smithy/types").Provider<
|
|
@@ -78,36 +22,57 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
78
22
|
} & {
|
|
79
23
|
[algorithmId: string]: import("@smithy/types").ChecksumConstructor;
|
|
80
24
|
};
|
|
81
|
-
|
|
25
|
+
forcePathStyle?:
|
|
26
|
+
| (boolean & (boolean | import("@smithy/types").Provider<boolean | undefined>))
|
|
27
|
+
| undefined;
|
|
28
|
+
useAccelerateEndpoint?:
|
|
29
|
+
| (boolean & (boolean | import("@smithy/types").Provider<boolean | undefined>))
|
|
30
|
+
| undefined;
|
|
31
|
+
disableMultiregionAccessPoints?:
|
|
32
|
+
| (boolean & (boolean | import("@smithy/types").Provider<boolean | undefined>))
|
|
33
|
+
| undefined;
|
|
34
|
+
followRegionRedirects?: boolean;
|
|
35
|
+
s3ExpressIdentityProvider?: import("@aws-sdk/middleware-sdk-s3/s3").S3ExpressIdentityProvider;
|
|
36
|
+
bucketEndpoint?: boolean;
|
|
37
|
+
expectContinueHeader?: boolean | number;
|
|
82
38
|
endpoint?:
|
|
83
39
|
| ((
|
|
84
40
|
| string
|
|
85
41
|
| import("@smithy/types").Endpoint
|
|
86
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
87
42
|
| import("@smithy/types").EndpointV2
|
|
43
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
88
44
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
89
45
|
) &
|
|
90
46
|
(
|
|
91
47
|
| string
|
|
92
|
-
| import("@smithy/types").Provider<string>
|
|
93
48
|
| import("@smithy/types").Endpoint
|
|
94
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
95
49
|
| import("@smithy/types").EndpointV2
|
|
50
|
+
| import("@smithy/types").Provider<string>
|
|
51
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
96
52
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
97
53
|
))
|
|
98
54
|
| undefined;
|
|
99
|
-
endpointProvider: (
|
|
100
|
-
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
101
|
-
context?: {
|
|
102
|
-
logger?: import("@smithy/types").Logger;
|
|
103
|
-
},
|
|
104
|
-
) => import("@smithy/types").EndpointV2;
|
|
105
55
|
tls?: boolean;
|
|
106
56
|
ignoreConfiguredEndpointUrls?: boolean;
|
|
107
57
|
serviceConfiguredEndpoint?: never;
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
58
|
+
clientContextParams?: {
|
|
59
|
+
disableS3ExpressSessionAuth?:
|
|
60
|
+
| boolean
|
|
61
|
+
| undefined
|
|
62
|
+
| import("@smithy/types").Provider<boolean | undefined>;
|
|
63
|
+
};
|
|
64
|
+
useGlobalEndpoint?: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
65
|
+
disableS3ExpressSessionAuth?:
|
|
66
|
+
| boolean
|
|
67
|
+
| undefined
|
|
68
|
+
| import("@smithy/types").Provider<boolean | undefined>;
|
|
69
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
70
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
71
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
72
|
+
sigv4aSigningRegionSet?:
|
|
73
|
+
| string[]
|
|
74
|
+
| undefined
|
|
75
|
+
| import("@smithy/types").Provider<string[] | undefined>;
|
|
111
76
|
credentials?:
|
|
112
77
|
| import("@smithy/types").AwsCredentialIdentity
|
|
113
78
|
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
@@ -118,39 +83,72 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
118
83
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
119
84
|
systemClockOffset?: number;
|
|
120
85
|
signingRegion?: string;
|
|
86
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
87
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
88
|
+
apiVersion: string;
|
|
89
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
90
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
91
|
+
disableHostPrefix: boolean;
|
|
92
|
+
endpointProvider: (
|
|
93
|
+
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
94
|
+
context?: {
|
|
95
|
+
logger?: import("@smithy/types").Logger;
|
|
96
|
+
},
|
|
97
|
+
) => import("@smithy/types").EndpointV2;
|
|
98
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
99
|
+
getAwsChunkedEncodingStream:
|
|
100
|
+
| import("@smithy/types").GetAwsChunkedEncodingStream<any>
|
|
101
|
+
| typeof import("@smithy/core/serde").getAwsChunkedEncodingStream;
|
|
102
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3HttpAuthSchemeProvider;
|
|
103
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
104
|
+
logger: import("@smithy/types").Logger;
|
|
105
|
+
md5: import("@smithy/types").HashConstructor;
|
|
106
|
+
protocol:
|
|
107
|
+
| import("@smithy/types").$ClientProtocol<any, any>
|
|
108
|
+
| import("@smithy/types").$ClientProtocolCtor<any, any>
|
|
109
|
+
| typeof import("@aws-sdk/middleware-sdk-s3/s3").S3RestXmlProtocol;
|
|
110
|
+
protocolSettings: {
|
|
111
|
+
[setting: string]: unknown;
|
|
112
|
+
defaultNamespace?: string;
|
|
113
|
+
};
|
|
114
|
+
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
115
|
+
serviceId: string;
|
|
116
|
+
sha1: import("@smithy/types").HashConstructor;
|
|
117
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
121
118
|
signerConstructor:
|
|
122
119
|
| typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion
|
|
123
120
|
| (new (
|
|
124
121
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
125
122
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
126
123
|
) => import("@smithy/types").RequestSigner);
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
| (
|
|
140
|
-
|
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
|
154
|
-
|
|
|
155
|
-
|
|
124
|
+
signingEscapePath: boolean;
|
|
125
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
126
|
+
useArnRegion: boolean | import("@smithy/types").Provider<boolean | undefined> | undefined;
|
|
127
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
128
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
129
|
+
profile?: string;
|
|
130
|
+
runtime: string;
|
|
131
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
132
|
+
import("@smithy/core/client").ResolvedDefaultsMode
|
|
133
|
+
>;
|
|
134
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
135
|
+
credentialDefaultProvider:
|
|
136
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
137
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
138
|
+
defaultUserAgentProvider: (
|
|
139
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
140
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
141
|
+
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
142
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
143
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
144
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
145
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
146
|
+
streamCollector: (
|
|
147
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
148
|
+
) => Promise<Uint8Array>;
|
|
149
|
+
streamHasher:
|
|
150
|
+
| import("@smithy/types").StreamHasher<Blob>
|
|
151
|
+
| import("@smithy/types").StreamHasher<import("stream").Readable>;
|
|
152
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
153
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
156
154
|
};
|
|
@@ -1,76 +1,7 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
2
|
import { S3ClientConfig } from "./S3Client";
|
|
3
3
|
export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
4
|
-
|
|
5
|
-
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
-
import("@smithy/core/client").ResolvedDefaultsMode
|
|
7
|
-
>;
|
|
8
|
-
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
9
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider:
|
|
11
|
-
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
|
-
| ((
|
|
13
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
14
|
-
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
|
-
defaultUserAgentProvider: (
|
|
16
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
17
|
-
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
|
-
disableS3ExpressSessionAuth: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
19
|
-
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
20
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
21
|
-
region: string | import("@smithy/types").Provider<string>;
|
|
22
|
-
requestChecksumCalculation:
|
|
23
|
-
| import("@aws-sdk/checksums/flexible-checksums").RequestChecksumCalculation
|
|
24
|
-
| import("@smithy/types").Provider<
|
|
25
|
-
import("@aws-sdk/checksums/flexible-checksums").RequestChecksumCalculation
|
|
26
|
-
>;
|
|
27
|
-
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
28
|
-
responseChecksumValidation:
|
|
29
|
-
| import("@aws-sdk/checksums/flexible-checksums").ResponseChecksumValidation
|
|
30
|
-
| import("@smithy/types").Provider<
|
|
31
|
-
import("@aws-sdk/checksums/flexible-checksums").ResponseChecksumValidation
|
|
32
|
-
>;
|
|
33
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
34
|
-
sigv4aSigningRegionSet: string[] | import("@smithy/types").Provider<string[] | undefined>;
|
|
35
|
-
streamCollector: (
|
|
36
|
-
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
37
|
-
) => Promise<Uint8Array>;
|
|
38
|
-
streamHasher:
|
|
39
|
-
| import("@smithy/types").StreamHasher<import("stream").Readable>
|
|
40
|
-
| import("@smithy/types").StreamHasher<Blob>;
|
|
41
|
-
useArnRegion: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
42
|
-
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
43
|
-
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
44
|
-
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
45
|
-
cacheMiddleware?: boolean | undefined;
|
|
46
|
-
protocol:
|
|
47
|
-
| import("@smithy/types").ClientProtocol<any, any>
|
|
48
|
-
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
49
|
-
| typeof import("@aws-sdk/middleware-sdk-s3/s3").S3RestXmlProtocol;
|
|
50
|
-
protocolSettings: {
|
|
51
|
-
defaultNamespace?: string;
|
|
52
|
-
[setting: string]: unknown;
|
|
53
|
-
};
|
|
54
|
-
apiVersion: string;
|
|
55
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
56
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
57
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
58
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
59
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
60
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
61
|
-
disableHostPrefix: boolean;
|
|
62
|
-
serviceId: string;
|
|
63
|
-
profile?: string;
|
|
64
|
-
md5: import("@smithy/types").HashConstructor;
|
|
65
|
-
sha1: import("@smithy/types").HashConstructor;
|
|
66
|
-
getAwsChunkedEncodingStream:
|
|
67
|
-
| import("@smithy/types").GetAwsChunkedEncodingStream<any>
|
|
68
|
-
| typeof import("@smithy/core/serde").getAwsChunkedEncodingStream;
|
|
69
|
-
logger: import("@smithy/types").Logger;
|
|
70
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
71
|
-
signingEscapePath: boolean;
|
|
72
|
-
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
73
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
4
|
+
cacheMiddleware?: boolean;
|
|
74
5
|
requestStreamBufferSize?: number | false;
|
|
75
6
|
checksumAlgorithms?: {
|
|
76
7
|
CRC32?: import("@smithy/types").ChecksumConstructor;
|
|
@@ -81,35 +12,48 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
81
12
|
} & {
|
|
82
13
|
[algorithmId: string]: import("@smithy/types").ChecksumConstructor;
|
|
83
14
|
};
|
|
84
|
-
|
|
15
|
+
forcePathStyle?:
|
|
16
|
+
| (boolean & (boolean | import("@smithy/types").Provider<boolean | undefined>))
|
|
17
|
+
| undefined;
|
|
18
|
+
useAccelerateEndpoint?:
|
|
19
|
+
| (boolean & (boolean | import("@smithy/types").Provider<boolean | undefined>))
|
|
20
|
+
| undefined;
|
|
21
|
+
disableMultiregionAccessPoints?:
|
|
22
|
+
| (boolean & (boolean | import("@smithy/types").Provider<boolean | undefined>))
|
|
23
|
+
| undefined;
|
|
24
|
+
followRegionRedirects?: boolean;
|
|
25
|
+
s3ExpressIdentityProvider?: import("@aws-sdk/middleware-sdk-s3/s3").S3ExpressIdentityProvider;
|
|
26
|
+
bucketEndpoint?: boolean;
|
|
27
|
+
expectContinueHeader?: boolean | number;
|
|
85
28
|
endpoint?:
|
|
86
29
|
| ((
|
|
87
30
|
| string
|
|
88
31
|
| import("@smithy/types").Endpoint
|
|
89
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
90
32
|
| import("@smithy/types").EndpointV2
|
|
33
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
91
34
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
92
35
|
) &
|
|
93
36
|
(
|
|
94
37
|
| string
|
|
95
|
-
| import("@smithy/types").Provider<string>
|
|
96
38
|
| import("@smithy/types").Endpoint
|
|
97
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
98
39
|
| import("@smithy/types").EndpointV2
|
|
40
|
+
| import("@smithy/types").Provider<string>
|
|
41
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
99
42
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
100
43
|
))
|
|
101
44
|
| undefined;
|
|
102
|
-
endpointProvider: (
|
|
103
|
-
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
104
|
-
context?: {
|
|
105
|
-
logger?: import("@smithy/types").Logger;
|
|
106
|
-
},
|
|
107
|
-
) => import("@smithy/types").EndpointV2;
|
|
108
45
|
tls?: boolean;
|
|
109
46
|
ignoreConfiguredEndpointUrls?: boolean;
|
|
110
47
|
serviceConfiguredEndpoint?: never;
|
|
111
|
-
|
|
112
|
-
|
|
48
|
+
clientContextParams?: {
|
|
49
|
+
disableS3ExpressSessionAuth?:
|
|
50
|
+
| boolean
|
|
51
|
+
| undefined
|
|
52
|
+
| import("@smithy/types").Provider<boolean | undefined>;
|
|
53
|
+
};
|
|
54
|
+
useGlobalEndpoint?: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
55
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
113
57
|
credentials?:
|
|
114
58
|
| import("@smithy/types").AwsCredentialIdentity
|
|
115
59
|
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
@@ -120,31 +64,87 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
120
64
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
121
65
|
systemClockOffset?: number;
|
|
122
66
|
signingRegion?: string;
|
|
67
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
68
|
+
apiVersion: string;
|
|
69
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
70
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
71
|
+
disableHostPrefix: boolean;
|
|
72
|
+
endpointProvider: (
|
|
73
|
+
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
74
|
+
context?: {
|
|
75
|
+
logger?: import("@smithy/types").Logger;
|
|
76
|
+
},
|
|
77
|
+
) => import("@smithy/types").EndpointV2;
|
|
78
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
79
|
+
getAwsChunkedEncodingStream:
|
|
80
|
+
| import("@smithy/types").GetAwsChunkedEncodingStream<any>
|
|
81
|
+
| typeof import("@smithy/core/serde").getAwsChunkedEncodingStream;
|
|
82
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3HttpAuthSchemeProvider;
|
|
83
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
84
|
+
logger: import("@smithy/types").Logger;
|
|
85
|
+
md5: import("@smithy/types").HashConstructor;
|
|
86
|
+
protocol:
|
|
87
|
+
| import("@smithy/types").$ClientProtocol<any, any>
|
|
88
|
+
| import("@smithy/types").$ClientProtocolCtor<any, any>
|
|
89
|
+
| typeof import("@aws-sdk/middleware-sdk-s3/s3").S3RestXmlProtocol;
|
|
90
|
+
protocolSettings: {
|
|
91
|
+
[setting: string]: unknown;
|
|
92
|
+
defaultNamespace?: string;
|
|
93
|
+
};
|
|
94
|
+
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
95
|
+
serviceId: string;
|
|
96
|
+
sha1: import("@smithy/types").HashConstructor;
|
|
97
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
123
98
|
signerConstructor:
|
|
124
99
|
| typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion
|
|
125
100
|
| (new (
|
|
126
101
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
127
102
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
128
103
|
) => import("@smithy/types").RequestSigner);
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
104
|
+
signingEscapePath: boolean;
|
|
105
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
106
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
107
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
108
|
+
runtime: string;
|
|
109
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
110
|
+
import("@smithy/core/client").ResolvedDefaultsMode
|
|
111
|
+
>;
|
|
112
|
+
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
113
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
114
|
+
credentialDefaultProvider:
|
|
115
|
+
| ((
|
|
116
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
117
|
+
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider)
|
|
118
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider);
|
|
119
|
+
defaultUserAgentProvider: (
|
|
120
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
121
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
122
|
+
disableS3ExpressSessionAuth: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
123
|
+
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
124
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
125
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
126
|
+
requestChecksumCalculation:
|
|
127
|
+
| import("@smithy/types").Provider<
|
|
128
|
+
import("@aws-sdk/checksums/flexible-checksums").RequestChecksumCalculation
|
|
129
|
+
>
|
|
130
|
+
| import("@aws-sdk/checksums/flexible-checksums").RequestChecksumCalculation;
|
|
131
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
132
|
+
responseChecksumValidation:
|
|
133
|
+
| import("@smithy/types").Provider<
|
|
134
|
+
import("@aws-sdk/checksums/flexible-checksums").ResponseChecksumValidation
|
|
135
|
+
>
|
|
136
|
+
| import("@aws-sdk/checksums/flexible-checksums").ResponseChecksumValidation;
|
|
137
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
138
|
+
sigv4aSigningRegionSet: string[] | import("@smithy/types").Provider<string[] | undefined>;
|
|
139
|
+
streamCollector: (
|
|
140
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
141
|
+
) => Promise<Uint8Array>;
|
|
142
|
+
streamHasher:
|
|
143
|
+
| import("@smithy/types").StreamHasher<Blob>
|
|
144
|
+
| import("@smithy/types").StreamHasher<import("stream").Readable>;
|
|
145
|
+
useArnRegion: boolean | import("@smithy/types").Provider<boolean | undefined>;
|
|
146
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
147
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
148
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
149
|
+
profile?: string;
|
|
150
150
|
};
|
|
@@ -1,67 +1,6 @@
|
|
|
1
1
|
import { S3ClientConfig } from "./S3Client";
|
|
2
2
|
export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
3
|
-
runtime: string;
|
|
4
|
-
requestHandler:
|
|
5
|
-
| import("@smithy/types").NodeHttpHandlerOptions
|
|
6
|
-
| import("@smithy/types").FetchHttpHandlerOptions
|
|
7
|
-
| Record<string, unknown>
|
|
8
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
9
|
-
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
10
3
|
cacheMiddleware?: boolean;
|
|
11
|
-
protocol:
|
|
12
|
-
| import("@smithy/types").ClientProtocol<any, any>
|
|
13
|
-
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
14
|
-
| typeof import("@aws-sdk/middleware-sdk-s3/s3").S3RestXmlProtocol;
|
|
15
|
-
protocolSettings: {
|
|
16
|
-
defaultNamespace?: string;
|
|
17
|
-
[setting: string]: unknown;
|
|
18
|
-
};
|
|
19
|
-
apiVersion: string;
|
|
20
|
-
sha256: import("@smithy/types").HashConstructor;
|
|
21
|
-
urlParser: import("@smithy/types").UrlParser;
|
|
22
|
-
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
|
-
streamCollector: (
|
|
24
|
-
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
25
|
-
) => Promise<Uint8Array>;
|
|
26
|
-
base64Decoder: import("@smithy/types").Decoder;
|
|
27
|
-
base64Encoder: (_input: Uint8Array | string) => string;
|
|
28
|
-
utf8Decoder: import("@smithy/types").Decoder;
|
|
29
|
-
utf8Encoder: (input: Uint8Array | string) => string;
|
|
30
|
-
disableHostPrefix: boolean;
|
|
31
|
-
serviceId: string;
|
|
32
|
-
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
|
-
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
34
|
-
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
35
|
-
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
36
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
37
|
-
profile?: string;
|
|
38
|
-
defaultUserAgentProvider: (
|
|
39
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
40
|
-
) => Promise<import("@smithy/types").UserAgent>;
|
|
41
|
-
streamHasher:
|
|
42
|
-
| import("@smithy/types").StreamHasher<import("stream").Readable>
|
|
43
|
-
| import("@smithy/types").StreamHasher<Blob>;
|
|
44
|
-
md5: import("@smithy/types").HashConstructor;
|
|
45
|
-
sha1: import("@smithy/types").HashConstructor;
|
|
46
|
-
getAwsChunkedEncodingStream:
|
|
47
|
-
| import("@smithy/types").GetAwsChunkedEncodingStream<any>
|
|
48
|
-
| typeof import("@smithy/core/serde").getAwsChunkedEncodingStream;
|
|
49
|
-
credentialDefaultProvider:
|
|
50
|
-
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
51
|
-
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
52
|
-
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
53
|
-
retryMode: string | import("@smithy/types").Provider<string>;
|
|
54
|
-
logger: import("@smithy/types").Logger;
|
|
55
|
-
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
56
|
-
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
57
|
-
defaultsMode:
|
|
58
|
-
| import("@smithy/core/client").DefaultsMode
|
|
59
|
-
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
60
|
-
signingEscapePath: boolean;
|
|
61
|
-
useArnRegion: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
62
|
-
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
63
|
-
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
64
|
-
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
65
4
|
requestChecksumCalculation?:
|
|
66
5
|
| import("@aws-sdk/checksums/flexible-checksums").RequestChecksumCalculation
|
|
67
6
|
| import("@smithy/types").Provider<
|
|
@@ -82,36 +21,57 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
82
21
|
} & {
|
|
83
22
|
[algorithmId: string]: import("@smithy/types").ChecksumConstructor;
|
|
84
23
|
};
|
|
85
|
-
|
|
24
|
+
forcePathStyle?:
|
|
25
|
+
| (boolean & (boolean | import("@smithy/types").Provider<boolean | undefined>))
|
|
26
|
+
| undefined;
|
|
27
|
+
useAccelerateEndpoint?:
|
|
28
|
+
| (boolean & (boolean | import("@smithy/types").Provider<boolean | undefined>))
|
|
29
|
+
| undefined;
|
|
30
|
+
disableMultiregionAccessPoints?:
|
|
31
|
+
| (boolean & (boolean | import("@smithy/types").Provider<boolean | undefined>))
|
|
32
|
+
| undefined;
|
|
33
|
+
followRegionRedirects?: boolean;
|
|
34
|
+
s3ExpressIdentityProvider?: import("@aws-sdk/middleware-sdk-s3/s3").S3ExpressIdentityProvider;
|
|
35
|
+
bucketEndpoint?: boolean;
|
|
36
|
+
expectContinueHeader?: boolean | number;
|
|
86
37
|
endpoint?:
|
|
87
38
|
| ((
|
|
88
39
|
| string
|
|
89
40
|
| import("@smithy/types").Endpoint
|
|
90
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
91
41
|
| import("@smithy/types").EndpointV2
|
|
42
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
92
43
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
93
44
|
) &
|
|
94
45
|
(
|
|
95
46
|
| string
|
|
96
|
-
| import("@smithy/types").Provider<string>
|
|
97
47
|
| import("@smithy/types").Endpoint
|
|
98
|
-
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
99
48
|
| import("@smithy/types").EndpointV2
|
|
49
|
+
| import("@smithy/types").Provider<string>
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
100
51
|
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
101
52
|
))
|
|
102
53
|
| undefined;
|
|
103
|
-
endpointProvider: (
|
|
104
|
-
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
105
|
-
context?: {
|
|
106
|
-
logger?: import("@smithy/types").Logger;
|
|
107
|
-
},
|
|
108
|
-
) => import("@smithy/types").EndpointV2;
|
|
109
54
|
tls?: boolean;
|
|
110
55
|
ignoreConfiguredEndpointUrls?: boolean;
|
|
111
56
|
serviceConfiguredEndpoint?: never;
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
57
|
+
clientContextParams?: {
|
|
58
|
+
disableS3ExpressSessionAuth?:
|
|
59
|
+
| boolean
|
|
60
|
+
| undefined
|
|
61
|
+
| import("@smithy/types").Provider<boolean | undefined>;
|
|
62
|
+
};
|
|
63
|
+
useGlobalEndpoint?: boolean | undefined | import("@smithy/types").Provider<boolean | undefined>;
|
|
64
|
+
disableS3ExpressSessionAuth?:
|
|
65
|
+
| boolean
|
|
66
|
+
| undefined
|
|
67
|
+
| import("@smithy/types").Provider<boolean | undefined>;
|
|
68
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
69
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
70
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
71
|
+
sigv4aSigningRegionSet?:
|
|
72
|
+
| string[]
|
|
73
|
+
| undefined
|
|
74
|
+
| import("@smithy/types").Provider<string[] | undefined>;
|
|
115
75
|
credentials?:
|
|
116
76
|
| import("@smithy/types").AwsCredentialIdentity
|
|
117
77
|
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
@@ -122,39 +82,77 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
122
82
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
123
83
|
systemClockOffset?: number;
|
|
124
84
|
signingRegion?: string;
|
|
85
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
86
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
87
|
+
apiVersion: string;
|
|
88
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
89
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
90
|
+
disableHostPrefix: boolean;
|
|
91
|
+
endpointProvider: (
|
|
92
|
+
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
93
|
+
context?: {
|
|
94
|
+
logger?: import("@smithy/types").Logger;
|
|
95
|
+
},
|
|
96
|
+
) => import("@smithy/types").EndpointV2;
|
|
97
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
98
|
+
getAwsChunkedEncodingStream:
|
|
99
|
+
| import("@smithy/types").GetAwsChunkedEncodingStream<any>
|
|
100
|
+
| typeof import("@smithy/core/serde").getAwsChunkedEncodingStream;
|
|
101
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3HttpAuthSchemeProvider;
|
|
102
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
103
|
+
logger: import("@smithy/types").Logger;
|
|
104
|
+
md5: import("@smithy/types").HashConstructor;
|
|
105
|
+
protocol:
|
|
106
|
+
| import("@smithy/types").$ClientProtocol<any, any>
|
|
107
|
+
| import("@smithy/types").$ClientProtocolCtor<any, any>
|
|
108
|
+
| typeof import("@aws-sdk/middleware-sdk-s3/s3").S3RestXmlProtocol;
|
|
109
|
+
protocolSettings: {
|
|
110
|
+
[setting: string]: unknown;
|
|
111
|
+
defaultNamespace?: string;
|
|
112
|
+
};
|
|
113
|
+
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
114
|
+
serviceId: string;
|
|
115
|
+
sha1: import("@smithy/types").HashConstructor;
|
|
116
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
125
117
|
signerConstructor:
|
|
126
118
|
| typeof import("@aws-sdk/signature-v4-multi-region").SignatureV4MultiRegion
|
|
127
119
|
| (new (
|
|
128
120
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
129
121
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
130
122
|
) => import("@smithy/types").RequestSigner);
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
| (
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
|
159
|
-
|
|
123
|
+
signingEscapePath: boolean;
|
|
124
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
125
|
+
useArnRegion: boolean | import("@smithy/types").Provider<boolean | undefined> | undefined;
|
|
126
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
127
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
128
|
+
profile?: string;
|
|
129
|
+
defaultsMode:
|
|
130
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>
|
|
131
|
+
| import("@smithy/core/client").DefaultsMode;
|
|
132
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
133
|
+
credentialDefaultProvider:
|
|
134
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
135
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
136
|
+
defaultUserAgentProvider: (
|
|
137
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
138
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
139
|
+
eventStreamSerdeProvider: import("@smithy/types").EventStreamSerdeProvider;
|
|
140
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
141
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
142
|
+
requestHandler:
|
|
143
|
+
| import("@smithy/fetch-http-handler").FetchHttpHandler
|
|
144
|
+
| import("@smithy/types").FetchHttpHandlerOptions
|
|
145
|
+
| import("@smithy/types").NodeHttpHandlerOptions
|
|
146
|
+
| Record<string, unknown>
|
|
147
|
+
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
148
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
149
|
+
streamCollector: (
|
|
150
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
151
|
+
) => Promise<Uint8Array>;
|
|
152
|
+
streamHasher:
|
|
153
|
+
| import("@smithy/types").StreamHasher<Blob>
|
|
154
|
+
| import("@smithy/types").StreamHasher<import("stream").Readable>;
|
|
155
|
+
useDualstackEndpoint: boolean | (() => Promise<boolean>);
|
|
156
|
+
useFipsEndpoint: boolean | (() => Promise<boolean>);
|
|
157
|
+
runtime: string;
|
|
160
158
|
};
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
8
8
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (
|
|
11
|
-
|
|
11
|
+
params: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
12
12
|
context?: {
|
|
13
13
|
logger?: import("@smithy/types").Logger;
|
|
14
14
|
},
|
|
@@ -22,8 +22,8 @@ export declare const getRuntimeConfig: (config: S3ClientConfig) => {
|
|
|
22
22
|
logger: import("@smithy/types").Logger;
|
|
23
23
|
md5: import("@smithy/types").HashConstructor;
|
|
24
24
|
protocol:
|
|
25
|
-
| import("@smithy/types")
|
|
26
|
-
| import("@smithy/types")
|
|
25
|
+
| import("@smithy/types").$ClientProtocol<any, any>
|
|
26
|
+
| import("@smithy/types").$ClientProtocolCtor<any, any>
|
|
27
27
|
| typeof S3RestXmlProtocol;
|
|
28
28
|
protocolSettings: {
|
|
29
29
|
[setting: string]: unknown;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-s3",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1111.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-s3",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -54,12 +54,12 @@
|
|
|
54
54
|
"test:index": "tsc -p tsconfig.test.json && node ./test/index-objects.spec.mjs"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@aws-sdk/checksums": "^3.1000.
|
|
58
|
-
"@aws-sdk/core": "^3.977.
|
|
59
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
60
|
-
"@aws-sdk/middleware-sdk-s3": "^3.972.
|
|
61
|
-
"@aws-sdk/signature-v4-multi-region": "^3.996.
|
|
62
|
-
"@aws-sdk/types": "^3.974.
|
|
57
|
+
"@aws-sdk/checksums": "^3.1000.28",
|
|
58
|
+
"@aws-sdk/core": "^3.977.8",
|
|
59
|
+
"@aws-sdk/credential-provider-node": "^3.972.80",
|
|
60
|
+
"@aws-sdk/middleware-sdk-s3": "^3.972.74",
|
|
61
|
+
"@aws-sdk/signature-v4-multi-region": "^3.996.45",
|
|
62
|
+
"@aws-sdk/types": "^3.974.4",
|
|
63
63
|
"@smithy/core": "^3.31.1",
|
|
64
64
|
"@smithy/fetch-http-handler": "^5.6.13",
|
|
65
65
|
"@smithy/node-http-handler": "^4.9.13",
|
|
@@ -67,14 +67,14 @@
|
|
|
67
67
|
"tslib": "^2.6.2"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@aws-sdk/signature-v4-crt": "3.
|
|
70
|
+
"@aws-sdk/signature-v4-crt": "3.1111.0",
|
|
71
71
|
"@smithy/snapshot-testing": "^2.2.16",
|
|
72
72
|
"@tsconfig/node20": "20.1.8",
|
|
73
73
|
"@types/node": "^20.14.8",
|
|
74
74
|
"concurrently": "7.0.0",
|
|
75
75
|
"downlevel-dts": "0.10.1",
|
|
76
76
|
"premove": "4.0.0",
|
|
77
|
-
"typescript": "~
|
|
77
|
+
"typescript": "~7.0.2",
|
|
78
78
|
"vitest": "^4.0.17"
|
|
79
79
|
},
|
|
80
80
|
"engines": {
|