interface DataProcessorConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.DataProcessorConfig |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#DataProcessorConfig |
Java | software.amazon.awscdk.services.kinesisfirehose.DataProcessorConfig |
Python | aws_cdk.aws_kinesisfirehose.DataProcessorConfig |
TypeScript (source) | aws-cdk-lib » aws_kinesisfirehose » DataProcessorConfig |
Obtainable from
Append.bind(), Cloud.bind(), Decompression.bind(), Lambda.bind()
The full configuration of a data processor.
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 dataProcessorConfig: kinesisfirehose.DataProcessorConfig = {
processorIdentifier: {
parameterName: 'parameterName',
parameterValue: 'parameterValue',
},
processorType: 'processorType',
// the properties below are optional
parameters: [{
parameterName: 'parameterName',
parameterValue: 'parameterValue',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| processor | Data | The key-value pair that identifies the underlying processor resource. |
| processor | string | The type of processor. |
| parameters? | Processor[] | The processor parameters. |
processorIdentifier
Type:
Data
The key-value pair that identifies the underlying processor resource.
Ignored when the parameters is specified.
processorType
Type:
string
The type of processor.
parameters?
Type:
Processor[]
(optional, default: No processor parameters)
The processor parameters.

.NET
Go
Java
Python
TypeScript (