interface InputFormatConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.KinesisFirehose.CfnDeliveryStreamPropsMixin.InputFormatConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskinesisfirehose#CfnDeliveryStreamPropsMixin_InputFormatConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.kinesisfirehose.CfnDeliveryStreamPropsMixin.InputFormatConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_kinesisfirehose.CfnDeliveryStreamPropsMixin.InputFormatConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kinesisfirehose » CfnDeliveryStreamPropsMixin » 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 { aws_kinesisfirehose as kinesisfirehose } from '@aws-cdk/cfn-property-mixins';
const inputFormatConfigurationProperty: kinesisfirehose.CfnDeliveryStreamPropsMixin.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.

.NET
Go
Java
Python
TypeScript