@aws-sdk/client-ecs 3.181.0 → 3.183.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 +8 -0
- package/dist-es/ECS.js +210 -217
- package/dist-es/ECSClient.js +22 -28
- package/dist-es/commands/CreateCapacityProviderCommand.js +21 -28
- package/dist-es/commands/CreateClusterCommand.js +21 -28
- package/dist-es/commands/CreateServiceCommand.js +21 -28
- package/dist-es/commands/CreateTaskSetCommand.js +21 -28
- package/dist-es/commands/DeleteAccountSettingCommand.js +21 -28
- package/dist-es/commands/DeleteAttributesCommand.js +21 -28
- package/dist-es/commands/DeleteCapacityProviderCommand.js +21 -28
- package/dist-es/commands/DeleteClusterCommand.js +21 -28
- package/dist-es/commands/DeleteServiceCommand.js +21 -28
- package/dist-es/commands/DeleteTaskSetCommand.js +21 -28
- package/dist-es/commands/DeregisterContainerInstanceCommand.js +21 -28
- package/dist-es/commands/DeregisterTaskDefinitionCommand.js +21 -28
- package/dist-es/commands/DescribeCapacityProvidersCommand.js +21 -28
- package/dist-es/commands/DescribeClustersCommand.js +21 -28
- package/dist-es/commands/DescribeContainerInstancesCommand.js +21 -28
- package/dist-es/commands/DescribeServicesCommand.js +21 -28
- package/dist-es/commands/DescribeTaskDefinitionCommand.js +21 -28
- package/dist-es/commands/DescribeTaskSetsCommand.js +21 -28
- package/dist-es/commands/DescribeTasksCommand.js +21 -28
- package/dist-es/commands/DiscoverPollEndpointCommand.js +21 -28
- package/dist-es/commands/ExecuteCommandCommand.js +21 -28
- package/dist-es/commands/ListAccountSettingsCommand.js +21 -28
- package/dist-es/commands/ListAttributesCommand.js +21 -28
- package/dist-es/commands/ListClustersCommand.js +21 -28
- package/dist-es/commands/ListContainerInstancesCommand.js +21 -28
- package/dist-es/commands/ListServicesCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/ListTaskDefinitionFamiliesCommand.js +21 -28
- package/dist-es/commands/ListTaskDefinitionsCommand.js +21 -28
- package/dist-es/commands/ListTasksCommand.js +21 -28
- package/dist-es/commands/PutAccountSettingCommand.js +21 -28
- package/dist-es/commands/PutAccountSettingDefaultCommand.js +21 -28
- package/dist-es/commands/PutAttributesCommand.js +21 -28
- package/dist-es/commands/PutClusterCapacityProvidersCommand.js +21 -28
- package/dist-es/commands/RegisterContainerInstanceCommand.js +21 -28
- package/dist-es/commands/RegisterTaskDefinitionCommand.js +21 -28
- package/dist-es/commands/RunTaskCommand.js +21 -28
- package/dist-es/commands/StartTaskCommand.js +21 -28
- package/dist-es/commands/StopTaskCommand.js +21 -28
- package/dist-es/commands/SubmitAttachmentStateChangesCommand.js +21 -28
- package/dist-es/commands/SubmitContainerStateChangeCommand.js +21 -28
- package/dist-es/commands/SubmitTaskStateChangeCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/UpdateCapacityProviderCommand.js +21 -28
- package/dist-es/commands/UpdateClusterCommand.js +21 -28
- package/dist-es/commands/UpdateClusterSettingsCommand.js +21 -28
- package/dist-es/commands/UpdateContainerAgentCommand.js +21 -28
- package/dist-es/commands/UpdateContainerInstancesStateCommand.js +21 -28
- package/dist-es/commands/UpdateServiceCommand.js +21 -28
- package/dist-es/commands/UpdateServicePrimaryTaskSetCommand.js +21 -28
- package/dist-es/commands/UpdateTaskSetCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ECSServiceException.js +5 -10
- package/dist-es/models/models_0.js +818 -449
- package/dist-es/pagination/ListAccountSettingsPaginator.js +25 -68
- package/dist-es/pagination/ListAttributesPaginator.js +25 -68
- package/dist-es/pagination/ListClustersPaginator.js +25 -68
- package/dist-es/pagination/ListContainerInstancesPaginator.js +25 -68
- package/dist-es/pagination/ListServicesPaginator.js +25 -68
- package/dist-es/pagination/ListTaskDefinitionFamiliesPaginator.js +25 -68
- package/dist-es/pagination/ListTaskDefinitionsPaginator.js +25 -68
- package/dist-es/pagination/ListTasksPaginator.js +25 -68
- package/dist-es/protocols/Aws_json1_1.js +4630 -5279
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/dist-es/waiters/waitForServicesInactive.js +47 -88
- package/dist-es/waiters/waitForServicesStable.js +72 -123
- package/dist-es/waiters/waitForTasksRunning.js +63 -114
- package/dist-es/waiters/waitForTasksStopped.js +36 -67
- package/package.json +34 -34
|
@@ -1,120 +1,69 @@
|
|
|
1
|
-
import { __assign, __awaiter, __generator, __read, __spreadArray, __values } from "tslib";
|
|
2
1
|
import { checkExceptions, createWaiter, WaiterState } from "@aws-sdk/util-waiter";
|
|
3
2
|
import { DescribeTasksCommand } from "../commands/DescribeTasksCommand";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
});
|
|
21
|
-
return projection_3;
|
|
22
|
-
};
|
|
23
|
-
try {
|
|
24
|
-
for (_a = __values(returnComparator()), _b = _a.next(); !_b.done; _b = _a.next()) {
|
|
25
|
-
anyStringEq_4 = _b.value;
|
|
26
|
-
if (anyStringEq_4 == "STOPPED") {
|
|
27
|
-
return [2, { state: WaiterState.FAILURE, reason: reason }];
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
32
|
-
finally {
|
|
33
|
-
try {
|
|
34
|
-
if (_b && !_b.done && (_g = _a.return)) _g.call(_a);
|
|
35
|
-
}
|
|
36
|
-
finally { if (e_1) throw e_1.error; }
|
|
37
|
-
}
|
|
3
|
+
const checkState = async (client, input) => {
|
|
4
|
+
let reason;
|
|
5
|
+
try {
|
|
6
|
+
const result = await client.send(new DescribeTasksCommand(input));
|
|
7
|
+
reason = result;
|
|
8
|
+
try {
|
|
9
|
+
const returnComparator = () => {
|
|
10
|
+
const flat_1 = [].concat(...result.tasks);
|
|
11
|
+
const projection_3 = flat_1.map((element_2) => {
|
|
12
|
+
return element_2.lastStatus;
|
|
13
|
+
});
|
|
14
|
+
return projection_3;
|
|
15
|
+
};
|
|
16
|
+
for (const anyStringEq_4 of returnComparator()) {
|
|
17
|
+
if (anyStringEq_4 == "STOPPED") {
|
|
18
|
+
return { state: WaiterState.FAILURE, reason };
|
|
38
19
|
}
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
catch (e_2_1) { e_2 = { error: e_2_1 }; }
|
|
57
|
-
finally {
|
|
58
|
-
try {
|
|
59
|
-
if (_d && !_d.done && (_h = _c.return)) _h.call(_c);
|
|
60
|
-
}
|
|
61
|
-
finally { if (e_2) throw e_2.error; }
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
catch (e) { }
|
|
65
|
-
try {
|
|
66
|
-
returnComparator = function () {
|
|
67
|
-
var flat_1 = [].concat.apply([], __spreadArray([], __read(result_1.tasks), false));
|
|
68
|
-
var projection_3 = flat_1.map(function (element_2) {
|
|
69
|
-
return element_2.lastStatus;
|
|
70
|
-
});
|
|
71
|
-
return projection_3;
|
|
72
|
-
};
|
|
73
|
-
allStringEq_5 = returnComparator().length > 0;
|
|
74
|
-
try {
|
|
75
|
-
for (_e = __values(returnComparator()), _f = _e.next(); !_f.done; _f = _e.next()) {
|
|
76
|
-
element_4 = _f.value;
|
|
77
|
-
allStringEq_5 = allStringEq_5 && element_4 == "RUNNING";
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
catch (e_3_1) { e_3 = { error: e_3_1 }; }
|
|
81
|
-
finally {
|
|
82
|
-
try {
|
|
83
|
-
if (_f && !_f.done && (_j = _e.return)) _j.call(_e);
|
|
84
|
-
}
|
|
85
|
-
finally { if (e_3) throw e_3.error; }
|
|
86
|
-
}
|
|
87
|
-
if (allStringEq_5) {
|
|
88
|
-
return [2, { state: WaiterState.SUCCESS, reason: reason }];
|
|
89
|
-
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
catch (e) { }
|
|
23
|
+
try {
|
|
24
|
+
const returnComparator = () => {
|
|
25
|
+
const flat_1 = [].concat(...result.failures);
|
|
26
|
+
const projection_3 = flat_1.map((element_2) => {
|
|
27
|
+
return element_2.reason;
|
|
28
|
+
});
|
|
29
|
+
return projection_3;
|
|
30
|
+
};
|
|
31
|
+
for (const anyStringEq_4 of returnComparator()) {
|
|
32
|
+
if (anyStringEq_4 == "MISSING") {
|
|
33
|
+
return { state: WaiterState.FAILURE, reason };
|
|
90
34
|
}
|
|
91
|
-
|
|
92
|
-
return [3, 3];
|
|
93
|
-
case 2:
|
|
94
|
-
exception_1 = _k.sent();
|
|
95
|
-
reason = exception_1;
|
|
96
|
-
return [3, 3];
|
|
97
|
-
case 3: return [2, { state: WaiterState.RETRY, reason: reason }];
|
|
35
|
+
}
|
|
98
36
|
}
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
case 1:
|
|
116
|
-
result = _a.sent();
|
|
117
|
-
return [2, checkExceptions(result)];
|
|
37
|
+
catch (e) { }
|
|
38
|
+
try {
|
|
39
|
+
const returnComparator = () => {
|
|
40
|
+
const flat_1 = [].concat(...result.tasks);
|
|
41
|
+
const projection_3 = flat_1.map((element_2) => {
|
|
42
|
+
return element_2.lastStatus;
|
|
43
|
+
});
|
|
44
|
+
return projection_3;
|
|
45
|
+
};
|
|
46
|
+
let allStringEq_5 = returnComparator().length > 0;
|
|
47
|
+
for (const element_4 of returnComparator()) {
|
|
48
|
+
allStringEq_5 = allStringEq_5 && element_4 == "RUNNING";
|
|
49
|
+
}
|
|
50
|
+
if (allStringEq_5) {
|
|
51
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
52
|
+
}
|
|
118
53
|
}
|
|
119
|
-
|
|
120
|
-
}
|
|
54
|
+
catch (e) { }
|
|
55
|
+
}
|
|
56
|
+
catch (exception) {
|
|
57
|
+
reason = exception;
|
|
58
|
+
}
|
|
59
|
+
return { state: WaiterState.RETRY, reason };
|
|
60
|
+
};
|
|
61
|
+
export const waitForTasksRunning = async (params, input) => {
|
|
62
|
+
const serviceDefaults = { minDelay: 6, maxDelay: 120 };
|
|
63
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
64
|
+
};
|
|
65
|
+
export const waitUntilTasksRunning = async (params, input) => {
|
|
66
|
+
const serviceDefaults = { minDelay: 6, maxDelay: 120 };
|
|
67
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
68
|
+
return checkExceptions(result);
|
|
69
|
+
};
|
|
@@ -1,70 +1,39 @@
|
|
|
1
|
-
import { __assign, __awaiter, __generator, __read, __spreadArray, __values } from "tslib";
|
|
2
1
|
import { checkExceptions, createWaiter, WaiterState } from "@aws-sdk/util-waiter";
|
|
3
2
|
import { DescribeTasksCommand } from "../commands/DescribeTasksCommand";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
try {
|
|
25
|
-
for (_a = __values(returnComparator()), _b = _a.next(); !_b.done; _b = _a.next()) {
|
|
26
|
-
element_4 = _b.value;
|
|
27
|
-
allStringEq_5 = allStringEq_5 && element_4 == "STOPPED";
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
31
|
-
finally {
|
|
32
|
-
try {
|
|
33
|
-
if (_b && !_b.done && (_c = _a.return)) _c.call(_a);
|
|
34
|
-
}
|
|
35
|
-
finally { if (e_1) throw e_1.error; }
|
|
36
|
-
}
|
|
37
|
-
if (allStringEq_5) {
|
|
38
|
-
return [2, { state: WaiterState.SUCCESS, reason: reason }];
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
catch (e) { }
|
|
42
|
-
return [3, 3];
|
|
43
|
-
case 2:
|
|
44
|
-
exception_1 = _d.sent();
|
|
45
|
-
reason = exception_1;
|
|
46
|
-
return [3, 3];
|
|
47
|
-
case 3: return [2, { state: WaiterState.RETRY, reason: reason }];
|
|
3
|
+
const checkState = async (client, input) => {
|
|
4
|
+
let reason;
|
|
5
|
+
try {
|
|
6
|
+
const result = await client.send(new DescribeTasksCommand(input));
|
|
7
|
+
reason = result;
|
|
8
|
+
try {
|
|
9
|
+
const returnComparator = () => {
|
|
10
|
+
const flat_1 = [].concat(...result.tasks);
|
|
11
|
+
const projection_3 = flat_1.map((element_2) => {
|
|
12
|
+
return element_2.lastStatus;
|
|
13
|
+
});
|
|
14
|
+
return projection_3;
|
|
15
|
+
};
|
|
16
|
+
let allStringEq_5 = returnComparator().length > 0;
|
|
17
|
+
for (const element_4 of returnComparator()) {
|
|
18
|
+
allStringEq_5 = allStringEq_5 && element_4 == "STOPPED";
|
|
19
|
+
}
|
|
20
|
+
if (allStringEq_5) {
|
|
21
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
22
|
+
}
|
|
48
23
|
}
|
|
49
|
-
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
case 1:
|
|
66
|
-
result = _a.sent();
|
|
67
|
-
return [2, checkExceptions(result)];
|
|
68
|
-
}
|
|
69
|
-
});
|
|
70
|
-
}); };
|
|
24
|
+
catch (e) { }
|
|
25
|
+
}
|
|
26
|
+
catch (exception) {
|
|
27
|
+
reason = exception;
|
|
28
|
+
}
|
|
29
|
+
return { state: WaiterState.RETRY, reason };
|
|
30
|
+
};
|
|
31
|
+
export const waitForTasksStopped = async (params, input) => {
|
|
32
|
+
const serviceDefaults = { minDelay: 6, maxDelay: 120 };
|
|
33
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
34
|
+
};
|
|
35
|
+
export const waitUntilTasksStopped = async (params, input) => {
|
|
36
|
+
const serviceDefaults = { minDelay: 6, maxDelay: 120 };
|
|
37
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
38
|
+
return checkExceptions(result);
|
|
39
|
+
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ecs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ecs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.183.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",
|
|
@@ -19,42 +19,42 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
30
|
-
"@aws-sdk/middleware-logger": "3.
|
|
31
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
32
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
-
"@aws-sdk/middleware-serde": "3.
|
|
34
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
-
"@aws-sdk/middleware-stack": "3.
|
|
36
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
37
|
-
"@aws-sdk/node-config-provider": "3.
|
|
38
|
-
"@aws-sdk/node-http-handler": "3.
|
|
39
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
-
"@aws-sdk/types": "3.
|
|
42
|
-
"@aws-sdk/url-parser": "3.
|
|
43
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-node": "3.
|
|
45
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
51
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
52
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
53
|
-
"@aws-sdk/util-waiter": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.183.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.183.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.183.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.183.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.183.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.183.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.183.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.183.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.183.0",
|
|
31
|
+
"@aws-sdk/middleware-recursion-detection": "3.183.0",
|
|
32
|
+
"@aws-sdk/middleware-retry": "3.183.0",
|
|
33
|
+
"@aws-sdk/middleware-serde": "3.183.0",
|
|
34
|
+
"@aws-sdk/middleware-signing": "3.183.0",
|
|
35
|
+
"@aws-sdk/middleware-stack": "3.183.0",
|
|
36
|
+
"@aws-sdk/middleware-user-agent": "3.183.0",
|
|
37
|
+
"@aws-sdk/node-config-provider": "3.183.0",
|
|
38
|
+
"@aws-sdk/node-http-handler": "3.183.0",
|
|
39
|
+
"@aws-sdk/protocol-http": "3.183.0",
|
|
40
|
+
"@aws-sdk/smithy-client": "3.183.0",
|
|
41
|
+
"@aws-sdk/types": "3.183.0",
|
|
42
|
+
"@aws-sdk/url-parser": "3.183.0",
|
|
43
|
+
"@aws-sdk/util-base64-browser": "3.183.0",
|
|
44
|
+
"@aws-sdk/util-base64-node": "3.183.0",
|
|
45
|
+
"@aws-sdk/util-body-length-browser": "3.183.0",
|
|
46
|
+
"@aws-sdk/util-body-length-node": "3.183.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.183.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.183.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-browser": "3.183.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "3.183.0",
|
|
51
|
+
"@aws-sdk/util-utf8-browser": "3.183.0",
|
|
52
|
+
"@aws-sdk/util-utf8-node": "3.183.0",
|
|
53
|
+
"@aws-sdk/util-waiter": "3.183.0",
|
|
54
54
|
"tslib": "^2.3.1"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
57
|
+
"@aws-sdk/service-client-documentation-generator": "3.183.0",
|
|
58
58
|
"@tsconfig/recommended": "1.0.1",
|
|
59
59
|
"@types/node": "^12.7.5",
|
|
60
60
|
"concurrently": "7.0.0",
|