Show / Hide Table of Contents

Class CfnEvaluator.CodeBasedEvaluatorConfigProperty

The configuration for code-based evaluation using a Lambda function.

Inheritance
object
CfnEvaluator.CodeBasedEvaluatorConfigProperty
Implements
CfnEvaluator.ICodeBasedEvaluatorConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.BedrockAgentCore
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnEvaluator.CodeBasedEvaluatorConfigProperty : CfnEvaluator.ICodeBasedEvaluatorConfigProperty
Syntax (vb)
Public Class CfnEvaluator.CodeBasedEvaluatorConfigProperty Implements CfnEvaluator.ICodeBasedEvaluatorConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-evaluator-codebasedevaluatorconfig.html

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 codeBasedEvaluatorConfigProperty = new CodeBasedEvaluatorConfigProperty {
                 LambdaConfig = new LambdaEvaluatorConfigProperty {
                     LambdaArn = "lambdaArn",

                     // the properties below are optional
                     LambdaTimeoutInSeconds = 123
                 }
             };

Synopsis

Constructors

CodeBasedEvaluatorConfigProperty()

The configuration for code-based evaluation using a Lambda function.

Properties

LambdaConfig

The Lambda function configuration for code-based evaluation.

Constructors

CodeBasedEvaluatorConfigProperty()

The configuration for code-based evaluation using a Lambda function.

public CodeBasedEvaluatorConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-evaluator-codebasedevaluatorconfig.html

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 codeBasedEvaluatorConfigProperty = new CodeBasedEvaluatorConfigProperty {
                 LambdaConfig = new LambdaEvaluatorConfigProperty {
                     LambdaArn = "lambdaArn",

                     // the properties below are optional
                     LambdaTimeoutInSeconds = 123
                 }
             };

Properties

LambdaConfig

The Lambda function configuration for code-based evaluation.

public object LambdaConfig { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-evaluator-codebasedevaluatorconfig.html#cfn-bedrockagentcore-evaluator-codebasedevaluatorconfig-lambdaconfig

Type union: either IResolvable or CfnEvaluator.ILambdaEvaluatorConfigProperty

Implements

CfnEvaluator.ICodeBasedEvaluatorConfigProperty
Back to top Generated by DocFX