@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()
`CfnLaunch.StepConfigProperty.SegmentOverrides`.
|
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()
@Stability(value=Stable) static CfnLaunch.StepConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.