Interface CfnApplicationOutput.LambdaOutputProperty

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

@Stability(Stable) public static interface CfnApplicationOutput.LambdaOutputProperty extends software.amazon.jsii.JsiiSerializable
When configuring application output, identifies an AWS Lambda function as the destination.

You provide the function Amazon Resource Name (ARN) and also an IAM role ARN that Amazon Kinesis Analytics can use to write to the function on your behalf.

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")
         .roleArn("roleArn")
         .build();
 

See Also: