AWS Fundamentals Logo
AWS Fundamentals
AWS::BedrockAgentCore::OnlineEvaluationConfig

BedrockAgentCore OnlineEvaluationConfig

Resource Type definition for AWS::BedrockAgentCore::OnlineEvaluationConfig - Creates an online evaluation configuration for continuous monitoring of agent performance.

Properties

7 configurable properties. 5 required. Click a row to see details.

Filter:
PropertyTypeFlags
DataSourceConfig
DataSourceConfig
Required
EvaluationExecutionRoleArn
string
Required
Evaluators
Array<EvaluatorReference>
Required
OnlineEvaluationConfigName
string
RequiredCreate-only
Rule
Rule
Required
Description
string
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
CreatedAtstringThe timestamp when the online evaluation configuration was created.
ExecutionStatusstringThe execution status indicating whether the online evaluation is currently running.
OnlineEvaluationConfigArnstringThe Amazon Resource Name (ARN) of the online evaluation configuration.
OnlineEvaluationConfigIdstringThe unique identifier of the online evaluation configuration.
OutputConfigOutputConfigThe configuration that specifies where evaluation results should be written.
StatusstringThe status of the online evaluation configuration.
UpdatedAtstringThe timestamp when the online evaluation configuration was last updated.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::BedrockAgentCore::OnlineEvaluationConfig

Resources:
  MyResource:
    Type: AWS::BedrockAgentCore::OnlineEvaluationConfig
    Properties:
      OnlineEvaluationConfigName: "my-onlineevaluationconfigname"
      DataSourceConfig: "value"
      EvaluationExecutionRoleArn: "arn:aws:service:region:account:resource"
      Evaluators: []
      Rule: "value"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

bedrock-agentcore:CreateOnlineEvaluationConfigbedrock-agentcore:GetOnlineEvaluationConfigbedrock-agentcore:TagResourceiam:PassRolelogs:DescribeLogGroupslogs:DescribeIndexPolicieslogs:PutIndexPolicy

read

bedrock-agentcore:GetOnlineEvaluationConfigbedrock-agentcore:ListTagsForResource

update

bedrock-agentcore:UpdateOnlineEvaluationConfigbedrock-agentcore:GetOnlineEvaluationConfigbedrock-agentcore:TagResourcebedrock-agentcore:UntagResourceiam:PassRolelogs:DescribeLogGroupslogs:DescribeIndexPolicieslogs:PutIndexPolicy

delete

bedrock-agentcore:DeleteOnlineEvaluationConfigbedrock-agentcore:GetOnlineEvaluationConfig

list

bedrock-agentcore:ListOnlineEvaluationConfigs

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceBedrockAgentCore
Properties14
Required5
TaggingSupported
Primary IDOnlineEvaluationConfigArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

OnlineEvaluationConfigName

External Links