Interface CfnOnlineEvaluationConfigProps

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-19T12:55:00.033Z") @Stability(Stable) public interface CfnOnlineEvaluationConfigProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnOnlineEvaluationConfig.

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.*;
 CfnOnlineEvaluationConfigProps cfnOnlineEvaluationConfigProps = CfnOnlineEvaluationConfigProps.builder()
         .dataSourceConfig(DataSourceConfigProperty.builder()
                 .cloudWatchLogs(CloudWatchLogsInputConfigProperty.builder()
                         .logGroupNames(List.of("logGroupNames"))
                         .serviceNames(List.of("serviceNames"))
                         .build())
                 .build())
         .evaluationExecutionRoleArn("evaluationExecutionRoleArn")
         .evaluators(List.of(EvaluatorReferenceProperty.builder()
                 .evaluatorId("evaluatorId")
                 .build()))
         .onlineEvaluationConfigName("onlineEvaluationConfigName")
         .rule(RuleProperty.builder()
                 .samplingConfig(SamplingConfigProperty.builder()
                         .samplingPercentage(123)
                         .build())
                 // the properties below are optional
                 .filters(List.of(FilterProperty.builder()
                         .key("key")
                         .operator("operator")
                         .value(FilterValueProperty.builder()
                                 .booleanValue(false)
                                 .doubleValue(123)
                                 .stringValue("stringValue")
                                 .build())
                         .build()))
                 .sessionConfig(SessionConfigProperty.builder()
                         .sessionTimeoutMinutes(123)
                         .build())
                 .build())
         // the properties below are optional
         .description("description")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: