class ExecutionStatus
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.Agentcore.Alpha.ExecutionStatus |
Go | github.com/aws/aws-cdk-go/awsbedrockagentcorealpha/v2#ExecutionStatus |
Java | software.amazon.awscdk.services.bedrock.agentcore.alpha.ExecutionStatus |
Python | aws_cdk.aws_bedrock_agentcore_alpha.ExecutionStatus |
TypeScript (source) | @aws-cdk/aws-bedrock-agentcore-alpha ยป ExecutionStatus |
The execution status of an online evaluation configuration.
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 executionStatus = new bedrock_agentcore_alpha.ExecutionStatus('value');
Initializer
new ExecutionStatus(value: string)
Parameters
- value
stringโ - The execution status string.
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The string value of the execution status. |
| static DISABLED | Execution | The evaluation is disabled and not processing agent traces. |
| static ENABLED | Execution | The evaluation is enabled and actively processing agent traces. |
value
Type:
string
The string value of the execution status.
static DISABLED
Type:
Execution
The evaluation is disabled and not processing agent traces.
static ENABLED
Type:
Execution
The evaluation is enabled and actively processing agent traces.

.NET
Go
Java
Python
TypeScript (