@aws-cdk_aws-kinesisfirehose-alpha.DataProcessorConfig

interface DataProcessorConfig ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.KinesisFirehose.Alpha.DataProcessorConfig
Gogithub.com/aws/aws-cdk-go/awscdkkinesisfirehosealpha/v2#DataProcessorConfig
Javasoftware.amazon.awscdk.services.kinesisfirehose.alpha.DataProcessorConfig
Pythonaws_cdk.aws_kinesisfirehose_alpha.DataProcessorConfig
TypeScript (source)@aws-cdk/aws-kinesisfirehose-alpha ยป DataProcessorConfig

Obtainable from LambdaFunctionProcessor.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 * as kinesisfirehose_alpha from '@aws-cdk/aws-kinesisfirehose-alpha';
const dataProcessorConfig: kinesisfirehose_alpha.DataProcessorConfig = {
  processorIdentifier: {
    parameterName: 'parameterName',
    parameterValue: 'parameterValue',
  },
  processorType: 'processorType',
};

Properties

NameTypeDescription
processorIdentifier๐Ÿ”นDataProcessorIdentifierThe key-value pair that identifies the underlying processor resource.
processorType๐Ÿ”นstringThe type of the underlying processor resource.

processorIdentifier๐Ÿ”น

Type: DataProcessorIdentifier

The key-value pair that identifies the underlying processor resource.


processorType๐Ÿ”น

Type: string

The type of the underlying processor resource.

Must be an accepted value in CfnDeliveryStream.ProcessorProperty.Type.

See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processor.html#cfn-kinesisfirehose-deliverystream-processor-type Example

'Lambda'