Interface CfnLaunchProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnLaunchProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:07.527Z") @Stability(Stable) public interface CfnLaunchProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnLaunch.

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")
                 // the properties below are optional
                 .segmentOverrides(List.of(SegmentOverrideProperty.builder()
                         .evaluationOrder(123)
                         .segment("segment")
                         .weights(List.of(GroupToWeightProperty.builder()
                                 .groupName("groupName")
                                 .splitWeight(123)
                                 .build()))
                         .build()))
                 .build()))
         // the properties below are optional
         .description("description")
         .executionStatus(ExecutionStatusObjectProperty.builder()
                 .status("status")
                 // the properties below are optional
                 .desiredState("desiredState")
                 .reason("reason")
                 .build())
         .metricMonitors(List.of(MetricDefinitionObjectProperty.builder()
                 .entityIdKey("entityIdKey")
                 .metricName("metricName")
                 .valueKey("valueKey")
                 // the properties below are optional
                 .eventPattern("eventPattern")
                 .unitLabel("unitLabel")
                 .build()))
         .randomizationSalt("randomizationSalt")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also:
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static final class 
    A builder for CfnLaunchProps
    static final class 
    An implementation for CfnLaunchProps
  • Method Summary

    Modifier and Type
    Method
    Description
     
    default String
    An optional description for the launch.
    default Object
    A structure that you can use to start and stop the launch.
    An array of structures that contains the feature and variations that are to be used for the launch.
    default Object
    An array of structures that define the metrics that will be used to monitor the launch performance.
    The name for the launch.
    The name or ARN of the project that you want to create the launch in.
    default String
    When Evidently assigns a particular user session to a launch, it must use a randomization ID to determine which variation the user session is served.
    An array of structures that define the traffic allocation percentages among the feature variations during each step of the launch.
    default List<CfnTag>
    Assigns one or more tags (key-value pairs) to the launch.

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson