interface LaunchGroupObjectProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Evidently.CfnLaunchPropsMixin.LaunchGroupObjectProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsevidently#CfnLaunchPropsMixin_LaunchGroupObjectProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.evidently.CfnLaunchPropsMixin.LaunchGroupObjectProperty |
Python | aws_cdk.cfn_property_mixins.aws_evidently.CfnLaunchPropsMixin.LaunchGroupObjectProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_evidently » 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 { aws_evidently as evidently } from '@aws-cdk/cfn-property-mixins';
const launchGroupObjectProperty: evidently.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