Interface CfnLaunchMixinProps

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:59.399Z") @Stability(Stable) public interface CfnLaunchMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnLaunchPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.evidently.*;
 CfnLaunchMixinProps cfnLaunchMixinProps = CfnLaunchMixinProps.builder()
         .description("description")
         .executionStatus(ExecutionStatusObjectProperty.builder()
                 .desiredState("desiredState")
                 .reason("reason")
                 .status("status")
                 .build())
         .groups(List.of(LaunchGroupObjectProperty.builder()
                 .description("description")
                 .feature("feature")
                 .groupName("groupName")
                 .variation("variation")
                 .build()))
         .metricMonitors(List.of(MetricDefinitionObjectProperty.builder()
                 .entityIdKey("entityIdKey")
                 .eventPattern("eventPattern")
                 .metricName("metricName")
                 .unitLabel("unitLabel")
                 .valueKey("valueKey")
                 .build()))
         .name("name")
         .project("project")
         .randomizationSalt("randomizationSalt")
         .scheduledSplitsConfig(List.of(StepConfigProperty.builder()
                 .groupWeights(List.of(GroupToWeightProperty.builder()
                         .groupName("groupName")
                         .splitWeight(123)
                         .build()))
                 .segmentOverrides(List.of(SegmentOverrideProperty.builder()
                         .evaluationOrder(123)
                         .segment("segment")
                         .weights(List.of(GroupToWeightProperty.builder()
                                 .groupName("groupName")
                                 .splitWeight(123)
                                 .build()))
                         .build()))
                 .startTime("startTime")
                 .build()))
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: