@aws-sdk/client-databrew 3.99.0 → 3.109.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 CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.109.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.108.1...v3.109.0) (2022-06-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-databrew
9
+
10
+
11
+
12
+
13
+
14
+ # [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
15
+
16
+
17
+ ### Features
18
+
19
+ * **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
20
+
21
+
22
+
23
+
24
+
25
+ # [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
26
+
27
+ **Note:** Version bump only for package @aws-sdk/client-databrew
28
+
29
+
30
+
31
+
32
+
6
33
  # [3.99.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.98.0...v3.99.0) (2022-05-25)
7
34
 
8
35
  **Note:** Version bump only for package @aws-sdk/client-databrew
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
5
5
  const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
6
6
  const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
7
7
  const middleware_logger_1 = require("@aws-sdk/middleware-logger");
8
+ const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
8
9
  const middleware_retry_1 = require("@aws-sdk/middleware-retry");
9
10
  const middleware_signing_1 = require("@aws-sdk/middleware-signing");
10
11
  const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
@@ -25,6 +26,7 @@ class DataBrewClient extends smithy_client_1.Client {
25
26
  this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
26
27
  this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
27
28
  this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
29
+ this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
28
30
  this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
29
31
  this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
30
32
  this.middlewareStack.use((0, middleware_retry_1.getOmitRetryHeadersPlugin)(this.config));
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
3
3
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
4
4
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
5
5
  import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
6
+ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
6
7
  import { getOmitRetryHeadersPlugin, getRetryPlugin, resolveRetryConfig, } from "@aws-sdk/middleware-retry";
7
8
  import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
8
9
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
@@ -25,6 +26,7 @@ var DataBrewClient = (function (_super) {
25
26
  _this.middlewareStack.use(getContentLengthPlugin(_this.config));
26
27
  _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
27
28
  _this.middlewareStack.use(getLoggerPlugin(_this.config));
29
+ _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
28
30
  _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
29
31
  _this.middlewareStack.use(getUserAgentPlugin(_this.config));
30
32
  _this.middlewareStack.use(getOmitRetryHeadersPlugin(_this.config));
@@ -399,9 +399,7 @@ export interface FilterExpression {
399
399
  /**
400
400
  * <p>The map of substitution variable names to their values used in this filter expression.</p>
401
401
  */
402
- ValuesMap: {
403
- [key: string]: string;
404
- } | undefined;
402
+ ValuesMap: Record<string, string> | undefined;
405
403
  }
406
404
  export declare namespace FilterExpression {
407
405
  /**
@@ -492,9 +490,7 @@ export interface PathOptions {
492
490
  /**
493
491
  * <p>A structure that maps names of parameters used in the Amazon S3 path of a dataset to their definitions.</p>
494
492
  */
495
- Parameters?: {
496
- [key: string]: DatasetParameter;
497
- };
493
+ Parameters?: Record<string, DatasetParameter>;
498
494
  }
499
495
  export declare namespace PathOptions {
500
496
  /**
@@ -529,9 +525,7 @@ export interface CreateDatasetRequest {
529
525
  /**
530
526
  * <p>Metadata tags to apply to this dataset.</p>
531
527
  */
532
- Tags?: {
533
- [key: string]: string;
534
- };
528
+ Tags?: Record<string, string>;
535
529
  }
536
530
  export declare namespace CreateDatasetRequest {
537
531
  /**
@@ -594,9 +588,7 @@ export interface StatisticOverride {
594
588
  /**
595
589
  * <p>A map that includes overrides of an evaluation’s parameters.</p>
596
590
  */
597
- Parameters: {
598
- [key: string]: string;
599
- } | undefined;
591
+ Parameters: Record<string, string> | undefined;
600
592
  }
601
593
  export declare namespace StatisticOverride {
602
594
  /**
@@ -913,9 +905,7 @@ export interface CreateProfileJobRequest {
913
905
  /**
914
906
  * <p>Metadata tags to apply to this job.</p>
915
907
  */
916
- Tags?: {
917
- [key: string]: string;
918
- };
908
+ Tags?: Record<string, string>;
919
909
  /**
920
910
  * <p>The job's timeout in minutes. A job that attempts to run longer than this timeout
921
911
  * period ends with a status of <code>TIMEOUT</code>.</p>
@@ -999,9 +989,7 @@ export interface CreateProjectRequest {
999
989
  /**
1000
990
  * <p>Metadata tags to apply to this project.</p>
1001
991
  */
1002
- Tags?: {
1003
- [key: string]: string;
1004
- };
992
+ Tags?: Record<string, string>;
1005
993
  }
1006
994
  export declare namespace CreateProjectRequest {
1007
995
  /**
@@ -1046,9 +1034,7 @@ export interface RecipeAction {
1046
1034
  /**
1047
1035
  * <p>Contextual parameters for the transformation.</p>
1048
1036
  */
1049
- Parameters?: {
1050
- [key: string]: string;
1051
- };
1037
+ Parameters?: Record<string, string>;
1052
1038
  }
1053
1039
  export declare namespace RecipeAction {
1054
1040
  /**
@@ -1127,9 +1113,7 @@ export interface CreateRecipeRequest {
1127
1113
  /**
1128
1114
  * <p>Metadata tags to apply to this recipe.</p>
1129
1115
  */
1130
- Tags?: {
1131
- [key: string]: string;
1132
- };
1116
+ Tags?: Record<string, string>;
1133
1117
  }
1134
1118
  export declare namespace CreateRecipeRequest {
1135
1119
  /**
@@ -1443,9 +1427,7 @@ export interface CreateRecipeJobRequest {
1443
1427
  /**
1444
1428
  * <p>Metadata tags to apply to this job.</p>
1445
1429
  */
1446
- Tags?: {
1447
- [key: string]: string;
1448
- };
1430
+ Tags?: Record<string, string>;
1449
1431
  /**
1450
1432
  * <p>The job's timeout in minutes. A job that attempts to run longer than this timeout
1451
1433
  * period ends with a status of <code>TIMEOUT</code>.</p>
@@ -1544,9 +1526,7 @@ export interface Rule {
1544
1526
  * should be enclosed in backticks, for example, <code>":col1": "`Column A`".</code>
1545
1527
  * </p>
1546
1528
  */
1547
- SubstitutionMap?: {
1548
- [key: string]: string;
1549
- };
1529
+ SubstitutionMap?: Record<string, string>;
1550
1530
  /**
1551
1531
  * <p>The threshold used with a non-aggregate check expression. Non-aggregate check expressions
1552
1532
  * will be applied to each row in a specific column, and the threshold will be used to determine
@@ -1588,9 +1568,7 @@ export interface CreateRulesetRequest {
1588
1568
  /**
1589
1569
  * <p>Metadata tags to apply to the ruleset.</p>
1590
1570
  */
1591
- Tags?: {
1592
- [key: string]: string;
1593
- };
1571
+ Tags?: Record<string, string>;
1594
1572
  }
1595
1573
  export declare namespace CreateRulesetRequest {
1596
1574
  /**
@@ -1625,9 +1603,7 @@ export interface CreateScheduleRequest {
1625
1603
  /**
1626
1604
  * <p>Metadata tags to apply to this schedule.</p>
1627
1605
  */
1628
- Tags?: {
1629
- [key: string]: string;
1630
- };
1606
+ Tags?: Record<string, string>;
1631
1607
  /**
1632
1608
  * <p>A unique name for the schedule. Valid characters are alphanumeric (A-Z, a-z, 0-9),
1633
1609
  * hyphen (-), period (.), and space.</p>
@@ -1872,9 +1848,7 @@ export interface DescribeDatasetResponse {
1872
1848
  /**
1873
1849
  * <p>Metadata tags associated with this dataset.</p>
1874
1850
  */
1875
- Tags?: {
1876
- [key: string]: string;
1877
- };
1851
+ Tags?: Record<string, string>;
1878
1852
  /**
1879
1853
  * <p>The Amazon Resource Name (ARN) of the dataset.</p>
1880
1854
  */
@@ -2019,9 +1993,7 @@ export interface DescribeJobResponse {
2019
1993
  /**
2020
1994
  * <p>Metadata tags associated with this job.</p>
2021
1995
  */
2022
- Tags?: {
2023
- [key: string]: string;
2024
- };
1996
+ Tags?: Record<string, string>;
2025
1997
  /**
2026
1998
  * <p>The job's timeout in minutes. A job that attempts to run longer than this timeout
2027
1999
  * period ends with a status of <code>TIMEOUT</code>.</p>
@@ -2225,9 +2197,7 @@ export interface DescribeProjectResponse {
2225
2197
  /**
2226
2198
  * <p>Metadata tags associated with this project.</p>
2227
2199
  */
2228
- Tags?: {
2229
- [key: string]: string;
2230
- };
2200
+ Tags?: Record<string, string>;
2231
2201
  /**
2232
2202
  * <p>Describes the current state of the session:</p>
2233
2203
  * <ul>
@@ -2323,9 +2293,7 @@ export interface DescribeRecipeResponse {
2323
2293
  /**
2324
2294
  * <p>Metadata tags associated with this project.</p>
2325
2295
  */
2326
- Tags?: {
2327
- [key: string]: string;
2328
- };
2296
+ Tags?: Record<string, string>;
2329
2297
  /**
2330
2298
  * <p>The ARN of the recipe.</p>
2331
2299
  */
@@ -2395,9 +2363,7 @@ export interface DescribeRulesetResponse {
2395
2363
  /**
2396
2364
  * <p>Metadata tags that have been applied to the ruleset.</p>
2397
2365
  */
2398
- Tags?: {
2399
- [key: string]: string;
2400
- };
2366
+ Tags?: Record<string, string>;
2401
2367
  }
2402
2368
  export declare namespace DescribeRulesetResponse {
2403
2369
  /**
@@ -2451,9 +2417,7 @@ export interface DescribeScheduleResponse {
2451
2417
  /**
2452
2418
  * <p>Metadata tags associated with this schedule.</p>
2453
2419
  */
2454
- Tags?: {
2455
- [key: string]: string;
2456
- };
2420
+ Tags?: Record<string, string>;
2457
2421
  /**
2458
2422
  * <p>The name of the schedule.</p>
2459
2423
  */
@@ -2534,9 +2498,7 @@ export interface Dataset {
2534
2498
  /**
2535
2499
  * <p>Metadata tags that have been applied to the dataset.</p>
2536
2500
  */
2537
- Tags?: {
2538
- [key: string]: string;
2539
- };
2501
+ Tags?: Record<string, string>;
2540
2502
  /**
2541
2503
  * <p>The unique Amazon Resource Name (ARN) for the dataset.</p>
2542
2504
  */
@@ -2838,9 +2800,7 @@ export interface Job {
2838
2800
  /**
2839
2801
  * <p>Metadata tags that have been applied to the job.</p>
2840
2802
  */
2841
- Tags?: {
2842
- [key: string]: string;
2843
- };
2803
+ Tags?: Record<string, string>;
2844
2804
  /**
2845
2805
  * <p>A sample configuration for profile jobs only, which determines the number of rows on which the
2846
2806
  * profile job is run. If a <code>JobSample</code> value isn't provided, the default value
@@ -2940,9 +2900,7 @@ export interface Project {
2940
2900
  /**
2941
2901
  * <p>Metadata tags that have been applied to the project.</p>
2942
2902
  */
2943
- Tags?: {
2944
- [key: string]: string;
2945
- };
2903
+ Tags?: Record<string, string>;
2946
2904
  /**
2947
2905
  * <p>The Amazon Resource Name (ARN) of the role that will be assumed for this
2948
2906
  * project.</p>
@@ -3056,9 +3014,7 @@ export interface Recipe {
3056
3014
  /**
3057
3015
  * <p>Metadata tags that have been applied to the recipe.</p>
3058
3016
  */
3059
- Tags?: {
3060
- [key: string]: string;
3061
- };
3017
+ Tags?: Record<string, string>;
3062
3018
  /**
3063
3019
  * <p>The identifier for the version for the recipe. Must be one of the following:</p>
3064
3020
  * <ul>
@@ -3207,9 +3163,7 @@ export interface RulesetItem {
3207
3163
  /**
3208
3164
  * <p>Metadata tags that have been applied to the ruleset.</p>
3209
3165
  */
3210
- Tags?: {
3211
- [key: string]: string;
3212
- };
3166
+ Tags?: Record<string, string>;
3213
3167
  /**
3214
3168
  * <p>The Amazon Resource Name (ARN) of a resource (dataset) that the ruleset is
3215
3169
  * associated with.</p>
@@ -3300,9 +3254,7 @@ export interface Schedule {
3300
3254
  /**
3301
3255
  * <p>Metadata tags that have been applied to the schedule.</p>
3302
3256
  */
3303
- Tags?: {
3304
- [key: string]: string;
3305
- };
3257
+ Tags?: Record<string, string>;
3306
3258
  /**
3307
3259
  * <p>The name of the schedule.</p>
3308
3260
  */
@@ -3348,9 +3300,7 @@ export interface ListTagsForResourceResponse {
3348
3300
  /**
3349
3301
  * <p>A list of tags associated with the DataBrew resource.</p>
3350
3302
  */
3351
- Tags?: {
3352
- [key: string]: string;
3353
- };
3303
+ Tags?: Record<string, string>;
3354
3304
  }
3355
3305
  export declare namespace ListTagsForResourceResponse {
3356
3306
  /**
@@ -3574,9 +3524,7 @@ export interface TagResourceRequest {
3574
3524
  /**
3575
3525
  * <p>One or more tags to be assigned to the resource.</p>
3576
3526
  */
3577
- Tags: {
3578
- [key: string]: string;
3579
- } | undefined;
3527
+ Tags: Record<string, string> | undefined;
3580
3528
  }
3581
3529
  export declare namespace TagResourceRequest {
3582
3530
  /**
@@ -223,9 +223,7 @@ export interface FilterExpression {
223
223
 
224
224
  Expression: string | undefined;
225
225
 
226
- ValuesMap: {
227
- [key: string]: string;
228
- } | undefined;
226
+ ValuesMap: Record<string, string> | undefined;
229
227
  }
230
228
  export declare namespace FilterExpression {
231
229
 
@@ -273,9 +271,7 @@ export interface PathOptions {
273
271
 
274
272
  FilesLimit?: FilesLimit;
275
273
 
276
- Parameters?: {
277
- [key: string]: DatasetParameter;
278
- };
274
+ Parameters?: Record<string, DatasetParameter>;
279
275
  }
280
276
  export declare namespace PathOptions {
281
277
 
@@ -293,9 +289,7 @@ export interface CreateDatasetRequest {
293
289
 
294
290
  PathOptions?: PathOptions;
295
291
 
296
- Tags?: {
297
- [key: string]: string;
298
- };
292
+ Tags?: Record<string, string>;
299
293
  }
300
294
  export declare namespace CreateDatasetRequest {
301
295
 
@@ -333,9 +327,7 @@ export interface StatisticOverride {
333
327
 
334
328
  Statistic: string | undefined;
335
329
 
336
- Parameters: {
337
- [key: string]: string;
338
- } | undefined;
330
+ Parameters: Record<string, string> | undefined;
339
331
  }
340
332
  export declare namespace StatisticOverride {
341
333
 
@@ -450,9 +442,7 @@ export interface CreateProfileJobRequest {
450
442
 
451
443
  RoleArn: string | undefined;
452
444
 
453
- Tags?: {
454
- [key: string]: string;
455
- };
445
+ Tags?: Record<string, string>;
456
446
 
457
447
  Timeout?: number;
458
448
 
@@ -498,9 +488,7 @@ export interface CreateProjectRequest {
498
488
 
499
489
  RoleArn: string | undefined;
500
490
 
501
- Tags?: {
502
- [key: string]: string;
503
- };
491
+ Tags?: Record<string, string>;
504
492
  }
505
493
  export declare namespace CreateProjectRequest {
506
494
 
@@ -527,9 +515,7 @@ export interface RecipeAction {
527
515
 
528
516
  Operation: string | undefined;
529
517
 
530
- Parameters?: {
531
- [key: string]: string;
532
- };
518
+ Parameters?: Record<string, string>;
533
519
  }
534
520
  export declare namespace RecipeAction {
535
521
 
@@ -567,9 +553,7 @@ export interface CreateRecipeRequest {
567
553
 
568
554
  Steps: RecipeStep[] | undefined;
569
555
 
570
- Tags?: {
571
- [key: string]: string;
572
- };
556
+ Tags?: Record<string, string>;
573
557
  }
574
558
  export declare namespace CreateRecipeRequest {
575
559
 
@@ -737,9 +721,7 @@ export interface CreateRecipeJobRequest {
737
721
 
738
722
  RoleArn: string | undefined;
739
723
 
740
- Tags?: {
741
- [key: string]: string;
742
- };
724
+ Tags?: Record<string, string>;
743
725
 
744
726
  Timeout?: number;
745
727
  }
@@ -787,9 +769,7 @@ export interface Rule {
787
769
 
788
770
  CheckExpression: string | undefined;
789
771
 
790
- SubstitutionMap?: {
791
- [key: string]: string;
792
- };
772
+ SubstitutionMap?: Record<string, string>;
793
773
 
794
774
  Threshold?: Threshold;
795
775
 
@@ -809,9 +789,7 @@ export interface CreateRulesetRequest {
809
789
 
810
790
  Rules: Rule[] | undefined;
811
791
 
812
- Tags?: {
813
- [key: string]: string;
814
- };
792
+ Tags?: Record<string, string>;
815
793
  }
816
794
  export declare namespace CreateRulesetRequest {
817
795
 
@@ -831,9 +809,7 @@ export interface CreateScheduleRequest {
831
809
 
832
810
  CronExpression: string | undefined;
833
811
 
834
- Tags?: {
835
- [key: string]: string;
836
- };
812
+ Tags?: Record<string, string>;
837
813
 
838
814
  Name: string | undefined;
839
815
  }
@@ -984,9 +960,7 @@ export interface DescribeDatasetResponse {
984
960
 
985
961
  PathOptions?: PathOptions;
986
962
 
987
- Tags?: {
988
- [key: string]: string;
989
- };
963
+ Tags?: Record<string, string>;
990
964
 
991
965
  ResourceArn?: string;
992
966
  }
@@ -1050,9 +1024,7 @@ export interface DescribeJobResponse {
1050
1024
 
1051
1025
  RoleArn?: string;
1052
1026
 
1053
- Tags?: {
1054
- [key: string]: string;
1055
- };
1027
+ Tags?: Record<string, string>;
1056
1028
 
1057
1029
  Timeout?: number;
1058
1030
 
@@ -1167,9 +1139,7 @@ export interface DescribeProjectResponse {
1167
1139
 
1168
1140
  RoleArn?: string;
1169
1141
 
1170
- Tags?: {
1171
- [key: string]: string;
1172
- };
1142
+ Tags?: Record<string, string>;
1173
1143
 
1174
1144
  SessionStatus?: SessionStatus | string;
1175
1145
 
@@ -1213,9 +1183,7 @@ export interface DescribeRecipeResponse {
1213
1183
 
1214
1184
  Steps?: RecipeStep[];
1215
1185
 
1216
- Tags?: {
1217
- [key: string]: string;
1218
- };
1186
+ Tags?: Record<string, string>;
1219
1187
 
1220
1188
  ResourceArn?: string;
1221
1189
 
@@ -1253,9 +1221,7 @@ export interface DescribeRulesetResponse {
1253
1221
 
1254
1222
  ResourceArn?: string;
1255
1223
 
1256
- Tags?: {
1257
- [key: string]: string;
1258
- };
1224
+ Tags?: Record<string, string>;
1259
1225
  }
1260
1226
  export declare namespace DescribeRulesetResponse {
1261
1227
 
@@ -1285,9 +1251,7 @@ export interface DescribeScheduleResponse {
1285
1251
 
1286
1252
  CronExpression?: string;
1287
1253
 
1288
- Tags?: {
1289
- [key: string]: string;
1290
- };
1254
+ Tags?: Record<string, string>;
1291
1255
 
1292
1256
  Name: string | undefined;
1293
1257
  }
@@ -1330,9 +1294,7 @@ export interface Dataset {
1330
1294
 
1331
1295
  PathOptions?: PathOptions;
1332
1296
 
1333
- Tags?: {
1334
- [key: string]: string;
1335
- };
1297
+ Tags?: Record<string, string>;
1336
1298
 
1337
1299
  ResourceArn?: string;
1338
1300
  }
@@ -1474,9 +1436,7 @@ export interface Job {
1474
1436
 
1475
1437
  Timeout?: number;
1476
1438
 
1477
- Tags?: {
1478
- [key: string]: string;
1479
- };
1439
+ Tags?: Record<string, string>;
1480
1440
 
1481
1441
  JobSample?: JobSample;
1482
1442
 
@@ -1529,9 +1489,7 @@ export interface Project {
1529
1489
 
1530
1490
  Sample?: Sample;
1531
1491
 
1532
- Tags?: {
1533
- [key: string]: string;
1534
- };
1492
+ Tags?: Record<string, string>;
1535
1493
 
1536
1494
  RoleArn?: string;
1537
1495
 
@@ -1590,9 +1548,7 @@ export interface Recipe {
1590
1548
 
1591
1549
  Steps?: RecipeStep[];
1592
1550
 
1593
- Tags?: {
1594
- [key: string]: string;
1595
- };
1551
+ Tags?: Record<string, string>;
1596
1552
 
1597
1553
  RecipeVersion?: string;
1598
1554
  }
@@ -1665,9 +1621,7 @@ export interface RulesetItem {
1665
1621
 
1666
1622
  RuleCount?: number;
1667
1623
 
1668
- Tags?: {
1669
- [key: string]: string;
1670
- };
1624
+ Tags?: Record<string, string>;
1671
1625
 
1672
1626
  TargetArn: string | undefined;
1673
1627
  }
@@ -1716,9 +1670,7 @@ export interface Schedule {
1716
1670
 
1717
1671
  CronExpression?: string;
1718
1672
 
1719
- Tags?: {
1720
- [key: string]: string;
1721
- };
1673
+ Tags?: Record<string, string>;
1722
1674
 
1723
1675
  Name: string | undefined;
1724
1676
  }
@@ -1746,9 +1698,7 @@ export declare namespace ListTagsForResourceRequest {
1746
1698
  }
1747
1699
  export interface ListTagsForResourceResponse {
1748
1700
 
1749
- Tags?: {
1750
- [key: string]: string;
1751
- };
1701
+ Tags?: Record<string, string>;
1752
1702
  }
1753
1703
  export declare namespace ListTagsForResourceResponse {
1754
1704
 
@@ -1879,9 +1829,7 @@ export interface TagResourceRequest {
1879
1829
 
1880
1830
  ResourceArn: string | undefined;
1881
1831
 
1882
- Tags: {
1883
- [key: string]: string;
1884
- } | undefined;
1832
+ Tags: Record<string, string> | undefined;
1885
1833
  }
1886
1834
  export declare namespace TagResourceRequest {
1887
1835
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-databrew",
3
3
  "description": "AWS SDK for JavaScript Databrew Client for Node.js, Browser and React Native",
4
- "version": "3.99.0",
4
+ "version": "3.109.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",
@@ -18,36 +18,37 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.99.0",
22
- "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.99.0",
24
- "@aws-sdk/fetch-http-handler": "3.78.0",
25
- "@aws-sdk/hash-node": "3.78.0",
26
- "@aws-sdk/invalid-dependency": "3.78.0",
27
- "@aws-sdk/middleware-content-length": "3.78.0",
28
- "@aws-sdk/middleware-host-header": "3.78.0",
29
- "@aws-sdk/middleware-logger": "3.78.0",
30
- "@aws-sdk/middleware-retry": "3.80.0",
31
- "@aws-sdk/middleware-serde": "3.78.0",
32
- "@aws-sdk/middleware-signing": "3.78.0",
33
- "@aws-sdk/middleware-stack": "3.78.0",
34
- "@aws-sdk/middleware-user-agent": "3.78.0",
35
- "@aws-sdk/node-config-provider": "3.80.0",
36
- "@aws-sdk/node-http-handler": "3.94.0",
37
- "@aws-sdk/protocol-http": "3.78.0",
38
- "@aws-sdk/smithy-client": "3.99.0",
39
- "@aws-sdk/types": "3.78.0",
40
- "@aws-sdk/url-parser": "3.78.0",
41
- "@aws-sdk/util-base64-browser": "3.58.0",
21
+ "@aws-sdk/client-sts": "3.109.0",
22
+ "@aws-sdk/config-resolver": "3.109.0",
23
+ "@aws-sdk/credential-provider-node": "3.109.0",
24
+ "@aws-sdk/fetch-http-handler": "3.109.0",
25
+ "@aws-sdk/hash-node": "3.109.0",
26
+ "@aws-sdk/invalid-dependency": "3.109.0",
27
+ "@aws-sdk/middleware-content-length": "3.109.0",
28
+ "@aws-sdk/middleware-host-header": "3.109.0",
29
+ "@aws-sdk/middleware-logger": "3.109.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.109.0",
31
+ "@aws-sdk/middleware-retry": "3.109.0",
32
+ "@aws-sdk/middleware-serde": "3.109.0",
33
+ "@aws-sdk/middleware-signing": "3.109.0",
34
+ "@aws-sdk/middleware-stack": "3.109.0",
35
+ "@aws-sdk/middleware-user-agent": "3.109.0",
36
+ "@aws-sdk/node-config-provider": "3.109.0",
37
+ "@aws-sdk/node-http-handler": "3.109.0",
38
+ "@aws-sdk/protocol-http": "3.109.0",
39
+ "@aws-sdk/smithy-client": "3.109.0",
40
+ "@aws-sdk/types": "3.109.0",
41
+ "@aws-sdk/url-parser": "3.109.0",
42
+ "@aws-sdk/util-base64-browser": "3.109.0",
42
43
  "@aws-sdk/util-base64-node": "3.55.0",
43
44
  "@aws-sdk/util-body-length-browser": "3.55.0",
44
45
  "@aws-sdk/util-body-length-node": "3.55.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.99.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.99.0",
47
- "@aws-sdk/util-user-agent-browser": "3.78.0",
48
- "@aws-sdk/util-user-agent-node": "3.80.0",
49
- "@aws-sdk/util-utf8-browser": "3.55.0",
50
- "@aws-sdk/util-utf8-node": "3.55.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.109.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.109.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.109.0",
49
+ "@aws-sdk/util-user-agent-node": "3.109.0",
50
+ "@aws-sdk/util-utf8-browser": "3.109.0",
51
+ "@aws-sdk/util-utf8-node": "3.109.0",
51
52
  "tslib": "^2.3.1"
52
53
  },
53
54
  "devDependencies": {