interface OnlineEvaluationConfigAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.Agentcore.Alpha.OnlineEvaluationConfigAttributes |
Go | github.com/aws/aws-cdk-go/awsbedrockagentcorealpha/v2#OnlineEvaluationConfigAttributes |
Java | software.amazon.awscdk.services.bedrock.agentcore.alpha.OnlineEvaluationConfigAttributes |
Python | aws_cdk.aws_bedrock_agentcore_alpha.OnlineEvaluationConfigAttributes |
TypeScript (source) | @aws-cdk/aws-bedrock-agentcore-alpha ยป OnlineEvaluationConfigAttributes |
Attributes for importing an existing OnlineEvaluationConfig.
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 onlineEvaluationConfigAttributes: bedrock_agentcore_alpha.OnlineEvaluationConfigAttributes = {
onlineEvaluationConfigArn: 'onlineEvaluationConfigArn',
onlineEvaluationConfigId: 'onlineEvaluationConfigId',
onlineEvaluationConfigName: 'onlineEvaluationConfigName',
// the properties below are optional
executionRoleArn: 'executionRoleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| online | string | The ARN of the online evaluation configuration. |
| online | string | The ID of the online evaluation configuration. |
| online | string | The name of the online evaluation configuration. |
| execution | string | The ARN of the IAM execution role. |
onlineEvaluationConfigArn
Type:
string
The ARN of the online evaluation configuration.
onlineEvaluationConfigId
Type:
string
The ID of the online evaluation configuration.
onlineEvaluationConfigName
Type:
string
The name of the online evaluation configuration.
executionRoleArn?
Type:
string
(optional, default: No role ARN provided)
The ARN of the IAM execution role.

.NET
Go
Java
Python
TypeScript (