Class: Aws::KinesisAnalytics::Types::InputProcessingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalytics::Types::InputProcessingConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisanalytics/types.rb
Overview
Provides a description of a processor that is used to preprocess the records in the stream before being processed by your application code. Currently, the only input processor available is [AWS Lambda].
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#input_lambda_processor ⇒ Types::InputLambdaProcessor
The [InputLambdaProcessor] that is used to preprocess the records in the stream before being processed by your application code.
Instance Attribute Details
#input_lambda_processor ⇒ Types::InputLambdaProcessor
The [InputLambdaProcessor] that is used to preprocess the records in the stream before being processed by your application code.
[1]: docs.aws.amazon.com/kinesisanalytics/latest/dev/API_InputLambdaProcessor.html
1278 1279 1280 1281 1282 |
# File 'lib/aws-sdk-kinesisanalytics/types.rb', line 1278 class InputProcessingConfiguration < Struct.new( :input_lambda_processor) SENSITIVE = [] include Aws::Structure end |