interface AssetPropertyValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnTopicRule.AssetPropertyValueProperty |
Java | software.amazon.awscdk.services.iot.CfnTopicRule.AssetPropertyValueProperty |
Python | aws_cdk.aws_iot.CfnTopicRule.AssetPropertyValueProperty |
TypeScript | @aws-cdk/aws-iot » CfnTopicRule » AssetPropertyValueProperty |
An asset property value entry containing the following information.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iot from '@aws-cdk/aws-iot';
const assetPropertyValueProperty: iot.CfnTopicRule.AssetPropertyValueProperty = {
timestamp: {
timeInSeconds: 'timeInSeconds',
// the properties below are optional
offsetInNanos: 'offsetInNanos',
},
value: {
booleanValue: 'booleanValue',
doubleValue: 'doubleValue',
integerValue: 'integerValue',
stringValue: 'stringValue',
},
// the properties below are optional
quality: 'quality',
};
Properties
| Name | Type | Description |
|---|---|---|
| timestamp | IResolvable | Asset | The asset property value timestamp. |
| value | IResolvable | Asset | The value of the asset property. |
| quality? | string | Optional. |
timestamp
Type:
IResolvable | Asset
The asset property value timestamp.
value
Type:
IResolvable | Asset
The value of the asset property.
quality?
Type:
string
(optional)
Optional.
A string that describes the quality of the value. Accepts substitution templates. Must be GOOD , BAD , or UNCERTAIN .

.NET
Java
Python
TypeScript