@aws-sdk/client-glue 3.252.0 → 3.254.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 (29) hide show
  1. package/dist-cjs/commands/CreateScriptCommand.js +2 -1
  2. package/dist-cjs/commands/ListCrawlsCommand.js +2 -1
  3. package/dist-cjs/commands/ListCustomEntityTypesCommand.js +3 -3
  4. package/dist-cjs/models/models_0.js +34 -34
  5. package/dist-cjs/models/models_1.js +34 -33
  6. package/dist-cjs/models/models_2.js +31 -4
  7. package/dist-cjs/protocols/Aws_json1_1.js +198 -38
  8. package/dist-es/commands/CreateScriptCommand.js +2 -1
  9. package/dist-es/commands/ListCrawlsCommand.js +2 -1
  10. package/dist-es/commands/ListCustomEntityTypesCommand.js +1 -1
  11. package/dist-es/models/models_0.js +23 -25
  12. package/dist-es/models/models_1.js +25 -22
  13. package/dist-es/models/models_2.js +22 -0
  14. package/dist-es/protocols/Aws_json1_1.js +198 -38
  15. package/dist-types/GlueClient.d.ts +3 -3
  16. package/dist-types/commands/CreateScriptCommand.d.ts +2 -1
  17. package/dist-types/commands/ListCrawlsCommand.d.ts +2 -1
  18. package/dist-types/commands/ListCustomEntityTypesCommand.d.ts +1 -1
  19. package/dist-types/models/models_0.d.ts +169 -61
  20. package/dist-types/models/models_1.d.ts +58 -123
  21. package/dist-types/models/models_2.d.ts +148 -2
  22. package/dist-types/ts3.4/GlueClient.d.ts +2 -1
  23. package/dist-types/ts3.4/commands/CreateScriptCommand.d.ts +2 -1
  24. package/dist-types/ts3.4/commands/ListCrawlsCommand.d.ts +2 -1
  25. package/dist-types/ts3.4/commands/ListCustomEntityTypesCommand.d.ts +1 -1
  26. package/dist-types/ts3.4/models/models_0.d.ts +60 -34
  27. package/dist-types/ts3.4/models/models_1.d.ts +34 -56
  28. package/dist-types/ts3.4/models/models_2.d.ts +63 -1
  29. package/package.json +31 -31
@@ -11,7 +11,8 @@ import {
11
11
  ServiceInputTypes,
12
12
  ServiceOutputTypes,
13
13
  } from "../GlueClient";
14
- import { ListCrawlsRequest, ListCrawlsResponse } from "../models/models_1";
14
+ import { ListCrawlsRequest } from "../models/models_1";
15
+ import { ListCrawlsResponse } from "../models/models_2";
15
16
  export interface ListCrawlsCommandInput extends ListCrawlsRequest {}
16
17
  export interface ListCrawlsCommandOutput
17
18
  extends ListCrawlsResponse,
@@ -14,7 +14,7 @@ import {
14
14
  import {
15
15
  ListCustomEntityTypesRequest,
16
16
  ListCustomEntityTypesResponse,
17
- } from "../models/models_1";
17
+ } from "../models/models_2";
18
18
  export interface ListCustomEntityTypesCommandInput
19
19
  extends ListCustomEntityTypesRequest {}
20
20
  export interface ListCustomEntityTypesCommandOutput
@@ -518,6 +518,13 @@ export interface BatchGetDevEndpointsResponse {
518
518
  export interface BatchGetJobsRequest {
519
519
  JobNames: string[] | undefined;
520
520
  }
521
+ export interface CatalogHudiSource {
522
+ Name: string | undefined;
523
+ Database: string | undefined;
524
+ Table: string | undefined;
525
+ AdditionalHudiOptions?: Record<string, string>;
526
+ OutputSchemas?: GlueSchema[];
527
+ }
521
528
  export interface StreamingDataPreviewOptions {
522
529
  PollingTime?: number;
523
530
  RecordPollingLimit?: number;
@@ -964,6 +971,13 @@ export interface RenameField {
964
971
  SourcePath: string[] | undefined;
965
972
  TargetPath: string[] | undefined;
966
973
  }
974
+ export interface S3CatalogHudiSource {
975
+ Name: string | undefined;
976
+ Database: string | undefined;
977
+ Table: string | undefined;
978
+ AdditionalHudiOptions?: Record<string, string>;
979
+ OutputSchemas?: GlueSchema[];
980
+ }
967
981
  export interface S3CatalogSource {
968
982
  Name: string | undefined;
969
983
  Database: string | undefined;
@@ -1026,6 +1040,7 @@ export interface S3CsvSource {
1026
1040
  export declare enum TargetFormat {
1027
1041
  AVRO = "avro",
1028
1042
  CSV = "csv",
1043
+ HUDI = "hudi",
1029
1044
  JSON = "json",
1030
1045
  ORC = "orc",
1031
1046
  PARQUET = "parquet",
@@ -1060,6 +1075,38 @@ export interface S3GlueParquetTarget {
1060
1075
  Compression?: ParquetCompressionType | string;
1061
1076
  SchemaChangePolicy?: DirectSchemaChangePolicy;
1062
1077
  }
1078
+ export interface S3HudiCatalogTarget {
1079
+ Name: string | undefined;
1080
+ Inputs: string[] | undefined;
1081
+ PartitionKeys?: string[][];
1082
+ Table: string | undefined;
1083
+ Database: string | undefined;
1084
+ AdditionalOptions: Record<string, string> | undefined;
1085
+ SchemaChangePolicy?: CatalogSchemaChangePolicy;
1086
+ }
1087
+ export declare enum HudiTargetCompressionType {
1088
+ GZIP = "gzip",
1089
+ LZO = "lzo",
1090
+ SNAPPY = "snappy",
1091
+ UNCOMPRESSED = "uncompressed",
1092
+ }
1093
+ export interface S3HudiDirectTarget {
1094
+ Name: string | undefined;
1095
+ Inputs: string[] | undefined;
1096
+ Path: string | undefined;
1097
+ Compression: HudiTargetCompressionType | string | undefined;
1098
+ PartitionKeys?: string[][];
1099
+ Format: TargetFormat | string | undefined;
1100
+ AdditionalOptions: Record<string, string> | undefined;
1101
+ SchemaChangePolicy?: DirectSchemaChangePolicy;
1102
+ }
1103
+ export interface S3HudiSource {
1104
+ Name: string | undefined;
1105
+ Paths: string[] | undefined;
1106
+ AdditionalHudiOptions?: Record<string, string>;
1107
+ AdditionalOptions?: S3DirectSourceAdditionalOptions;
1108
+ OutputSchemas?: GlueSchema[];
1109
+ }
1063
1110
  export interface S3JsonSource {
1064
1111
  Name: string | undefined;
1065
1112
  Paths: string[] | undefined;
@@ -1899,31 +1946,6 @@ export interface CreateScriptRequest {
1899
1946
  DagEdges?: CodeGenEdge[];
1900
1947
  Language?: Language | string;
1901
1948
  }
1902
- export interface CreateScriptResponse {
1903
- PythonScript?: string;
1904
- ScalaCode?: string;
1905
- }
1906
- export declare enum CloudWatchEncryptionMode {
1907
- DISABLED = "DISABLED",
1908
- SSEKMS = "SSE-KMS",
1909
- }
1910
- export interface CloudWatchEncryption {
1911
- CloudWatchEncryptionMode?: CloudWatchEncryptionMode | string;
1912
- KmsKeyArn?: string;
1913
- }
1914
- export declare enum JobBookmarksEncryptionMode {
1915
- CSEKMS = "CSE-KMS",
1916
- DISABLED = "DISABLED",
1917
- }
1918
- export interface JobBookmarksEncryption {
1919
- JobBookmarksEncryptionMode?: JobBookmarksEncryptionMode | string;
1920
- KmsKeyArn?: string;
1921
- }
1922
- export declare enum S3EncryptionMode {
1923
- DISABLED = "DISABLED",
1924
- SSEKMS = "SSE-KMS",
1925
- SSES3 = "SSE-S3",
1926
- }
1927
1949
  export declare const NotificationPropertyFilterSensitiveLog: (
1928
1950
  obj: NotificationProperty
1929
1951
  ) => any;
@@ -2076,6 +2098,9 @@ export declare const BatchGetDevEndpointsResponseFilterSensitiveLog: (
2076
2098
  export declare const BatchGetJobsRequestFilterSensitiveLog: (
2077
2099
  obj: BatchGetJobsRequest
2078
2100
  ) => any;
2101
+ export declare const CatalogHudiSourceFilterSensitiveLog: (
2102
+ obj: CatalogHudiSource
2103
+ ) => any;
2079
2104
  export declare const StreamingDataPreviewOptionsFilterSensitiveLog: (
2080
2105
  obj: StreamingDataPreviewOptions
2081
2106
  ) => any;
@@ -2206,6 +2231,9 @@ export declare const RelationalCatalogSourceFilterSensitiveLog: (
2206
2231
  obj: RelationalCatalogSource
2207
2232
  ) => any;
2208
2233
  export declare const RenameFieldFilterSensitiveLog: (obj: RenameField) => any;
2234
+ export declare const S3CatalogHudiSourceFilterSensitiveLog: (
2235
+ obj: S3CatalogHudiSource
2236
+ ) => any;
2209
2237
  export declare const S3CatalogSourceFilterSensitiveLog: (
2210
2238
  obj: S3CatalogSource
2211
2239
  ) => any;
@@ -2225,6 +2253,13 @@ export declare const S3DirectTargetFilterSensitiveLog: (
2225
2253
  export declare const S3GlueParquetTargetFilterSensitiveLog: (
2226
2254
  obj: S3GlueParquetTarget
2227
2255
  ) => any;
2256
+ export declare const S3HudiCatalogTargetFilterSensitiveLog: (
2257
+ obj: S3HudiCatalogTarget
2258
+ ) => any;
2259
+ export declare const S3HudiDirectTargetFilterSensitiveLog: (
2260
+ obj: S3HudiDirectTarget
2261
+ ) => any;
2262
+ export declare const S3HudiSourceFilterSensitiveLog: (obj: S3HudiSource) => any;
2228
2263
  export declare const S3JsonSourceFilterSensitiveLog: (obj: S3JsonSource) => any;
2229
2264
  export declare const S3ParquetSourceFilterSensitiveLog: (
2230
2265
  obj: S3ParquetSource
@@ -2499,12 +2534,3 @@ export declare const CodeGenNodeFilterSensitiveLog: (obj: CodeGenNode) => any;
2499
2534
  export declare const CreateScriptRequestFilterSensitiveLog: (
2500
2535
  obj: CreateScriptRequest
2501
2536
  ) => any;
2502
- export declare const CreateScriptResponseFilterSensitiveLog: (
2503
- obj: CreateScriptResponse
2504
- ) => any;
2505
- export declare const CloudWatchEncryptionFilterSensitiveLog: (
2506
- obj: CloudWatchEncryption
2507
- ) => any;
2508
- export declare const JobBookmarksEncryptionFilterSensitiveLog: (
2509
- obj: JobBookmarksEncryption
2510
- ) => any;
@@ -4,7 +4,6 @@ import {
4
4
  Action,
5
5
  AuditContext,
6
6
  Blueprint,
7
- CloudWatchEncryption,
8
7
  CodeGenEdge,
9
8
  CodeGenNode,
10
9
  CodeGenNodeArg,
@@ -14,7 +13,6 @@ import {
14
13
  ConnectionType,
15
14
  Crawler,
16
15
  CsvHeaderOption,
17
- CustomEntityType,
18
16
  DatabaseIdentifier,
19
17
  DataFormat,
20
18
  DataQualityRuleResult,
@@ -24,7 +22,6 @@ import {
24
22
  ErrorDetail,
25
23
  EventBatchingCondition,
26
24
  GlueTable,
27
- JobBookmarksEncryption,
28
25
  JobRun,
29
26
  Language,
30
27
  Partition,
@@ -34,7 +31,6 @@ import {
34
31
  Predicate,
35
32
  PrincipalPermissions,
36
33
  RegistryId,
37
- S3EncryptionMode,
38
34
  SchemaId,
39
35
  SchemaStatus,
40
36
  SchemaVersionStatus,
@@ -49,6 +45,31 @@ import {
49
45
  Workflow,
50
46
  WorkflowRun,
51
47
  } from "./models_0";
48
+ export interface CreateScriptResponse {
49
+ PythonScript?: string;
50
+ ScalaCode?: string;
51
+ }
52
+ export declare enum CloudWatchEncryptionMode {
53
+ DISABLED = "DISABLED",
54
+ SSEKMS = "SSE-KMS",
55
+ }
56
+ export interface CloudWatchEncryption {
57
+ CloudWatchEncryptionMode?: CloudWatchEncryptionMode | string;
58
+ KmsKeyArn?: string;
59
+ }
60
+ export declare enum JobBookmarksEncryptionMode {
61
+ CSEKMS = "CSE-KMS",
62
+ DISABLED = "DISABLED",
63
+ }
64
+ export interface JobBookmarksEncryption {
65
+ JobBookmarksEncryptionMode?: JobBookmarksEncryptionMode | string;
66
+ KmsKeyArn?: string;
67
+ }
68
+ export declare enum S3EncryptionMode {
69
+ DISABLED = "DISABLED",
70
+ SSEKMS = "SSE-KMS",
71
+ SSES3 = "SSE-S3",
72
+ }
52
73
  export interface S3Encryption {
53
74
  S3EncryptionMode?: S3EncryptionMode | string;
54
75
  KmsKeyArn?: string;
@@ -1568,43 +1589,15 @@ export interface ListCrawlsRequest {
1568
1589
  Filters?: CrawlsFilter[];
1569
1590
  NextToken?: string;
1570
1591
  }
1571
- export declare enum CrawlerHistoryState {
1572
- COMPLETED = "COMPLETED",
1573
- FAILED = "FAILED",
1574
- RUNNING = "RUNNING",
1575
- STOPPED = "STOPPED",
1576
- }
1577
- export interface CrawlerHistory {
1578
- CrawlId?: string;
1579
- State?: CrawlerHistoryState | string;
1580
- StartTime?: Date;
1581
- EndTime?: Date;
1582
- Summary?: string;
1583
- ErrorMessage?: string;
1584
- LogGroup?: string;
1585
- LogStream?: string;
1586
- MessagePrefix?: string;
1587
- DPUHour?: number;
1588
- }
1589
- export interface ListCrawlsResponse {
1590
- Crawls?: CrawlerHistory[];
1591
- NextToken?: string;
1592
- }
1593
- export interface ListCustomEntityTypesRequest {
1594
- NextToken?: string;
1595
- MaxResults?: number;
1596
- }
1597
- export interface ListCustomEntityTypesResponse {
1598
- CustomEntityTypes?: CustomEntityType[];
1599
- NextToken?: string;
1600
- }
1601
- export interface DataQualityResultFilterCriteria {
1602
- DataSource?: DataSource;
1603
- JobName?: string;
1604
- JobRunId?: string;
1605
- StartedAfter?: Date;
1606
- StartedBefore?: Date;
1607
- }
1592
+ export declare const CreateScriptResponseFilterSensitiveLog: (
1593
+ obj: CreateScriptResponse
1594
+ ) => any;
1595
+ export declare const CloudWatchEncryptionFilterSensitiveLog: (
1596
+ obj: CloudWatchEncryption
1597
+ ) => any;
1598
+ export declare const JobBookmarksEncryptionFilterSensitiveLog: (
1599
+ obj: JobBookmarksEncryption
1600
+ ) => any;
1608
1601
  export declare const S3EncryptionFilterSensitiveLog: (obj: S3Encryption) => any;
1609
1602
  export declare const EncryptionConfigurationFilterSensitiveLog: (
1610
1603
  obj: EncryptionConfiguration
@@ -2368,18 +2361,3 @@ export declare const CrawlsFilterFilterSensitiveLog: (obj: CrawlsFilter) => any;
2368
2361
  export declare const ListCrawlsRequestFilterSensitiveLog: (
2369
2362
  obj: ListCrawlsRequest
2370
2363
  ) => any;
2371
- export declare const CrawlerHistoryFilterSensitiveLog: (
2372
- obj: CrawlerHistory
2373
- ) => any;
2374
- export declare const ListCrawlsResponseFilterSensitiveLog: (
2375
- obj: ListCrawlsResponse
2376
- ) => any;
2377
- export declare const ListCustomEntityTypesRequestFilterSensitiveLog: (
2378
- obj: ListCustomEntityTypesRequest
2379
- ) => any;
2380
- export declare const ListCustomEntityTypesResponseFilterSensitiveLog: (
2381
- obj: ListCustomEntityTypesResponse
2382
- ) => any;
2383
- export declare const DataQualityResultFilterCriteriaFilterSensitiveLog: (
2384
- obj: DataQualityResultFilterCriteria
2385
- ) => any;
@@ -5,6 +5,7 @@ import {
5
5
  Aggregate,
6
6
  AthenaConnectorSource,
7
7
  BasicCatalogTarget,
8
+ CatalogHudiSource,
8
9
  CatalogKafkaSource,
9
10
  CatalogKinesisSource,
10
11
  CatalogSource,
@@ -14,6 +15,7 @@ import {
14
15
  CrawlerTargets,
15
16
  CsvHeaderOption,
16
17
  CustomCode,
18
+ CustomEntityType,
17
19
  DatabaseInput,
18
20
  DataQualityTargetTable,
19
21
  DataSource,
@@ -58,11 +60,15 @@ import {
58
60
  RegistryId,
59
61
  RelationalCatalogSource,
60
62
  RenameField,
63
+ S3CatalogHudiSource,
61
64
  S3CatalogSource,
62
65
  S3CatalogTarget,
63
66
  S3CsvSource,
64
67
  S3DirectTarget,
65
68
  S3GlueParquetTarget,
69
+ S3HudiCatalogTarget,
70
+ S3HudiDirectTarget,
71
+ S3HudiSource,
66
72
  S3JsonSource,
67
73
  S3ParquetSource,
68
74
  SchemaChangePolicy,
@@ -89,7 +95,6 @@ import {
89
95
  ColumnStatistics,
90
96
  DataCatalogEncryptionSettings,
91
97
  DataQualityEvaluationRunAdditionalRunOptions,
92
- DataQualityResultFilterCriteria,
93
98
  JobBookmarkEntry,
94
99
  RegistryStatus,
95
100
  ResourceShareType,
@@ -102,6 +107,43 @@ import {
102
107
  TransformSortCriteria,
103
108
  UserDefinedFunctionInput,
104
109
  } from "./models_1";
110
+ export declare enum CrawlerHistoryState {
111
+ COMPLETED = "COMPLETED",
112
+ FAILED = "FAILED",
113
+ RUNNING = "RUNNING",
114
+ STOPPED = "STOPPED",
115
+ }
116
+ export interface CrawlerHistory {
117
+ CrawlId?: string;
118
+ State?: CrawlerHistoryState | string;
119
+ StartTime?: Date;
120
+ EndTime?: Date;
121
+ Summary?: string;
122
+ ErrorMessage?: string;
123
+ LogGroup?: string;
124
+ LogStream?: string;
125
+ MessagePrefix?: string;
126
+ DPUHour?: number;
127
+ }
128
+ export interface ListCrawlsResponse {
129
+ Crawls?: CrawlerHistory[];
130
+ NextToken?: string;
131
+ }
132
+ export interface ListCustomEntityTypesRequest {
133
+ NextToken?: string;
134
+ MaxResults?: number;
135
+ }
136
+ export interface ListCustomEntityTypesResponse {
137
+ CustomEntityTypes?: CustomEntityType[];
138
+ NextToken?: string;
139
+ }
140
+ export interface DataQualityResultFilterCriteria {
141
+ DataSource?: DataSource;
142
+ JobName?: string;
143
+ JobRunId?: string;
144
+ StartedAfter?: Date;
145
+ StartedBefore?: Date;
146
+ }
105
147
  export interface ListDataQualityResultsRequest {
106
148
  Filter?: DataQualityResultFilterCriteria;
107
149
  NextToken?: string;
@@ -976,6 +1018,11 @@ export interface CodeGenConfigurationNode {
976
1018
  PostgreSQLCatalogTarget?: PostgreSQLCatalogTarget;
977
1019
  DynamicTransform?: DynamicTransform;
978
1020
  EvaluateDataQuality?: EvaluateDataQuality;
1021
+ S3CatalogHudiSource?: S3CatalogHudiSource;
1022
+ CatalogHudiSource?: CatalogHudiSource;
1023
+ S3HudiSource?: S3HudiSource;
1024
+ S3HudiCatalogTarget?: S3HudiCatalogTarget;
1025
+ S3HudiDirectTarget?: S3HudiDirectTarget;
979
1026
  }
980
1027
  export interface CreateJobRequest {
981
1028
  Name: string | undefined;
@@ -1063,6 +1110,21 @@ export interface GetJobsResponse {
1063
1110
  Jobs?: Job[];
1064
1111
  NextToken?: string;
1065
1112
  }
1113
+ export declare const CrawlerHistoryFilterSensitiveLog: (
1114
+ obj: CrawlerHistory
1115
+ ) => any;
1116
+ export declare const ListCrawlsResponseFilterSensitiveLog: (
1117
+ obj: ListCrawlsResponse
1118
+ ) => any;
1119
+ export declare const ListCustomEntityTypesRequestFilterSensitiveLog: (
1120
+ obj: ListCustomEntityTypesRequest
1121
+ ) => any;
1122
+ export declare const ListCustomEntityTypesResponseFilterSensitiveLog: (
1123
+ obj: ListCustomEntityTypesResponse
1124
+ ) => any;
1125
+ export declare const DataQualityResultFilterCriteriaFilterSensitiveLog: (
1126
+ obj: DataQualityResultFilterCriteria
1127
+ ) => any;
1066
1128
  export declare const ListDataQualityResultsRequestFilterSensitiveLog: (
1067
1129
  obj: ListDataQualityResultsRequest
1068
1130
  ) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-glue",
3
3
  "description": "AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native",
4
- "version": "3.252.0",
4
+ "version": "3.254.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,39 +18,39 @@
18
18
  "module": "./dist-es/index.js",
19
19
  "sideEffects": false,
20
20
  "dependencies": {
21
- "@aws-crypto/sha256-browser": "2.0.0",
22
- "@aws-crypto/sha256-js": "2.0.0",
23
- "@aws-sdk/client-sts": "3.252.0",
24
- "@aws-sdk/config-resolver": "3.234.0",
25
- "@aws-sdk/credential-provider-node": "3.252.0",
26
- "@aws-sdk/fetch-http-handler": "3.226.0",
27
- "@aws-sdk/hash-node": "3.226.0",
28
- "@aws-sdk/invalid-dependency": "3.226.0",
29
- "@aws-sdk/middleware-content-length": "3.226.0",
30
- "@aws-sdk/middleware-endpoint": "3.226.0",
31
- "@aws-sdk/middleware-host-header": "3.226.0",
32
- "@aws-sdk/middleware-logger": "3.226.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.226.0",
34
- "@aws-sdk/middleware-retry": "3.235.0",
35
- "@aws-sdk/middleware-serde": "3.226.0",
36
- "@aws-sdk/middleware-signing": "3.226.0",
37
- "@aws-sdk/middleware-stack": "3.226.0",
38
- "@aws-sdk/middleware-user-agent": "3.226.0",
39
- "@aws-sdk/node-config-provider": "3.226.0",
40
- "@aws-sdk/node-http-handler": "3.226.0",
41
- "@aws-sdk/protocol-http": "3.226.0",
42
- "@aws-sdk/smithy-client": "3.234.0",
43
- "@aws-sdk/types": "3.226.0",
44
- "@aws-sdk/url-parser": "3.226.0",
21
+ "@aws-crypto/sha256-browser": "3.0.0",
22
+ "@aws-crypto/sha256-js": "3.0.0",
23
+ "@aws-sdk/client-sts": "3.254.0",
24
+ "@aws-sdk/config-resolver": "3.254.0",
25
+ "@aws-sdk/credential-provider-node": "3.254.0",
26
+ "@aws-sdk/fetch-http-handler": "3.254.0",
27
+ "@aws-sdk/hash-node": "3.254.0",
28
+ "@aws-sdk/invalid-dependency": "3.254.0",
29
+ "@aws-sdk/middleware-content-length": "3.254.0",
30
+ "@aws-sdk/middleware-endpoint": "3.254.0",
31
+ "@aws-sdk/middleware-host-header": "3.254.0",
32
+ "@aws-sdk/middleware-logger": "3.254.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.254.0",
34
+ "@aws-sdk/middleware-retry": "3.254.0",
35
+ "@aws-sdk/middleware-serde": "3.254.0",
36
+ "@aws-sdk/middleware-signing": "3.254.0",
37
+ "@aws-sdk/middleware-stack": "3.254.0",
38
+ "@aws-sdk/middleware-user-agent": "3.254.0",
39
+ "@aws-sdk/node-config-provider": "3.254.0",
40
+ "@aws-sdk/node-http-handler": "3.254.0",
41
+ "@aws-sdk/protocol-http": "3.254.0",
42
+ "@aws-sdk/smithy-client": "3.254.0",
43
+ "@aws-sdk/types": "3.254.0",
44
+ "@aws-sdk/url-parser": "3.254.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.234.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.234.0",
50
- "@aws-sdk/util-endpoints": "3.245.0",
51
- "@aws-sdk/util-retry": "3.229.0",
52
- "@aws-sdk/util-user-agent-browser": "3.226.0",
53
- "@aws-sdk/util-user-agent-node": "3.226.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.254.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.254.0",
50
+ "@aws-sdk/util-endpoints": "3.254.0",
51
+ "@aws-sdk/util-retry": "3.254.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.254.0",
53
+ "@aws-sdk/util-user-agent-node": "3.254.0",
54
54
  "@aws-sdk/util-utf8-browser": "3.188.0",
55
55
  "@aws-sdk/util-utf8-node": "3.208.0",
56
56
  "tslib": "^2.3.1"