interface RecordDeAggregationProcessorOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.RecordDeAggregationProcessorOptions |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#RecordDeAggregationProcessorOptions |
Java | software.amazon.awscdk.services.kinesisfirehose.RecordDeAggregationProcessorOptions |
Python | aws_cdk.aws_kinesisfirehose.RecordDeAggregationProcessorOptions |
TypeScript (source) | aws-cdk-lib » aws_kinesisfirehose » RecordDeAggregationProcessorOptions |
Props for RecordDeAggregationProcessor.
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 recordDeAggregationProcessorOptions: kinesisfirehose.RecordDeAggregationProcessorOptions = {
subRecordType: kinesisfirehose.SubRecordType.JSON,
// the properties below are optional
delimiter: 'delimiter',
};
Properties
| Name | Type | Description |
|---|---|---|
| sub | Sub | The sub-record type to deaggregate input records. |
| delimiter? | string | The custom delimiter when subRecordType is DELIMITED. |
subRecordType
Type:
Sub
The sub-record type to deaggregate input records.
delimiter?
Type:
string
(optional, default: No delimiter)
The custom delimiter when subRecordType is DELIMITED.
Must be specified in the base64-encoded format.

.NET
Go
Java
Python
TypeScript (