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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnLaunch.LaunchGroupObjectProperty
static final class
An implementation forCfnLaunch.LaunchGroupObjectProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFeature
The feature that this launch is using. -
getGroupName
A name for this launch group.It can include up to 127 characters.
-
getVariation
The feature variation to use for this launch group. -
getDescription
A description of the launch group. -
builder
-