@Stability(value=Stable)
public static interface CfnLaunch.GroupToWeightProperty
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.*;
GroupToWeightProperty groupToWeightProperty = GroupToWeightProperty.builder()
.groupName("groupName")
.splitWeight(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnLaunch.GroupToWeightProperty.Builder
A builder for
CfnLaunch.GroupToWeightProperty |
static class |
CfnLaunch.GroupToWeightProperty.Jsii$Proxy
An implementation for
CfnLaunch.GroupToWeightProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnLaunch.GroupToWeightProperty.Builder |
builder() |
String |
getGroupName()
The name of the launch group.
|
Number |
getSplitWeight()
The portion of launch traffic to allocate to this launch group.
|
@Stability(value=Stable) @NotNull String getGroupName()
It can include up to 127 characters.
@Stability(value=Stable) @NotNull Number getSplitWeight()
This is represented in thousandths of a percent. For example, specify 20,000 to allocate 20% of the launch audience to this launch group.
@Stability(value=Stable) static CfnLaunch.GroupToWeightProperty.Builder builder()
Copyright © 2022. All rights reserved.