@aws-sdk/client-firehose 3.289.0 → 3.290.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/commands/CreateDeliveryStreamCommand.d.ts +17 -0
- package/dist-types/commands/DeleteDeliveryStreamCommand.d.ts +7 -0
- package/dist-types/commands/DescribeDeliveryStreamCommand.d.ts +4 -0
- package/dist-types/commands/ListDeliveryStreamsCommand.d.ts +1 -0
- package/dist-types/commands/ListTagsForDeliveryStreamCommand.d.ts +10 -0
- package/dist-types/commands/PutRecordBatchCommand.d.ts +20 -0
- package/dist-types/commands/PutRecordCommand.d.ts +20 -0
- package/dist-types/commands/StartDeliveryStreamEncryptionCommand.d.ts +20 -0
- package/dist-types/commands/StopDeliveryStreamEncryptionCommand.d.ts +13 -0
- package/dist-types/commands/TagDeliveryStreamCommand.d.ts +13 -0
- package/dist-types/commands/UntagDeliveryStreamCommand.d.ts +13 -0
- package/dist-types/commands/UpdateDestinationCommand.d.ts +14 -0
- package/package.json +29 -29
|
@@ -98,6 +98,23 @@ export interface CreateDeliveryStreamCommandOutput extends CreateDeliveryStreamO
|
|
|
98
98
|
* @see {@link CreateDeliveryStreamCommandOutput} for command's `response` shape.
|
|
99
99
|
* @see {@link FirehoseClientResolvedConfig | config} for FirehoseClient's `config` shape.
|
|
100
100
|
*
|
|
101
|
+
* @throws {@link InvalidArgumentException} (client fault)
|
|
102
|
+
* <p>The specified input parameter has a value that is not valid.</p>
|
|
103
|
+
*
|
|
104
|
+
* @throws {@link InvalidKMSResourceException} (client fault)
|
|
105
|
+
* <p>Kinesis Data Firehose throws this exception when an attempt to put records or to start
|
|
106
|
+
* or stop delivery stream encryption fails. This happens when the KMS service throws one of
|
|
107
|
+
* the following exception types: <code>AccessDeniedException</code>,
|
|
108
|
+
* <code>InvalidStateException</code>, <code>DisabledException</code>, or
|
|
109
|
+
* <code>NotFoundException</code>.</p>
|
|
110
|
+
*
|
|
111
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
112
|
+
* <p>You have already reached the limit for a requested resource.</p>
|
|
113
|
+
*
|
|
114
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
115
|
+
* <p>The resource is already in use and not available for this operation.</p>
|
|
116
|
+
*
|
|
117
|
+
*
|
|
101
118
|
*/
|
|
102
119
|
export declare class CreateDeliveryStreamCommand extends $Command<CreateDeliveryStreamCommandInput, CreateDeliveryStreamCommandOutput, FirehoseClientResolvedConfig> {
|
|
103
120
|
readonly input: CreateDeliveryStreamCommandInput;
|
|
@@ -38,6 +38,13 @@ export interface DeleteDeliveryStreamCommandOutput extends DeleteDeliveryStreamO
|
|
|
38
38
|
* @see {@link DeleteDeliveryStreamCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link FirehoseClientResolvedConfig | config} for FirehoseClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
42
|
+
* <p>The resource is already in use and not available for this operation.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>The specified resource could not be found.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
41
48
|
*/
|
|
42
49
|
export declare class DeleteDeliveryStreamCommand extends $Command<DeleteDeliveryStreamCommandInput, DeleteDeliveryStreamCommandOutput, FirehoseClientResolvedConfig> {
|
|
43
50
|
readonly input: DeleteDeliveryStreamCommandInput;
|
|
@@ -35,6 +35,10 @@ export interface DescribeDeliveryStreamCommandOutput extends DescribeDeliveryStr
|
|
|
35
35
|
* @see {@link DescribeDeliveryStreamCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link FirehoseClientResolvedConfig | config} for FirehoseClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* <p>The specified resource could not be found.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
38
42
|
*/
|
|
39
43
|
export declare class DescribeDeliveryStreamCommand extends $Command<DescribeDeliveryStreamCommandInput, DescribeDeliveryStreamCommandOutput, FirehoseClientResolvedConfig> {
|
|
40
44
|
readonly input: DescribeDeliveryStreamCommandInput;
|
|
@@ -36,6 +36,7 @@ export interface ListDeliveryStreamsCommandOutput extends ListDeliveryStreamsOut
|
|
|
36
36
|
* @see {@link ListDeliveryStreamsCommandOutput} for command's `response` shape.
|
|
37
37
|
* @see {@link FirehoseClientResolvedConfig | config} for FirehoseClient's `config` shape.
|
|
38
38
|
*
|
|
39
|
+
*
|
|
39
40
|
*/
|
|
40
41
|
export declare class ListDeliveryStreamsCommand extends $Command<ListDeliveryStreamsCommandInput, ListDeliveryStreamsCommandOutput, FirehoseClientResolvedConfig> {
|
|
41
42
|
readonly input: ListDeliveryStreamsCommandInput;
|
|
@@ -30,6 +30,16 @@ export interface ListTagsForDeliveryStreamCommandOutput extends ListTagsForDeliv
|
|
|
30
30
|
* @see {@link ListTagsForDeliveryStreamCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link FirehoseClientResolvedConfig | config} for FirehoseClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link InvalidArgumentException} (client fault)
|
|
34
|
+
* <p>The specified input parameter has a value that is not valid.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
37
|
+
* <p>You have already reached the limit for a requested resource.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
40
|
+
* <p>The specified resource could not be found.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
*/
|
|
34
44
|
export declare class ListTagsForDeliveryStreamCommand extends $Command<ListTagsForDeliveryStreamCommandInput, ListTagsForDeliveryStreamCommandOutput, FirehoseClientResolvedConfig> {
|
|
35
45
|
readonly input: ListTagsForDeliveryStreamCommandInput;
|
|
@@ -79,6 +79,26 @@ export interface PutRecordBatchCommandOutput extends PutRecordBatchOutput, __Met
|
|
|
79
79
|
* @see {@link PutRecordBatchCommandOutput} for command's `response` shape.
|
|
80
80
|
* @see {@link FirehoseClientResolvedConfig | config} for FirehoseClient's `config` shape.
|
|
81
81
|
*
|
|
82
|
+
* @throws {@link InvalidArgumentException} (client fault)
|
|
83
|
+
* <p>The specified input parameter has a value that is not valid.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link InvalidKMSResourceException} (client fault)
|
|
86
|
+
* <p>Kinesis Data Firehose throws this exception when an attempt to put records or to start
|
|
87
|
+
* or stop delivery stream encryption fails. This happens when the KMS service throws one of
|
|
88
|
+
* the following exception types: <code>AccessDeniedException</code>,
|
|
89
|
+
* <code>InvalidStateException</code>, <code>DisabledException</code>, or
|
|
90
|
+
* <code>NotFoundException</code>.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
93
|
+
* <p>The specified resource could not be found.</p>
|
|
94
|
+
*
|
|
95
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
96
|
+
* <p>The service is unavailable. Back off and retry the operation. If you continue to see
|
|
97
|
+
* the exception, throughput limits for the delivery stream may have been exceeded. For more
|
|
98
|
+
* information about limits and how to request an increase, see <a href="https://docs.aws.amazon.com/firehose/latest/dev/limits.html">Amazon Kinesis Data Firehose
|
|
99
|
+
* Limits</a>.</p>
|
|
100
|
+
*
|
|
101
|
+
*
|
|
82
102
|
*/
|
|
83
103
|
export declare class PutRecordBatchCommand extends $Command<PutRecordBatchCommandInput, PutRecordBatchCommandOutput, FirehoseClientResolvedConfig> {
|
|
84
104
|
readonly input: PutRecordBatchCommandInput;
|
|
@@ -60,6 +60,26 @@ export interface PutRecordCommandOutput extends PutRecordOutput, __MetadataBeare
|
|
|
60
60
|
* @see {@link PutRecordCommandOutput} for command's `response` shape.
|
|
61
61
|
* @see {@link FirehoseClientResolvedConfig | config} for FirehoseClient's `config` shape.
|
|
62
62
|
*
|
|
63
|
+
* @throws {@link InvalidArgumentException} (client fault)
|
|
64
|
+
* <p>The specified input parameter has a value that is not valid.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link InvalidKMSResourceException} (client fault)
|
|
67
|
+
* <p>Kinesis Data Firehose throws this exception when an attempt to put records or to start
|
|
68
|
+
* or stop delivery stream encryption fails. This happens when the KMS service throws one of
|
|
69
|
+
* the following exception types: <code>AccessDeniedException</code>,
|
|
70
|
+
* <code>InvalidStateException</code>, <code>DisabledException</code>, or
|
|
71
|
+
* <code>NotFoundException</code>.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
74
|
+
* <p>The specified resource could not be found.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link ServiceUnavailableException} (server fault)
|
|
77
|
+
* <p>The service is unavailable. Back off and retry the operation. If you continue to see
|
|
78
|
+
* the exception, throughput limits for the delivery stream may have been exceeded. For more
|
|
79
|
+
* information about limits and how to request an increase, see <a href="https://docs.aws.amazon.com/firehose/latest/dev/limits.html">Amazon Kinesis Data Firehose
|
|
80
|
+
* Limits</a>.</p>
|
|
81
|
+
*
|
|
82
|
+
*
|
|
63
83
|
*/
|
|
64
84
|
export declare class PutRecordCommand extends $Command<PutRecordCommandInput, PutRecordCommandOutput, FirehoseClientResolvedConfig> {
|
|
65
85
|
readonly input: PutRecordCommandInput;
|
|
@@ -64,6 +64,26 @@ export interface StartDeliveryStreamEncryptionCommandOutput extends StartDeliver
|
|
|
64
64
|
* @see {@link StartDeliveryStreamEncryptionCommandOutput} for command's `response` shape.
|
|
65
65
|
* @see {@link FirehoseClientResolvedConfig | config} for FirehoseClient's `config` shape.
|
|
66
66
|
*
|
|
67
|
+
* @throws {@link InvalidArgumentException} (client fault)
|
|
68
|
+
* <p>The specified input parameter has a value that is not valid.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link InvalidKMSResourceException} (client fault)
|
|
71
|
+
* <p>Kinesis Data Firehose throws this exception when an attempt to put records or to start
|
|
72
|
+
* or stop delivery stream encryption fails. This happens when the KMS service throws one of
|
|
73
|
+
* the following exception types: <code>AccessDeniedException</code>,
|
|
74
|
+
* <code>InvalidStateException</code>, <code>DisabledException</code>, or
|
|
75
|
+
* <code>NotFoundException</code>.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
78
|
+
* <p>You have already reached the limit for a requested resource.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
81
|
+
* <p>The resource is already in use and not available for this operation.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
84
|
+
* <p>The specified resource could not be found.</p>
|
|
85
|
+
*
|
|
86
|
+
*
|
|
67
87
|
*/
|
|
68
88
|
export declare class StartDeliveryStreamEncryptionCommand extends $Command<StartDeliveryStreamEncryptionCommandInput, StartDeliveryStreamEncryptionCommandOutput, FirehoseClientResolvedConfig> {
|
|
69
89
|
readonly input: StartDeliveryStreamEncryptionCommandInput;
|
|
@@ -48,6 +48,19 @@ export interface StopDeliveryStreamEncryptionCommandOutput extends StopDeliveryS
|
|
|
48
48
|
* @see {@link StopDeliveryStreamEncryptionCommandOutput} for command's `response` shape.
|
|
49
49
|
* @see {@link FirehoseClientResolvedConfig | config} for FirehoseClient's `config` shape.
|
|
50
50
|
*
|
|
51
|
+
* @throws {@link InvalidArgumentException} (client fault)
|
|
52
|
+
* <p>The specified input parameter has a value that is not valid.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
55
|
+
* <p>You have already reached the limit for a requested resource.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
58
|
+
* <p>The resource is already in use and not available for this operation.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
61
|
+
* <p>The specified resource could not be found.</p>
|
|
62
|
+
*
|
|
63
|
+
*
|
|
51
64
|
*/
|
|
52
65
|
export declare class StopDeliveryStreamEncryptionCommand extends $Command<StopDeliveryStreamEncryptionCommandInput, StopDeliveryStreamEncryptionCommandOutput, FirehoseClientResolvedConfig> {
|
|
53
66
|
readonly input: StopDeliveryStreamEncryptionCommandInput;
|
|
@@ -38,6 +38,19 @@ export interface TagDeliveryStreamCommandOutput extends TagDeliveryStreamOutput,
|
|
|
38
38
|
* @see {@link TagDeliveryStreamCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link FirehoseClientResolvedConfig | config} for FirehoseClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link InvalidArgumentException} (client fault)
|
|
42
|
+
* <p>The specified input parameter has a value that is not valid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>You have already reached the limit for a requested resource.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
48
|
+
* <p>The resource is already in use and not available for this operation.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
51
|
+
* <p>The specified resource could not be found.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
41
54
|
*/
|
|
42
55
|
export declare class TagDeliveryStreamCommand extends $Command<TagDeliveryStreamCommandInput, TagDeliveryStreamCommandOutput, FirehoseClientResolvedConfig> {
|
|
43
56
|
readonly input: TagDeliveryStreamCommandInput;
|
|
@@ -32,6 +32,19 @@ export interface UntagDeliveryStreamCommandOutput extends UntagDeliveryStreamOut
|
|
|
32
32
|
* @see {@link UntagDeliveryStreamCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link FirehoseClientResolvedConfig | config} for FirehoseClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InvalidArgumentException} (client fault)
|
|
36
|
+
* <p>The specified input parameter has a value that is not valid.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
39
|
+
* <p>You have already reached the limit for a requested resource.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
42
|
+
* <p>The resource is already in use and not available for this operation.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>The specified resource could not be found.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
35
48
|
*/
|
|
36
49
|
export declare class UntagDeliveryStreamCommand extends $Command<UntagDeliveryStreamCommandInput, UntagDeliveryStreamCommandOutput, FirehoseClientResolvedConfig> {
|
|
37
50
|
readonly input: UntagDeliveryStreamCommandInput;
|
|
@@ -52,6 +52,20 @@ export interface UpdateDestinationCommandOutput extends UpdateDestinationOutput,
|
|
|
52
52
|
* @see {@link UpdateDestinationCommandOutput} for command's `response` shape.
|
|
53
53
|
* @see {@link FirehoseClientResolvedConfig | config} for FirehoseClient's `config` shape.
|
|
54
54
|
*
|
|
55
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
56
|
+
* <p>Another modification has already happened. Fetch <code>VersionId</code> again and use
|
|
57
|
+
* it to update the destination.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link InvalidArgumentException} (client fault)
|
|
60
|
+
* <p>The specified input parameter has a value that is not valid.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
63
|
+
* <p>The resource is already in use and not available for this operation.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
66
|
+
* <p>The specified resource could not be found.</p>
|
|
67
|
+
*
|
|
68
|
+
*
|
|
55
69
|
*/
|
|
56
70
|
export declare class UpdateDestinationCommand extends $Command<UpdateDestinationCommandInput, UpdateDestinationCommandOutput, FirehoseClientResolvedConfig> {
|
|
57
71
|
readonly input: UpdateDestinationCommandInput;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-firehose",
|
|
3
3
|
"description": "AWS SDK for JavaScript Firehose Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.290.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",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|