Interface CfnFlow.LambdaFunctionFlowNodeConfigurationProperty

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

@Stability(Stable) public static interface CfnFlow.LambdaFunctionFlowNodeConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Contains configurations for a Lambda function node in the flow.

You specify the Lambda function to invoke and the inputs into the function. The output is the response that is defined in the Lambda function. For more information, see Node types in Amazon Bedrock works in the Amazon Bedrock User Guide.

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.bedrock.*;
 LambdaFunctionFlowNodeConfigurationProperty lambdaFunctionFlowNodeConfigurationProperty = LambdaFunctionFlowNodeConfigurationProperty.builder()
         .lambdaArn("lambdaArn")
         .build();
 

See Also: