Interface CfnEvaluator.ILambdaEvaluatorConfigProperty
The Lambda function configuration for code-based evaluation.
Namespace: Amazon.CDK.AWS.BedrockAgentCore
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnEvaluator.ILambdaEvaluatorConfigProperty
Syntax (vb)
Public Interface CfnEvaluator.ILambdaEvaluatorConfigProperty
Remarks
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.AWS.BedrockAgentCore;
var lambdaEvaluatorConfigProperty = new LambdaEvaluatorConfigProperty {
LambdaArn = "lambdaArn",
// the properties below are optional
LambdaTimeoutInSeconds = 123
};
Synopsis
Properties
| LambdaArn | The ARN of the Lambda function used for evaluation. |
| LambdaTimeoutInSeconds | The timeout in seconds for the Lambda function invocation. |
Properties
LambdaArn
The ARN of the Lambda function used for evaluation.
string LambdaArn { get; }
Property Value
Remarks
LambdaTimeoutInSeconds
The timeout in seconds for the Lambda function invocation.
double? LambdaTimeoutInSeconds { get; }