interface OnlineEvaluationConfigAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.OnlineEvaluationConfigAttributes |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#OnlineEvaluationConfigAttributes |
Java | software.amazon.awscdk.services.bedrockagentcore.OnlineEvaluationConfigAttributes |
Python | aws_cdk.aws_bedrockagentcore.OnlineEvaluationConfigAttributes |
TypeScript (source) | aws-cdk-lib » aws_bedrockagentcore » 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 { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const onlineEvaluationConfigAttributes: bedrockagentcore.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 (