aws-cdk-lib.aws_evidently.CfnLaunch.GroupToWeightProperty

interface GroupToWeightProperty

LanguageType name
.NETAmazon.CDK.AWS.Evidently.CfnLaunch.GroupToWeightProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsevidently#CfnLaunch_GroupToWeightProperty
Javasoftware.amazon.awscdk.services.evidently.CfnLaunch.GroupToWeightProperty
Pythonaws_cdk.aws_evidently.CfnLaunch.GroupToWeightProperty
TypeScript aws-cdk-lib » 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 { aws_evidently as evidently } from 'aws-cdk-lib';
const groupToWeightProperty: evidently.CfnLaunch.GroupToWeightProperty = {
  groupName: 'groupName',
  splitWeight: 123,
};

Properties

NameTypeDescription
groupNamestringThe name of the launch group.
splitWeightnumberThe 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.