@Stability(value=Stable)
public static interface CfnTopicRule.AssetPropertyValueProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
AssetPropertyValueProperty assetPropertyValueProperty = AssetPropertyValueProperty.builder()
.timestamp(AssetPropertyTimestampProperty.builder()
.timeInSeconds("timeInSeconds")
// the properties below are optional
.offsetInNanos("offsetInNanos")
.build())
.value(AssetPropertyVariantProperty.builder()
.booleanValue("booleanValue")
.doubleValue("doubleValue")
.integerValue("integerValue")
.stringValue("stringValue")
.build())
// the properties below are optional
.quality("quality")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnTopicRule.AssetPropertyValueProperty.Builder
A builder for
CfnTopicRule.AssetPropertyValueProperty |
static class |
CfnTopicRule.AssetPropertyValueProperty.Jsii$Proxy
An implementation for
CfnTopicRule.AssetPropertyValueProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnTopicRule.AssetPropertyValueProperty.Builder |
builder() |
default String |
getQuality()
Optional.
|
Object |
getTimestamp()
The asset property value timestamp.
|
Object |
getValue()
The value of the asset property.
|
@Stability(value=Stable) @NotNull Object getTimestamp()
@Stability(value=Stable) @NotNull Object getValue()
@Stability(value=Stable) @Nullable default String getQuality()
A string that describes the quality of the value. Accepts substitution templates. Must be GOOD , BAD , or UNCERTAIN .
@Stability(value=Stable) static CfnTopicRule.AssetPropertyValueProperty.Builder builder()
Copyright © 2022. All rights reserved.