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