Class: Aws::KinesisAnalyticsV2::Types::InputProcessingConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::InputProcessingConfiguration
- Defined in:
- gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb
Overview
For a SQL-based Kinesis Data Analytics application, describes 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 Amazon 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.
2797 2798 2799 2800 2801 |
# File 'gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb', line 2797 class InputProcessingConfiguration < Struct.new( :input_lambda_processor) SENSITIVE = [] include Aws::Structure end |