Class CfnLaunchPropsMixin.LaunchGroupObjectProperty
A structure that defines one launch group in a launch.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Evidently.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnLaunchPropsMixin.LaunchGroupObjectProperty : CfnLaunchPropsMixin.ILaunchGroupObjectProperty
Syntax (vb)
Public Class CfnLaunchPropsMixin.LaunchGroupObjectProperty Implements CfnLaunchPropsMixin.ILaunchGroupObjectProperty
Remarks
A launch group is a variation of the feature that you are including in the launch.
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.Mixins.Preview.AWS.Evidently.Mixins;
var launchGroupObjectProperty = new LaunchGroupObjectProperty {
Description = "description",
Feature = "feature",
GroupName = "groupName",
Variation = "variation"
};
Synopsis
Constructors
| LaunchGroupObjectProperty() | A structure that defines one launch group in a launch. |
Properties
| Description | A description of the launch group. |
| Feature | The feature that this launch is using. |
| GroupName | A name for this launch group. |
| Variation | The feature variation to use for this launch group. |
Constructors
LaunchGroupObjectProperty()
A structure that defines one launch group in a launch.
public LaunchGroupObjectProperty()
Remarks
A launch group is a variation of the feature that you are including in the launch.
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.Mixins.Preview.AWS.Evidently.Mixins;
var launchGroupObjectProperty = new LaunchGroupObjectProperty {
Description = "description",
Feature = "feature",
GroupName = "groupName",
Variation = "variation"
};
Properties
Description
A description of the launch group.
public string? Description { get; set; }
Property Value
Remarks
Feature
The feature that this launch is using.
public string? Feature { get; set; }
Property Value
Remarks
GroupName
A name for this launch group.
public string? GroupName { get; set; }
Property Value
Remarks
It can include up to 127 characters.
Variation
The feature variation to use for this launch group.
public string? Variation { get; set; }