Interface CfnApplicationOutputV2.LambdaOutputProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnApplicationOutputV2.LambdaOutputProperty.Jsii$Proxy
Enclosing class:
CfnApplicationOutputV2

@Stability(Stable) public static interface CfnApplicationOutputV2.LambdaOutputProperty extends software.amazon.jsii.JsiiSerializable
When you configure a SQL-based Kinesis Data Analytics application's output, identifies an Amazon Lambda function as the destination.

You provide the function Amazon Resource Name (ARN) of the Lambda function.

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.kinesisanalytics.*;
 LambdaOutputProperty lambdaOutputProperty = LambdaOutputProperty.builder()
         .resourceArn("resourceArn")
         .build();
 

See Also: