Class CfnFlowVersionPropsMixin.LambdaFunctionFlowNodeConfigurationProperty
Contains configurations for a Lambda function node in the flow.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnFlowVersionPropsMixin.LambdaFunctionFlowNodeConfigurationProperty : CfnFlowVersionPropsMixin.ILambdaFunctionFlowNodeConfigurationProperty
Syntax (vb)
Public Class CfnFlowVersionPropsMixin.LambdaFunctionFlowNodeConfigurationProperty Implements CfnFlowVersionPropsMixin.ILambdaFunctionFlowNodeConfigurationProperty
Remarks
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 a flow in the Amazon Bedrock User Guide.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins;
var lambdaFunctionFlowNodeConfigurationProperty = new LambdaFunctionFlowNodeConfigurationProperty {
LambdaArn = "lambdaArn"
};
Synopsis
Constructors
| LambdaFunctionFlowNodeConfigurationProperty() | Contains configurations for a Lambda function node in the flow. |
Properties
| LambdaArn | The Amazon Resource Name (ARN) of the Lambda function to invoke. |
Constructors
LambdaFunctionFlowNodeConfigurationProperty()
Contains configurations for a Lambda function node in the flow.
public LambdaFunctionFlowNodeConfigurationProperty()
Remarks
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 a flow in the Amazon Bedrock User Guide.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins;
var lambdaFunctionFlowNodeConfigurationProperty = new LambdaFunctionFlowNodeConfigurationProperty {
LambdaArn = "lambdaArn"
};
Properties
LambdaArn
The Amazon Resource Name (ARN) of the Lambda function to invoke.
public string? LambdaArn { get; set; }