Interface CfnFeatureMixinProps

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

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

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.*;
 CfnFeatureMixinProps cfnFeatureMixinProps = CfnFeatureMixinProps.builder()
         .defaultVariation("defaultVariation")
         .description("description")
         .entityOverrides(List.of(EntityOverrideProperty.builder()
                 .entityId("entityId")
                 .variation("variation")
                 .build()))
         .evaluationStrategy("evaluationStrategy")
         .name("name")
         .project("project")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .variations(List.of(VariationObjectProperty.builder()
                 .booleanValue(false)
                 .doubleValue(123)
                 .longValue(123)
                 .stringValue("stringValue")
                 .variationName("variationName")
                 .build()))
         .build();
 

See Also: