Interface CfnOnlineEvaluationConfig.RuleProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnOnlineEvaluationConfig.RuleProperty.Jsii$Proxy
Enclosing class:
CfnOnlineEvaluationConfig

@Stability(Stable) public static interface CfnOnlineEvaluationConfig.RuleProperty extends software.amazon.jsii.JsiiSerializable
The evaluation rule that defines sampling configuration, filtering criteria, and session detection settings.

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.*;
 RuleProperty ruleProperty = 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();
 

See Also: