OnlineEvaluationConfigAttributes

class aws_cdk.aws_bedrockagentcore.OnlineEvaluationConfigAttributes(*, online_evaluation_config_arn, online_evaluation_config_id, online_evaluation_config_name, execution_role_arn=None)

Bases: object

Attributes for importing an existing OnlineEvaluationConfig.

Parameters:
  • online_evaluation_config_arn (str) – The ARN of the online evaluation configuration.

  • online_evaluation_config_id (str) – The ID of the online evaluation configuration.

  • online_evaluation_config_name (str) – The name of the online evaluation configuration.

  • execution_role_arn (Optional[str]) – The ARN of the IAM execution role. Default: - No role ARN provided

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_bedrockagentcore as bedrockagentcore

online_evaluation_config_attributes = bedrockagentcore.OnlineEvaluationConfigAttributes(
    online_evaluation_config_arn="onlineEvaluationConfigArn",
    online_evaluation_config_id="onlineEvaluationConfigId",
    online_evaluation_config_name="onlineEvaluationConfigName",

    # the properties below are optional
    execution_role_arn="executionRoleArn"
)

Attributes

execution_role_arn

The ARN of the IAM execution role.

Default:
  • No role ARN provided

online_evaluation_config_arn

The ARN of the online evaluation configuration.

online_evaluation_config_id

The ID of the online evaluation configuration.

online_evaluation_config_name

The name of the online evaluation configuration.