Class CfnLaunch.GroupToWeightProperty
A structure containing the percentage of launch traffic to allocate to one launch group.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Evidently
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnLaunch.GroupToWeightProperty : CfnLaunch.IGroupToWeightProperty
Syntax (vb)
Public Class CfnLaunch.GroupToWeightProperty Implements CfnLaunch.IGroupToWeightProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Evidently;
var groupToWeightProperty = new GroupToWeightProperty {
GroupName = "groupName",
SplitWeight = 123
};
Synopsis
Constructors
| GroupToWeightProperty() | A structure containing the percentage of launch traffic to allocate to one launch group. |
Properties
| GroupName | The name of the launch group. |
| SplitWeight | The portion of launch traffic to allocate to this launch group. |
Constructors
GroupToWeightProperty()
A structure containing the percentage of launch traffic to allocate to one launch group.
public GroupToWeightProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Evidently;
var groupToWeightProperty = new GroupToWeightProperty {
GroupName = "groupName",
SplitWeight = 123
};
Properties
GroupName
The name of the launch group.
public string GroupName { get; set; }
Property Value
Remarks
It can include up to 127 characters.
SplitWeight
The portion of launch traffic to allocate to this launch group.
public double SplitWeight { get; set; }
Property Value
Remarks
This is represented in thousandths of a percent. For example, specify 20,000 to allocate 20% of the launch audience to this launch group.