Class: Aws::KinesisAnalyticsV2::Types::InputLambdaProcessor
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::InputLambdaProcessor
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisanalyticsv2/types.rb
Overview
An object that contains the Amazon Resource Name (ARN) of the Amazon 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 Amazon Lambda function that operates on records in the stream.
Instance Attribute Details
#resource_arn ⇒ String
The ARN of the Amazon Lambda function that operates on records in the stream.
<note markdown=“1”> To specify an earlier version of the Lambda function than the latest, include the Lambda function version in the Lambda function ARN. For more information about Lambda ARNs, see [Example ARNs: Amazon Lambda]
</note>
[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-lambda
2675 2676 2677 2678 2679 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 2675 class InputLambdaProcessor < Struct.new( :resource_arn) SENSITIVE = [] include Aws::Structure end |