Class: Aws::CloudWatchEvidently::Types::MetricGoal
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchEvidently::Types::MetricGoal
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchevidently/types.rb
Overview
A structure that tells 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::MetricDefinition
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.
2068 2069 2070 2071 2072 2073 |
# File 'lib/aws-sdk-cloudwatchevidently/types.rb', line 2068 class MetricGoal < Struct.new( :desired_change, :metric_definition) SENSITIVE = [] include Aws::Structure end |
#metric_definition ⇒ Types::MetricDefinition
A structure that contains details about the metric.
2068 2069 2070 2071 2072 2073 |
# File 'lib/aws-sdk-cloudwatchevidently/types.rb', line 2068 class MetricGoal < Struct.new( :desired_change, :metric_definition) SENSITIVE = [] include Aws::Structure end |