Interface CfnExperimentDefinition.AttributeValueProperty

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

@Stability(Stable) public static interface CfnExperimentDefinition.AttributeValueProperty extends software.amazon.jsii.JsiiSerializable
A typed attribute value for a treatment flag.

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.appconfig.*;
 AttributeValueProperty attributeValueProperty = AttributeValueProperty.builder()
         .booleanValue(false)
         .numberArray(List.of(123))
         .numberValue(123)
         .stringArray(List.of("stringArray"))
         .stringValue("stringValue")
         .build();
 

See Also: