interface InputFormatConfigurationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.KinesisFirehose.CfnDeliveryStream.InputFormatConfigurationProperty |
![]() | software.amazon.awscdk.services.kinesisfirehose.CfnDeliveryStream.InputFormatConfigurationProperty |
![]() | aws_cdk.aws_kinesisfirehose.CfnDeliveryStream.InputFormatConfigurationProperty |
![]() | @aws-cdk/aws-kinesisfirehose » CfnDeliveryStream » InputFormatConfigurationProperty |
Specifies the deserializer you want to use to convert the format of the input data.
This parameter is required if Enabled
is set to true.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as kinesisfirehose from '@aws-cdk/aws-kinesisfirehose';
const inputFormatConfigurationProperty: kinesisfirehose.CfnDeliveryStream.InputFormatConfigurationProperty = {
deserializer: {
hiveJsonSerDe: {
timestampFormats: ['timestampFormats'],
},
openXJsonSerDe: {
caseInsensitive: false,
columnToJsonKeyMappings: {
columnToJsonKeyMappingsKey: 'columnToJsonKeyMappings',
},
convertDotsInJsonKeysToUnderscores: false,
},
},
};
Properties
Name | Type | Description |
---|---|---|
deserializer? | IResolvable | Deserializer | Specifies which deserializer to use. |
deserializer?
Type:
IResolvable
|
Deserializer
(optional)
Specifies which deserializer to use.
You can choose either the Apache Hive JSON SerDe or the OpenX JSON SerDe. If both are non-null, the server rejects the request.