@aws-sdk/client-glue 3.857.0 → 3.859.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 (34) hide show
  1. package/dist-cjs/index.js +54 -18
  2. package/dist-es/models/models_0.js +8 -5
  3. package/dist-es/models/models_1.js +5 -0
  4. package/dist-es/models/models_2.js +0 -9
  5. package/dist-es/models/models_3.js +9 -0
  6. package/dist-es/protocols/Aws_json1_1.js +26 -0
  7. package/dist-types/commands/BatchGetJobsCommand.d.ts +181 -67
  8. package/dist-types/commands/CreateJobCommand.d.ts +181 -67
  9. package/dist-types/commands/GetClassifierCommand.d.ts +2 -1
  10. package/dist-types/commands/GetClassifiersCommand.d.ts +1 -1
  11. package/dist-types/commands/GetColumnStatisticsForPartitionCommand.d.ts +1 -2
  12. package/dist-types/commands/GetJobCommand.d.ts +181 -67
  13. package/dist-types/commands/GetJobsCommand.d.ts +181 -67
  14. package/dist-types/commands/ModifyIntegrationCommand.d.ts +2 -1
  15. package/dist-types/commands/PutDataCatalogEncryptionSettingsCommand.d.ts +1 -1
  16. package/dist-types/commands/PutDataQualityProfileAnnotationCommand.d.ts +1 -1
  17. package/dist-types/commands/PutResourcePolicyCommand.d.ts +1 -1
  18. package/dist-types/commands/UpdateJobCommand.d.ts +181 -67
  19. package/dist-types/models/models_0.d.ts +445 -448
  20. package/dist-types/models/models_1.d.ts +430 -231
  21. package/dist-types/models/models_2.d.ts +232 -232
  22. package/dist-types/models/models_3.d.ts +298 -27
  23. package/dist-types/ts3.4/commands/GetClassifierCommand.d.ts +2 -4
  24. package/dist-types/ts3.4/commands/GetClassifiersCommand.d.ts +1 -1
  25. package/dist-types/ts3.4/commands/GetColumnStatisticsForPartitionCommand.d.ts +4 -2
  26. package/dist-types/ts3.4/commands/ModifyIntegrationCommand.d.ts +2 -4
  27. package/dist-types/ts3.4/commands/PutDataCatalogEncryptionSettingsCommand.d.ts +1 -1
  28. package/dist-types/ts3.4/commands/PutDataQualityProfileAnnotationCommand.d.ts +1 -1
  29. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +1 -1
  30. package/dist-types/ts3.4/models/models_0.d.ts +94 -75
  31. package/dist-types/ts3.4/models/models_1.d.ts +82 -54
  32. package/dist-types/ts3.4/models/models_2.d.ts +56 -59
  33. package/dist-types/ts3.4/models/models_3.d.ts +69 -4
  34. package/package.json +5 -5
package/dist-cjs/index.js CHANGED
@@ -131,6 +131,7 @@ __export(index_exports, {
131
131
  DataQualityRuleResultFilterSensitiveLog: () => DataQualityRuleResultFilterSensitiveLog,
132
132
  DataQualityRuleResultStatus: () => DataQualityRuleResultStatus,
133
133
  DatabaseAttributes: () => DatabaseAttributes,
134
+ DdbExportType: () => DdbExportType,
134
135
  DeleteBehavior: () => DeleteBehavior,
135
136
  DeleteBlueprintCommand: () => DeleteBlueprintCommand,
136
137
  DeleteCatalogCommand: () => DeleteCatalogCommand,
@@ -719,6 +720,7 @@ var AccessDeniedException = class _AccessDeniedException extends GlueServiceExce
719
720
  };
720
721
  var AdditionalOptionKeys = {
721
722
  CacheOption: "performanceTuning.caching",
723
+ CompositeOption: "compositeRuleEvaluation.method",
722
724
  ObservationsOption: "observations.scope"
723
725
  };
724
726
  var AggFunction = {
@@ -1051,6 +1053,10 @@ var ParamType = {
1051
1053
  NULL: "null",
1052
1054
  STR: "str"
1053
1055
  };
1056
+ var DdbExportType = {
1057
+ ddb: "ddb",
1058
+ s3: "s3"
1059
+ };
1054
1060
  var DQTransformOutput = {
1055
1061
  EvaluationResults: "EvaluationResults",
1056
1062
  PrimaryInput: "PrimaryInput"
@@ -1143,9 +1149,12 @@ var JoinType = {
1143
1149
  };
1144
1150
  var PiiType = {
1145
1151
  ColumnAudit: "ColumnAudit",
1152
+ ColumnHashing: "ColumnHashing",
1146
1153
  ColumnMasking: "ColumnMasking",
1147
1154
  RowAudit: "RowAudit",
1148
- RowMasking: "RowMasking"
1155
+ RowHashing: "RowHashing",
1156
+ RowMasking: "RowMasking",
1157
+ RowPartialMasking: "RowPartialMasking"
1149
1158
  };
1150
1159
  var CompressionType = {
1151
1160
  BZIP2: "bzip2",
@@ -1407,11 +1416,6 @@ var TriggerType = {
1407
1416
  ON_DEMAND: "ON_DEMAND",
1408
1417
  SCHEDULED: "SCHEDULED"
1409
1418
  };
1410
- var NodeType = {
1411
- CRAWLER: "CRAWLER",
1412
- JOB: "JOB",
1413
- TRIGGER: "TRIGGER"
1414
- };
1415
1419
  var BasicAuthenticationCredentialsFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
1416
1420
  ...obj,
1417
1421
  ...obj.Password && { Password: import_smithy_client.SENSITIVE_STRING }
@@ -1477,6 +1481,11 @@ var BatchGetDataQualityResultResponseFilterSensitiveLog = /* @__PURE__ */ __name
1477
1481
  }), "BatchGetDataQualityResultResponseFilterSensitiveLog");
1478
1482
 
1479
1483
  // src/models/models_1.ts
1484
+ var NodeType = {
1485
+ CRAWLER: "CRAWLER",
1486
+ JOB: "JOB",
1487
+ TRIGGER: "TRIGGER"
1488
+ };
1480
1489
  var WorkflowRunStatus = {
1481
1490
  COMPLETED: "COMPLETED",
1482
1491
  ERROR: "ERROR",
@@ -2403,15 +2412,6 @@ var StatisticEvaluationLevel = {
2403
2412
  DATASET: "Dataset",
2404
2413
  MULTICOLUMN: "Multicolumn"
2405
2414
  };
2406
- var EnableHybridValues = {
2407
- FALSE: "FALSE",
2408
- TRUE: "TRUE"
2409
- };
2410
- var ExistCondition = {
2411
- MUST_EXIST: "MUST_EXIST",
2412
- NONE: "NONE",
2413
- NOT_EXIST: "NOT_EXIST"
2414
- };
2415
2415
  var GetDataQualityResultResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
2416
2416
  ...obj,
2417
2417
  ...obj.RuleResults && { RuleResults: obj.RuleResults.map((item) => DataQualityRuleResultFilterSensitiveLog(item)) },
@@ -2437,6 +2437,15 @@ var ListDataQualityStatisticsResponseFilterSensitiveLog = /* @__PURE__ */ __name
2437
2437
 
2438
2438
  // src/models/models_3.ts
2439
2439
 
2440
+ var EnableHybridValues = {
2441
+ FALSE: "FALSE",
2442
+ TRUE: "TRUE"
2443
+ };
2444
+ var ExistCondition = {
2445
+ MUST_EXIST: "MUST_EXIST",
2446
+ NONE: "NONE",
2447
+ NOT_EXIST: "NOT_EXIST"
2448
+ };
2440
2449
  var ConcurrentRunsExceededException = class _ConcurrentRunsExceededException extends GlueServiceException {
2441
2450
  static {
2442
2451
  __name(this, "ConcurrentRunsExceededException");
@@ -8223,6 +8232,7 @@ var se_CodeGenConfigurationNode = /* @__PURE__ */ __name((input, context) => {
8223
8232
  AthenaConnectorSource: import_smithy_client._json,
8224
8233
  CatalogDeltaSource: import_smithy_client._json,
8225
8234
  CatalogHudiSource: import_smithy_client._json,
8235
+ CatalogIcebergSource: import_smithy_client._json,
8226
8236
  CatalogKafkaSource: /* @__PURE__ */ __name((_) => se_CatalogKafkaSource(_, context), "CatalogKafkaSource"),
8227
8237
  CatalogKinesisSource: /* @__PURE__ */ __name((_) => se_CatalogKinesisSource(_, context), "CatalogKinesisSource"),
8228
8238
  CatalogSource: import_smithy_client._json,
@@ -8238,6 +8248,7 @@ var se_CodeGenConfigurationNode = /* @__PURE__ */ __name((input, context) => {
8238
8248
  DropNullFields: import_smithy_client._json,
8239
8249
  DynamicTransform: import_smithy_client._json,
8240
8250
  DynamoDBCatalogSource: import_smithy_client._json,
8251
+ DynamoDBELTConnectorSource: import_smithy_client._json,
8241
8252
  EvaluateDataQuality: import_smithy_client._json,
8242
8253
  EvaluateDataQualityMultiFrame: import_smithy_client._json,
8243
8254
  FillMissingValues: import_smithy_client._json,
@@ -8262,8 +8273,10 @@ var se_CodeGenConfigurationNode = /* @__PURE__ */ __name((input, context) => {
8262
8273
  RedshiftTarget: import_smithy_client._json,
8263
8274
  RelationalCatalogSource: import_smithy_client._json,
8264
8275
  RenameField: import_smithy_client._json,
8276
+ Route: import_smithy_client._json,
8265
8277
  S3CatalogDeltaSource: import_smithy_client._json,
8266
8278
  S3CatalogHudiSource: import_smithy_client._json,
8279
+ S3CatalogIcebergSource: import_smithy_client._json,
8267
8280
  S3CatalogSource: import_smithy_client._json,
8268
8281
  S3CatalogTarget: import_smithy_client._json,
8269
8282
  S3CsvSource: import_smithy_client._json,
@@ -8277,6 +8290,7 @@ var se_CodeGenConfigurationNode = /* @__PURE__ */ __name((input, context) => {
8277
8290
  S3HudiDirectTarget: import_smithy_client._json,
8278
8291
  S3HudiSource: import_smithy_client._json,
8279
8292
  S3HyperDirectTarget: import_smithy_client._json,
8293
+ S3IcebergCatalogTarget: import_smithy_client._json,
8280
8294
  S3IcebergDirectTarget: import_smithy_client._json,
8281
8295
  S3JsonSource: import_smithy_client._json,
8282
8296
  S3ParquetSource: import_smithy_client._json,
@@ -8762,6 +8776,7 @@ var se_KinesisStreamingSourceOptions = /* @__PURE__ */ __name((input, context) =
8762
8776
  DescribeShardInterval: [],
8763
8777
  EmitConsumerLagMetrics: [],
8764
8778
  EndpointUrl: [],
8779
+ FanoutConsumerARN: [],
8765
8780
  IdleTimeBetweenReadsInMs: [],
8766
8781
  MaxFetchRecordsPerShard: [],
8767
8782
  MaxFetchTimeInMs: [],
@@ -8869,12 +8884,19 @@ var se_PartitionInputList = /* @__PURE__ */ __name((input, context) => {
8869
8884
  }, "se_PartitionInputList");
8870
8885
  var se_PIIDetection = /* @__PURE__ */ __name((input, context) => {
8871
8886
  return (0, import_smithy_client.take)(input, {
8887
+ DetectionParameters: [],
8888
+ DetectionSensitivity: [],
8872
8889
  EntityTypesToDetect: import_smithy_client._json,
8873
8890
  Inputs: import_smithy_client._json,
8874
8891
  MaskValue: [],
8892
+ MatchPattern: [],
8875
8893
  Name: [],
8894
+ NumLeftCharsToExclude: [],
8895
+ NumRightCharsToExclude: [],
8876
8896
  OutputColumnName: [],
8877
8897
  PiiType: [],
8898
+ RedactChar: [],
8899
+ RedactText: [],
8878
8900
  SampleFraction: import_smithy_client.serializeFloat,
8879
8901
  ThresholdFraction: import_smithy_client.serializeFloat
8880
8902
  });
@@ -9292,6 +9314,7 @@ var de_CodeGenConfigurationNode = /* @__PURE__ */ __name((output, context) => {
9292
9314
  AthenaConnectorSource: import_smithy_client._json,
9293
9315
  CatalogDeltaSource: import_smithy_client._json,
9294
9316
  CatalogHudiSource: import_smithy_client._json,
9317
+ CatalogIcebergSource: import_smithy_client._json,
9295
9318
  CatalogKafkaSource: /* @__PURE__ */ __name((_) => de_CatalogKafkaSource(_, context), "CatalogKafkaSource"),
9296
9319
  CatalogKinesisSource: /* @__PURE__ */ __name((_) => de_CatalogKinesisSource(_, context), "CatalogKinesisSource"),
9297
9320
  CatalogSource: import_smithy_client._json,
@@ -9307,6 +9330,7 @@ var de_CodeGenConfigurationNode = /* @__PURE__ */ __name((output, context) => {
9307
9330
  DropNullFields: import_smithy_client._json,
9308
9331
  DynamicTransform: import_smithy_client._json,
9309
9332
  DynamoDBCatalogSource: import_smithy_client._json,
9333
+ DynamoDBELTConnectorSource: import_smithy_client._json,
9310
9334
  EvaluateDataQuality: import_smithy_client._json,
9311
9335
  EvaluateDataQualityMultiFrame: import_smithy_client._json,
9312
9336
  FillMissingValues: import_smithy_client._json,
@@ -9331,8 +9355,10 @@ var de_CodeGenConfigurationNode = /* @__PURE__ */ __name((output, context) => {
9331
9355
  RedshiftTarget: import_smithy_client._json,
9332
9356
  RelationalCatalogSource: import_smithy_client._json,
9333
9357
  RenameField: import_smithy_client._json,
9358
+ Route: import_smithy_client._json,
9334
9359
  S3CatalogDeltaSource: import_smithy_client._json,
9335
9360
  S3CatalogHudiSource: import_smithy_client._json,
9361
+ S3CatalogIcebergSource: import_smithy_client._json,
9336
9362
  S3CatalogSource: import_smithy_client._json,
9337
9363
  S3CatalogTarget: import_smithy_client._json,
9338
9364
  S3CsvSource: import_smithy_client._json,
@@ -9346,6 +9372,7 @@ var de_CodeGenConfigurationNode = /* @__PURE__ */ __name((output, context) => {
9346
9372
  S3HudiDirectTarget: import_smithy_client._json,
9347
9373
  S3HudiSource: import_smithy_client._json,
9348
9374
  S3HyperDirectTarget: import_smithy_client._json,
9375
+ S3IcebergCatalogTarget: import_smithy_client._json,
9349
9376
  S3IcebergDirectTarget: import_smithy_client._json,
9350
9377
  S3JsonSource: import_smithy_client._json,
9351
9378
  S3ParquetSource: import_smithy_client._json,
@@ -10637,6 +10664,7 @@ var de_KinesisStreamingSourceOptions = /* @__PURE__ */ __name((output, context)
10637
10664
  DescribeShardInterval: import_smithy_client.expectLong,
10638
10665
  EmitConsumerLagMetrics: import_smithy_client.expectString,
10639
10666
  EndpointUrl: import_smithy_client.expectString,
10667
+ FanoutConsumerARN: import_smithy_client.expectString,
10640
10668
  IdleTimeBetweenReadsInMs: import_smithy_client.expectLong,
10641
10669
  MaxFetchRecordsPerShard: import_smithy_client.expectLong,
10642
10670
  MaxFetchTimeInMs: import_smithy_client.expectLong,
@@ -10846,12 +10874,19 @@ var de_PartitionList = /* @__PURE__ */ __name((output, context) => {
10846
10874
  }, "de_PartitionList");
10847
10875
  var de_PIIDetection = /* @__PURE__ */ __name((output, context) => {
10848
10876
  return (0, import_smithy_client.take)(output, {
10877
+ DetectionParameters: import_smithy_client.expectString,
10878
+ DetectionSensitivity: import_smithy_client.expectString,
10849
10879
  EntityTypesToDetect: import_smithy_client._json,
10850
10880
  Inputs: import_smithy_client._json,
10851
10881
  MaskValue: import_smithy_client.expectString,
10882
+ MatchPattern: import_smithy_client.expectString,
10852
10883
  Name: import_smithy_client.expectString,
10884
+ NumLeftCharsToExclude: import_smithy_client.expectInt32,
10885
+ NumRightCharsToExclude: import_smithy_client.expectInt32,
10853
10886
  OutputColumnName: import_smithy_client.expectString,
10854
10887
  PiiType: import_smithy_client.expectString,
10888
+ RedactChar: import_smithy_client.expectString,
10889
+ RedactText: import_smithy_client.expectString,
10855
10890
  SampleFraction: import_smithy_client.limitedParseDouble,
10856
10891
  ThresholdFraction: import_smithy_client.limitedParseDouble
10857
10892
  });
@@ -15860,6 +15895,7 @@ var paginateSearchTables = (0, import_core.createPaginator)(GlueClient, SearchTa
15860
15895
  StartingPosition,
15861
15896
  JDBCConnectionType,
15862
15897
  ParamType,
15898
+ DdbExportType,
15863
15899
  DQTransformOutput,
15864
15900
  DQStopJobOnFailureTiming,
15865
15901
  FilterOperation,
@@ -15899,7 +15935,6 @@ var paginateSearchTables = (0, import_core.createPaginator)(GlueClient, SearchTa
15899
15935
  Logical,
15900
15936
  TriggerState,
15901
15937
  TriggerType,
15902
- NodeType,
15903
15938
  BasicAuthenticationCredentialsFilterSensitiveLog,
15904
15939
  AuthorizationCodePropertiesFilterSensitiveLog,
15905
15940
  OAuth2CredentialsFilterSensitiveLog,
@@ -15910,6 +15945,7 @@ var paginateSearchTables = (0, import_core.createPaginator)(GlueClient, SearchTa
15910
15945
  DataQualityRuleResultFilterSensitiveLog,
15911
15946
  DataQualityResultFilterSensitiveLog,
15912
15947
  BatchGetDataQualityResultResponseFilterSensitiveLog,
15948
+ NodeType,
15913
15949
  WorkflowRunStatus,
15914
15950
  TaskStatusType,
15915
15951
  IllegalSessionStateException,
@@ -15994,12 +16030,12 @@ var paginateSearchTables = (0, import_core.createPaginator)(GlueClient, SearchTa
15994
16030
  FilterOperator,
15995
16031
  CrawlerHistoryState,
15996
16032
  StatisticEvaluationLevel,
15997
- EnableHybridValues,
15998
- ExistCondition,
15999
16033
  GetDataQualityResultResponseFilterSensitiveLog,
16000
16034
  GetEntityRecordsResponseFilterSensitiveLog,
16001
16035
  StatisticSummaryFilterSensitiveLog,
16002
16036
  ListDataQualityStatisticsResponseFilterSensitiveLog,
16037
+ EnableHybridValues,
16038
+ ExistCondition,
16003
16039
  ConcurrentRunsExceededException,
16004
16040
  IllegalWorkflowStateException,
16005
16041
  Comparator,
@@ -16,6 +16,7 @@ export class AccessDeniedException extends __BaseException {
16
16
  }
17
17
  export const AdditionalOptionKeys = {
18
18
  CacheOption: "performanceTuning.caching",
19
+ CompositeOption: "compositeRuleEvaluation.method",
19
20
  ObservationsOption: "observations.scope",
20
21
  };
21
22
  export const AggFunction = {
@@ -260,6 +261,10 @@ export const ParamType = {
260
261
  NULL: "null",
261
262
  STR: "str",
262
263
  };
264
+ export const DdbExportType = {
265
+ ddb: "ddb",
266
+ s3: "s3",
267
+ };
263
268
  export const DQTransformOutput = {
264
269
  EvaluationResults: "EvaluationResults",
265
270
  PrimaryInput: "PrimaryInput",
@@ -352,9 +357,12 @@ export const JoinType = {
352
357
  };
353
358
  export const PiiType = {
354
359
  ColumnAudit: "ColumnAudit",
360
+ ColumnHashing: "ColumnHashing",
355
361
  ColumnMasking: "ColumnMasking",
356
362
  RowAudit: "RowAudit",
363
+ RowHashing: "RowHashing",
357
364
  RowMasking: "RowMasking",
365
+ RowPartialMasking: "RowPartialMasking",
358
366
  };
359
367
  export const CompressionType = {
360
368
  BZIP2: "bzip2",
@@ -573,11 +581,6 @@ export const TriggerType = {
573
581
  ON_DEMAND: "ON_DEMAND",
574
582
  SCHEDULED: "SCHEDULED",
575
583
  };
576
- export const NodeType = {
577
- CRAWLER: "CRAWLER",
578
- JOB: "JOB",
579
- TRIGGER: "TRIGGER",
580
- };
581
584
  export const BasicAuthenticationCredentialsFilterSensitiveLog = (obj) => ({
582
585
  ...obj,
583
586
  ...(obj.Password && { Password: SENSITIVE_STRING }),
@@ -1,5 +1,10 @@
1
1
  import { GlueServiceException as __BaseException } from "./GlueServiceException";
2
2
  import { AuthenticationConfigurationInputFilterSensitiveLog, } from "./models_0";
3
+ export const NodeType = {
4
+ CRAWLER: "CRAWLER",
5
+ JOB: "JOB",
6
+ TRIGGER: "TRIGGER",
7
+ };
3
8
  export const WorkflowRunStatus = {
4
9
  COMPLETED: "COMPLETED",
5
10
  ERROR: "ERROR",
@@ -168,15 +168,6 @@ export const StatisticEvaluationLevel = {
168
168
  DATASET: "Dataset",
169
169
  MULTICOLUMN: "Multicolumn",
170
170
  };
171
- export const EnableHybridValues = {
172
- FALSE: "FALSE",
173
- TRUE: "TRUE",
174
- };
175
- export const ExistCondition = {
176
- MUST_EXIST: "MUST_EXIST",
177
- NONE: "NONE",
178
- NOT_EXIST: "NOT_EXIST",
179
- };
180
171
  export const GetDataQualityResultResponseFilterSensitiveLog = (obj) => ({
181
172
  ...obj,
182
173
  ...(obj.RuleResults && { RuleResults: obj.RuleResults.map((item) => DataQualityRuleResultFilterSensitiveLog(item)) }),
@@ -2,6 +2,15 @@ import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
2
  import { GlueServiceException as __BaseException } from "./GlueServiceException";
3
3
  import { AuthenticationConfigurationInputFilterSensitiveLog, } from "./models_0";
4
4
  import { ConnectionInputFilterSensitiveLog, } from "./models_1";
5
+ export const EnableHybridValues = {
6
+ FALSE: "FALSE",
7
+ TRUE: "TRUE",
8
+ };
9
+ export const ExistCondition = {
10
+ MUST_EXIST: "MUST_EXIST",
11
+ NONE: "NONE",
12
+ NOT_EXIST: "NOT_EXIST",
13
+ };
5
14
  export class ConcurrentRunsExceededException extends __BaseException {
6
15
  name = "ConcurrentRunsExceededException";
7
16
  $fault = "client";
@@ -5443,6 +5443,7 @@ const se_CodeGenConfigurationNode = (input, context) => {
5443
5443
  AthenaConnectorSource: _json,
5444
5444
  CatalogDeltaSource: _json,
5445
5445
  CatalogHudiSource: _json,
5446
+ CatalogIcebergSource: _json,
5446
5447
  CatalogKafkaSource: (_) => se_CatalogKafkaSource(_, context),
5447
5448
  CatalogKinesisSource: (_) => se_CatalogKinesisSource(_, context),
5448
5449
  CatalogSource: _json,
@@ -5458,6 +5459,7 @@ const se_CodeGenConfigurationNode = (input, context) => {
5458
5459
  DropNullFields: _json,
5459
5460
  DynamicTransform: _json,
5460
5461
  DynamoDBCatalogSource: _json,
5462
+ DynamoDBELTConnectorSource: _json,
5461
5463
  EvaluateDataQuality: _json,
5462
5464
  EvaluateDataQualityMultiFrame: _json,
5463
5465
  FillMissingValues: _json,
@@ -5482,8 +5484,10 @@ const se_CodeGenConfigurationNode = (input, context) => {
5482
5484
  RedshiftTarget: _json,
5483
5485
  RelationalCatalogSource: _json,
5484
5486
  RenameField: _json,
5487
+ Route: _json,
5485
5488
  S3CatalogDeltaSource: _json,
5486
5489
  S3CatalogHudiSource: _json,
5490
+ S3CatalogIcebergSource: _json,
5487
5491
  S3CatalogSource: _json,
5488
5492
  S3CatalogTarget: _json,
5489
5493
  S3CsvSource: _json,
@@ -5497,6 +5501,7 @@ const se_CodeGenConfigurationNode = (input, context) => {
5497
5501
  S3HudiDirectTarget: _json,
5498
5502
  S3HudiSource: _json,
5499
5503
  S3HyperDirectTarget: _json,
5504
+ S3IcebergCatalogTarget: _json,
5500
5505
  S3IcebergDirectTarget: _json,
5501
5506
  S3JsonSource: _json,
5502
5507
  S3ParquetSource: _json,
@@ -5988,6 +5993,7 @@ const se_KinesisStreamingSourceOptions = (input, context) => {
5988
5993
  DescribeShardInterval: [],
5989
5994
  EmitConsumerLagMetrics: [],
5990
5995
  EndpointUrl: [],
5996
+ FanoutConsumerARN: [],
5991
5997
  IdleTimeBetweenReadsInMs: [],
5992
5998
  MaxFetchRecordsPerShard: [],
5993
5999
  MaxFetchTimeInMs: [],
@@ -6099,12 +6105,19 @@ const se_PartitionInputList = (input, context) => {
6099
6105
  };
6100
6106
  const se_PIIDetection = (input, context) => {
6101
6107
  return take(input, {
6108
+ DetectionParameters: [],
6109
+ DetectionSensitivity: [],
6102
6110
  EntityTypesToDetect: _json,
6103
6111
  Inputs: _json,
6104
6112
  MaskValue: [],
6113
+ MatchPattern: [],
6105
6114
  Name: [],
6115
+ NumLeftCharsToExclude: [],
6116
+ NumRightCharsToExclude: [],
6106
6117
  OutputColumnName: [],
6107
6118
  PiiType: [],
6119
+ RedactChar: [],
6120
+ RedactText: [],
6108
6121
  SampleFraction: __serializeFloat,
6109
6122
  ThresholdFraction: __serializeFloat,
6110
6123
  });
@@ -6536,6 +6549,7 @@ const de_CodeGenConfigurationNode = (output, context) => {
6536
6549
  AthenaConnectorSource: _json,
6537
6550
  CatalogDeltaSource: _json,
6538
6551
  CatalogHudiSource: _json,
6552
+ CatalogIcebergSource: _json,
6539
6553
  CatalogKafkaSource: (_) => de_CatalogKafkaSource(_, context),
6540
6554
  CatalogKinesisSource: (_) => de_CatalogKinesisSource(_, context),
6541
6555
  CatalogSource: _json,
@@ -6551,6 +6565,7 @@ const de_CodeGenConfigurationNode = (output, context) => {
6551
6565
  DropNullFields: _json,
6552
6566
  DynamicTransform: _json,
6553
6567
  DynamoDBCatalogSource: _json,
6568
+ DynamoDBELTConnectorSource: _json,
6554
6569
  EvaluateDataQuality: _json,
6555
6570
  EvaluateDataQualityMultiFrame: _json,
6556
6571
  FillMissingValues: _json,
@@ -6575,8 +6590,10 @@ const de_CodeGenConfigurationNode = (output, context) => {
6575
6590
  RedshiftTarget: _json,
6576
6591
  RelationalCatalogSource: _json,
6577
6592
  RenameField: _json,
6593
+ Route: _json,
6578
6594
  S3CatalogDeltaSource: _json,
6579
6595
  S3CatalogHudiSource: _json,
6596
+ S3CatalogIcebergSource: _json,
6580
6597
  S3CatalogSource: _json,
6581
6598
  S3CatalogTarget: _json,
6582
6599
  S3CsvSource: _json,
@@ -6590,6 +6607,7 @@ const de_CodeGenConfigurationNode = (output, context) => {
6590
6607
  S3HudiDirectTarget: _json,
6591
6608
  S3HudiSource: _json,
6592
6609
  S3HyperDirectTarget: _json,
6610
+ S3IcebergCatalogTarget: _json,
6593
6611
  S3IcebergDirectTarget: _json,
6594
6612
  S3JsonSource: _json,
6595
6613
  S3ParquetSource: _json,
@@ -7933,6 +7951,7 @@ const de_KinesisStreamingSourceOptions = (output, context) => {
7933
7951
  DescribeShardInterval: __expectLong,
7934
7952
  EmitConsumerLagMetrics: __expectString,
7935
7953
  EndpointUrl: __expectString,
7954
+ FanoutConsumerARN: __expectString,
7936
7955
  IdleTimeBetweenReadsInMs: __expectLong,
7937
7956
  MaxFetchRecordsPerShard: __expectLong,
7938
7957
  MaxFetchTimeInMs: __expectLong,
@@ -8148,12 +8167,19 @@ const de_PartitionList = (output, context) => {
8148
8167
  };
8149
8168
  const de_PIIDetection = (output, context) => {
8150
8169
  return take(output, {
8170
+ DetectionParameters: __expectString,
8171
+ DetectionSensitivity: __expectString,
8151
8172
  EntityTypesToDetect: _json,
8152
8173
  Inputs: _json,
8153
8174
  MaskValue: __expectString,
8175
+ MatchPattern: __expectString,
8154
8176
  Name: __expectString,
8177
+ NumLeftCharsToExclude: __expectInt32,
8178
+ NumRightCharsToExclude: __expectInt32,
8155
8179
  OutputColumnName: __expectString,
8156
8180
  PiiType: __expectString,
8181
+ RedactChar: __expectString,
8182
+ RedactText: __expectString,
8157
8183
  SampleFraction: __limitedParseDouble,
8158
8184
  ThresholdFraction: __limitedParseDouble,
8159
8185
  });