You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/client-databrew/src/models/models_0.ts
+16-15Lines changed: 16 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -191,6 +191,7 @@ export enum InputFormat {
191
191
CSV="CSV",
192
192
EXCEL="EXCEL",
193
193
JSON="JSON",
194
+
ORC="ORC",
194
195
PARQUET="PARQUET",
195
196
}
196
197
@@ -487,8 +488,9 @@ export interface FilesLimit {
487
488
OrderedBy?: OrderedBy|string;
488
489
489
490
/**
490
-
* <p>A criteria to use for Amazon S3 files sorting before their selection. By default uses DESCENDING order,
491
-
* i.e. most recent files are selected first. Anotherpossible value is ASCENDING.</p>
491
+
* <p>A criteria to use for Amazon S3 files sorting before their selection. By
492
+
* default uses DESCENDING order, i.e. most recent files are selected first. Another
493
+
* possible value is ASCENDING.</p>
492
494
*/
493
495
Order?: Order|string;
494
496
}
@@ -572,8 +574,8 @@ export enum ParameterType {
572
574
}
573
575
574
576
/**
575
-
* <p>Represents a dataset paramater that defines type and conditions for a parameter in the Amazon S3
576
-
* path of the dataset.</p>
577
+
* <p>Represents a dataset parameter that defines type and conditions for a parameter in the
578
+
* Amazon S3 path of the dataset.</p>
577
579
*/
578
580
exportinterfaceDatasetParameter{
579
581
/**
@@ -1876,17 +1878,16 @@ export interface Rule {
1876
1878
Disabled?: boolean;
1877
1879
1878
1880
/**
1879
-
* <p>The expression which includes column references, condition names followed by
1880
-
* variable references, possibly grouped and combined with other conditions. For
1881
-
* example, <code>(:col1 starts_with :prefix1 or :col1 starts_with :prefix2) and
1882
-
* (:col1 ends_with :suffix1 or :col1 ends_with :suffix2)</code>. Column and value
1883
-
* references are substitution variables that should start with the ':' symbol.
1884
-
* Depending on the context, substitution variables' values can be either an actual
1885
-
* value or a column name. These values are defined in the SubstitutionMap.
1886
-
* If a CheckExpression starts with a column reference, then ColumnSelectors in the
1887
-
* rule should be null. If ColumnSelectors has been defined, then there should be no
1888
-
* columnn reference in the left side of a condition, for example,
1889
-
* <code>is_between :val1 and :val2</code>.</p>
1881
+
* <p>The expression which includes column references, condition names followed by variable
1882
+
* references, possibly grouped and combined with other conditions. For example,
1883
+
* <code>(:col1 starts_with :prefix1 or :col1 starts_with :prefix2) and (:col1
1884
+
* ends_with :suffix1 or :col1 ends_with :suffix2)</code>. Column and value references
1885
+
* are substitution variables that should start with the ':' symbol. Depending on the
1886
+
* context, substitution variables' values can be either an actual value or a column name.
1887
+
* These values are defined in the SubstitutionMap. If a CheckExpression starts with a
1888
+
* column reference, then ColumnSelectors in the rule should be null. If ColumnSelectors
1889
+
* has been defined, then there should be no column reference in the left side of a
1890
+
* condition, for example, <code>is_between :val1 and :val2</code>.</p>
1890
1891
* <p>For more information, see <a href="https://docs.aws.amazon.com/databrew/latest/dg/profile.data-quality-available-checks.html">Available checks</a>
0 commit comments