Show / Hide Table of Contents

Class CfnLaunch.GroupToWeightProperty

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

Inheritance
object
CfnLaunch.GroupToWeightProperty
Implements
CfnLaunch.IGroupToWeightProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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

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

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
             };

Properties

GroupName

The name of the launch group.

public string GroupName { get; set; }
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.

public double SplitWeight { get; set; }
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

Implements

CfnLaunch.IGroupToWeightProperty
Back to top Generated by DocFX