@aws-sdk/client-databrew 3.301.0 → 3.306.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/dist-cjs/models/models_0.js +107 -126
- package/dist-es/models/models_0.js +107 -126
- package/dist-types/models/models_0.d.ts +202 -107
- package/dist-types/ts3.4/models/models_0.d.ts +131 -107
- 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
|
|
32
|
-
DISABLE
|
|
33
|
-
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
|
|
125
|
-
CSV
|
|
126
|
-
EXCEL
|
|
127
|
-
JSON
|
|
128
|
-
ORC
|
|
129
|
-
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
|
|
305
|
-
ASCENDING
|
|
306
|
-
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
|
|
312
|
-
|
|
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
|
|
382
|
-
Datetime
|
|
383
|
-
Number
|
|
384
|
-
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
|
|
670
|
-
SSEKMS
|
|
671
|
-
SSES3
|
|
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
|
|
677
|
-
|
|
678
|
-
|
|
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
|
|
714
|
-
DISABLE
|
|
715
|
-
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
|
|
721
|
-
|
|
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
|
|
838
|
-
FIRST_N
|
|
839
|
-
LAST_N
|
|
840
|
-
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
|
|
1022
|
-
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
|
|
1096
|
-
BROTLI
|
|
1097
|
-
BZIP2
|
|
1098
|
-
DEFLATE
|
|
1099
|
-
GZIP
|
|
1100
|
-
LZ4
|
|
1101
|
-
LZO
|
|
1102
|
-
SNAPPY
|
|
1103
|
-
ZLIB
|
|
1104
|
-
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
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
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
|
|
1288
|
-
GREATER_THAN
|
|
1289
|
-
GREATER_THAN_OR_EQUAL
|
|
1290
|
-
LESS_THAN
|
|
1291
|
-
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
|
|
1297
|
-
|
|
1298
|
-
|
|
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
|
|
1575
|
-
DATABASE
|
|
1576
|
-
DATACATALOG
|
|
1577
|
-
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
|
|
1650
|
-
PROFILE
|
|
1651
|
-
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
|
|
1802
|
-
FAILED
|
|
1803
|
-
RUNNING
|
|
1804
|
-
STARTING
|
|
1805
|
-
STOPPED
|
|
1806
|
-
STOPPING
|
|
1807
|
-
SUCCEEDED
|
|
1808
|
-
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
|
|
1911
|
-
ASSIGNED
|
|
1912
|
-
FAILED
|
|
1913
|
-
INITIALIZING
|
|
1914
|
-
PROVISIONING
|
|
1915
|
-
READY
|
|
1916
|
-
RECYCLING
|
|
1917
|
-
ROTATING
|
|
1918
|
-
TERMINATED
|
|
1919
|
-
TERMINATING
|
|
1920
|
-
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
|
*/
|