interface DeserializerProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.KinesisFirehose.CfnDeliveryStream.DeserializerProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#CfnDeliveryStream_DeserializerProperty |
![]() | software.amazon.awscdk.services.kinesisfirehose.CfnDeliveryStream.DeserializerProperty |
![]() | aws_cdk.aws_kinesisfirehose.CfnDeliveryStream.DeserializerProperty |
![]() | aws-cdk-lib » aws_kinesisfirehose » CfnDeliveryStream » DeserializerProperty |
The deserializer you want Kinesis Data Firehose to use for converting the input data from JSON.
Kinesis Data Firehose then serializes the data to its final format using the Serializer
. Kinesis Data Firehose supports two types of deserializers: the Apache Hive JSON SerDe and the OpenX JSON SerDe .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kinesisfirehose as kinesisfirehose } from 'aws-cdk-lib';
const deserializerProperty: kinesisfirehose.CfnDeliveryStream.DeserializerProperty = {
hiveJsonSerDe: {
timestampFormats: ['timestampFormats'],
},
openXJsonSerDe: {
caseInsensitive: false,
columnToJsonKeyMappings: {
columnToJsonKeyMappingsKey: 'columnToJsonKeyMappings',
},
convertDotsInJsonKeysToUnderscores: false,
},
};
Properties
Name | Type | Description |
---|---|---|
hive | IResolvable | Hive | The native Hive / HCatalog JsonSerDe. |
open | IResolvable | Open | The OpenX SerDe. |
hiveJsonSerDe?
Type:
IResolvable
|
Hive
(optional)
The native Hive / HCatalog JsonSerDe.
Used by Firehose for deserializing data, which means converting it from the JSON format in preparation for serializing it to the Parquet or ORC format. This is one of two deserializers you can choose, depending on which one offers the functionality you need. The other option is the OpenX SerDe.
openXJsonSerDe?
Type:
IResolvable
|
Open
(optional)
The OpenX SerDe.
Used by Firehose for deserializing data, which means converting it from the JSON format in preparation for serializing it to the Parquet or ORC format. This is one of two deserializers you can choose, depending on which one offers the functionality you need. The other option is the native Hive / HCatalog JsonSerDe.