Interface CfnLaunch.MetricDefinitionObjectProperty

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

@Stability(Stable) public static interface CfnLaunch.MetricDefinitionObjectProperty extends software.amazon.jsii.JsiiSerializable
This structure defines a metric that you want to use to evaluate the variations during a launch or 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.*;
 MetricDefinitionObjectProperty metricDefinitionObjectProperty = MetricDefinitionObjectProperty.builder()
         .entityIdKey("entityIdKey")
         .metricName("metricName")
         .valueKey("valueKey")
         // the properties below are optional
         .eventPattern("eventPattern")
         .unitLabel("unitLabel")
         .build();
 

See Also: