@Stability(value=Stable)
public static interface CfnLaunch.LaunchGroupObjectProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnLaunch.LaunchGroupObjectProperty.Builder
A builder for
CfnLaunch.LaunchGroupObjectProperty |
static class |
CfnLaunch.LaunchGroupObjectProperty.Jsii$Proxy
An implementation for
CfnLaunch.LaunchGroupObjectProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnLaunch.LaunchGroupObjectProperty.Builder |
builder() |
default String |
getDescription()
A description of the launch group.
|
String |
getFeature()
The feature that this launch is using.
|
String |
getGroupName()
A name for this launch group.
|
String |
getVariation()
The feature variation to use for this launch group.
|
@Stability(value=Stable) @NotNull String getFeature()
@Stability(value=Stable) @NotNull String getGroupName()
It can include up to 127 characters.
@Stability(value=Stable) @NotNull String getVariation()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) static CfnLaunch.LaunchGroupObjectProperty.Builder builder()
Copyright © 2022. All rights reserved.