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();
 
  • Method Details

    • getEvaluatorArn

      @Stability(Stable) @NotNull String getEvaluatorArn()
      The ARN of the evaluator.
    • getEvaluatorId

      @Stability(Stable) @NotNull String getEvaluatorId()
      The ID of the evaluator.
    • getEvaluatorName

      @Stability(Stable) @Nullable default String getEvaluatorName()
      The name of the evaluator.

      Default: - No name available

    • builder

      @Stability(Stable) static EvaluatorAttributes.Builder builder()
      Returns:
      a EvaluatorAttributes.Builder of EvaluatorAttributes