@aws-sdk/client-codestar-notifications 3.170.0 → 3.173.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 +19 -0
- package/README.md +2 -2
- package/dist-cjs/protocols/Aws_restJson1.js +19 -15
- package/dist-es/protocols/Aws_restJson1.js +65 -54
- package/dist-types/CodestarNotifications.d.ts +7 -7
- package/dist-types/CodestarNotificationsClient.d.ts +2 -2
- package/dist-types/commands/CreateNotificationRuleCommand.d.ts +1 -1
- package/dist-types/commands/ListNotificationRulesCommand.d.ts +1 -1
- package/dist-types/commands/ListTargetsCommand.d.ts +1 -1
- package/dist-types/commands/SubscribeCommand.d.ts +1 -1
- package/dist-types/commands/UnsubscribeCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +53 -34
- package/dist-types/ts3.4/CodestarNotifications.d.ts +0 -13
- package/dist-types/ts3.4/CodestarNotificationsClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/CreateNotificationRuleCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteNotificationRuleCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteTargetCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeNotificationRuleCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListEventTypesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListNotificationRulesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ListTargetsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/SubscribeCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UnsubscribeCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/UpdateNotificationRuleCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/CodestarNotificationsServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -103
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/package.json +26 -26
|
@@ -1,21 +1,17 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { CodestarNotificationsServiceException as __BaseException } from "./CodestarNotificationsServiceException";
|
|
3
|
-
|
|
4
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
4
|
readonly name: "AccessDeniedException";
|
|
6
5
|
readonly $fault: "client";
|
|
7
6
|
Message?: string;
|
|
8
|
-
|
|
9
7
|
constructor(
|
|
10
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
11
9
|
);
|
|
12
10
|
}
|
|
13
|
-
|
|
14
11
|
export declare class ConcurrentModificationException extends __BaseException {
|
|
15
12
|
readonly name: "ConcurrentModificationException";
|
|
16
13
|
readonly $fault: "client";
|
|
17
14
|
Message?: string;
|
|
18
|
-
|
|
19
15
|
constructor(
|
|
20
16
|
opts: __ExceptionOptionType<
|
|
21
17
|
ConcurrentModificationException,
|
|
@@ -23,12 +19,10 @@ export declare class ConcurrentModificationException extends __BaseException {
|
|
|
23
19
|
>
|
|
24
20
|
);
|
|
25
21
|
}
|
|
26
|
-
|
|
27
22
|
export declare class ConfigurationException extends __BaseException {
|
|
28
23
|
readonly name: "ConfigurationException";
|
|
29
24
|
readonly $fault: "client";
|
|
30
25
|
Message?: string;
|
|
31
|
-
|
|
32
26
|
constructor(
|
|
33
27
|
opts: __ExceptionOptionType<ConfigurationException, __BaseException>
|
|
34
28
|
);
|
|
@@ -41,58 +35,43 @@ export declare enum NotificationRuleStatus {
|
|
|
41
35
|
DISABLED = "DISABLED",
|
|
42
36
|
ENABLED = "ENABLED",
|
|
43
37
|
}
|
|
44
|
-
|
|
45
38
|
export interface Target {
|
|
46
39
|
TargetType?: string;
|
|
47
|
-
|
|
48
40
|
TargetAddress?: string;
|
|
49
41
|
}
|
|
50
42
|
export interface CreateNotificationRuleRequest {
|
|
51
43
|
Name: string | undefined;
|
|
52
|
-
|
|
53
44
|
EventTypeIds: string[] | undefined;
|
|
54
|
-
|
|
55
45
|
Resource: string | undefined;
|
|
56
|
-
|
|
57
46
|
Targets: Target[] | undefined;
|
|
58
|
-
|
|
59
47
|
DetailType: DetailType | string | undefined;
|
|
60
|
-
|
|
61
48
|
ClientRequestToken?: string;
|
|
62
|
-
|
|
63
49
|
Tags?: Record<string, string>;
|
|
64
|
-
|
|
65
50
|
Status?: NotificationRuleStatus | string;
|
|
66
51
|
}
|
|
67
52
|
export interface CreateNotificationRuleResult {
|
|
68
53
|
Arn?: string;
|
|
69
54
|
}
|
|
70
|
-
|
|
71
55
|
export declare class LimitExceededException extends __BaseException {
|
|
72
56
|
readonly name: "LimitExceededException";
|
|
73
57
|
readonly $fault: "client";
|
|
74
58
|
Message?: string;
|
|
75
|
-
|
|
76
59
|
constructor(
|
|
77
60
|
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
78
61
|
);
|
|
79
62
|
}
|
|
80
|
-
|
|
81
63
|
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
82
64
|
readonly name: "ResourceAlreadyExistsException";
|
|
83
65
|
readonly $fault: "client";
|
|
84
66
|
Message?: string;
|
|
85
|
-
|
|
86
67
|
constructor(
|
|
87
68
|
opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
|
|
88
69
|
);
|
|
89
70
|
}
|
|
90
|
-
|
|
91
71
|
export declare class ValidationException extends __BaseException {
|
|
92
72
|
readonly name: "ValidationException";
|
|
93
73
|
readonly $fault: "client";
|
|
94
74
|
Message?: string;
|
|
95
|
-
|
|
96
75
|
constructor(
|
|
97
76
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
98
77
|
);
|
|
@@ -105,21 +84,16 @@ export interface DeleteNotificationRuleResult {
|
|
|
105
84
|
}
|
|
106
85
|
export interface DeleteTargetRequest {
|
|
107
86
|
TargetAddress: string | undefined;
|
|
108
|
-
|
|
109
87
|
ForceUnsubscribeAll?: boolean;
|
|
110
88
|
}
|
|
111
89
|
export interface DeleteTargetResult {}
|
|
112
90
|
export interface DescribeNotificationRuleRequest {
|
|
113
91
|
Arn: string | undefined;
|
|
114
92
|
}
|
|
115
|
-
|
|
116
93
|
export interface EventTypeSummary {
|
|
117
94
|
EventTypeId?: string;
|
|
118
|
-
|
|
119
95
|
ServiceName?: string;
|
|
120
|
-
|
|
121
96
|
EventTypeName?: string;
|
|
122
|
-
|
|
123
97
|
ResourceType?: string;
|
|
124
98
|
}
|
|
125
99
|
export declare enum TargetStatus {
|
|
@@ -129,53 +103,36 @@ export declare enum TargetStatus {
|
|
|
129
103
|
PENDING = "PENDING",
|
|
130
104
|
UNREACHABLE = "UNREACHABLE",
|
|
131
105
|
}
|
|
132
|
-
|
|
133
106
|
export interface TargetSummary {
|
|
134
107
|
TargetAddress?: string;
|
|
135
|
-
|
|
136
108
|
TargetType?: string;
|
|
137
|
-
|
|
138
109
|
TargetStatus?: TargetStatus | string;
|
|
139
110
|
}
|
|
140
111
|
export interface DescribeNotificationRuleResult {
|
|
141
112
|
Arn: string | undefined;
|
|
142
|
-
|
|
143
113
|
Name?: string;
|
|
144
|
-
|
|
145
114
|
EventTypes?: EventTypeSummary[];
|
|
146
|
-
|
|
147
115
|
Resource?: string;
|
|
148
|
-
|
|
149
116
|
Targets?: TargetSummary[];
|
|
150
|
-
|
|
151
117
|
DetailType?: DetailType | string;
|
|
152
|
-
|
|
153
118
|
CreatedBy?: string;
|
|
154
|
-
|
|
155
119
|
Status?: NotificationRuleStatus | string;
|
|
156
|
-
|
|
157
120
|
CreatedTimestamp?: Date;
|
|
158
|
-
|
|
159
121
|
LastModifiedTimestamp?: Date;
|
|
160
|
-
|
|
161
122
|
Tags?: Record<string, string>;
|
|
162
123
|
}
|
|
163
|
-
|
|
164
124
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
165
125
|
readonly name: "ResourceNotFoundException";
|
|
166
126
|
readonly $fault: "client";
|
|
167
127
|
Message?: string;
|
|
168
|
-
|
|
169
128
|
constructor(
|
|
170
129
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
171
130
|
);
|
|
172
131
|
}
|
|
173
|
-
|
|
174
132
|
export declare class InvalidNextTokenException extends __BaseException {
|
|
175
133
|
readonly name: "InvalidNextTokenException";
|
|
176
134
|
readonly $fault: "client";
|
|
177
135
|
Message?: string;
|
|
178
|
-
|
|
179
136
|
constructor(
|
|
180
137
|
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
181
138
|
);
|
|
@@ -184,22 +141,17 @@ export declare enum ListEventTypesFilterName {
|
|
|
184
141
|
RESOURCE_TYPE = "RESOURCE_TYPE",
|
|
185
142
|
SERVICE_NAME = "SERVICE_NAME",
|
|
186
143
|
}
|
|
187
|
-
|
|
188
144
|
export interface ListEventTypesFilter {
|
|
189
145
|
Name: ListEventTypesFilterName | string | undefined;
|
|
190
|
-
|
|
191
146
|
Value: string | undefined;
|
|
192
147
|
}
|
|
193
148
|
export interface ListEventTypesRequest {
|
|
194
149
|
Filters?: ListEventTypesFilter[];
|
|
195
|
-
|
|
196
150
|
NextToken?: string;
|
|
197
|
-
|
|
198
151
|
MaxResults?: number;
|
|
199
152
|
}
|
|
200
153
|
export interface ListEventTypesResult {
|
|
201
154
|
EventTypes?: EventTypeSummary[];
|
|
202
|
-
|
|
203
155
|
NextToken?: string;
|
|
204
156
|
}
|
|
205
157
|
export declare enum ListNotificationRulesFilterName {
|
|
@@ -208,28 +160,21 @@ export declare enum ListNotificationRulesFilterName {
|
|
|
208
160
|
RESOURCE = "RESOURCE",
|
|
209
161
|
TARGET_ADDRESS = "TARGET_ADDRESS",
|
|
210
162
|
}
|
|
211
|
-
|
|
212
163
|
export interface ListNotificationRulesFilter {
|
|
213
164
|
Name: ListNotificationRulesFilterName | string | undefined;
|
|
214
|
-
|
|
215
165
|
Value: string | undefined;
|
|
216
166
|
}
|
|
217
167
|
export interface ListNotificationRulesRequest {
|
|
218
168
|
Filters?: ListNotificationRulesFilter[];
|
|
219
|
-
|
|
220
169
|
NextToken?: string;
|
|
221
|
-
|
|
222
170
|
MaxResults?: number;
|
|
223
171
|
}
|
|
224
|
-
|
|
225
172
|
export interface NotificationRuleSummary {
|
|
226
173
|
Id?: string;
|
|
227
|
-
|
|
228
174
|
Arn?: string;
|
|
229
175
|
}
|
|
230
176
|
export interface ListNotificationRulesResult {
|
|
231
177
|
NextToken?: string;
|
|
232
|
-
|
|
233
178
|
NotificationRules?: NotificationRuleSummary[];
|
|
234
179
|
}
|
|
235
180
|
export interface ListTagsForResourceRequest {
|
|
@@ -243,29 +188,22 @@ export declare enum ListTargetsFilterName {
|
|
|
243
188
|
TARGET_STATUS = "TARGET_STATUS",
|
|
244
189
|
TARGET_TYPE = "TARGET_TYPE",
|
|
245
190
|
}
|
|
246
|
-
|
|
247
191
|
export interface ListTargetsFilter {
|
|
248
192
|
Name: ListTargetsFilterName | string | undefined;
|
|
249
|
-
|
|
250
193
|
Value: string | undefined;
|
|
251
194
|
}
|
|
252
195
|
export interface ListTargetsRequest {
|
|
253
196
|
Filters?: ListTargetsFilter[];
|
|
254
|
-
|
|
255
197
|
NextToken?: string;
|
|
256
|
-
|
|
257
198
|
MaxResults?: number;
|
|
258
199
|
}
|
|
259
200
|
export interface ListTargetsResult {
|
|
260
201
|
Targets?: TargetSummary[];
|
|
261
|
-
|
|
262
202
|
NextToken?: string;
|
|
263
203
|
}
|
|
264
204
|
export interface SubscribeRequest {
|
|
265
205
|
Arn: string | undefined;
|
|
266
|
-
|
|
267
206
|
Target: Target | undefined;
|
|
268
|
-
|
|
269
207
|
ClientRequestToken?: string;
|
|
270
208
|
}
|
|
271
209
|
export interface SubscribeResult {
|
|
@@ -273,7 +211,6 @@ export interface SubscribeResult {
|
|
|
273
211
|
}
|
|
274
212
|
export interface TagResourceRequest {
|
|
275
213
|
Arn: string | undefined;
|
|
276
|
-
|
|
277
214
|
Tags: Record<string, string> | undefined;
|
|
278
215
|
}
|
|
279
216
|
export interface TagResourceResult {
|
|
@@ -281,7 +218,6 @@ export interface TagResourceResult {
|
|
|
281
218
|
}
|
|
282
219
|
export interface UnsubscribeRequest {
|
|
283
220
|
Arn: string | undefined;
|
|
284
|
-
|
|
285
221
|
TargetAddress: string | undefined;
|
|
286
222
|
}
|
|
287
223
|
export interface UnsubscribeResult {
|
|
@@ -289,151 +225,112 @@ export interface UnsubscribeResult {
|
|
|
289
225
|
}
|
|
290
226
|
export interface UntagResourceRequest {
|
|
291
227
|
Arn: string | undefined;
|
|
292
|
-
|
|
293
228
|
TagKeys: string[] | undefined;
|
|
294
229
|
}
|
|
295
230
|
export interface UntagResourceResult {}
|
|
296
231
|
export interface UpdateNotificationRuleRequest {
|
|
297
232
|
Arn: string | undefined;
|
|
298
|
-
|
|
299
233
|
Name?: string;
|
|
300
|
-
|
|
301
234
|
Status?: NotificationRuleStatus | string;
|
|
302
|
-
|
|
303
235
|
EventTypeIds?: string[];
|
|
304
|
-
|
|
305
236
|
Targets?: Target[];
|
|
306
|
-
|
|
307
237
|
DetailType?: DetailType | string;
|
|
308
238
|
}
|
|
309
239
|
export interface UpdateNotificationRuleResult {}
|
|
310
|
-
|
|
311
240
|
export declare const TargetFilterSensitiveLog: (obj: Target) => any;
|
|
312
|
-
|
|
313
241
|
export declare const CreateNotificationRuleRequestFilterSensitiveLog: (
|
|
314
242
|
obj: CreateNotificationRuleRequest
|
|
315
243
|
) => any;
|
|
316
|
-
|
|
317
244
|
export declare const CreateNotificationRuleResultFilterSensitiveLog: (
|
|
318
245
|
obj: CreateNotificationRuleResult
|
|
319
246
|
) => any;
|
|
320
|
-
|
|
321
247
|
export declare const DeleteNotificationRuleRequestFilterSensitiveLog: (
|
|
322
248
|
obj: DeleteNotificationRuleRequest
|
|
323
249
|
) => any;
|
|
324
|
-
|
|
325
250
|
export declare const DeleteNotificationRuleResultFilterSensitiveLog: (
|
|
326
251
|
obj: DeleteNotificationRuleResult
|
|
327
252
|
) => any;
|
|
328
|
-
|
|
329
253
|
export declare const DeleteTargetRequestFilterSensitiveLog: (
|
|
330
254
|
obj: DeleteTargetRequest
|
|
331
255
|
) => any;
|
|
332
|
-
|
|
333
256
|
export declare const DeleteTargetResultFilterSensitiveLog: (
|
|
334
257
|
obj: DeleteTargetResult
|
|
335
258
|
) => any;
|
|
336
|
-
|
|
337
259
|
export declare const DescribeNotificationRuleRequestFilterSensitiveLog: (
|
|
338
260
|
obj: DescribeNotificationRuleRequest
|
|
339
261
|
) => any;
|
|
340
|
-
|
|
341
262
|
export declare const EventTypeSummaryFilterSensitiveLog: (
|
|
342
263
|
obj: EventTypeSummary
|
|
343
264
|
) => any;
|
|
344
|
-
|
|
345
265
|
export declare const TargetSummaryFilterSensitiveLog: (
|
|
346
266
|
obj: TargetSummary
|
|
347
267
|
) => any;
|
|
348
|
-
|
|
349
268
|
export declare const DescribeNotificationRuleResultFilterSensitiveLog: (
|
|
350
269
|
obj: DescribeNotificationRuleResult
|
|
351
270
|
) => any;
|
|
352
|
-
|
|
353
271
|
export declare const ListEventTypesFilterFilterSensitiveLog: (
|
|
354
272
|
obj: ListEventTypesFilter
|
|
355
273
|
) => any;
|
|
356
|
-
|
|
357
274
|
export declare const ListEventTypesRequestFilterSensitiveLog: (
|
|
358
275
|
obj: ListEventTypesRequest
|
|
359
276
|
) => any;
|
|
360
|
-
|
|
361
277
|
export declare const ListEventTypesResultFilterSensitiveLog: (
|
|
362
278
|
obj: ListEventTypesResult
|
|
363
279
|
) => any;
|
|
364
|
-
|
|
365
280
|
export declare const ListNotificationRulesFilterFilterSensitiveLog: (
|
|
366
281
|
obj: ListNotificationRulesFilter
|
|
367
282
|
) => any;
|
|
368
|
-
|
|
369
283
|
export declare const ListNotificationRulesRequestFilterSensitiveLog: (
|
|
370
284
|
obj: ListNotificationRulesRequest
|
|
371
285
|
) => any;
|
|
372
|
-
|
|
373
286
|
export declare const NotificationRuleSummaryFilterSensitiveLog: (
|
|
374
287
|
obj: NotificationRuleSummary
|
|
375
288
|
) => any;
|
|
376
|
-
|
|
377
289
|
export declare const ListNotificationRulesResultFilterSensitiveLog: (
|
|
378
290
|
obj: ListNotificationRulesResult
|
|
379
291
|
) => any;
|
|
380
|
-
|
|
381
292
|
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
382
293
|
obj: ListTagsForResourceRequest
|
|
383
294
|
) => any;
|
|
384
|
-
|
|
385
295
|
export declare const ListTagsForResourceResultFilterSensitiveLog: (
|
|
386
296
|
obj: ListTagsForResourceResult
|
|
387
297
|
) => any;
|
|
388
|
-
|
|
389
298
|
export declare const ListTargetsFilterFilterSensitiveLog: (
|
|
390
299
|
obj: ListTargetsFilter
|
|
391
300
|
) => any;
|
|
392
|
-
|
|
393
301
|
export declare const ListTargetsRequestFilterSensitiveLog: (
|
|
394
302
|
obj: ListTargetsRequest
|
|
395
303
|
) => any;
|
|
396
|
-
|
|
397
304
|
export declare const ListTargetsResultFilterSensitiveLog: (
|
|
398
305
|
obj: ListTargetsResult
|
|
399
306
|
) => any;
|
|
400
|
-
|
|
401
307
|
export declare const SubscribeRequestFilterSensitiveLog: (
|
|
402
308
|
obj: SubscribeRequest
|
|
403
309
|
) => any;
|
|
404
|
-
|
|
405
310
|
export declare const SubscribeResultFilterSensitiveLog: (
|
|
406
311
|
obj: SubscribeResult
|
|
407
312
|
) => any;
|
|
408
|
-
|
|
409
313
|
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
410
314
|
obj: TagResourceRequest
|
|
411
315
|
) => any;
|
|
412
|
-
|
|
413
316
|
export declare const TagResourceResultFilterSensitiveLog: (
|
|
414
317
|
obj: TagResourceResult
|
|
415
318
|
) => any;
|
|
416
|
-
|
|
417
319
|
export declare const UnsubscribeRequestFilterSensitiveLog: (
|
|
418
320
|
obj: UnsubscribeRequest
|
|
419
321
|
) => any;
|
|
420
|
-
|
|
421
322
|
export declare const UnsubscribeResultFilterSensitiveLog: (
|
|
422
323
|
obj: UnsubscribeResult
|
|
423
324
|
) => any;
|
|
424
|
-
|
|
425
325
|
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
426
326
|
obj: UntagResourceRequest
|
|
427
327
|
) => any;
|
|
428
|
-
|
|
429
328
|
export declare const UntagResourceResultFilterSensitiveLog: (
|
|
430
329
|
obj: UntagResourceResult
|
|
431
330
|
) => any;
|
|
432
|
-
|
|
433
331
|
export declare const UpdateNotificationRuleRequestFilterSensitiveLog: (
|
|
434
332
|
obj: UpdateNotificationRuleRequest
|
|
435
333
|
) => any;
|
|
436
|
-
|
|
437
334
|
export declare const UpdateNotificationRuleResultFilterSensitiveLog: (
|
|
438
335
|
obj: UpdateNotificationRuleResult
|
|
439
336
|
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codestar-notifications",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codestar Notifications Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.173.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,35 +19,35 @@
|
|
|
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.
|
|
22
|
+
"@aws-sdk/client-sts": "3.171.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.171.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.171.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.171.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.171.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.171.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.171.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.171.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.171.0",
|
|
31
|
+
"@aws-sdk/middleware-recursion-detection": "3.171.0",
|
|
32
|
+
"@aws-sdk/middleware-retry": "3.171.0",
|
|
33
|
+
"@aws-sdk/middleware-serde": "3.171.0",
|
|
34
|
+
"@aws-sdk/middleware-signing": "3.171.0",
|
|
35
|
+
"@aws-sdk/middleware-stack": "3.171.0",
|
|
36
|
+
"@aws-sdk/middleware-user-agent": "3.171.0",
|
|
37
|
+
"@aws-sdk/node-config-provider": "3.171.0",
|
|
38
|
+
"@aws-sdk/node-http-handler": "3.171.0",
|
|
39
|
+
"@aws-sdk/protocol-http": "3.171.0",
|
|
40
|
+
"@aws-sdk/smithy-client": "3.171.0",
|
|
41
|
+
"@aws-sdk/types": "3.171.0",
|
|
42
|
+
"@aws-sdk/url-parser": "3.171.0",
|
|
43
43
|
"@aws-sdk/util-base64-browser": "3.170.0",
|
|
44
44
|
"@aws-sdk/util-base64-node": "3.170.0",
|
|
45
45
|
"@aws-sdk/util-body-length-browser": "3.170.0",
|
|
46
46
|
"@aws-sdk/util-body-length-node": "3.170.0",
|
|
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.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.171.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.171.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-browser": "3.171.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "3.171.0",
|
|
51
51
|
"@aws-sdk/util-utf8-browser": "3.170.0",
|
|
52
52
|
"@aws-sdk/util-utf8-node": "3.170.0",
|
|
53
53
|
"tslib": "^2.3.1",
|