Interface CfnExperimentDefinitionPropsMixin.AttributeValueProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExperimentDefinitionPropsMixin.AttributeValueProperty.Jsii$Proxy
- Enclosing class:
CfnExperimentDefinitionPropsMixin
@Stability(Stable)
public static interface CfnExperimentDefinitionPropsMixin.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.cfnpropertymixins.services.appconfig.*;
AttributeValueProperty attributeValueProperty = AttributeValueProperty.builder()
.booleanValue(false)
.numberArray(List.of(123))
.numberValue(123)
.stringArray(List.of("stringArray"))
.stringValue("stringValue")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnExperimentDefinitionPropsMixin.AttributeValuePropertystatic final classAn implementation forCfnExperimentDefinitionPropsMixin.AttributeValueProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBooleanValue
A boolean value.Returns union: either
BooleanorIResolvable- See Also:
-
getNumberArray
An array of numeric values.Returns union: either Listinvalid input: '<'
Number> orIResolvable- See Also:
-
getNumberValue
A numeric value.- See Also:
-
getStringArray
An array of string values.- See Also:
-
getStringValue
A string value.- See Also:
-
builder
@Stability(Stable) static CfnExperimentDefinitionPropsMixin.AttributeValueProperty.Builder builder()
-