Interface CfnExperiment.TreatmentObjectProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExperiment.TreatmentObjectProperty.Jsii$Proxy
- Enclosing class:
- CfnExperiment
@Stability(Stable)
public static interface CfnExperiment.TreatmentObjectProperty
extends software.amazon.jsii.JsiiSerializable
A structure that defines one treatment in an experiment.
A treatment is a variation of the feature that you are including in the 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.*; TreatmentObjectProperty treatmentObjectProperty = TreatmentObjectProperty.builder() .feature("feature") .treatmentName("treatmentName") .variation("variation") // the properties below are optional .description("description") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnExperiment.TreatmentObjectProperty
static final class
An implementation forCfnExperiment.TreatmentObjectProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFeature
The name of the feature for this experiment. -
getTreatmentName
A name for this treatment.It can include up to 127 characters.
-
getVariation
The name of the variation to use for this treatment. -
getDescription
The description of the treatment. -
builder
-