Class: Aws::CloudWatchEvidently::Types::Treatment
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchEvidently::Types::Treatment
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchevidently/types.rb
Overview
A structure that defines one treatment in an experiment. A treatment is a variation of the feature that you are including in the experiment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
The description of the treatment.
-
#feature_variations ⇒ Hash<String,String>
The feature variation used for this treatment.
-
#name ⇒ String
The name of this treatment.
Instance Attribute Details
#description ⇒ String
The description of the treatment.
3140 3141 3142 3143 3144 3145 3146 |
# File 'lib/aws-sdk-cloudwatchevidently/types.rb', line 3140 class Treatment < Struct.new( :description, :feature_variations, :name) SENSITIVE = [] include Aws::Structure end |
#feature_variations ⇒ Hash<String,String>
The feature variation used for this treatment. This is a key-value pair. The key is the feature name, and the value is the variation name.
3140 3141 3142 3143 3144 3145 3146 |
# File 'lib/aws-sdk-cloudwatchevidently/types.rb', line 3140 class Treatment < Struct.new( :description, :feature_variations, :name) SENSITIVE = [] include Aws::Structure end |