Interface CfnExperiment.OnlineAbConfigObjectProperty

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

@Stability(Stable) public static interface CfnExperiment.OnlineAbConfigObjectProperty extends software.amazon.jsii.JsiiSerializable
A structure that contains the configuration of which variation to use as the "control" version.

The "control" version is used for comparison with other variations. This structure also specifies how much experiment traffic is allocated to each variation.

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.*;
 OnlineAbConfigObjectProperty onlineAbConfigObjectProperty = OnlineAbConfigObjectProperty.builder()
         .controlTreatmentName("controlTreatmentName")
         .treatmentWeights(List.of(TreatmentToWeightProperty.builder()
                 .splitWeight(123)
                 .treatment("treatment")
                 .build()))
         .build();
 

See Also: