aws-cdk-lib.aws_kinesisfirehose.CfnDeliveryStream.DeserializerProperty

interface DeserializerProperty

LanguageType name
.NETAmazon.CDK.AWS.KinesisFirehose.CfnDeliveryStream.DeserializerProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#CfnDeliveryStream_DeserializerProperty
Javasoftware.amazon.awscdk.services.kinesisfirehose.CfnDeliveryStream.DeserializerProperty
Pythonaws_cdk.aws_kinesisfirehose.CfnDeliveryStream.DeserializerProperty
TypeScript 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

NameTypeDescription
hiveJsonSerDe?IResolvable | HiveJsonSerDePropertyThe native Hive / HCatalog JsonSerDe.
openXJsonSerDe?IResolvable | OpenXJsonSerDePropertyThe OpenX SerDe.

hiveJsonSerDe?

Type: IResolvable | HiveJsonSerDeProperty (optional)

The native Hive / HCatalog JsonSerDe.

Used by Kinesis Data 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 | OpenXJsonSerDeProperty (optional)

The OpenX SerDe.

Used by Kinesis Data 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.