interface LaunchGroupObjectProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Evidently.Mixins.CfnLaunchPropsMixin.LaunchGroupObjectProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsevidently/mixins#CfnLaunchPropsMixin_LaunchGroupObjectProperty |
Java | software.amazon.awscdk.mixins.preview.services.evidently.mixins.CfnLaunchPropsMixin.LaunchGroupObjectProperty |
Python | aws_cdk.mixins_preview.aws_evidently.mixins.CfnLaunchPropsMixin.LaunchGroupObjectProperty |
TypeScript | @aws-cdk/mixins-preview » aws_evidently » mixins » CfnLaunchPropsMixin » LaunchGroupObjectProperty |
A structure that defines one launch group in a launch.
A launch group is a variation of the feature that you are including in the launch.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as evidently_mixins } from '@aws-cdk/mixins-preview/aws-evidently';
const launchGroupObjectProperty: evidently_mixins.CfnLaunchPropsMixin.LaunchGroupObjectProperty = {
description: 'description',
feature: 'feature',
groupName: 'groupName',
variation: 'variation',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the launch group. |
| feature? | string | The feature that this launch is using. |
| group | string | A name for this launch group. |
| variation? | string | The feature variation to use for this launch group. |
description?
Type:
string
(optional)
A description of the launch group.
feature?
Type:
string
(optional)
The feature that this launch is using.
groupName?
Type:
string
(optional)
A name for this launch group.
It can include up to 127 characters.
variation?
Type:
string
(optional)
The feature variation to use for this launch group.

.NET
Go
Java
Python
TypeScript