@aws-sdk/client-s3 3.254.0 → 3.256.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-types/S3Client.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import { S3InputConfig, S3ResolvedConfig } from "@aws-sdk/middleware-sdk-s3";
|
|
|
8
8
|
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
9
9
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
10
10
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
11
|
-
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
11
|
+
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
12
12
|
import { BodyLengthCalculator as __BodyLengthCalculator, ChecksumConstructor as __ChecksumConstructor, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, EventStreamSerdeProvider as __EventStreamSerdeProvider, GetAwsChunkedEncodingStream, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, SdkStreamMixinInjector as __SdkStreamMixinInjector, StreamCollector as __StreamCollector, StreamHasher as __StreamHasher, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
13
13
|
import { Readable } from "stream";
|
|
14
14
|
import { AbortMultipartUploadCommandInput, AbortMultipartUploadCommandOutput } from "./commands/AbortMultipartUploadCommand";
|
|
@@ -238,9 +238,9 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
238
238
|
*/
|
|
239
239
|
eventStreamSerdeProvider?: __EventStreamSerdeProvider;
|
|
240
240
|
/**
|
|
241
|
-
* The {@link
|
|
241
|
+
* The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
242
242
|
*/
|
|
243
|
-
defaultsMode?:
|
|
243
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
244
244
|
/**
|
|
245
245
|
* The internal function that inject utilities to runtime-specific stream to help users consume the data
|
|
246
246
|
* @internal
|
|
@@ -30,7 +30,7 @@ import {
|
|
|
30
30
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
31
31
|
import {
|
|
32
32
|
Client as __Client,
|
|
33
|
-
DefaultsMode,
|
|
33
|
+
DefaultsMode as __DefaultsMode,
|
|
34
34
|
SmithyConfiguration as __SmithyConfiguration,
|
|
35
35
|
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
36
36
|
} from "@aws-sdk/smithy-client";
|
|
@@ -648,7 +648,7 @@ export interface ClientDefaults
|
|
|
648
648
|
sha1?: __ChecksumConstructor | __HashConstructor;
|
|
649
649
|
getAwsChunkedEncodingStream?: GetAwsChunkedEncodingStream;
|
|
650
650
|
eventStreamSerdeProvider?: __EventStreamSerdeProvider;
|
|
651
|
-
defaultsMode?:
|
|
651
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
652
652
|
sdkStreamMixin?: __SdkStreamMixinInjector;
|
|
653
653
|
}
|
|
654
654
|
declare type S3ClientConfigType = Partial<
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-s3",
|
|
3
3
|
"description": "AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.256.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"@aws-crypto/sha1-browser": "3.0.0",
|
|
25
25
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
26
26
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
27
|
-
"@aws-sdk/client-sts": "3.
|
|
27
|
+
"@aws-sdk/client-sts": "3.256.0",
|
|
28
28
|
"@aws-sdk/config-resolver": "3.254.0",
|
|
29
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
29
|
+
"@aws-sdk/credential-provider-node": "3.256.0",
|
|
30
30
|
"@aws-sdk/eventstream-serde-browser": "3.254.0",
|
|
31
31
|
"@aws-sdk/eventstream-serde-config-resolver": "3.254.0",
|
|
32
32
|
"@aws-sdk/eventstream-serde-node": "3.254.0",
|