interface IOnlineEvaluationConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.Agentcore.Alpha.IOnlineEvaluationConfig |
Go | github.com/aws/aws-cdk-go/awsbedrockagentcorealpha/v2#IOnlineEvaluationConfig |
Java | software.amazon.awscdk.services.bedrock.agentcore.alpha.IOnlineEvaluationConfig |
Python | aws_cdk.aws_bedrock_agentcore_alpha.IOnlineEvaluationConfig |
TypeScript (source) | @aws-cdk/aws-bedrock-agentcore-alpha » IOnlineEvaluationConfig |
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Implements
IDependable, IConstruct, IEnvironment, IResource, IGrantable, IOnline
Implemented by
Online
Obtainable from
Online.fromOnlineEvaluationConfigArn(), Online.fromOnlineEvaluationConfigAttributes(), Online.fromOnlineEvaluationConfigId()
Interface for OnlineEvaluationConfig resources.
Properties
| Name | Type | Description |
|---|---|---|
| env | Resource | The environment this resource belongs to. |
| grant | IPrincipal | The principal to grant permissions to. |
| node | Node | The tree node. |
| online | string | The ARN of the online evaluation configuration. |
| online | string | The unique identifier of the online evaluation configuration. |
| online | string | The name of the online evaluation configuration. |
| online | Online | A reference to a OnlineEvaluationConfig resource. |
| stack | Stack | The stack in which this resource is defined. |
| created | string | The timestamp when the configuration was created. |
| execution | IRole | The IAM execution role for the evaluation. |
| execution | string | The execution status of the evaluation (ENABLED or DISABLED). |
| status? | string | The lifecycle status of the configuration (CREATING, ACTIVE, FAILED, DELETING). |
| updated | string | The timestamp when the configuration was last updated. |
env
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
Resource
The environment this resource belongs to.
For resources that are created and managed in a Stack (those created by
creating new class instances like new Role(), new Bucket(), etc.), this
is always the same as the environment of the stack they belong to.
For referenced resources (those obtained from referencing methods like
Role.fromRoleArn(), Bucket.fromBucketName(), etc.), they might be
different than the stack they were imported into.
grantPrincipal
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
IPrincipal
The principal to grant permissions to.
node
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
Node
The tree node.
onlineEvaluationConfigArn
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
string
The ARN of the online evaluation configuration.
onlineEvaluationConfigId
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
string
The unique identifier of the online evaluation configuration.
onlineEvaluationConfigName
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
string
The name of the online evaluation configuration.
onlineEvaluationConfigRef
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
Online
A reference to a OnlineEvaluationConfig resource.
stack
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
Stack
The stack in which this resource is defined.
createdAt?
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
string
(optional)
The timestamp when the configuration was created.
executionRole?
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
IRole
(optional)
The IAM execution role for the evaluation.
executionStatus?
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
string
(optional)
The execution status of the evaluation (ENABLED or DISABLED).
status?
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
string
(optional)
The lifecycle status of the configuration (CREATING, ACTIVE, FAILED, DELETING).
updatedAt?
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Type:
string
(optional)
The timestamp when the configuration was last updated.
Methods
| Name | Description |
|---|---|
| apply | Apply the given removal policy to this resource. |
| grant(grantee, ...actions) | Grant the given principal identity permissions to perform actions on this configuration. |
| with(...mixins) | Applies one or more mixins to this construct. |
applyRemovalPolicy(policy)
public applyRemovalPolicy(policy: RemovalPolicy): void
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Parameters
- policy
RemovalPolicy
Apply the given removal policy to this resource.
The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you've removed it from the CDK application or because you've made a change that requires the resource to be replaced.
The resource can be deleted (RemovalPolicy.DESTROY), or left in your AWS
account for data recovery and cleanup later (RemovalPolicy.RETAIN).
grant(grantee, ...actions)
public grant(grantee: IGrantable, ...actions: string[]): Grant
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Parameters
- grantee
IGrantable - actions
string
Returns
Grant the given principal identity permissions to perform actions on this configuration.
with(...mixins)
public with(...mixins: IMixin[]): IConstruct
⚠️ Deprecated: Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.
Parameters
- mixins
IMixin— The mixins to apply.
Returns
Applies one or more mixins to this construct.
Mixins are applied in order. The list of constructs is captured at the start of the call, so constructs added by a mixin will not be visited.

.NET
Go
Java
Python
TypeScript (