interface MetricGoalObjectProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Evidently.CfnExperiment.MetricGoalObjectProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsevidently#CfnExperiment_MetricGoalObjectProperty | 
|  Java | software.amazon.awscdk.services.evidently.CfnExperiment.MetricGoalObjectProperty | 
|  Python | aws_cdk.aws_evidently.CfnExperiment.MetricGoalObjectProperty | 
|  TypeScript | aws-cdk-lib»aws_evidently»CfnExperiment»MetricGoalObjectProperty | 
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 { aws_evidently as evidently } from 'aws-cdk-lib';
const metricGoalObjectProperty: evidently.CfnExperiment.MetricGoalObjectProperty = {
  desiredChange: 'desiredChange',
  entityIdKey: 'entityIdKey',
  metricName: 'metricName',
  valueKey: 'valueKey',
  // the properties below are optional
  eventPattern: 'eventPattern',
  unitLabel: 'unitLabel',
};
Properties
| Name | Type | Description | 
|---|---|---|
| desired | string | INCREASEmeans that a variation with a higher number for this metric is performing better. | 
| entity | string | The entity, such as a user or session, that does an action that causes a metric value to be recorded. | 
| metric | string | A name for the metric. | 
| value | string | The JSON path to reference the numerical metric value in the event. | 
| event | string | The EventBridge event pattern that defines how the metric is recorded. | 
| unit | string | A label for the units that the metric is measuring. | 
desiredChange
Type:
string
INCREASE means that a variation with a higher number for this metric is performing better.
DECREASE means that a variation with a lower number for this metric is performing better.
entityIdKey
Type:
string
The entity, such as a user or session, that does an action that causes a metric value to be recorded.
An example is userDetails.userID .
metricName
Type:
string
A name for the metric.
It can include up to 255 characters.
valueKey
Type:
string
The JSON path to reference the numerical metric value in the event.
eventPattern?
Type:
string
(optional)
The EventBridge event pattern that defines how the metric is recorded.
For more information about EventBridge event patterns, see Amazon EventBridge event patterns .
unitLabel?
Type:
string
(optional)
A label for the units that the metric is measuring.
