Interface RecordDeAggregationProcessorOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RecordDeAggregationProcessorOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.126.0 (build 206d44b)",
date="2026-02-19T19:23:42.318Z")
@Stability(Stable)
public interface RecordDeAggregationProcessorOptions
extends software.amazon.jsii.JsiiSerializable
Props for RecordDeAggregationProcessor.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.kinesisfirehose.*;
RecordDeAggregationProcessorOptions recordDeAggregationProcessorOptions = RecordDeAggregationProcessorOptions.builder()
.subRecordType(SubRecordType.JSON)
// the properties below are optional
.delimiter("delimiter")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forRecordDeAggregationProcessorOptionsstatic final classAn implementation forRecordDeAggregationProcessorOptions -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSubRecordType
The sub-record type to deaggregate input records. -
getDelimiter
The custom delimiter when subRecordType is DELIMITED.Must be specified in the base64-encoded format.
Default: - No delimiter
-
builder
-