Interface CfnFeaturePropsMixin.VariationObjectProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFeaturePropsMixin.VariationObjectProperty.Jsii$Proxy
Enclosing class:
CfnFeaturePropsMixin

@Stability(Stable) public static interface CfnFeaturePropsMixin.VariationObjectProperty extends software.amazon.jsii.JsiiSerializable
This structure contains the name and variation value of one variation of a feature.

It can contain only one of the following parameters: BooleanValue , DoubleValue , LongValue or StringValue .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.evidently.mixins.*;
 VariationObjectProperty variationObjectProperty = VariationObjectProperty.builder()
         .booleanValue(false)
         .doubleValue(123)
         .longValue(123)
         .stringValue("stringValue")
         .variationName("variationName")
         .build();
 

See Also: