Class InputFormat
Represents possible input formats when performing record data conversion.
Namespace: Amazon.CDK.AWS.KinesisFirehose
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class InputFormat : DeputyBase
Syntax (vb)
Public Class InputFormat Inherits DeputyBase
Remarks
ExampleMetadata: infused
Examples
Bucket bucket;
CfnTable schemaGlueTable;
var s3Destination = new S3Bucket(bucket, new S3BucketProps {
DataFormatConversion = new DataFormatConversionProps {
SchemaConfiguration = SchemaConfiguration.FromCfnTable(schemaGlueTable),
InputFormat = InputFormat.OPENX_JSON,
OutputFormat = OutputFormat.PARQUET
}
});
Synopsis
Properties
| HIVE_JSON | Parse input JSON with Hive JSON specification. |
| OPENX_JSON | Parse input JSON with OpenX JSON specification. |
Properties
HIVE_JSON
Parse input JSON with Hive JSON specification.
public static HiveJsonInputFormat HIVE_JSON { get; }
Property Value
Remarks
ExampleMetadata: infused
OPENX_JSON
Parse input JSON with OpenX JSON specification.
public static OpenXJsonInputFormat OPENX_JSON { get; }
Property Value
Remarks
This will typically suffice.