interface AssetPropertyValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnTopicRulePropsMixin.AssetPropertyValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnTopicRulePropsMixin_AssetPropertyValueProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnTopicRulePropsMixin.AssetPropertyValueProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnTopicRulePropsMixin.AssetPropertyValueProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnTopicRulePropsMixin » 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 { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const assetPropertyValueProperty: iot_mixins.CfnTopicRulePropsMixin.AssetPropertyValueProperty = {
quality: 'quality',
timestamp: {
offsetInNanos: 'offsetInNanos',
timeInSeconds: 'timeInSeconds',
},
value: {
booleanValue: 'booleanValue',
doubleValue: 'doubleValue',
integerValue: 'integerValue',
stringValue: 'stringValue',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| quality? | string | Optional. |
| timestamp? | IResolvable | Asset | The asset property value timestamp. |
| value? | 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 .
timestamp?
Type:
IResolvable | Asset
(optional)
The asset property value timestamp.
value?
Type:
IResolvable | Asset
(optional)
The value of the asset property.

.NET
Go
Java
Python
TypeScript