aws-cdk-lib.aws_evidently.CfnLaunch.LaunchGroupObjectProperty

interface LaunchGroupObjectProperty

LanguageType name
.NETAmazon.CDK.AWS.Evidently.CfnLaunch.LaunchGroupObjectProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsevidently#CfnLaunch_LaunchGroupObjectProperty
Javasoftware.amazon.awscdk.services.evidently.CfnLaunch.LaunchGroupObjectProperty
Pythonaws_cdk.aws_evidently.CfnLaunch.LaunchGroupObjectProperty
TypeScript aws-cdk-lib » aws_evidently » CfnLaunch » 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-lib';
const launchGroupObjectProperty: evidently.CfnLaunch.LaunchGroupObjectProperty = {
  feature: 'feature',
  groupName: 'groupName',
  variation: 'variation',

  // the properties below are optional
  description: 'description',
};

Properties

NameTypeDescription
featurestringThe feature that this launch is using.
groupNamestringA name for this launch group.
variationstringThe feature variation to use for this launch group.
description?stringA description of the launch group.

feature

Type: string

The feature that this launch is using.


groupName

Type: string

A name for this launch group.

It can include up to 127 characters.


variation

Type: string

The feature variation to use for this launch group.


description?

Type: string (optional)

A description of the launch group.