interface GroupToWeightProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Evidently.CfnLaunch.GroupToWeightProperty |
Java | software.amazon.awscdk.services.evidently.CfnLaunch.GroupToWeightProperty |
Python | aws_cdk.aws_evidently.CfnLaunch.GroupToWeightProperty |
TypeScript | @aws-cdk/aws-evidently » CfnLaunch » GroupToWeightProperty |
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 * as evidently from '@aws-cdk/aws-evidently';
const groupToWeightProperty: evidently.CfnLaunch.GroupToWeightProperty = {
groupName: 'groupName',
splitWeight: 123,
};
Properties
Name | Type | Description |
---|---|---|
group | string | The name of the launch group. |
split | number | The portion of launch traffic to allocate to this launch group. |
groupName
Type:
string
The name of the launch group.
It can include up to 127 characters.
splitWeight
Type:
number
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.