Interface CfnExperiment.MetricGoalObjectProperty

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

@Stability(Stable) public static interface CfnExperiment.MetricGoalObjectProperty extends software.amazon.jsii.JsiiSerializable
Use this structure to tell Evidently whether higher or lower values are desired for a metric that is used in an experiment.

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.evidently.*;
 MetricGoalObjectProperty metricGoalObjectProperty = MetricGoalObjectProperty.builder()
         .desiredChange("desiredChange")
         .entityIdKey("entityIdKey")
         .metricName("metricName")
         .valueKey("valueKey")
         // the properties below are optional
         .eventPattern("eventPattern")
         .unitLabel("unitLabel")
         .build();
 

See Also: