Class: Aws::KinesisAnalyticsV2::Types::InputLambdaProcessor
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::InputLambdaProcessor
- Defined in:
- gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb
Overview
Note:
When making an API call, you may pass InputLambdaProcessor data as a hash:
{
resource_arn: "ResourceARN", # required
}
An object that contains the Amazon Resource Name (ARN) of the AWS Lambda function that is used to preprocess records in the stream in a SQL-based Kinesis Data Analytics application.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The ARN of the AWS Lambda function that operates on records in the stream.
Instance Attribute Details
#resource_arn ⇒ String
The ARN of the AWS Lambda function that operates on records in the stream.
2997 2998 2999 3000 3001 |
# File 'gems/aws-sdk-kinesisanalyticsv2/lib/aws-sdk-kinesisanalyticsv2/types.rb', line 2997 class InputLambdaProcessor < Struct.new( :resource_arn) SENSITIVE = [] include Aws::Structure end |