Interface CfnRule.FieldValueProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRule.FieldValueProperty.Jsii$Proxy
- Enclosing class:
CfnRule
@Stability(Stable)
public static interface CfnRule.FieldValueProperty
extends software.amazon.jsii.JsiiSerializable
Object for case field values.
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.connect.*; Object emptyValue; FieldValueProperty fieldValueProperty = FieldValueProperty.builder() .booleanValue(false) .doubleValue(123) .emptyValue(emptyValue) .stringValue("stringValue") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRule.FieldValueProperty
static final class
An implementation forCfnRule.FieldValueProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBooleanValue
- See Also:
-
getDoubleValue
- See Also:
-
getEmptyValue
- See Also:
-
getStringValue
- See Also:
-
builder
- Returns:
- a
CfnRule.FieldValueProperty.Builder
ofCfnRule.FieldValueProperty
-