@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:17.701Z") @Stability(value=Stable) public interface CfnLaunchProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnLaunchProps cfnLaunchProps = CfnLaunchProps.builder()
.groups(List.of(LaunchGroupObjectProperty.builder()
.feature("feature")
.groupName("groupName")
.variation("variation")
// the properties below are optional
.description("description")
.build()))
.name("name")
.project("project")
.scheduledSplitsConfig(List.of(StepConfigProperty.builder()
.groupWeights(List.of(GroupToWeightProperty.builder()
.groupName("groupName")
.splitWeight(123)
.build()))
.startTime("startTime")
.build()))
// the properties below are optional
.description("description")
.metricMonitors(List.of(MetricDefinitionObjectProperty.builder()
.entityIdKey("entityIdKey")
.eventPattern("eventPattern")
.metricName("metricName")
.valueKey("valueKey")
// the properties below are optional
.unitLabel("unitLabel")
.build()))
.randomizationSalt("randomizationSalt")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnLaunchProps.Builder
A builder for
CfnLaunchProps |
static class |
CfnLaunchProps.Jsii$Proxy
An implementation for
CfnLaunchProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnLaunchProps.Builder |
builder() |
default String |
getDescription()
`AWS::Evidently::Launch.Description`.
|
Object |
getGroups()
`AWS::Evidently::Launch.Groups`.
|
default Object |
getMetricMonitors()
`AWS::Evidently::Launch.MetricMonitors`.
|
String |
getName()
`AWS::Evidently::Launch.Name`.
|
String |
getProject()
`AWS::Evidently::Launch.Project`.
|
default String |
getRandomizationSalt()
`AWS::Evidently::Launch.RandomizationSalt`.
|
Object |
getScheduledSplitsConfig()
`AWS::Evidently::Launch.ScheduledSplitsConfig`.
|
default List<CfnTag> |
getTags()
`AWS::Evidently::Launch.Tags`.
|
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @NotNull Object getGroups()
@Stability(value=Stable) @Nullable default Object getMetricMonitors()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull String getProject()
@Stability(value=Stable) @Nullable default String getRandomizationSalt()
@Stability(value=Stable) @NotNull Object getScheduledSplitsConfig()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnLaunchProps.Builder builder()
CfnLaunchProps.Builder of CfnLaunchPropsCopyright © 2021. All rights reserved.