interface EvaluatorAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.Agentcore.Alpha.EvaluatorAttributes |
Go | github.com/aws/aws-cdk-go/awsbedrockagentcorealpha/v2#EvaluatorAttributes |
Java | software.amazon.awscdk.services.bedrock.agentcore.alpha.EvaluatorAttributes |
Python | aws_cdk.aws_bedrock_agentcore_alpha.EvaluatorAttributes |
TypeScript (source) | @aws-cdk/aws-bedrock-agentcore-alpha ยป EvaluatorAttributes |
Attributes for importing an existing Evaluator.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as bedrock_agentcore_alpha from '@aws-cdk/aws-bedrock-agentcore-alpha';
const evaluatorAttributes: bedrock_agentcore_alpha.EvaluatorAttributes = {
evaluatorArn: 'evaluatorArn',
evaluatorId: 'evaluatorId',
// the properties below are optional
evaluatorName: 'evaluatorName',
};
Properties
| Name | Type | Description |
|---|---|---|
| evaluator | string | The ARN of the evaluator. |
| evaluator | string | The ID of the evaluator. |
| evaluator | string | The name of the evaluator. |
evaluatorArn
Type:
string
The ARN of the evaluator.
evaluatorId
Type:
string
The ID of the evaluator.
evaluatorName?
Type:
string
(optional, default: No name available)
The name of the evaluator.

.NET
Go
Java
Python
TypeScript (