@aws-sdk/client-fis 3.47.0 → 3.49.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/CHANGELOG.md +35 -0
- package/README.md +2 -2
- package/dist-cjs/protocols/Aws_restJson1.js +6 -0
- package/dist-es/protocols/Aws_restJson1.js +6 -0
- package/dist-types/Fis.d.ts +9 -8
- package/dist-types/FisClient.d.ts +2 -2
- package/dist-types/commands/CreateExperimentTemplateCommand.d.ts +5 -4
- package/dist-types/commands/GetActionCommand.d.ts +1 -1
- package/dist-types/commands/ListActionsCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +26 -12
- package/dist-types/ts3.4/models/models_0.d.ts +4 -0
- package/package.json +40 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,41 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.49.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.48.0...v3.49.0) (2022-01-29)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-fis
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.48.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.2...v3.48.0) (2022-01-22)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **clients:** update clients as of 2022/01/21 ([#3228](https://github.com/aws/aws-sdk-js-v3/issues/3228)) ([fa713ef](https://github.com/aws/aws-sdk-js-v3/commit/fa713efca6b2f424c27535d000359f08830960b1))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [3.47.2](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.1...v3.47.2) (2022-01-21)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/client-fis
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
## [3.47.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.0-release-test-1...v3.47.1) (2022-01-20)
|
|
34
|
+
|
|
35
|
+
**Note:** Version bump only for package @aws-sdk/client-fis
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
6
41
|
# [3.47.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.46.0...v3.47.0) (2022-01-15)
|
|
7
42
|
|
|
8
43
|
|
package/README.md
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
|
|
8
8
|
AWS SDK for JavaScript Fis Client for Node.js, Browser and React Native.
|
|
9
9
|
|
|
10
|
-
<p>
|
|
11
|
-
experiments on your
|
|
10
|
+
<p>Fault Injection Simulator is a managed service that enables you to perform fault injection
|
|
11
|
+
experiments on your Amazon Web Services workloads. For more information, see the <a href="https://docs.aws.amazon.com/fis/latest/userguide/">Fault Injection Simulator User Guide</a>.</p>
|
|
12
12
|
|
|
13
13
|
## Installing
|
|
14
14
|
|
|
@@ -1529,12 +1529,18 @@ const deserializeAws_restJson1ExperimentAction = (output, context) => {
|
|
|
1529
1529
|
return {
|
|
1530
1530
|
actionId: smithy_client_1.expectString(output.actionId),
|
|
1531
1531
|
description: smithy_client_1.expectString(output.description),
|
|
1532
|
+
endTime: output.endTime !== undefined && output.endTime !== null
|
|
1533
|
+
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.endTime)))
|
|
1534
|
+
: undefined,
|
|
1532
1535
|
parameters: output.parameters !== undefined && output.parameters !== null
|
|
1533
1536
|
? deserializeAws_restJson1ExperimentActionParameterMap(output.parameters, context)
|
|
1534
1537
|
: undefined,
|
|
1535
1538
|
startAfter: output.startAfter !== undefined && output.startAfter !== null
|
|
1536
1539
|
? deserializeAws_restJson1ExperimentActionStartAfterList(output.startAfter, context)
|
|
1537
1540
|
: undefined,
|
|
1541
|
+
startTime: output.startTime !== undefined && output.startTime !== null
|
|
1542
|
+
? smithy_client_1.expectNonNull(smithy_client_1.parseEpochTimestamp(smithy_client_1.expectNumber(output.startTime)))
|
|
1543
|
+
: undefined,
|
|
1538
1544
|
state: output.state !== undefined && output.state !== null
|
|
1539
1545
|
? deserializeAws_restJson1ExperimentActionState(output.state, context)
|
|
1540
1546
|
: undefined,
|
|
@@ -1716,12 +1716,18 @@ var deserializeAws_restJson1ExperimentAction = function (output, context) {
|
|
|
1716
1716
|
return {
|
|
1717
1717
|
actionId: __expectString(output.actionId),
|
|
1718
1718
|
description: __expectString(output.description),
|
|
1719
|
+
endTime: output.endTime !== undefined && output.endTime !== null
|
|
1720
|
+
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.endTime)))
|
|
1721
|
+
: undefined,
|
|
1719
1722
|
parameters: output.parameters !== undefined && output.parameters !== null
|
|
1720
1723
|
? deserializeAws_restJson1ExperimentActionParameterMap(output.parameters, context)
|
|
1721
1724
|
: undefined,
|
|
1722
1725
|
startAfter: output.startAfter !== undefined && output.startAfter !== null
|
|
1723
1726
|
? deserializeAws_restJson1ExperimentActionStartAfterList(output.startAfter, context)
|
|
1724
1727
|
: undefined,
|
|
1728
|
+
startTime: output.startTime !== undefined && output.startTime !== null
|
|
1729
|
+
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.startTime)))
|
|
1730
|
+
: undefined,
|
|
1725
1731
|
state: output.state !== undefined && output.state !== null
|
|
1726
1732
|
? deserializeAws_restJson1ExperimentActionState(output.state, context)
|
|
1727
1733
|
: undefined,
|
package/dist-types/Fis.d.ts
CHANGED
|
@@ -15,18 +15,18 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
15
15
|
import { UpdateExperimentTemplateCommandInput, UpdateExperimentTemplateCommandOutput } from "./commands/UpdateExperimentTemplateCommand";
|
|
16
16
|
import { FisClient } from "./FisClient";
|
|
17
17
|
/**
|
|
18
|
-
* <p>
|
|
19
|
-
* experiments on your
|
|
18
|
+
* <p>Fault Injection Simulator is a managed service that enables you to perform fault injection
|
|
19
|
+
* experiments on your Amazon Web Services workloads. For more information, see the <a href="https://docs.aws.amazon.com/fis/latest/userguide/">Fault Injection Simulator User Guide</a>.</p>
|
|
20
20
|
*/
|
|
21
21
|
export declare class Fis extends FisClient {
|
|
22
22
|
/**
|
|
23
23
|
* <p>Creates an experiment template. </p>
|
|
24
|
-
* <p>
|
|
24
|
+
* <p>An experiment template includes the following components:</p>
|
|
25
25
|
* <ul>
|
|
26
26
|
* <li>
|
|
27
27
|
* <p>
|
|
28
|
-
* <b>Targets</b>: A target can be a specific resource
|
|
29
|
-
*
|
|
28
|
+
* <b>Targets</b>: A target can be a specific resource in
|
|
29
|
+
* your Amazon Web Services environment, or one or more resources that match criteria that you
|
|
30
30
|
* specify, for example, resources that have specific tags.</p>
|
|
31
31
|
* </li>
|
|
32
32
|
* <li>
|
|
@@ -41,7 +41,8 @@ export declare class Fis extends FisClient {
|
|
|
41
41
|
* stopped. You can define a stop condition as a CloudWatch alarm.</p>
|
|
42
42
|
* </li>
|
|
43
43
|
* </ul>
|
|
44
|
-
* <p>For more information, see
|
|
44
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/fis/latest/userguide/experiment-templates.html">Experiment templates</a>
|
|
45
|
+
* in the <i>Fault Injection Simulator User Guide</i>.</p>
|
|
45
46
|
*/
|
|
46
47
|
createExperimentTemplate(args: CreateExperimentTemplateCommandInput, options?: __HttpHandlerOptions): Promise<CreateExperimentTemplateCommandOutput>;
|
|
47
48
|
createExperimentTemplate(args: CreateExperimentTemplateCommandInput, cb: (err: any, data?: CreateExperimentTemplateCommandOutput) => void): void;
|
|
@@ -53,7 +54,7 @@ export declare class Fis extends FisClient {
|
|
|
53
54
|
deleteExperimentTemplate(args: DeleteExperimentTemplateCommandInput, cb: (err: any, data?: DeleteExperimentTemplateCommandOutput) => void): void;
|
|
54
55
|
deleteExperimentTemplate(args: DeleteExperimentTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteExperimentTemplateCommandOutput) => void): void;
|
|
55
56
|
/**
|
|
56
|
-
* <p>Gets information about the specified
|
|
57
|
+
* <p>Gets information about the specified FIS action.</p>
|
|
57
58
|
*/
|
|
58
59
|
getAction(args: GetActionCommandInput, options?: __HttpHandlerOptions): Promise<GetActionCommandOutput>;
|
|
59
60
|
getAction(args: GetActionCommandInput, cb: (err: any, data?: GetActionCommandOutput) => void): void;
|
|
@@ -71,7 +72,7 @@ export declare class Fis extends FisClient {
|
|
|
71
72
|
getExperimentTemplate(args: GetExperimentTemplateCommandInput, cb: (err: any, data?: GetExperimentTemplateCommandOutput) => void): void;
|
|
72
73
|
getExperimentTemplate(args: GetExperimentTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetExperimentTemplateCommandOutput) => void): void;
|
|
73
74
|
/**
|
|
74
|
-
* <p>Lists the available
|
|
75
|
+
* <p>Lists the available FIS actions.</p>
|
|
75
76
|
*/
|
|
76
77
|
listActions(args: ListActionsCommandInput, options?: __HttpHandlerOptions): Promise<ListActionsCommandOutput>;
|
|
77
78
|
listActions(args: ListActionsCommandInput, cb: (err: any, data?: ListActionsCommandOutput) => void): void;
|
|
@@ -140,8 +140,8 @@ declare type FisClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpH
|
|
|
140
140
|
export interface FisClientResolvedConfig extends FisClientResolvedConfigType {
|
|
141
141
|
}
|
|
142
142
|
/**
|
|
143
|
-
* <p>
|
|
144
|
-
* experiments on your
|
|
143
|
+
* <p>Fault Injection Simulator is a managed service that enables you to perform fault injection
|
|
144
|
+
* experiments on your Amazon Web Services workloads. For more information, see the <a href="https://docs.aws.amazon.com/fis/latest/userguide/">Fault Injection Simulator User Guide</a>.</p>
|
|
145
145
|
*/
|
|
146
146
|
export declare class FisClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, FisClientResolvedConfig> {
|
|
147
147
|
/**
|
|
@@ -8,12 +8,12 @@ export interface CreateExperimentTemplateCommandOutput extends CreateExperimentT
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>Creates an experiment template. </p>
|
|
11
|
-
* <p>
|
|
11
|
+
* <p>An experiment template includes the following components:</p>
|
|
12
12
|
* <ul>
|
|
13
13
|
* <li>
|
|
14
14
|
* <p>
|
|
15
|
-
* <b>Targets</b>: A target can be a specific resource
|
|
16
|
-
*
|
|
15
|
+
* <b>Targets</b>: A target can be a specific resource in
|
|
16
|
+
* your Amazon Web Services environment, or one or more resources that match criteria that you
|
|
17
17
|
* specify, for example, resources that have specific tags.</p>
|
|
18
18
|
* </li>
|
|
19
19
|
* <li>
|
|
@@ -28,7 +28,8 @@ export interface CreateExperimentTemplateCommandOutput extends CreateExperimentT
|
|
|
28
28
|
* stopped. You can define a stop condition as a CloudWatch alarm.</p>
|
|
29
29
|
* </li>
|
|
30
30
|
* </ul>
|
|
31
|
-
* <p>For more information, see
|
|
31
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/fis/latest/userguide/experiment-templates.html">Experiment templates</a>
|
|
32
|
+
* in the <i>Fault Injection Simulator User Guide</i>.</p>
|
|
32
33
|
* @example
|
|
33
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
35
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface GetActionCommandInput extends GetActionRequest {
|
|
|
7
7
|
export interface GetActionCommandOutput extends GetActionResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Gets information about the specified
|
|
10
|
+
* <p>Gets information about the specified FIS action.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface ListActionsCommandInput extends ListActionsRequest {
|
|
|
7
7
|
export interface ListActionsCommandOutput extends ListActionsResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Lists the available
|
|
10
|
+
* <p>Lists the available FIS actions.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -34,8 +34,8 @@ export declare namespace ActionTarget {
|
|
|
34
34
|
const filterSensitiveLog: (obj: ActionTarget) => any;
|
|
35
35
|
}
|
|
36
36
|
/**
|
|
37
|
-
* <p>Describes an action. For more information, see <a href="https://docs.aws.amazon.com/fis/latest/userguide/fis-actions-reference.html">
|
|
38
|
-
* in the <i>
|
|
37
|
+
* <p>Describes an action. For more information, see <a href="https://docs.aws.amazon.com/fis/latest/userguide/fis-actions-reference.html">FIS actions</a>
|
|
38
|
+
* in the <i>Fault Injection Simulator User Guide</i>.</p>
|
|
39
39
|
*/
|
|
40
40
|
export interface Action {
|
|
41
41
|
/**
|
|
@@ -112,10 +112,12 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
|
112
112
|
}
|
|
113
113
|
/**
|
|
114
114
|
* <p>Specifies an action for an experiment template.</p>
|
|
115
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/fis/latest/userguide/actions.html">Actions</a>
|
|
116
|
+
* in the <i>Fault Injection Simulator User Guide</i>.</p>
|
|
115
117
|
*/
|
|
116
118
|
export interface CreateExperimentTemplateActionInput {
|
|
117
119
|
/**
|
|
118
|
-
* <p>The ID of the action
|
|
120
|
+
* <p>The ID of the action. The format of the action ID is: aws:<i>service-name</i>:<i>action-type</i>.</p>
|
|
119
121
|
*/
|
|
120
122
|
actionId: string | undefined;
|
|
121
123
|
/**
|
|
@@ -168,7 +170,9 @@ export declare namespace CreateExperimentTemplateStopConditionInput {
|
|
|
168
170
|
const filterSensitiveLog: (obj: CreateExperimentTemplateStopConditionInput) => any;
|
|
169
171
|
}
|
|
170
172
|
/**
|
|
171
|
-
* <p>
|
|
173
|
+
* <p>Specifies a filter used for the target resource input in an experiment template.</p>
|
|
174
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/fis/latest/userguide/targets.html#target-filters">Resource filters</a>
|
|
175
|
+
* in the <i>Fault Injection Simulator User Guide</i>.</p>
|
|
172
176
|
*/
|
|
173
177
|
export interface ExperimentTemplateTargetInputFilter {
|
|
174
178
|
/**
|
|
@@ -189,10 +193,12 @@ export declare namespace ExperimentTemplateTargetInputFilter {
|
|
|
189
193
|
/**
|
|
190
194
|
* <p>Specifies a target for an experiment. You must specify at least one Amazon Resource Name (ARN) or
|
|
191
195
|
* at least one resource tag. You cannot specify both ARNs and tags.</p>
|
|
196
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/fis/latest/userguide/targets.html">Targets</a>
|
|
197
|
+
* in the <i>Fault Injection Simulator User Guide</i>.</p>
|
|
192
198
|
*/
|
|
193
199
|
export interface CreateExperimentTemplateTargetInput {
|
|
194
200
|
/**
|
|
195
|
-
* <p>The
|
|
201
|
+
* <p>The Amazon Web Services resource type. The resource type must be supported for the specified action.</p>
|
|
196
202
|
*/
|
|
197
203
|
resourceType: string | undefined;
|
|
198
204
|
/**
|
|
@@ -239,7 +245,7 @@ export interface CreateExperimentTemplateRequest {
|
|
|
239
245
|
*/
|
|
240
246
|
clientToken?: string;
|
|
241
247
|
/**
|
|
242
|
-
* <p>A description for the experiment template
|
|
248
|
+
* <p>A description for the experiment template.</p>
|
|
243
249
|
*/
|
|
244
250
|
description: string | undefined;
|
|
245
251
|
/**
|
|
@@ -259,7 +265,7 @@ export interface CreateExperimentTemplateRequest {
|
|
|
259
265
|
[key: string]: CreateExperimentTemplateActionInput;
|
|
260
266
|
} | undefined;
|
|
261
267
|
/**
|
|
262
|
-
* <p>The Amazon Resource Name (ARN) of an IAM role that grants the
|
|
268
|
+
* <p>The Amazon Resource Name (ARN) of an IAM role that grants the FIS service permission to perform service actions on your behalf.</p>
|
|
263
269
|
*/
|
|
264
270
|
roleArn: string | undefined;
|
|
265
271
|
/**
|
|
@@ -555,6 +561,14 @@ export interface ExperimentAction {
|
|
|
555
561
|
* <p>The state of the action.</p>
|
|
556
562
|
*/
|
|
557
563
|
state?: ExperimentActionState;
|
|
564
|
+
/**
|
|
565
|
+
* <p>The time that the action started.</p>
|
|
566
|
+
*/
|
|
567
|
+
startTime?: Date;
|
|
568
|
+
/**
|
|
569
|
+
* <p>The time that the action ended.</p>
|
|
570
|
+
*/
|
|
571
|
+
endTime?: Date;
|
|
558
572
|
}
|
|
559
573
|
export declare namespace ExperimentAction {
|
|
560
574
|
/**
|
|
@@ -674,7 +688,7 @@ export interface Experiment {
|
|
|
674
688
|
*/
|
|
675
689
|
experimentTemplateId?: string;
|
|
676
690
|
/**
|
|
677
|
-
* <p>The Amazon Resource Name (ARN) of an IAM role that grants the
|
|
691
|
+
* <p>The Amazon Resource Name (ARN) of an IAM role that grants the FIS service permission to perform service actions on your behalf.</p>
|
|
678
692
|
*/
|
|
679
693
|
roleArn?: string;
|
|
680
694
|
/**
|
|
@@ -698,11 +712,11 @@ export interface Experiment {
|
|
|
698
712
|
*/
|
|
699
713
|
stopConditions?: ExperimentStopCondition[];
|
|
700
714
|
/**
|
|
701
|
-
* <p>The time the experiment was created.</p>
|
|
715
|
+
* <p>The time that the experiment was created.</p>
|
|
702
716
|
*/
|
|
703
717
|
creationTime?: Date;
|
|
704
718
|
/**
|
|
705
|
-
* <p>The time that the experiment
|
|
719
|
+
* <p>The time that the experiment started.</p>
|
|
706
720
|
*/
|
|
707
721
|
startTime?: Date;
|
|
708
722
|
/**
|
|
@@ -1151,7 +1165,7 @@ export declare namespace UpdateExperimentTemplateStopConditionInput {
|
|
|
1151
1165
|
*/
|
|
1152
1166
|
export interface UpdateExperimentTemplateTargetInput {
|
|
1153
1167
|
/**
|
|
1154
|
-
* <p>The
|
|
1168
|
+
* <p>The Amazon Web Services resource type. The resource type must be supported for the specified action.</p>
|
|
1155
1169
|
*/
|
|
1156
1170
|
resourceType: string | undefined;
|
|
1157
1171
|
/**
|
|
@@ -1205,7 +1219,7 @@ export interface UpdateExperimentTemplateRequest {
|
|
|
1205
1219
|
[key: string]: UpdateExperimentTemplateActionInputItem;
|
|
1206
1220
|
};
|
|
1207
1221
|
/**
|
|
1208
|
-
* <p>The Amazon Resource Name (ARN) of an IAM role that grants the
|
|
1222
|
+
* <p>The Amazon Resource Name (ARN) of an IAM role that grants the FIS service permission to perform service actions on your behalf.</p>
|
|
1209
1223
|
*/
|
|
1210
1224
|
roleArn?: string;
|
|
1211
1225
|
}
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-fis",
|
|
3
3
|
"description": "AWS SDK for JavaScript Fis Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.49.0",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"build": "yarn
|
|
6
|
+
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
8
8
|
"build:docs": "typedoc",
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
@@ -18,43 +18,49 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
41
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
42
|
-
"@aws-sdk/util-base64-node": "3.
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
49
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.49.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.49.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.49.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.49.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.49.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.49.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.49.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.49.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.49.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.49.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.49.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.49.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.49.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.49.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.49.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.49.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.49.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.49.0",
|
|
39
|
+
"@aws-sdk/types": "3.49.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.49.0",
|
|
41
|
+
"@aws-sdk/util-base64-browser": "3.49.0",
|
|
42
|
+
"@aws-sdk/util-base64-node": "3.49.0",
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.49.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.49.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.49.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.49.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.49.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.49.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.49.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.49.0",
|
|
51
51
|
"tslib": "^2.3.0",
|
|
52
52
|
"uuid": "^8.3.2"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
55
|
+
"@aws-sdk/service-client-documentation-generator": "3.49.0",
|
|
56
|
+
"@tsconfig/recommended": "1.0.1",
|
|
56
57
|
"@types/node": "^12.7.5",
|
|
57
|
-
"@types/uuid": "^8.3.0"
|
|
58
|
+
"@types/uuid": "^8.3.0",
|
|
59
|
+
"concurrently": "7.0.0",
|
|
60
|
+
"downlevel-dts": "0.7.0",
|
|
61
|
+
"rimraf": "3.0.2",
|
|
62
|
+
"typedoc": "0.19.2",
|
|
63
|
+
"typescript": "~4.3.5"
|
|
58
64
|
},
|
|
59
65
|
"engines": {
|
|
60
66
|
"node": ">=12.0.0"
|