Skip to content

Commit 4ed643b

Browse files
author
awstools
committed
feat(client-databrew): This AWS Glue Databrew release adds feature to support ORC as an input format.
1 parent ddca6cf commit 4ed643b

File tree

2 files changed

+6913
-6908
lines changed

2 files changed

+6913
-6908
lines changed

clients/client-databrew/src/models/models_0.ts

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ export enum InputFormat {
191191
CSV = "CSV",
192192
EXCEL = "EXCEL",
193193
JSON = "JSON",
194+
ORC = "ORC",
194195
PARQUET = "PARQUET",
195196
}
196197

@@ -487,8 +488,9 @@ export interface FilesLimit {
487488
OrderedBy?: OrderedBy | string;
488489

489490
/**
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>
492494
*/
493495
Order?: Order | string;
494496
}
@@ -572,8 +574,8 @@ export enum ParameterType {
572574
}
573575

574576
/**
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>
577579
*/
578580
export interface DatasetParameter {
579581
/**
@@ -1876,17 +1878,16 @@ export interface Rule {
18761878
Disabled?: boolean;
18771879

18781880
/**
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>
18901891
* <p>For more information, see <a href="https://docs.aws.amazon.com/databrew/latest/dg/profile.data-quality-available-checks.html">Available checks</a>
18911892
* </p>
18921893
*/

0 commit comments

Comments
 (0)