@aws-sdk/client-iot-events-data 3.301.0 → 3.306.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/models/models_0.js +36 -42
- package/dist-es/models/models_0.js +36 -42
- package/dist-types/models/models_0.d.ts +66 -36
- package/dist-types/ts3.4/models/models_0.d.ts +45 -36
- package/package.json +34 -34
|
@@ -2,48 +2,42 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ResourceNotFoundException = exports.ThrottlingException = exports.ServiceUnavailableException = exports.InvalidRequestException = exports.InternalFailureException = exports.ErrorCode = exports.TriggerType = exports.EventType = exports.AlarmStateName = exports.ComparisonOperator = exports.CustomerActionName = void 0;
|
|
4
4
|
const IoTEventsDataServiceException_1 = require("./IoTEventsDataServiceException");
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
ErrorCode["InternalFailureException"] = "InternalFailureException";
|
|
42
|
-
ErrorCode["InvalidRequestException"] = "InvalidRequestException";
|
|
43
|
-
ErrorCode["ResourceNotFoundException"] = "ResourceNotFoundException";
|
|
44
|
-
ErrorCode["ServiceUnavailableException"] = "ServiceUnavailableException";
|
|
45
|
-
ErrorCode["ThrottlingException"] = "ThrottlingException";
|
|
46
|
-
})(ErrorCode = exports.ErrorCode || (exports.ErrorCode = {}));
|
|
5
|
+
exports.CustomerActionName = {
|
|
6
|
+
ACKNOWLEDGE: "ACKNOWLEDGE",
|
|
7
|
+
DISABLE: "DISABLE",
|
|
8
|
+
ENABLE: "ENABLE",
|
|
9
|
+
RESET: "RESET",
|
|
10
|
+
SNOOZE: "SNOOZE",
|
|
11
|
+
};
|
|
12
|
+
exports.ComparisonOperator = {
|
|
13
|
+
EQUAL: "EQUAL",
|
|
14
|
+
GREATER: "GREATER",
|
|
15
|
+
GREATER_OR_EQUAL: "GREATER_OR_EQUAL",
|
|
16
|
+
LESS: "LESS",
|
|
17
|
+
LESS_OR_EQUAL: "LESS_OR_EQUAL",
|
|
18
|
+
NOT_EQUAL: "NOT_EQUAL",
|
|
19
|
+
};
|
|
20
|
+
exports.AlarmStateName = {
|
|
21
|
+
ACKNOWLEDGED: "ACKNOWLEDGED",
|
|
22
|
+
ACTIVE: "ACTIVE",
|
|
23
|
+
DISABLED: "DISABLED",
|
|
24
|
+
LATCHED: "LATCHED",
|
|
25
|
+
NORMAL: "NORMAL",
|
|
26
|
+
SNOOZE_DISABLED: "SNOOZE_DISABLED",
|
|
27
|
+
};
|
|
28
|
+
exports.EventType = {
|
|
29
|
+
STATE_CHANGE: "STATE_CHANGE",
|
|
30
|
+
};
|
|
31
|
+
exports.TriggerType = {
|
|
32
|
+
SNOOZE_TIMEOUT: "SNOOZE_TIMEOUT",
|
|
33
|
+
};
|
|
34
|
+
exports.ErrorCode = {
|
|
35
|
+
InternalFailureException: "InternalFailureException",
|
|
36
|
+
InvalidRequestException: "InvalidRequestException",
|
|
37
|
+
ResourceNotFoundException: "ResourceNotFoundException",
|
|
38
|
+
ServiceUnavailableException: "ServiceUnavailableException",
|
|
39
|
+
ThrottlingException: "ThrottlingException",
|
|
40
|
+
};
|
|
47
41
|
class InternalFailureException extends IoTEventsDataServiceException_1.IoTEventsDataServiceException {
|
|
48
42
|
constructor(opts) {
|
|
49
43
|
super({
|
|
@@ -1,46 +1,40 @@
|
|
|
1
1
|
import { IoTEventsDataServiceException as __BaseException } from "./IoTEventsDataServiceException";
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
}
|
|
28
|
-
export
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
ErrorCode["InternalFailureException"] = "InternalFailureException";
|
|
39
|
-
ErrorCode["InvalidRequestException"] = "InvalidRequestException";
|
|
40
|
-
ErrorCode["ResourceNotFoundException"] = "ResourceNotFoundException";
|
|
41
|
-
ErrorCode["ServiceUnavailableException"] = "ServiceUnavailableException";
|
|
42
|
-
ErrorCode["ThrottlingException"] = "ThrottlingException";
|
|
43
|
-
})(ErrorCode || (ErrorCode = {}));
|
|
2
|
+
export const CustomerActionName = {
|
|
3
|
+
ACKNOWLEDGE: "ACKNOWLEDGE",
|
|
4
|
+
DISABLE: "DISABLE",
|
|
5
|
+
ENABLE: "ENABLE",
|
|
6
|
+
RESET: "RESET",
|
|
7
|
+
SNOOZE: "SNOOZE",
|
|
8
|
+
};
|
|
9
|
+
export const ComparisonOperator = {
|
|
10
|
+
EQUAL: "EQUAL",
|
|
11
|
+
GREATER: "GREATER",
|
|
12
|
+
GREATER_OR_EQUAL: "GREATER_OR_EQUAL",
|
|
13
|
+
LESS: "LESS",
|
|
14
|
+
LESS_OR_EQUAL: "LESS_OR_EQUAL",
|
|
15
|
+
NOT_EQUAL: "NOT_EQUAL",
|
|
16
|
+
};
|
|
17
|
+
export const AlarmStateName = {
|
|
18
|
+
ACKNOWLEDGED: "ACKNOWLEDGED",
|
|
19
|
+
ACTIVE: "ACTIVE",
|
|
20
|
+
DISABLED: "DISABLED",
|
|
21
|
+
LATCHED: "LATCHED",
|
|
22
|
+
NORMAL: "NORMAL",
|
|
23
|
+
SNOOZE_DISABLED: "SNOOZE_DISABLED",
|
|
24
|
+
};
|
|
25
|
+
export const EventType = {
|
|
26
|
+
STATE_CHANGE: "STATE_CHANGE",
|
|
27
|
+
};
|
|
28
|
+
export const TriggerType = {
|
|
29
|
+
SNOOZE_TIMEOUT: "SNOOZE_TIMEOUT",
|
|
30
|
+
};
|
|
31
|
+
export const ErrorCode = {
|
|
32
|
+
InternalFailureException: "InternalFailureException",
|
|
33
|
+
InvalidRequestException: "InvalidRequestException",
|
|
34
|
+
ResourceNotFoundException: "ResourceNotFoundException",
|
|
35
|
+
ServiceUnavailableException: "ServiceUnavailableException",
|
|
36
|
+
ThrottlingException: "ThrottlingException",
|
|
37
|
+
};
|
|
44
38
|
export class InternalFailureException extends __BaseException {
|
|
45
39
|
constructor(opts) {
|
|
46
40
|
super({
|
|
@@ -35,14 +35,19 @@ export interface AcknowledgeAlarmActionRequest {
|
|
|
35
35
|
}
|
|
36
36
|
/**
|
|
37
37
|
* @public
|
|
38
|
+
* @enum
|
|
38
39
|
*/
|
|
39
|
-
export declare
|
|
40
|
-
ACKNOWLEDGE
|
|
41
|
-
DISABLE
|
|
42
|
-
ENABLE
|
|
43
|
-
RESET
|
|
44
|
-
SNOOZE
|
|
45
|
-
}
|
|
40
|
+
export declare const CustomerActionName: {
|
|
41
|
+
readonly ACKNOWLEDGE: "ACKNOWLEDGE";
|
|
42
|
+
readonly DISABLE: "DISABLE";
|
|
43
|
+
readonly ENABLE: "ENABLE";
|
|
44
|
+
readonly RESET: "RESET";
|
|
45
|
+
readonly SNOOZE: "SNOOZE";
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
export type CustomerActionName = (typeof CustomerActionName)[keyof typeof CustomerActionName];
|
|
46
51
|
/**
|
|
47
52
|
* @public
|
|
48
53
|
* <p>Contains the configuration information of a disable action.</p>
|
|
@@ -142,15 +147,20 @@ export interface CustomerAction {
|
|
|
142
147
|
}
|
|
143
148
|
/**
|
|
144
149
|
* @public
|
|
150
|
+
* @enum
|
|
145
151
|
*/
|
|
146
|
-
export declare
|
|
147
|
-
EQUAL
|
|
148
|
-
GREATER
|
|
149
|
-
GREATER_OR_EQUAL
|
|
150
|
-
LESS
|
|
151
|
-
LESS_OR_EQUAL
|
|
152
|
-
NOT_EQUAL
|
|
153
|
-
}
|
|
152
|
+
export declare const ComparisonOperator: {
|
|
153
|
+
readonly EQUAL: "EQUAL";
|
|
154
|
+
readonly GREATER: "GREATER";
|
|
155
|
+
readonly GREATER_OR_EQUAL: "GREATER_OR_EQUAL";
|
|
156
|
+
readonly LESS: "LESS";
|
|
157
|
+
readonly LESS_OR_EQUAL: "LESS_OR_EQUAL";
|
|
158
|
+
readonly NOT_EQUAL: "NOT_EQUAL";
|
|
159
|
+
};
|
|
160
|
+
/**
|
|
161
|
+
* @public
|
|
162
|
+
*/
|
|
163
|
+
export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
154
164
|
/**
|
|
155
165
|
* @public
|
|
156
166
|
* <p>Information needed to compare two values with a comparison operator.</p>
|
|
@@ -181,27 +191,42 @@ export interface RuleEvaluation {
|
|
|
181
191
|
}
|
|
182
192
|
/**
|
|
183
193
|
* @public
|
|
194
|
+
* @enum
|
|
184
195
|
*/
|
|
185
|
-
export declare
|
|
186
|
-
ACKNOWLEDGED
|
|
187
|
-
ACTIVE
|
|
188
|
-
DISABLED
|
|
189
|
-
LATCHED
|
|
190
|
-
NORMAL
|
|
191
|
-
SNOOZE_DISABLED
|
|
192
|
-
}
|
|
196
|
+
export declare const AlarmStateName: {
|
|
197
|
+
readonly ACKNOWLEDGED: "ACKNOWLEDGED";
|
|
198
|
+
readonly ACTIVE: "ACTIVE";
|
|
199
|
+
readonly DISABLED: "DISABLED";
|
|
200
|
+
readonly LATCHED: "LATCHED";
|
|
201
|
+
readonly NORMAL: "NORMAL";
|
|
202
|
+
readonly SNOOZE_DISABLED: "SNOOZE_DISABLED";
|
|
203
|
+
};
|
|
193
204
|
/**
|
|
194
205
|
* @public
|
|
195
206
|
*/
|
|
196
|
-
export
|
|
197
|
-
STATE_CHANGE = "STATE_CHANGE"
|
|
198
|
-
}
|
|
207
|
+
export type AlarmStateName = (typeof AlarmStateName)[keyof typeof AlarmStateName];
|
|
199
208
|
/**
|
|
200
209
|
* @public
|
|
210
|
+
* @enum
|
|
201
211
|
*/
|
|
202
|
-
export declare
|
|
203
|
-
|
|
204
|
-
}
|
|
212
|
+
export declare const EventType: {
|
|
213
|
+
readonly STATE_CHANGE: "STATE_CHANGE";
|
|
214
|
+
};
|
|
215
|
+
/**
|
|
216
|
+
* @public
|
|
217
|
+
*/
|
|
218
|
+
export type EventType = (typeof EventType)[keyof typeof EventType];
|
|
219
|
+
/**
|
|
220
|
+
* @public
|
|
221
|
+
* @enum
|
|
222
|
+
*/
|
|
223
|
+
export declare const TriggerType: {
|
|
224
|
+
readonly SNOOZE_TIMEOUT: "SNOOZE_TIMEOUT";
|
|
225
|
+
};
|
|
226
|
+
/**
|
|
227
|
+
* @public
|
|
228
|
+
*/
|
|
229
|
+
export type TriggerType = (typeof TriggerType)[keyof typeof TriggerType];
|
|
205
230
|
/**
|
|
206
231
|
* @public
|
|
207
232
|
* <p>Contains the configuration information of alarm state changes.</p>
|
|
@@ -397,14 +422,19 @@ export interface BatchAcknowledgeAlarmRequest {
|
|
|
397
422
|
}
|
|
398
423
|
/**
|
|
399
424
|
* @public
|
|
425
|
+
* @enum
|
|
400
426
|
*/
|
|
401
|
-
export declare
|
|
402
|
-
InternalFailureException
|
|
403
|
-
InvalidRequestException
|
|
404
|
-
ResourceNotFoundException
|
|
405
|
-
ServiceUnavailableException
|
|
406
|
-
ThrottlingException
|
|
407
|
-
}
|
|
427
|
+
export declare const ErrorCode: {
|
|
428
|
+
readonly InternalFailureException: "InternalFailureException";
|
|
429
|
+
readonly InvalidRequestException: "InvalidRequestException";
|
|
430
|
+
readonly ResourceNotFoundException: "ResourceNotFoundException";
|
|
431
|
+
readonly ServiceUnavailableException: "ServiceUnavailableException";
|
|
432
|
+
readonly ThrottlingException: "ThrottlingException";
|
|
433
|
+
};
|
|
434
|
+
/**
|
|
435
|
+
* @public
|
|
436
|
+
*/
|
|
437
|
+
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
408
438
|
/**
|
|
409
439
|
* @public
|
|
410
440
|
* <p>Contains error messages associated with one of the following requests:</p>
|
|
@@ -9,13 +9,15 @@ export interface AcknowledgeAlarmActionRequest {
|
|
|
9
9
|
keyValue?: string;
|
|
10
10
|
note?: string;
|
|
11
11
|
}
|
|
12
|
-
export declare
|
|
13
|
-
ACKNOWLEDGE
|
|
14
|
-
DISABLE
|
|
15
|
-
ENABLE
|
|
16
|
-
RESET
|
|
17
|
-
SNOOZE
|
|
18
|
-
}
|
|
12
|
+
export declare const CustomerActionName: {
|
|
13
|
+
readonly ACKNOWLEDGE: "ACKNOWLEDGE";
|
|
14
|
+
readonly DISABLE: "DISABLE";
|
|
15
|
+
readonly ENABLE: "ENABLE";
|
|
16
|
+
readonly RESET: "RESET";
|
|
17
|
+
readonly SNOOZE: "SNOOZE";
|
|
18
|
+
};
|
|
19
|
+
export type CustomerActionName =
|
|
20
|
+
(typeof CustomerActionName)[keyof typeof CustomerActionName];
|
|
19
21
|
export interface DisableActionConfiguration {
|
|
20
22
|
note?: string;
|
|
21
23
|
}
|
|
@@ -37,14 +39,16 @@ export interface CustomerAction {
|
|
|
37
39
|
acknowledgeActionConfiguration?: AcknowledgeActionConfiguration;
|
|
38
40
|
resetActionConfiguration?: ResetActionConfiguration;
|
|
39
41
|
}
|
|
40
|
-
export declare
|
|
41
|
-
EQUAL
|
|
42
|
-
GREATER
|
|
43
|
-
GREATER_OR_EQUAL
|
|
44
|
-
LESS
|
|
45
|
-
LESS_OR_EQUAL
|
|
46
|
-
NOT_EQUAL
|
|
47
|
-
}
|
|
42
|
+
export declare const ComparisonOperator: {
|
|
43
|
+
readonly EQUAL: "EQUAL";
|
|
44
|
+
readonly GREATER: "GREATER";
|
|
45
|
+
readonly GREATER_OR_EQUAL: "GREATER_OR_EQUAL";
|
|
46
|
+
readonly LESS: "LESS";
|
|
47
|
+
readonly LESS_OR_EQUAL: "LESS_OR_EQUAL";
|
|
48
|
+
readonly NOT_EQUAL: "NOT_EQUAL";
|
|
49
|
+
};
|
|
50
|
+
export type ComparisonOperator =
|
|
51
|
+
(typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
48
52
|
export interface SimpleRuleEvaluation {
|
|
49
53
|
inputPropertyValue?: string;
|
|
50
54
|
operator?: ComparisonOperator | string;
|
|
@@ -53,20 +57,24 @@ export interface SimpleRuleEvaluation {
|
|
|
53
57
|
export interface RuleEvaluation {
|
|
54
58
|
simpleRuleEvaluation?: SimpleRuleEvaluation;
|
|
55
59
|
}
|
|
56
|
-
export declare
|
|
57
|
-
ACKNOWLEDGED
|
|
58
|
-
ACTIVE
|
|
59
|
-
DISABLED
|
|
60
|
-
LATCHED
|
|
61
|
-
NORMAL
|
|
62
|
-
SNOOZE_DISABLED
|
|
63
|
-
}
|
|
64
|
-
export
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
60
|
+
export declare const AlarmStateName: {
|
|
61
|
+
readonly ACKNOWLEDGED: "ACKNOWLEDGED";
|
|
62
|
+
readonly ACTIVE: "ACTIVE";
|
|
63
|
+
readonly DISABLED: "DISABLED";
|
|
64
|
+
readonly LATCHED: "LATCHED";
|
|
65
|
+
readonly NORMAL: "NORMAL";
|
|
66
|
+
readonly SNOOZE_DISABLED: "SNOOZE_DISABLED";
|
|
67
|
+
};
|
|
68
|
+
export type AlarmStateName =
|
|
69
|
+
(typeof AlarmStateName)[keyof typeof AlarmStateName];
|
|
70
|
+
export declare const EventType: {
|
|
71
|
+
readonly STATE_CHANGE: "STATE_CHANGE";
|
|
72
|
+
};
|
|
73
|
+
export type EventType = (typeof EventType)[keyof typeof EventType];
|
|
74
|
+
export declare const TriggerType: {
|
|
75
|
+
readonly SNOOZE_TIMEOUT: "SNOOZE_TIMEOUT";
|
|
76
|
+
};
|
|
77
|
+
export type TriggerType = (typeof TriggerType)[keyof typeof TriggerType];
|
|
70
78
|
export interface StateChangeConfiguration {
|
|
71
79
|
triggerType?: TriggerType | string;
|
|
72
80
|
}
|
|
@@ -100,13 +108,14 @@ export interface AlarmSummary {
|
|
|
100
108
|
export interface BatchAcknowledgeAlarmRequest {
|
|
101
109
|
acknowledgeActionRequests: AcknowledgeAlarmActionRequest[] | undefined;
|
|
102
110
|
}
|
|
103
|
-
export declare
|
|
104
|
-
InternalFailureException
|
|
105
|
-
InvalidRequestException
|
|
106
|
-
ResourceNotFoundException
|
|
107
|
-
ServiceUnavailableException
|
|
108
|
-
ThrottlingException
|
|
109
|
-
}
|
|
111
|
+
export declare const ErrorCode: {
|
|
112
|
+
readonly InternalFailureException: "InternalFailureException";
|
|
113
|
+
readonly InvalidRequestException: "InvalidRequestException";
|
|
114
|
+
readonly ResourceNotFoundException: "ResourceNotFoundException";
|
|
115
|
+
readonly ServiceUnavailableException: "ServiceUnavailableException";
|
|
116
|
+
readonly ThrottlingException: "ThrottlingException";
|
|
117
|
+
};
|
|
118
|
+
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
110
119
|
export interface BatchAlarmActionErrorEntry {
|
|
111
120
|
requestId?: string;
|
|
112
121
|
errorCode?: ErrorCode | string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iot-events-data",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iot Events Data Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.306.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",
|
|
@@ -21,42 +21,42 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.306.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.306.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.306.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.306.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.306.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.306.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.306.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.306.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.306.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.306.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.306.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.306.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.306.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.306.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.306.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.306.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.306.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.306.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.306.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.306.0",
|
|
44
|
+
"@aws-sdk/types": "3.306.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.306.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.306.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.306.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.306.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.306.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.306.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.306.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|