class OpenXJsonInputFormat
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.OpenXJsonInputFormat |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#OpenXJsonInputFormat |
Java | software.amazon.awscdk.services.kinesisfirehose.OpenXJsonInputFormat |
Python | aws_cdk.aws_kinesisfirehose.OpenXJsonInputFormat |
TypeScript (source) | aws-cdk-lib » aws_kinesisfirehose » OpenXJsonInputFormat |
Implements
IInput
This class specifies properties for OpenX JSON input format for record format conversion.
You should only need to specify an instance of this class if the default configuration does not suit your needs.
Example
const inputFormat = new firehose.OpenXJsonInputFormat({
lowercaseColumnNames: false,
columnToJsonKeyMappings: {"ts": "timestamp"},
convertDotsInJsonKeysToUnderscores: true,
})
Initializer
new OpenXJsonInputFormat(props?: OpenXJsonInputFormatProps)
Parameters
Properties
| Name | Type | Description |
|---|---|---|
| props? | Open | Properties for OpenX JSON input format. |
props?
Type:
Open
(optional)
Properties for OpenX JSON input format.
Methods
| Name | Description |
|---|---|
| create | Renders the cloudformation properties for the input format. |
createInputFormatConfig()
public createInputFormatConfig(): InputFormatConfigurationProperty
Returns
Renders the cloudformation properties for the input format.

.NET
Go
Java
Python
TypeScript (