Show / Hide Table of Contents

Interface CfnLaunch.IGroupToWeightProperty

A structure containing the percentage of launch traffic to allocate to one launch group.

Namespace: Amazon.CDK.AWS.Evidently
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnLaunch.IGroupToWeightProperty
Syntax (vb)
Public Interface CfnLaunch.IGroupToWeightProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-launch-grouptoweight.html

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

Properties

GroupName

The name of the launch group.

SplitWeight

The portion of launch traffic to allocate to this launch group.

Properties

GroupName

The name of the launch group.

string GroupName { get; }
Property Value

string

Remarks

It can include up to 127 characters.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-launch-grouptoweight.html#cfn-evidently-launch-grouptoweight-groupname

SplitWeight

The portion of launch traffic to allocate to this launch group.

double SplitWeight { get; }
Property Value

double

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-launch-grouptoweight.html#cfn-evidently-launch-grouptoweight-splitweight

Back to top Generated by DocFX