Interface CfnLaunch.LaunchGroupObjectProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnLaunch.LaunchGroupObjectProperty.Jsii$Proxy
Enclosing class:
CfnLaunch

@Stability(Stable) public static interface CfnLaunch.LaunchGroupObjectProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.evidently.*;
 LaunchGroupObjectProperty launchGroupObjectProperty = LaunchGroupObjectProperty.builder()
         .feature("feature")
         .groupName("groupName")
         .variation("variation")
         // the properties below are optional
         .description("description")
         .build();