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();
 

See Also: