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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplicationOutputV2.LambdaOutputProperty
static final class
An implementation forCfnApplicationOutputV2.LambdaOutputProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The Amazon Resource Name (ARN) of the destination Lambda function to write to.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getResourceArn
The Amazon Resource Name (ARN) of the destination Lambda function to write to.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
-
builder
-