Interface EvaluatorAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EvaluatorAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.130.0 (build 048a5ee)",
date="2026-05-19T19:44:37.073Z")
@Stability(Stable)
public interface EvaluatorAttributes
extends software.amazon.jsii.JsiiSerializable
Attributes for importing an existing Evaluator.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.bedrockagentcore.*;
EvaluatorAttributes evaluatorAttributes = EvaluatorAttributes.builder()
.evaluatorArn("evaluatorArn")
.evaluatorId("evaluatorId")
// the properties below are optional
.evaluatorName("evaluatorName")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forEvaluatorAttributesstatic final classAn implementation forEvaluatorAttributes -
Method Summary
Modifier and TypeMethodDescriptionstatic EvaluatorAttributes.Builderbuilder()The ARN of the evaluator.The ID of the evaluator.default StringThe name of the evaluator.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEvaluatorArn
The ARN of the evaluator. -
getEvaluatorId
The ID of the evaluator. -
getEvaluatorName
The name of the evaluator.Default: - No name available
-
builder
- Returns:
- a
EvaluatorAttributes.BuilderofEvaluatorAttributes
-