class OutputFormat
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.Alpha.OutputFormat |
Go | github.com/aws/aws-cdk-go/awscdkgluealpha/v2#OutputFormat |
Java | software.amazon.awscdk.services.glue.alpha.OutputFormat |
Python | aws_cdk.aws_glue_alpha.OutputFormat |
TypeScript (source) | @aws-cdk/aws-glue-alpha ยป 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_alpha from '@aws-cdk/aws-glue-alpha';
const outputFormat = new glue_alpha.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.
static PARQUET
Type:
Output
OutputFormat for Parquet files.

.NET
Go
Java
Python
TypeScript (