@aws-sdk/client-frauddetector 3.271.0 → 3.276.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.
Files changed (55) hide show
  1. package/dist-cjs/FraudDetector.js +75 -0
  2. package/dist-cjs/commands/CreateListCommand.js +46 -0
  3. package/dist-cjs/commands/DeleteListCommand.js +46 -0
  4. package/dist-cjs/commands/GetListElementsCommand.js +46 -0
  5. package/dist-cjs/commands/GetListsMetadataCommand.js +46 -0
  6. package/dist-cjs/commands/UpdateListCommand.js +46 -0
  7. package/dist-cjs/commands/index.js +5 -0
  8. package/dist-cjs/endpoint/ruleset.js +3 -3
  9. package/dist-cjs/models/models_0.js +58 -5
  10. package/dist-cjs/pagination/GetListElementsPaginator.js +36 -0
  11. package/dist-cjs/pagination/GetListsMetadataPaginator.js +36 -0
  12. package/dist-cjs/pagination/index.js +3 -1
  13. package/dist-cjs/protocols/Aws_json1_1.js +380 -3
  14. package/dist-es/FraudDetector.js +75 -0
  15. package/dist-es/commands/CreateListCommand.js +42 -0
  16. package/dist-es/commands/DeleteListCommand.js +42 -0
  17. package/dist-es/commands/GetListElementsCommand.js +42 -0
  18. package/dist-es/commands/GetListsMetadataCommand.js +42 -0
  19. package/dist-es/commands/UpdateListCommand.js +42 -0
  20. package/dist-es/commands/index.js +5 -0
  21. package/dist-es/endpoint/ruleset.js +3 -3
  22. package/dist-es/models/models_0.js +42 -0
  23. package/dist-es/pagination/GetListElementsPaginator.js +32 -0
  24. package/dist-es/pagination/GetListsMetadataPaginator.js +32 -0
  25. package/dist-es/pagination/index.js +3 -1
  26. package/dist-es/protocols/Aws_json1_1.js +367 -0
  27. package/dist-types/FraudDetector.d.ts +48 -0
  28. package/dist-types/FraudDetectorClient.d.ts +7 -2
  29. package/dist-types/commands/CreateListCommand.d.ts +41 -0
  30. package/dist-types/commands/DeleteListCommand.d.ts +40 -0
  31. package/dist-types/commands/GetListElementsCommand.d.ts +39 -0
  32. package/dist-types/commands/GetListsMetadataCommand.d.ts +39 -0
  33. package/dist-types/commands/UpdateListCommand.d.ts +39 -0
  34. package/dist-types/commands/index.d.ts +5 -0
  35. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  36. package/dist-types/models/models_0.d.ts +254 -0
  37. package/dist-types/pagination/GetListElementsPaginator.d.ts +4 -0
  38. package/dist-types/pagination/GetListsMetadataPaginator.d.ts +4 -0
  39. package/dist-types/pagination/index.d.ts +3 -1
  40. package/dist-types/protocols/Aws_json1_1.d.ts +15 -0
  41. package/dist-types/ts3.4/FraudDetector.d.ts +85 -0
  42. package/dist-types/ts3.4/FraudDetectorClient.d.ts +30 -0
  43. package/dist-types/ts3.4/commands/CreateListCommand.d.ts +34 -0
  44. package/dist-types/ts3.4/commands/DeleteListCommand.d.ts +34 -0
  45. package/dist-types/ts3.4/commands/GetListElementsCommand.d.ts +37 -0
  46. package/dist-types/ts3.4/commands/GetListsMetadataCommand.d.ts +37 -0
  47. package/dist-types/ts3.4/commands/UpdateListCommand.d.ts +34 -0
  48. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  49. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  50. package/dist-types/ts3.4/models/models_0.d.ts +84 -0
  51. package/dist-types/ts3.4/pagination/GetListElementsPaginator.d.ts +11 -0
  52. package/dist-types/ts3.4/pagination/GetListsMetadataPaginator.d.ts +11 -0
  53. package/dist-types/ts3.4/pagination/index.d.ts +3 -1
  54. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +60 -0
  55. package/package.json +29 -29
@@ -19,6 +19,14 @@ export interface AggregatedVariablesImpactExplanation {
19
19
  export interface AggregatedVariablesImportanceMetrics {
20
20
  logOddsMetrics?: AggregatedLogOddsMetric[];
21
21
  }
22
+ export interface AllowDenyList {
23
+ name: string | undefined;
24
+ description?: string;
25
+ variableType?: string;
26
+ createdTime?: string;
27
+ updatedTime?: string;
28
+ arn?: string;
29
+ }
22
30
  export declare enum AsyncJobStatus {
23
31
  CANCELED = "CANCELED",
24
32
  CANCEL_IN_PROGRESS = "CANCEL_IN_PROGRESS",
@@ -193,6 +201,14 @@ export interface CreateDetectorVersionResult {
193
201
  detectorVersionId?: string;
194
202
  status?: DetectorVersionStatus | string;
195
203
  }
204
+ export interface CreateListRequest {
205
+ name: string | undefined;
206
+ elements?: string[];
207
+ variableType?: string;
208
+ description?: string;
209
+ tags?: Tag[];
210
+ }
211
+ export interface CreateListResult {}
196
212
  export interface CreateModelRequest {
197
213
  modelId: string | undefined;
198
214
  modelType: ModelTypeEnum | string | undefined;
@@ -321,6 +337,10 @@ export interface DeleteLabelRequest {
321
337
  name: string | undefined;
322
338
  }
323
339
  export interface DeleteLabelResult {}
340
+ export interface DeleteListRequest {
341
+ name: string | undefined;
342
+ }
343
+ export interface DeleteListResult {}
324
344
  export interface DeleteModelRequest {
325
345
  modelId: string | undefined;
326
346
  modelType: ModelTypeEnum | string | undefined;
@@ -803,6 +823,24 @@ export interface GetLabelsResult {
803
823
  labels?: Label[];
804
824
  nextToken?: string;
805
825
  }
826
+ export interface GetListElementsRequest {
827
+ name: string | undefined;
828
+ nextToken?: string;
829
+ maxResults?: number;
830
+ }
831
+ export interface GetListElementsResult {
832
+ elements?: string[];
833
+ nextToken?: string;
834
+ }
835
+ export interface GetListsMetadataRequest {
836
+ name?: string;
837
+ nextToken?: string;
838
+ maxResults?: number;
839
+ }
840
+ export interface GetListsMetadataResult {
841
+ lists?: AllowDenyList[];
842
+ nextToken?: string;
843
+ }
806
844
  export interface GetModelsRequest {
807
845
  modelId?: string;
808
846
  modelType?: ModelTypeEnum | string;
@@ -1021,6 +1059,19 @@ export interface UpdateEventLabelRequest {
1021
1059
  labelTimestamp: string | undefined;
1022
1060
  }
1023
1061
  export interface UpdateEventLabelResult {}
1062
+ export declare enum ListUpdateMode {
1063
+ APPEND = "APPEND",
1064
+ REMOVE = "REMOVE",
1065
+ REPLACE = "REPLACE",
1066
+ }
1067
+ export interface UpdateListRequest {
1068
+ name: string | undefined;
1069
+ elements?: string[];
1070
+ description?: string;
1071
+ updateMode?: ListUpdateMode | string;
1072
+ variableType?: string;
1073
+ }
1074
+ export interface UpdateListResult {}
1024
1075
  export interface UpdateModelRequest {
1025
1076
  modelId: string | undefined;
1026
1077
  modelType: ModelTypeEnum | string | undefined;
@@ -1085,6 +1136,9 @@ export declare const AggregatedVariablesImpactExplanationFilterSensitiveLog: (
1085
1136
  export declare const AggregatedVariablesImportanceMetricsFilterSensitiveLog: (
1086
1137
  obj: AggregatedVariablesImportanceMetrics
1087
1138
  ) => any;
1139
+ export declare const AllowDenyListFilterSensitiveLog: (
1140
+ obj: AllowDenyList
1141
+ ) => any;
1088
1142
  export declare const ATIMetricDataPointFilterSensitiveLog: (
1089
1143
  obj: ATIMetricDataPoint
1090
1144
  ) => any;
@@ -1149,6 +1203,12 @@ export declare const CreateDetectorVersionRequestFilterSensitiveLog: (
1149
1203
  export declare const CreateDetectorVersionResultFilterSensitiveLog: (
1150
1204
  obj: CreateDetectorVersionResult
1151
1205
  ) => any;
1206
+ export declare const CreateListRequestFilterSensitiveLog: (
1207
+ obj: CreateListRequest
1208
+ ) => any;
1209
+ export declare const CreateListResultFilterSensitiveLog: (
1210
+ obj: CreateListResult
1211
+ ) => any;
1152
1212
  export declare const CreateModelRequestFilterSensitiveLog: (
1153
1213
  obj: CreateModelRequest
1154
1214
  ) => any;
@@ -1246,6 +1306,12 @@ export declare const DeleteLabelRequestFilterSensitiveLog: (
1246
1306
  export declare const DeleteLabelResultFilterSensitiveLog: (
1247
1307
  obj: DeleteLabelResult
1248
1308
  ) => any;
1309
+ export declare const DeleteListRequestFilterSensitiveLog: (
1310
+ obj: DeleteListRequest
1311
+ ) => any;
1312
+ export declare const DeleteListResultFilterSensitiveLog: (
1313
+ obj: DeleteListResult
1314
+ ) => any;
1249
1315
  export declare const DeleteModelRequestFilterSensitiveLog: (
1250
1316
  obj: DeleteModelRequest
1251
1317
  ) => any;
@@ -1475,6 +1541,18 @@ export declare const LabelFilterSensitiveLog: (obj: Label) => any;
1475
1541
  export declare const GetLabelsResultFilterSensitiveLog: (
1476
1542
  obj: GetLabelsResult
1477
1543
  ) => any;
1544
+ export declare const GetListElementsRequestFilterSensitiveLog: (
1545
+ obj: GetListElementsRequest
1546
+ ) => any;
1547
+ export declare const GetListElementsResultFilterSensitiveLog: (
1548
+ obj: GetListElementsResult
1549
+ ) => any;
1550
+ export declare const GetListsMetadataRequestFilterSensitiveLog: (
1551
+ obj: GetListsMetadataRequest
1552
+ ) => any;
1553
+ export declare const GetListsMetadataResultFilterSensitiveLog: (
1554
+ obj: GetListsMetadataResult
1555
+ ) => any;
1478
1556
  export declare const GetModelsRequestFilterSensitiveLog: (
1479
1557
  obj: GetModelsRequest
1480
1558
  ) => any;
@@ -1613,6 +1691,12 @@ export declare const UpdateEventLabelRequestFilterSensitiveLog: (
1613
1691
  export declare const UpdateEventLabelResultFilterSensitiveLog: (
1614
1692
  obj: UpdateEventLabelResult
1615
1693
  ) => any;
1694
+ export declare const UpdateListRequestFilterSensitiveLog: (
1695
+ obj: UpdateListRequest
1696
+ ) => any;
1697
+ export declare const UpdateListResultFilterSensitiveLog: (
1698
+ obj: UpdateListResult
1699
+ ) => any;
1616
1700
  export declare const UpdateModelRequestFilterSensitiveLog: (
1617
1701
  obj: UpdateModelRequest
1618
1702
  ) => any;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ GetListElementsCommandInput,
4
+ GetListElementsCommandOutput,
5
+ } from "../commands/GetListElementsCommand";
6
+ import { FraudDetectorPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateGetListElements(
8
+ config: FraudDetectorPaginationConfiguration,
9
+ input: GetListElementsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<GetListElementsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ GetListsMetadataCommandInput,
4
+ GetListsMetadataCommandOutput,
5
+ } from "../commands/GetListsMetadataCommand";
6
+ import { FraudDetectorPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateGetListsMetadata(
8
+ config: FraudDetectorPaginationConfiguration,
9
+ input: GetListsMetadataCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<GetListsMetadataCommandOutput>;
@@ -6,9 +6,11 @@ export * from "./GetEntityTypesPaginator";
6
6
  export * from "./GetEventTypesPaginator";
7
7
  export * from "./GetExternalModelsPaginator";
8
8
  export * from "./GetLabelsPaginator";
9
+ export * from "./GetListElementsPaginator";
10
+ export * from "./GetListsMetadataPaginator";
11
+ export * from "./Interfaces";
9
12
  export * from "./GetModelsPaginator";
10
13
  export * from "./GetOutcomesPaginator";
11
- export * from "./Interfaces";
12
14
  export * from "./GetRulesPaginator";
13
15
  export * from "./GetVariablesPaginator";
14
16
  export * from "./ListEventPredictionsPaginator";
@@ -31,6 +31,10 @@ import {
31
31
  CreateDetectorVersionCommandInput,
32
32
  CreateDetectorVersionCommandOutput,
33
33
  } from "../commands/CreateDetectorVersionCommand";
34
+ import {
35
+ CreateListCommandInput,
36
+ CreateListCommandOutput,
37
+ } from "../commands/CreateListCommand";
34
38
  import {
35
39
  CreateModelCommandInput,
36
40
  CreateModelCommandOutput,
@@ -87,6 +91,10 @@ import {
87
91
  DeleteLabelCommandInput,
88
92
  DeleteLabelCommandOutput,
89
93
  } from "../commands/DeleteLabelCommand";
94
+ import {
95
+ DeleteListCommandInput,
96
+ DeleteListCommandOutput,
97
+ } from "../commands/DeleteListCommand";
90
98
  import {
91
99
  DeleteModelCommandInput,
92
100
  DeleteModelCommandOutput,
@@ -167,6 +175,14 @@ import {
167
175
  GetLabelsCommandInput,
168
176
  GetLabelsCommandOutput,
169
177
  } from "../commands/GetLabelsCommand";
178
+ import {
179
+ GetListElementsCommandInput,
180
+ GetListElementsCommandOutput,
181
+ } from "../commands/GetListElementsCommand";
182
+ import {
183
+ GetListsMetadataCommandInput,
184
+ GetListsMetadataCommandOutput,
185
+ } from "../commands/GetListsMetadataCommand";
170
186
  import {
171
187
  GetModelsCommandInput,
172
188
  GetModelsCommandOutput,
@@ -251,6 +267,10 @@ import {
251
267
  UpdateEventLabelCommandInput,
252
268
  UpdateEventLabelCommandOutput,
253
269
  } from "../commands/UpdateEventLabelCommand";
270
+ import {
271
+ UpdateListCommandInput,
272
+ UpdateListCommandOutput,
273
+ } from "../commands/UpdateListCommand";
254
274
  import {
255
275
  UpdateModelCommandInput,
256
276
  UpdateModelCommandOutput,
@@ -303,6 +323,10 @@ export declare const serializeAws_json1_1CreateDetectorVersionCommand: (
303
323
  input: CreateDetectorVersionCommandInput,
304
324
  context: __SerdeContext
305
325
  ) => Promise<__HttpRequest>;
326
+ export declare const serializeAws_json1_1CreateListCommand: (
327
+ input: CreateListCommandInput,
328
+ context: __SerdeContext
329
+ ) => Promise<__HttpRequest>;
306
330
  export declare const serializeAws_json1_1CreateModelCommand: (
307
331
  input: CreateModelCommandInput,
308
332
  context: __SerdeContext
@@ -359,6 +383,10 @@ export declare const serializeAws_json1_1DeleteLabelCommand: (
359
383
  input: DeleteLabelCommandInput,
360
384
  context: __SerdeContext
361
385
  ) => Promise<__HttpRequest>;
386
+ export declare const serializeAws_json1_1DeleteListCommand: (
387
+ input: DeleteListCommandInput,
388
+ context: __SerdeContext
389
+ ) => Promise<__HttpRequest>;
362
390
  export declare const serializeAws_json1_1DeleteModelCommand: (
363
391
  input: DeleteModelCommandInput,
364
392
  context: __SerdeContext
@@ -439,6 +467,14 @@ export declare const serializeAws_json1_1GetLabelsCommand: (
439
467
  input: GetLabelsCommandInput,
440
468
  context: __SerdeContext
441
469
  ) => Promise<__HttpRequest>;
470
+ export declare const serializeAws_json1_1GetListElementsCommand: (
471
+ input: GetListElementsCommandInput,
472
+ context: __SerdeContext
473
+ ) => Promise<__HttpRequest>;
474
+ export declare const serializeAws_json1_1GetListsMetadataCommand: (
475
+ input: GetListsMetadataCommandInput,
476
+ context: __SerdeContext
477
+ ) => Promise<__HttpRequest>;
442
478
  export declare const serializeAws_json1_1GetModelsCommand: (
443
479
  input: GetModelsCommandInput,
444
480
  context: __SerdeContext
@@ -523,6 +559,10 @@ export declare const serializeAws_json1_1UpdateEventLabelCommand: (
523
559
  input: UpdateEventLabelCommandInput,
524
560
  context: __SerdeContext
525
561
  ) => Promise<__HttpRequest>;
562
+ export declare const serializeAws_json1_1UpdateListCommand: (
563
+ input: UpdateListCommandInput,
564
+ context: __SerdeContext
565
+ ) => Promise<__HttpRequest>;
526
566
  export declare const serializeAws_json1_1UpdateModelCommand: (
527
567
  input: UpdateModelCommandInput,
528
568
  context: __SerdeContext
@@ -575,6 +615,10 @@ export declare const deserializeAws_json1_1CreateDetectorVersionCommand: (
575
615
  output: __HttpResponse,
576
616
  context: __SerdeContext
577
617
  ) => Promise<CreateDetectorVersionCommandOutput>;
618
+ export declare const deserializeAws_json1_1CreateListCommand: (
619
+ output: __HttpResponse,
620
+ context: __SerdeContext
621
+ ) => Promise<CreateListCommandOutput>;
578
622
  export declare const deserializeAws_json1_1CreateModelCommand: (
579
623
  output: __HttpResponse,
580
624
  context: __SerdeContext
@@ -631,6 +675,10 @@ export declare const deserializeAws_json1_1DeleteLabelCommand: (
631
675
  output: __HttpResponse,
632
676
  context: __SerdeContext
633
677
  ) => Promise<DeleteLabelCommandOutput>;
678
+ export declare const deserializeAws_json1_1DeleteListCommand: (
679
+ output: __HttpResponse,
680
+ context: __SerdeContext
681
+ ) => Promise<DeleteListCommandOutput>;
634
682
  export declare const deserializeAws_json1_1DeleteModelCommand: (
635
683
  output: __HttpResponse,
636
684
  context: __SerdeContext
@@ -711,6 +759,14 @@ export declare const deserializeAws_json1_1GetLabelsCommand: (
711
759
  output: __HttpResponse,
712
760
  context: __SerdeContext
713
761
  ) => Promise<GetLabelsCommandOutput>;
762
+ export declare const deserializeAws_json1_1GetListElementsCommand: (
763
+ output: __HttpResponse,
764
+ context: __SerdeContext
765
+ ) => Promise<GetListElementsCommandOutput>;
766
+ export declare const deserializeAws_json1_1GetListsMetadataCommand: (
767
+ output: __HttpResponse,
768
+ context: __SerdeContext
769
+ ) => Promise<GetListsMetadataCommandOutput>;
714
770
  export declare const deserializeAws_json1_1GetModelsCommand: (
715
771
  output: __HttpResponse,
716
772
  context: __SerdeContext
@@ -795,6 +851,10 @@ export declare const deserializeAws_json1_1UpdateEventLabelCommand: (
795
851
  output: __HttpResponse,
796
852
  context: __SerdeContext
797
853
  ) => Promise<UpdateEventLabelCommandOutput>;
854
+ export declare const deserializeAws_json1_1UpdateListCommand: (
855
+ output: __HttpResponse,
856
+ context: __SerdeContext
857
+ ) => Promise<UpdateListCommandOutput>;
798
858
  export declare const deserializeAws_json1_1UpdateModelCommand: (
799
859
  output: __HttpResponse,
800
860
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-frauddetector",
3
3
  "description": "AWS SDK for JavaScript Frauddetector Client for Node.js, Browser and React Native",
4
- "version": "3.271.0",
4
+ "version": "3.276.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",
@@ -20,37 +20,37 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.271.0",
24
- "@aws-sdk/config-resolver": "3.271.0",
25
- "@aws-sdk/credential-provider-node": "3.271.0",
26
- "@aws-sdk/fetch-http-handler": "3.271.0",
27
- "@aws-sdk/hash-node": "3.271.0",
28
- "@aws-sdk/invalid-dependency": "3.271.0",
29
- "@aws-sdk/middleware-content-length": "3.271.0",
30
- "@aws-sdk/middleware-endpoint": "3.271.0",
31
- "@aws-sdk/middleware-host-header": "3.271.0",
32
- "@aws-sdk/middleware-logger": "3.271.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.271.0",
34
- "@aws-sdk/middleware-retry": "3.271.0",
35
- "@aws-sdk/middleware-serde": "3.271.0",
36
- "@aws-sdk/middleware-signing": "3.271.0",
37
- "@aws-sdk/middleware-stack": "3.271.0",
38
- "@aws-sdk/middleware-user-agent": "3.271.0",
39
- "@aws-sdk/node-config-provider": "3.271.0",
40
- "@aws-sdk/node-http-handler": "3.271.0",
41
- "@aws-sdk/protocol-http": "3.271.0",
42
- "@aws-sdk/smithy-client": "3.271.0",
43
- "@aws-sdk/types": "3.271.0",
44
- "@aws-sdk/url-parser": "3.271.0",
23
+ "@aws-sdk/client-sts": "3.276.0",
24
+ "@aws-sdk/config-resolver": "3.272.0",
25
+ "@aws-sdk/credential-provider-node": "3.272.0",
26
+ "@aws-sdk/fetch-http-handler": "3.272.0",
27
+ "@aws-sdk/hash-node": "3.272.0",
28
+ "@aws-sdk/invalid-dependency": "3.272.0",
29
+ "@aws-sdk/middleware-content-length": "3.272.0",
30
+ "@aws-sdk/middleware-endpoint": "3.272.0",
31
+ "@aws-sdk/middleware-host-header": "3.272.0",
32
+ "@aws-sdk/middleware-logger": "3.272.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.272.0",
34
+ "@aws-sdk/middleware-retry": "3.272.0",
35
+ "@aws-sdk/middleware-serde": "3.272.0",
36
+ "@aws-sdk/middleware-signing": "3.272.0",
37
+ "@aws-sdk/middleware-stack": "3.272.0",
38
+ "@aws-sdk/middleware-user-agent": "3.272.0",
39
+ "@aws-sdk/node-config-provider": "3.272.0",
40
+ "@aws-sdk/node-http-handler": "3.272.0",
41
+ "@aws-sdk/protocol-http": "3.272.0",
42
+ "@aws-sdk/smithy-client": "3.272.0",
43
+ "@aws-sdk/types": "3.272.0",
44
+ "@aws-sdk/url-parser": "3.272.0",
45
45
  "@aws-sdk/util-base64": "3.208.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.271.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.271.0",
50
- "@aws-sdk/util-endpoints": "3.271.0",
51
- "@aws-sdk/util-retry": "3.271.0",
52
- "@aws-sdk/util-user-agent-browser": "3.271.0",
53
- "@aws-sdk/util-user-agent-node": "3.271.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.272.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.272.0",
50
+ "@aws-sdk/util-endpoints": "3.272.0",
51
+ "@aws-sdk/util-retry": "3.272.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.272.0",
53
+ "@aws-sdk/util-user-agent-node": "3.272.0",
54
54
  "@aws-sdk/util-utf8": "3.254.0",
55
55
  "tslib": "^2.3.1"
56
56
  },