class OutputFormat
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Glue.OutputFormat |
![]() | software.amazon.awscdk.services.glue.OutputFormat |
![]() | aws_cdk.aws_glue.OutputFormat |
![]() | @aws-cdk/aws-glue » OutputFormat |
Absolute class name of the Hadoop OutputFormat
to use when writing table files.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as glue from '@aws-cdk/aws-glue';
const outputFormat = new glue.OutputFormat('className');
Initializer
new OutputFormat(className: string)
Parameters
- className
string
Properties
Name | Type | Description |
---|---|---|
class | string | |
static AVRO | Input | OutputFormat for Avro files. |
static HIVE_IGNORE_KEY_TEXT | Output | Writes text data with a null key (value only). |
static ORC | Input | OutputFormat for Orc files. |
static PARQUET | Output | OutputFormat for Parquet files. |
className
Type:
string
static AVRO
Type:
Input
OutputFormat for Avro files.
static HIVE_IGNORE_KEY_TEXT
Type:
Output
Writes text data with a null key (value only).
static ORC
Type:
Input
OutputFormat for Orc files.
See also: https://hive.apache.org/javadocs/r1.2.2/api/org/apache/hadoop/hive/ql/io/orc/OrcOutputFormat.html
static PARQUET
Type:
Output
OutputFormat for Parquet files.