Class: Aws::CloudWatchEvidently::Types::MetricGoalConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchEvidently::Types::MetricGoalConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchevidently/types.rb
Overview
Use this structure to tell Evidently whether higher or lower values are desired for a metric that is used in an experiment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#desired_change ⇒ String
‘INCREASE` means that a variation with a higher number for this metric is performing better.
-
#metric_definition ⇒ Types::MetricDefinitionConfig
A structure that contains details about the metric.
Instance Attribute Details
#desired_change ⇒ 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.
2092 2093 2094 2095 2096 2097 |
# File 'lib/aws-sdk-cloudwatchevidently/types.rb', line 2092 class MetricGoalConfig < Struct.new( :desired_change, :metric_definition) SENSITIVE = [] include Aws::Structure end |
#metric_definition ⇒ Types::MetricDefinitionConfig
A structure that contains details about the metric.
2092 2093 2094 2095 2096 2097 |
# File 'lib/aws-sdk-cloudwatchevidently/types.rb', line 2092 class MetricGoalConfig < Struct.new( :desired_change, :metric_definition) SENSITIVE = [] include Aws::Structure end |