Interface OnlineEvaluationConfigAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
OnlineEvaluationConfigAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.129.0 (build eaca441)", date="2026-05-19T08:18:44.490Z") @Stability(Stable) public interface OnlineEvaluationConfigAttributes extends software.amazon.jsii.JsiiSerializable
Attributes for importing an existing OnlineEvaluationConfig.

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.*;
 OnlineEvaluationConfigAttributes onlineEvaluationConfigAttributes = OnlineEvaluationConfigAttributes.builder()
         .onlineEvaluationConfigArn("onlineEvaluationConfigArn")
         .onlineEvaluationConfigId("onlineEvaluationConfigId")
         .onlineEvaluationConfigName("onlineEvaluationConfigName")
         // the properties below are optional
         .executionRoleArn("executionRoleArn")
         .build();
 
  • Method Details

    • getOnlineEvaluationConfigArn

      @Stability(Stable) @NotNull String getOnlineEvaluationConfigArn()
      The ARN of the online evaluation configuration.
    • getOnlineEvaluationConfigId

      @Stability(Stable) @NotNull String getOnlineEvaluationConfigId()
      The ID of the online evaluation configuration.
    • getOnlineEvaluationConfigName

      @Stability(Stable) @NotNull String getOnlineEvaluationConfigName()
      The name of the online evaluation configuration.
    • getExecutionRoleArn

      @Stability(Stable) @Nullable default String getExecutionRoleArn()
      The ARN of the IAM execution role.

      Default: - No role ARN provided

    • builder

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