Interface CfnTopicRule.AssetPropertyVariantProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTopicRule.AssetPropertyVariantProperty.Jsii$Proxy
- Enclosing class:
CfnTopicRule
@Stability(Stable)
public static interface CfnTopicRule.AssetPropertyVariantProperty
extends software.amazon.jsii.JsiiSerializable
Contains an asset property value (of a single type).
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.iot.*; AssetPropertyVariantProperty assetPropertyVariantProperty = AssetPropertyVariantProperty.builder() .booleanValue("booleanValue") .doubleValue("doubleValue") .integerValue("integerValue") .stringValue("stringValue") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTopicRule.AssetPropertyVariantProperty
static final class
An implementation forCfnTopicRule.AssetPropertyVariantProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBooleanValue
Optional.A string that contains the boolean value (
true
orfalse
) of the value entry. Accepts substitution templates.- See Also:
-
getDoubleValue
Optional.A string that contains the double value of the value entry. Accepts substitution templates.
- See Also:
-
getIntegerValue
Optional.A string that contains the integer value of the value entry. Accepts substitution templates.
- See Also:
-
getStringValue
Optional.The string value of the value entry. Accepts substitution templates.
- See Also:
-
builder
-