@Stability(value=Stable)
public static interface CfnLaunch.StepConfigProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnLaunch.StepConfigProperty.Builder
A builder for
CfnLaunch.StepConfigProperty |
static class |
CfnLaunch.StepConfigProperty.Jsii$Proxy
An implementation for
CfnLaunch.StepConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnLaunch.StepConfigProperty.Builder |
builder() |
Object |
getGroupWeights()
An array of structures that define how much launch traffic to allocate to each launch group during this step of the launch.
|
default Object |
getSegmentOverrides()
An array of structures that you can use to specify different traffic splits for one or more audience *segments* .
|
String |
getStartTime()
The date and time to start this step of the launch.
|
@Stability(value=Stable) @NotNull Object getGroupWeights()
@Stability(value=Stable) @NotNull String getStartTime()
Use UTC format, yyyy-MM-ddTHH:mm:ssZ . For example, 2025-11-25T23:59:59Z
@Stability(value=Stable) @Nullable default Object getSegmentOverrides()
A segment is a portion of your audience that share one or more characteristics. Examples could be Chrome browser users, users in Europe, or Firefox browser users in Europe who also fit other criteria that your application collects, such as age.
For more information, see Use segments to focus your audience .
@Stability(value=Stable) static CfnLaunch.StepConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.