Interface CfnFeature.VariationObjectProperty

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

@Stability(Stable) public static interface CfnFeature.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.services.evidently.*;
 VariationObjectProperty variationObjectProperty = VariationObjectProperty.builder()
         .variationName("variationName")
         // the properties below are optional
         .booleanValue(false)
         .doubleValue(123)
         .longValue(123)
         .stringValue("stringValue")
         .build();
 

See Also: