interface IDataProcessor
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.IDataProcessor |
Java | software.amazon.awscdk.services.kinesisfirehose.IDataProcessor |
Python | aws_cdk.aws_kinesisfirehose.IDataProcessor |
TypeScript (source) | @aws-cdk/aws-kinesisfirehose » IDataProcessor |
Implemented by
Lambda
A data processor that Kinesis Data Firehose will call to transform records before delivering data.
Properties
| Name | Type | Description |
|---|---|---|
| props | Data | The constructor props of the DataProcessor. |
props
Type:
Data
The constructor props of the DataProcessor.
Methods
| Name | Description |
|---|---|
| bind(scope, options) | Binds this processor to a destination of a delivery stream. |
bind(scope, options)
public bind(scope: Construct, options: DataProcessorBindOptions): DataProcessorConfig
Parameters
- scope
Construct - options
DataProcessor Bind Options
Returns
Binds this processor to a destination of a delivery stream.
Implementers should use this method to grant processor invocation permissions to the provided stream and return the necessary configuration to register as a processor.

.NET
Java
Python
TypeScript (