EvaluatorAttributes
- class aws_cdk.aws_bedrockagentcore.EvaluatorAttributes(*, evaluator_arn, evaluator_id, evaluator_name=None)
Bases:
objectAttributes for importing an existing Evaluator.
- Parameters:
evaluator_arn (
str) – The ARN of the evaluator.evaluator_id (
str) – The ID of the evaluator.evaluator_name (
Optional[str]) – The name of the evaluator. Default: - No name available
- 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 evaluator_attributes = bedrockagentcore.EvaluatorAttributes( evaluator_arn="evaluatorArn", evaluator_id="evaluatorId", # the properties below are optional evaluator_name="evaluatorName" )
Attributes
- evaluator_arn
The ARN of the evaluator.
- evaluator_id
The ID of the evaluator.
- evaluator_name
The name of the evaluator.
- Default:
No name available