@aws-sdk/client-databrew 3.300.0 → 3.303.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 (49) hide show
  1. package/dist-cjs/models/models_0.js +107 -126
  2. package/dist-es/models/models_0.js +107 -126
  3. package/dist-types/commands/BatchDeleteRecipeVersionCommand.d.ts +2 -2
  4. package/dist-types/commands/CreateDatasetCommand.d.ts +20 -20
  5. package/dist-types/commands/CreateProfileJobCommand.d.ts +20 -20
  6. package/dist-types/commands/CreateProjectCommand.d.ts +3 -3
  7. package/dist-types/commands/CreateRecipeCommand.d.ts +8 -8
  8. package/dist-types/commands/CreateRecipeJobCommand.d.ts +15 -15
  9. package/dist-types/commands/CreateRulesetCommand.d.ts +8 -8
  10. package/dist-types/commands/CreateScheduleCommand.d.ts +3 -3
  11. package/dist-types/commands/DeleteDatasetCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteJobCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteProjectCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteRecipeVersionCommand.d.ts +1 -1
  15. package/dist-types/commands/DeleteRulesetCommand.d.ts +1 -1
  16. package/dist-types/commands/DeleteScheduleCommand.d.ts +1 -1
  17. package/dist-types/commands/DescribeDatasetCommand.d.ts +1 -1
  18. package/dist-types/commands/DescribeJobCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeJobRunCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribeProjectCommand.d.ts +1 -1
  21. package/dist-types/commands/DescribeRecipeCommand.d.ts +1 -1
  22. package/dist-types/commands/DescribeRulesetCommand.d.ts +1 -1
  23. package/dist-types/commands/DescribeScheduleCommand.d.ts +1 -1
  24. package/dist-types/commands/ListDatasetsCommand.d.ts +1 -1
  25. package/dist-types/commands/ListJobRunsCommand.d.ts +1 -1
  26. package/dist-types/commands/ListJobsCommand.d.ts +1 -1
  27. package/dist-types/commands/ListProjectsCommand.d.ts +1 -1
  28. package/dist-types/commands/ListRecipeVersionsCommand.d.ts +1 -1
  29. package/dist-types/commands/ListRecipesCommand.d.ts +1 -1
  30. package/dist-types/commands/ListRulesetsCommand.d.ts +1 -1
  31. package/dist-types/commands/ListSchedulesCommand.d.ts +1 -1
  32. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  33. package/dist-types/commands/PublishRecipeCommand.d.ts +1 -1
  34. package/dist-types/commands/SendProjectSessionActionCommand.d.ts +8 -8
  35. package/dist-types/commands/StartJobRunCommand.d.ts +1 -1
  36. package/dist-types/commands/StartProjectSessionCommand.d.ts +1 -1
  37. package/dist-types/commands/StopJobRunCommand.d.ts +1 -1
  38. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  39. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  40. package/dist-types/commands/UpdateDatasetCommand.d.ts +19 -19
  41. package/dist-types/commands/UpdateProfileJobCommand.d.ts +19 -19
  42. package/dist-types/commands/UpdateProjectCommand.d.ts +2 -2
  43. package/dist-types/commands/UpdateRecipeCommand.d.ts +7 -7
  44. package/dist-types/commands/UpdateRecipeJobCommand.d.ts +13 -13
  45. package/dist-types/commands/UpdateRulesetCommand.d.ts +7 -7
  46. package/dist-types/commands/UpdateScheduleCommand.d.ts +2 -2
  47. package/dist-types/models/models_0.d.ts +202 -107
  48. package/dist-types/ts3.4/models/models_0.d.ts +131 -107
  49. package/package.json +34 -34
@@ -27,11 +27,16 @@ export interface AllowedStatistics {
27
27
  }
28
28
  /**
29
29
  * @public
30
+ * @enum
30
31
  */
31
- export declare enum AnalyticsMode {
32
- DISABLE = "DISABLE",
33
- ENABLE = "ENABLE"
34
- }
32
+ export declare const AnalyticsMode: {
33
+ readonly DISABLE: "DISABLE";
34
+ readonly ENABLE: "ENABLE";
35
+ };
36
+ /**
37
+ * @public
38
+ */
39
+ export type AnalyticsMode = (typeof AnalyticsMode)[keyof typeof AnalyticsMode];
35
40
  /**
36
41
  * @public
37
42
  */
@@ -120,14 +125,19 @@ export declare class ValidationException extends __BaseException {
120
125
  }
121
126
  /**
122
127
  * @public
128
+ * @enum
123
129
  */
124
- export declare enum InputFormat {
125
- CSV = "CSV",
126
- EXCEL = "EXCEL",
127
- JSON = "JSON",
128
- ORC = "ORC",
129
- PARQUET = "PARQUET"
130
- }
130
+ export declare const InputFormat: {
131
+ readonly CSV: "CSV";
132
+ readonly EXCEL: "EXCEL";
133
+ readonly JSON: "JSON";
134
+ readonly ORC: "ORC";
135
+ readonly PARQUET: "PARQUET";
136
+ };
137
+ /**
138
+ * @public
139
+ */
140
+ export type InputFormat = (typeof InputFormat)[keyof typeof InputFormat];
131
141
  /**
132
142
  * @public
133
143
  * <p>Represents a set of options that define how DataBrew will read a
@@ -300,17 +310,27 @@ export interface Input {
300
310
  }
301
311
  /**
302
312
  * @public
313
+ * @enum
303
314
  */
304
- export declare enum Order {
305
- ASCENDING = "ASCENDING",
306
- DESCENDING = "DESCENDING"
307
- }
315
+ export declare const Order: {
316
+ readonly ASCENDING: "ASCENDING";
317
+ readonly DESCENDING: "DESCENDING";
318
+ };
308
319
  /**
309
320
  * @public
310
321
  */
311
- export declare enum OrderedBy {
312
- LAST_MODIFIED_DATE = "LAST_MODIFIED_DATE"
313
- }
322
+ export type Order = (typeof Order)[keyof typeof Order];
323
+ /**
324
+ * @public
325
+ * @enum
326
+ */
327
+ export declare const OrderedBy: {
328
+ readonly LAST_MODIFIED_DATE: "LAST_MODIFIED_DATE";
329
+ };
330
+ /**
331
+ * @public
332
+ */
333
+ export type OrderedBy = (typeof OrderedBy)[keyof typeof OrderedBy];
314
334
  /**
315
335
  * @public
316
336
  * <p>Represents a limit imposed on number of Amazon S3 files that should be selected for a
@@ -377,12 +397,17 @@ export interface DatetimeOptions {
377
397
  }
378
398
  /**
379
399
  * @public
400
+ * @enum
380
401
  */
381
- export declare enum ParameterType {
382
- Datetime = "Datetime",
383
- Number = "Number",
384
- String = "String"
385
- }
402
+ export declare const ParameterType: {
403
+ readonly Datetime: "Datetime";
404
+ readonly Number: "Number";
405
+ readonly String: "String";
406
+ };
407
+ /**
408
+ * @public
409
+ */
410
+ export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
386
411
  /**
387
412
  * @public
388
413
  * <p>Represents a dataset parameter that defines type and conditions for a parameter in the
@@ -665,18 +690,28 @@ export interface ProfileConfiguration {
665
690
  }
666
691
  /**
667
692
  * @public
693
+ * @enum
668
694
  */
669
- export declare enum EncryptionMode {
670
- SSEKMS = "SSE-KMS",
671
- SSES3 = "SSE-S3"
672
- }
695
+ export declare const EncryptionMode: {
696
+ readonly SSEKMS: "SSE-KMS";
697
+ readonly SSES3: "SSE-S3";
698
+ };
673
699
  /**
674
700
  * @public
675
701
  */
676
- export declare enum SampleMode {
677
- CUSTOM_ROWS = "CUSTOM_ROWS",
678
- FULL_DATASET = "FULL_DATASET"
679
- }
702
+ export type EncryptionMode = (typeof EncryptionMode)[keyof typeof EncryptionMode];
703
+ /**
704
+ * @public
705
+ * @enum
706
+ */
707
+ export declare const SampleMode: {
708
+ readonly CUSTOM_ROWS: "CUSTOM_ROWS";
709
+ readonly FULL_DATASET: "FULL_DATASET";
710
+ };
711
+ /**
712
+ * @public
713
+ */
714
+ export type SampleMode = (typeof SampleMode)[keyof typeof SampleMode];
680
715
  /**
681
716
  * @public
682
717
  * <p>A sample configuration for profile jobs only, which determines the number of rows on which the
@@ -709,17 +744,27 @@ export interface JobSample {
709
744
  }
710
745
  /**
711
746
  * @public
747
+ * @enum
712
748
  */
713
- export declare enum LogSubscription {
714
- DISABLE = "DISABLE",
715
- ENABLE = "ENABLE"
716
- }
749
+ export declare const LogSubscription: {
750
+ readonly DISABLE: "DISABLE";
751
+ readonly ENABLE: "ENABLE";
752
+ };
717
753
  /**
718
754
  * @public
719
755
  */
720
- export declare enum ValidationMode {
721
- CHECK_ALL = "CHECK_ALL"
722
- }
756
+ export type LogSubscription = (typeof LogSubscription)[keyof typeof LogSubscription];
757
+ /**
758
+ * @public
759
+ * @enum
760
+ */
761
+ export declare const ValidationMode: {
762
+ readonly CHECK_ALL: "CHECK_ALL";
763
+ };
764
+ /**
765
+ * @public
766
+ */
767
+ export type ValidationMode = (typeof ValidationMode)[keyof typeof ValidationMode];
723
768
  /**
724
769
  * @public
725
770
  * <p>Configuration for data quality validation. Used to select the Rulesets and Validation Mode
@@ -833,12 +878,17 @@ export interface CreateProfileJobResponse {
833
878
  }
834
879
  /**
835
880
  * @public
881
+ * @enum
836
882
  */
837
- export declare enum SampleType {
838
- FIRST_N = "FIRST_N",
839
- LAST_N = "LAST_N",
840
- RANDOM = "RANDOM"
841
- }
883
+ export declare const SampleType: {
884
+ readonly FIRST_N: "FIRST_N";
885
+ readonly LAST_N: "LAST_N";
886
+ readonly RANDOM: "RANDOM";
887
+ };
888
+ /**
889
+ * @public
890
+ */
891
+ export type SampleType = (typeof SampleType)[keyof typeof SampleType];
842
892
  /**
843
893
  * @public
844
894
  * <p>Represents the sample size and sampling type for DataBrew to use for interactive data
@@ -1017,10 +1067,15 @@ export interface DatabaseTableOutputOptions {
1017
1067
  }
1018
1068
  /**
1019
1069
  * @public
1070
+ * @enum
1020
1071
  */
1021
- export declare enum DatabaseOutputMode {
1022
- NEW_TABLE = "NEW_TABLE"
1023
- }
1072
+ export declare const DatabaseOutputMode: {
1073
+ readonly NEW_TABLE: "NEW_TABLE";
1074
+ };
1075
+ /**
1076
+ * @public
1077
+ */
1078
+ export type DatabaseOutputMode = (typeof DatabaseOutputMode)[keyof typeof DatabaseOutputMode];
1024
1079
  /**
1025
1080
  * @public
1026
1081
  * <p>Represents a JDBC database output object which defines the output destination for
@@ -1091,31 +1146,41 @@ export interface DataCatalogOutput {
1091
1146
  }
1092
1147
  /**
1093
1148
  * @public
1149
+ * @enum
1094
1150
  */
1095
- export declare enum CompressionFormat {
1096
- BROTLI = "BROTLI",
1097
- BZIP2 = "BZIP2",
1098
- DEFLATE = "DEFLATE",
1099
- GZIP = "GZIP",
1100
- LZ4 = "LZ4",
1101
- LZO = "LZO",
1102
- SNAPPY = "SNAPPY",
1103
- ZLIB = "ZLIB",
1104
- ZSTD = "ZSTD"
1105
- }
1151
+ export declare const CompressionFormat: {
1152
+ readonly BROTLI: "BROTLI";
1153
+ readonly BZIP2: "BZIP2";
1154
+ readonly DEFLATE: "DEFLATE";
1155
+ readonly GZIP: "GZIP";
1156
+ readonly LZ4: "LZ4";
1157
+ readonly LZO: "LZO";
1158
+ readonly SNAPPY: "SNAPPY";
1159
+ readonly ZLIB: "ZLIB";
1160
+ readonly ZSTD: "ZSTD";
1161
+ };
1106
1162
  /**
1107
1163
  * @public
1108
1164
  */
1109
- export declare enum OutputFormat {
1110
- AVRO = "AVRO",
1111
- CSV = "CSV",
1112
- GLUEPARQUET = "GLUEPARQUET",
1113
- JSON = "JSON",
1114
- ORC = "ORC",
1115
- PARQUET = "PARQUET",
1116
- TABLEAUHYPER = "TABLEAUHYPER",
1117
- XML = "XML"
1118
- }
1165
+ export type CompressionFormat = (typeof CompressionFormat)[keyof typeof CompressionFormat];
1166
+ /**
1167
+ * @public
1168
+ * @enum
1169
+ */
1170
+ export declare const OutputFormat: {
1171
+ readonly AVRO: "AVRO";
1172
+ readonly CSV: "CSV";
1173
+ readonly GLUEPARQUET: "GLUEPARQUET";
1174
+ readonly JSON: "JSON";
1175
+ readonly ORC: "ORC";
1176
+ readonly PARQUET: "PARQUET";
1177
+ readonly TABLEAUHYPER: "TABLEAUHYPER";
1178
+ readonly XML: "XML";
1179
+ };
1180
+ /**
1181
+ * @public
1182
+ */
1183
+ export type OutputFormat = (typeof OutputFormat)[keyof typeof OutputFormat];
1119
1184
  /**
1120
1185
  * @public
1121
1186
  * <p>Represents a set of options that define how DataBrew will write a
@@ -1283,20 +1348,30 @@ export interface CreateRecipeJobResponse {
1283
1348
  }
1284
1349
  /**
1285
1350
  * @public
1351
+ * @enum
1286
1352
  */
1287
- export declare enum ThresholdType {
1288
- GREATER_THAN = "GREATER_THAN",
1289
- GREATER_THAN_OR_EQUAL = "GREATER_THAN_OR_EQUAL",
1290
- LESS_THAN = "LESS_THAN",
1291
- LESS_THAN_OR_EQUAL = "LESS_THAN_OR_EQUAL"
1292
- }
1353
+ export declare const ThresholdType: {
1354
+ readonly GREATER_THAN: "GREATER_THAN";
1355
+ readonly GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL";
1356
+ readonly LESS_THAN: "LESS_THAN";
1357
+ readonly LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL";
1358
+ };
1293
1359
  /**
1294
1360
  * @public
1295
1361
  */
1296
- export declare enum ThresholdUnit {
1297
- COUNT = "COUNT",
1298
- PERCENTAGE = "PERCENTAGE"
1299
- }
1362
+ export type ThresholdType = (typeof ThresholdType)[keyof typeof ThresholdType];
1363
+ /**
1364
+ * @public
1365
+ * @enum
1366
+ */
1367
+ export declare const ThresholdUnit: {
1368
+ readonly COUNT: "COUNT";
1369
+ readonly PERCENTAGE: "PERCENTAGE";
1370
+ };
1371
+ /**
1372
+ * @public
1373
+ */
1374
+ export type ThresholdUnit = (typeof ThresholdUnit)[keyof typeof ThresholdUnit];
1300
1375
  /**
1301
1376
  * @public
1302
1377
  * <p>The threshold used with a non-aggregate check expression. The non-aggregate check expression
@@ -1570,12 +1645,17 @@ export interface DescribeDatasetRequest {
1570
1645
  }
1571
1646
  /**
1572
1647
  * @public
1648
+ * @enum
1573
1649
  */
1574
- export declare enum Source {
1575
- DATABASE = "DATABASE",
1576
- DATACATALOG = "DATA-CATALOG",
1577
- S3 = "S3"
1578
- }
1650
+ export declare const Source: {
1651
+ readonly DATABASE: "DATABASE";
1652
+ readonly DATACATALOG: "DATA-CATALOG";
1653
+ readonly S3: "S3";
1654
+ };
1655
+ /**
1656
+ * @public
1657
+ */
1658
+ export type Source = (typeof Source)[keyof typeof Source];
1579
1659
  /**
1580
1660
  * @public
1581
1661
  */
@@ -1645,11 +1725,16 @@ export interface DescribeJobRequest {
1645
1725
  }
1646
1726
  /**
1647
1727
  * @public
1728
+ * @enum
1648
1729
  */
1649
- export declare enum JobType {
1650
- PROFILE = "PROFILE",
1651
- RECIPE = "RECIPE"
1652
- }
1730
+ export declare const JobType: {
1731
+ readonly PROFILE: "PROFILE";
1732
+ readonly RECIPE: "RECIPE";
1733
+ };
1734
+ /**
1735
+ * @public
1736
+ */
1737
+ export type JobType = (typeof JobType)[keyof typeof JobType];
1653
1738
  /**
1654
1739
  * @public
1655
1740
  */
@@ -1797,16 +1882,21 @@ export interface DescribeJobRunRequest {
1797
1882
  }
1798
1883
  /**
1799
1884
  * @public
1885
+ * @enum
1800
1886
  */
1801
- export declare enum JobRunState {
1802
- FAILED = "FAILED",
1803
- RUNNING = "RUNNING",
1804
- STARTING = "STARTING",
1805
- STOPPED = "STOPPED",
1806
- STOPPING = "STOPPING",
1807
- SUCCEEDED = "SUCCEEDED",
1808
- TIMEOUT = "TIMEOUT"
1809
- }
1887
+ export declare const JobRunState: {
1888
+ readonly FAILED: "FAILED";
1889
+ readonly RUNNING: "RUNNING";
1890
+ readonly STARTING: "STARTING";
1891
+ readonly STOPPED: "STOPPED";
1892
+ readonly STOPPING: "STOPPING";
1893
+ readonly SUCCEEDED: "SUCCEEDED";
1894
+ readonly TIMEOUT: "TIMEOUT";
1895
+ };
1896
+ /**
1897
+ * @public
1898
+ */
1899
+ export type JobRunState = (typeof JobRunState)[keyof typeof JobRunState];
1810
1900
  /**
1811
1901
  * @public
1812
1902
  */
@@ -1906,19 +1996,24 @@ export interface DescribeProjectRequest {
1906
1996
  }
1907
1997
  /**
1908
1998
  * @public
1999
+ * @enum
1909
2000
  */
1910
- export declare enum SessionStatus {
1911
- ASSIGNED = "ASSIGNED",
1912
- FAILED = "FAILED",
1913
- INITIALIZING = "INITIALIZING",
1914
- PROVISIONING = "PROVISIONING",
1915
- READY = "READY",
1916
- RECYCLING = "RECYCLING",
1917
- ROTATING = "ROTATING",
1918
- TERMINATED = "TERMINATED",
1919
- TERMINATING = "TERMINATING",
1920
- UPDATING = "UPDATING"
1921
- }
2001
+ export declare const SessionStatus: {
2002
+ readonly ASSIGNED: "ASSIGNED";
2003
+ readonly FAILED: "FAILED";
2004
+ readonly INITIALIZING: "INITIALIZING";
2005
+ readonly PROVISIONING: "PROVISIONING";
2006
+ readonly READY: "READY";
2007
+ readonly RECYCLING: "RECYCLING";
2008
+ readonly ROTATING: "ROTATING";
2009
+ readonly TERMINATED: "TERMINATED";
2010
+ readonly TERMINATING: "TERMINATING";
2011
+ readonly UPDATING: "UPDATING";
2012
+ };
2013
+ /**
2014
+ * @public
2015
+ */
2016
+ export type SessionStatus = (typeof SessionStatus)[keyof typeof SessionStatus];
1922
2017
  /**
1923
2018
  * @public
1924
2019
  */