Interface CfnExperiment.TreatmentToWeightProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnExperiment.TreatmentToWeightProperty.Jsii$Proxy
Enclosing class:
CfnExperiment

@Stability(Stable) public static interface CfnExperiment.TreatmentToWeightProperty extends software.amazon.jsii.JsiiSerializable
This structure defines how much experiment traffic to allocate to one treatment used 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.*;
 TreatmentToWeightProperty treatmentToWeightProperty = TreatmentToWeightProperty.builder()
         .splitWeight(123)
         .treatment("treatment")
         .build();