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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplicationOutput.LambdaOutputProperty
static final class
An implementation forCfnApplicationOutput.LambdaOutputProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Amazon Resource Name (ARN) of the destination Lambda function to write to.ARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination function on your behalf.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getResourceArn
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: AWS Lambda
-
getRoleArn
ARN of the IAM role that Amazon Kinesis Analytics can assume to write to the destination function on your behalf.You need to grant the necessary permissions to this role.
-
builder
-