@aws-sdk/client-application-signals 3.935.0 → 3.937.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/README.md +8 -0
- package/dist-cjs/index.js +95 -4
- package/dist-es/ApplicationSignals.js +2 -0
- package/dist-es/commands/ListEntityEventsCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +5 -0
- package/dist-es/pagination/ListEntityEventsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +73 -4
- package/dist-types/ApplicationSignals.d.ts +7 -0
- package/dist-types/ApplicationSignalsClient.d.ts +3 -2
- package/dist-types/commands/DeleteGroupingConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/ListAuditFindingsCommand.d.ts +7 -1
- package/dist-types/commands/ListEntityEventsCommand.d.ts +102 -0
- package/dist-types/commands/ListGroupingAttributeDefinitionsCommand.d.ts +3 -1
- package/dist-types/commands/ListServiceStatesCommand.d.ts +2 -2
- package/dist-types/commands/PutGroupingConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/StartDiscoveryCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +228 -143
- package/dist-types/pagination/ListEntityEventsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +5 -0
- package/dist-types/ts3.4/ApplicationSignals.d.ts +17 -0
- package/dist-types/ts3.4/ApplicationSignalsClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListEntityEventsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +30 -10
- package/dist-types/ts3.4/pagination/ListEntityEventsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -0
- package/package.json +12 -12
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListEntityEventsCommandInput, ListEntityEventsCommandOutput } from "../commands/ListEntityEventsCommand";
|
|
3
|
+
import { ApplicationSignalsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListEntityEvents: (config: ApplicationSignalsPaginationConfiguration, input: ListEntityEventsCommandInput, ...rest: any[]) => Paginator<ListEntityEventsCommandOutput>;
|
|
@@ -33,6 +33,8 @@ export declare var GroupingAttributeDefinition: StaticStructureSchema;
|
|
|
33
33
|
export declare var GroupingConfiguration: StaticStructureSchema;
|
|
34
34
|
export declare var ListAuditFindingsInput: StaticStructureSchema;
|
|
35
35
|
export declare var ListAuditFindingsOutput: StaticStructureSchema;
|
|
36
|
+
export declare var ListEntityEventsInput: StaticStructureSchema;
|
|
37
|
+
export declare var ListEntityEventsOutput: StaticStructureSchema;
|
|
36
38
|
export declare var ListGroupingAttributeDefinitionsInput: StaticStructureSchema;
|
|
37
39
|
export declare var ListGroupingAttributeDefinitionsOutput: StaticStructureSchema;
|
|
38
40
|
export declare var ListServiceDependenciesInput: StaticStructureSchema;
|
|
@@ -108,6 +110,7 @@ export declare var Auditors: number;
|
|
|
108
110
|
export declare var AuditTargets: StaticListSchema;
|
|
109
111
|
export declare var BatchUpdateExclusionWindowsErrors: StaticListSchema;
|
|
110
112
|
export declare var BurnRateConfigurations: StaticListSchema;
|
|
113
|
+
export declare var ChangeEvents: StaticListSchema;
|
|
111
114
|
export declare var Dimensions: StaticListSchema;
|
|
112
115
|
export declare var Edges: StaticListSchema;
|
|
113
116
|
export declare var ExclusionWindows: StaticListSchema;
|
|
@@ -133,6 +136,7 @@ export declare var TagKeyList: number;
|
|
|
133
136
|
export declare var TagList: StaticListSchema;
|
|
134
137
|
export declare var AttributeMap: number;
|
|
135
138
|
export declare var Attributes: number;
|
|
139
|
+
export declare var DataMap: number;
|
|
136
140
|
export declare var AuditTargetEntity: StaticStructureSchema;
|
|
137
141
|
export declare var Interval: StaticStructureSchema;
|
|
138
142
|
export declare var MonitoredRequestCountMetricDataQueries: StaticStructureSchema;
|
|
@@ -144,6 +148,7 @@ export declare var DeleteServiceLevelObjective: StaticOperationSchema;
|
|
|
144
148
|
export declare var GetService: StaticOperationSchema;
|
|
145
149
|
export declare var GetServiceLevelObjective: StaticOperationSchema;
|
|
146
150
|
export declare var ListAuditFindings: StaticOperationSchema;
|
|
151
|
+
export declare var ListEntityEvents: StaticOperationSchema;
|
|
147
152
|
export declare var ListGroupingAttributeDefinitions: StaticOperationSchema;
|
|
148
153
|
export declare var ListServiceDependencies: StaticOperationSchema;
|
|
149
154
|
export declare var ListServiceDependents: StaticOperationSchema;
|
|
@@ -32,6 +32,10 @@ import {
|
|
|
32
32
|
ListAuditFindingsCommandInput,
|
|
33
33
|
ListAuditFindingsCommandOutput,
|
|
34
34
|
} from "./commands/ListAuditFindingsCommand";
|
|
35
|
+
import {
|
|
36
|
+
ListEntityEventsCommandInput,
|
|
37
|
+
ListEntityEventsCommandOutput,
|
|
38
|
+
} from "./commands/ListEntityEventsCommand";
|
|
35
39
|
import {
|
|
36
40
|
ListGroupingAttributeDefinitionsCommandInput,
|
|
37
41
|
ListGroupingAttributeDefinitionsCommandOutput,
|
|
@@ -200,6 +204,19 @@ export interface ApplicationSignals {
|
|
|
200
204
|
options: __HttpHandlerOptions,
|
|
201
205
|
cb: (err: any, data?: ListAuditFindingsCommandOutput) => void
|
|
202
206
|
): void;
|
|
207
|
+
listEntityEvents(
|
|
208
|
+
args: ListEntityEventsCommandInput,
|
|
209
|
+
options?: __HttpHandlerOptions
|
|
210
|
+
): Promise<ListEntityEventsCommandOutput>;
|
|
211
|
+
listEntityEvents(
|
|
212
|
+
args: ListEntityEventsCommandInput,
|
|
213
|
+
cb: (err: any, data?: ListEntityEventsCommandOutput) => void
|
|
214
|
+
): void;
|
|
215
|
+
listEntityEvents(
|
|
216
|
+
args: ListEntityEventsCommandInput,
|
|
217
|
+
options: __HttpHandlerOptions,
|
|
218
|
+
cb: (err: any, data?: ListEntityEventsCommandOutput) => void
|
|
219
|
+
): void;
|
|
203
220
|
listGroupingAttributeDefinitions(): Promise<ListGroupingAttributeDefinitionsCommandOutput>;
|
|
204
221
|
listGroupingAttributeDefinitions(
|
|
205
222
|
args: ListGroupingAttributeDefinitionsCommandInput,
|
|
@@ -80,6 +80,10 @@ import {
|
|
|
80
80
|
ListAuditFindingsCommandInput,
|
|
81
81
|
ListAuditFindingsCommandOutput,
|
|
82
82
|
} from "./commands/ListAuditFindingsCommand";
|
|
83
|
+
import {
|
|
84
|
+
ListEntityEventsCommandInput,
|
|
85
|
+
ListEntityEventsCommandOutput,
|
|
86
|
+
} from "./commands/ListEntityEventsCommand";
|
|
83
87
|
import {
|
|
84
88
|
ListGroupingAttributeDefinitionsCommandInput,
|
|
85
89
|
ListGroupingAttributeDefinitionsCommandOutput,
|
|
@@ -152,6 +156,7 @@ export type ServiceInputTypes =
|
|
|
152
156
|
| GetServiceCommandInput
|
|
153
157
|
| GetServiceLevelObjectiveCommandInput
|
|
154
158
|
| ListAuditFindingsCommandInput
|
|
159
|
+
| ListEntityEventsCommandInput
|
|
155
160
|
| ListGroupingAttributeDefinitionsCommandInput
|
|
156
161
|
| ListServiceDependenciesCommandInput
|
|
157
162
|
| ListServiceDependentsCommandInput
|
|
@@ -175,6 +180,7 @@ export type ServiceOutputTypes =
|
|
|
175
180
|
| GetServiceCommandOutput
|
|
176
181
|
| GetServiceLevelObjectiveCommandOutput
|
|
177
182
|
| ListAuditFindingsCommandOutput
|
|
183
|
+
| ListEntityEventsCommandOutput
|
|
178
184
|
| ListGroupingAttributeDefinitionsCommandOutput
|
|
179
185
|
| ListServiceDependenciesCommandOutput
|
|
180
186
|
| ListServiceDependentsCommandOutput
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ApplicationSignalsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ApplicationSignalsClient";
|
|
8
|
+
import {
|
|
9
|
+
ListEntityEventsInput,
|
|
10
|
+
ListEntityEventsOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListEntityEventsCommandInput extends ListEntityEventsInput {}
|
|
15
|
+
export interface ListEntityEventsCommandOutput
|
|
16
|
+
extends ListEntityEventsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListEntityEventsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListEntityEventsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListEntityEventsCommandInput,
|
|
23
|
+
ListEntityEventsCommandOutput,
|
|
24
|
+
ApplicationSignalsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: ListEntityEventsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListEntityEventsCommandInput,
|
|
32
|
+
ListEntityEventsCommandOutput,
|
|
33
|
+
ApplicationSignalsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListEntityEventsCommand extends ListEntityEventsCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ListEntityEventsInput;
|
|
43
|
+
output: ListEntityEventsOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ListEntityEventsCommandInput;
|
|
47
|
+
output: ListEntityEventsCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -6,6 +6,7 @@ export * from "./DeleteServiceLevelObjectiveCommand";
|
|
|
6
6
|
export * from "./GetServiceCommand";
|
|
7
7
|
export * from "./GetServiceLevelObjectiveCommand";
|
|
8
8
|
export * from "./ListAuditFindingsCommand";
|
|
9
|
+
export * from "./ListEntityEventsCommand";
|
|
9
10
|
export * from "./ListGroupingAttributeDefinitionsCommand";
|
|
10
11
|
export * from "./ListServiceDependenciesCommand";
|
|
11
12
|
export * from "./ListServiceDependentsCommand";
|
|
@@ -63,6 +63,11 @@ export declare const StandardUnit: {
|
|
|
63
63
|
readonly TERABYTES_SECOND: "Terabytes/Second";
|
|
64
64
|
};
|
|
65
65
|
export type StandardUnit = (typeof StandardUnit)[keyof typeof StandardUnit];
|
|
66
|
+
export declare const DetailLevel: {
|
|
67
|
+
readonly BRIEF: "BRIEF";
|
|
68
|
+
readonly DETAILED: "DETAILED";
|
|
69
|
+
};
|
|
70
|
+
export type DetailLevel = (typeof DetailLevel)[keyof typeof DetailLevel];
|
|
66
71
|
export declare const Severity: {
|
|
67
72
|
readonly CRITICAL: "CRITICAL";
|
|
68
73
|
readonly HIGH: "HIGH";
|
|
@@ -78,6 +83,7 @@ export declare const ConnectionType: {
|
|
|
78
83
|
export type ConnectionType =
|
|
79
84
|
(typeof ConnectionType)[keyof typeof ConnectionType];
|
|
80
85
|
export declare const ChangeEventType: {
|
|
86
|
+
readonly CONFIGURATION: "CONFIGURATION";
|
|
81
87
|
readonly DEPLOYMENT: "DEPLOYMENT";
|
|
82
88
|
};
|
|
83
89
|
export type ChangeEventType =
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ChangeEventType,
|
|
3
3
|
ConnectionType,
|
|
4
|
+
DetailLevel,
|
|
4
5
|
DurationUnit,
|
|
5
6
|
EvaluationType,
|
|
6
7
|
MetricSourceType,
|
|
@@ -296,12 +297,14 @@ export interface ListAuditFindingsInput {
|
|
|
296
297
|
EndTime: Date | undefined;
|
|
297
298
|
Auditors?: string[] | undefined;
|
|
298
299
|
AuditTargets: AuditTarget[] | undefined;
|
|
300
|
+
DetailLevel?: DetailLevel | undefined;
|
|
299
301
|
NextToken?: string | undefined;
|
|
300
302
|
MaxResults?: number | undefined;
|
|
301
303
|
}
|
|
302
304
|
export interface AuditorResult {
|
|
303
305
|
Auditor?: string | undefined;
|
|
304
306
|
Description?: string | undefined;
|
|
307
|
+
Data?: Record<string, string> | undefined;
|
|
305
308
|
Severity?: Severity | undefined;
|
|
306
309
|
}
|
|
307
310
|
export interface Edge {
|
|
@@ -337,11 +340,38 @@ export interface AuditFinding {
|
|
|
337
340
|
Type?: string | undefined;
|
|
338
341
|
}
|
|
339
342
|
export interface ListAuditFindingsOutput {
|
|
343
|
+
StartTime?: Date | undefined;
|
|
344
|
+
EndTime?: Date | undefined;
|
|
340
345
|
AuditFindings: AuditFinding[] | undefined;
|
|
341
346
|
NextToken?: string | undefined;
|
|
342
347
|
}
|
|
348
|
+
export interface ListEntityEventsInput {
|
|
349
|
+
Entity: Record<string, string> | undefined;
|
|
350
|
+
StartTime: Date | undefined;
|
|
351
|
+
EndTime: Date | undefined;
|
|
352
|
+
MaxResults?: number | undefined;
|
|
353
|
+
NextToken?: string | undefined;
|
|
354
|
+
}
|
|
355
|
+
export interface ChangeEvent {
|
|
356
|
+
Timestamp: Date | undefined;
|
|
357
|
+
AccountId: string | undefined;
|
|
358
|
+
Region: string | undefined;
|
|
359
|
+
Entity: Record<string, string> | undefined;
|
|
360
|
+
ChangeEventType: ChangeEventType | undefined;
|
|
361
|
+
EventId: string | undefined;
|
|
362
|
+
UserName?: string | undefined;
|
|
363
|
+
EventName?: string | undefined;
|
|
364
|
+
}
|
|
365
|
+
export interface ListEntityEventsOutput {
|
|
366
|
+
StartTime: Date | undefined;
|
|
367
|
+
EndTime: Date | undefined;
|
|
368
|
+
ChangeEvents: ChangeEvent[] | undefined;
|
|
369
|
+
NextToken?: string | undefined;
|
|
370
|
+
}
|
|
343
371
|
export interface ListGroupingAttributeDefinitionsInput {
|
|
344
372
|
NextToken?: string | undefined;
|
|
373
|
+
AwsAccountId?: string | undefined;
|
|
374
|
+
IncludeLinkedAccounts?: boolean | undefined;
|
|
345
375
|
}
|
|
346
376
|
export interface GroupingAttributeDefinition {
|
|
347
377
|
GroupingName: string | undefined;
|
|
@@ -450,16 +480,6 @@ export interface ListServiceStatesInput {
|
|
|
450
480
|
AwsAccountId?: string | undefined;
|
|
451
481
|
AttributeFilters?: AttributeFilter[] | undefined;
|
|
452
482
|
}
|
|
453
|
-
export interface ChangeEvent {
|
|
454
|
-
Timestamp: Date | undefined;
|
|
455
|
-
AccountId: string | undefined;
|
|
456
|
-
Region: string | undefined;
|
|
457
|
-
Entity: Record<string, string> | undefined;
|
|
458
|
-
ChangeEventType: ChangeEventType | undefined;
|
|
459
|
-
EventId: string | undefined;
|
|
460
|
-
UserName?: string | undefined;
|
|
461
|
-
EventName?: string | undefined;
|
|
462
|
-
}
|
|
463
483
|
export interface ServiceState {
|
|
464
484
|
AttributeFilters?: AttributeFilter[] | undefined;
|
|
465
485
|
Service: Record<string, string> | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEntityEventsCommandInput,
|
|
4
|
+
ListEntityEventsCommandOutput,
|
|
5
|
+
} from "../commands/ListEntityEventsCommand";
|
|
6
|
+
import { ApplicationSignalsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListEntityEvents: (
|
|
8
|
+
config: ApplicationSignalsPaginationConfiguration,
|
|
9
|
+
input: ListEntityEventsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListEntityEventsCommandOutput>;
|
|
@@ -38,6 +38,8 @@ export declare var GroupingAttributeDefinition: StaticStructureSchema;
|
|
|
38
38
|
export declare var GroupingConfiguration: StaticStructureSchema;
|
|
39
39
|
export declare var ListAuditFindingsInput: StaticStructureSchema;
|
|
40
40
|
export declare var ListAuditFindingsOutput: StaticStructureSchema;
|
|
41
|
+
export declare var ListEntityEventsInput: StaticStructureSchema;
|
|
42
|
+
export declare var ListEntityEventsOutput: StaticStructureSchema;
|
|
41
43
|
export declare var ListGroupingAttributeDefinitionsInput: StaticStructureSchema;
|
|
42
44
|
export declare var ListGroupingAttributeDefinitionsOutput: StaticStructureSchema;
|
|
43
45
|
export declare var ListServiceDependenciesInput: StaticStructureSchema;
|
|
@@ -113,6 +115,7 @@ export declare var Auditors: number;
|
|
|
113
115
|
export declare var AuditTargets: StaticListSchema;
|
|
114
116
|
export declare var BatchUpdateExclusionWindowsErrors: StaticListSchema;
|
|
115
117
|
export declare var BurnRateConfigurations: StaticListSchema;
|
|
118
|
+
export declare var ChangeEvents: StaticListSchema;
|
|
116
119
|
export declare var Dimensions: StaticListSchema;
|
|
117
120
|
export declare var Edges: StaticListSchema;
|
|
118
121
|
export declare var ExclusionWindows: StaticListSchema;
|
|
@@ -138,6 +141,7 @@ export declare var TagKeyList: number;
|
|
|
138
141
|
export declare var TagList: StaticListSchema;
|
|
139
142
|
export declare var AttributeMap: number;
|
|
140
143
|
export declare var Attributes: number;
|
|
144
|
+
export declare var DataMap: number;
|
|
141
145
|
export declare var AuditTargetEntity: StaticStructureSchema;
|
|
142
146
|
export declare var Interval: StaticStructureSchema;
|
|
143
147
|
export declare var MonitoredRequestCountMetricDataQueries: StaticStructureSchema;
|
|
@@ -149,6 +153,7 @@ export declare var DeleteServiceLevelObjective: StaticOperationSchema;
|
|
|
149
153
|
export declare var GetService: StaticOperationSchema;
|
|
150
154
|
export declare var GetServiceLevelObjective: StaticOperationSchema;
|
|
151
155
|
export declare var ListAuditFindings: StaticOperationSchema;
|
|
156
|
+
export declare var ListEntityEvents: StaticOperationSchema;
|
|
152
157
|
export declare var ListGroupingAttributeDefinitions: StaticOperationSchema;
|
|
153
158
|
export declare var ListServiceDependencies: StaticOperationSchema;
|
|
154
159
|
export declare var ListServiceDependents: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-application-signals",
|
|
3
3
|
"description": "AWS SDK for JavaScript Application Signals Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.937.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-application-signals",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
35
|
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|