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