Interface CfnApplication.InputLambdaProcessorProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplication.InputLambdaProcessorProperty.Jsii$Proxy
- Enclosing class:
CfnApplication
@Stability(Stable)
public static interface CfnApplication.InputLambdaProcessorProperty
extends software.amazon.jsii.JsiiSerializable
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.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.kinesisanalyticsv2.*; InputLambdaProcessorProperty inputLambdaProcessorProperty = InputLambdaProcessorProperty.builder() .resourceArn("resourceArn") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplication.InputLambdaProcessorProperty
static final class
An implementation forCfnApplication.InputLambdaProcessorProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The ARN of the Amazon Lambda function that operates on records in the stream.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getResourceArn
The ARN of the Amazon Lambda function that operates on records in the stream.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
- See Also:
-
builder
-