Interface CfnLaunch.GroupToWeightProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLaunch.GroupToWeightProperty.Jsii$Proxy
- Enclosing class:
CfnLaunch
@Stability(Stable)
public static interface CfnLaunch.GroupToWeightProperty
extends software.amazon.jsii.JsiiSerializable
A structure containing the percentage of launch traffic to allocate to one launch group.
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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLaunch.GroupToWeightPropertystatic final classAn implementation forCfnLaunch.GroupToWeightProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The name of the launch group.The portion of launch traffic to allocate to this launch group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGroupName
The name of the launch group.It can include up to 127 characters.
- See Also:
-
getSplitWeight
The portion of launch traffic to allocate to this launch group.This is represented in thousandths of a percent. For example, specify 20,000 to allocate 20% of the launch audience to this launch group.
- See Also:
-
builder
-