interface GroupToWeightProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Evidently.Mixins.CfnLaunchPropsMixin.GroupToWeightProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsevidently/mixins#CfnLaunchPropsMixin_GroupToWeightProperty |
Java | software.amazon.awscdk.mixins.preview.services.evidently.mixins.CfnLaunchPropsMixin.GroupToWeightProperty |
Python | aws_cdk.mixins_preview.aws_evidently.mixins.CfnLaunchPropsMixin.GroupToWeightProperty |
TypeScript | @aws-cdk/mixins-preview » aws_evidently » mixins » CfnLaunchPropsMixin » 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 { mixins as evidently_mixins } from '@aws-cdk/mixins-preview/aws-evidently';
const groupToWeightProperty: evidently_mixins.CfnLaunchPropsMixin.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
(optional)
The name of the launch group.
It can include up to 127 characters.
splitWeight?
Type:
number
(optional)
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.

.NET
Go
Java
Python
TypeScript