Interface CfnLaunch.StepConfigProperty

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

@Stability(Stable) public static interface CfnLaunch.StepConfigProperty extends software.amazon.jsii.JsiiSerializable
A structure that defines when each step of the launch is to start, and how much launch traffic is to be allocated to each variation during each step.

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.*;
 StepConfigProperty stepConfigProperty = StepConfigProperty.builder()
         .groupWeights(List.of(GroupToWeightProperty.builder()
                 .groupName("groupName")
                 .splitWeight(123)
                 .build()))
         .startTime("startTime")
         // the properties below are optional
         .segmentOverrides(List.of(SegmentOverrideProperty.builder()
                 .evaluationOrder(123)
                 .segment("segment")
                 .weights(List.of(GroupToWeightProperty.builder()
                         .groupName("groupName")
                         .splitWeight(123)
                         .build()))
                 .build()))
         .build();
 

See Also: