aws-cdk-lib.aws_iot.CfnTopicRule.AssetPropertyValueProperty

interface AssetPropertyValueProperty

LanguageType name
.NETAmazon.CDK.AWS.IoT.CfnTopicRule.AssetPropertyValueProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnTopicRule_AssetPropertyValueProperty
Javasoftware.amazon.awscdk.services.iot.CfnTopicRule.AssetPropertyValueProperty
Pythonaws_cdk.aws_iot.CfnTopicRule.AssetPropertyValueProperty
TypeScript aws-cdk-lib » 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 { aws_iot as iot } from 'aws-cdk-lib';
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

NameTypeDescription
timestampIResolvable | AssetPropertyTimestampPropertyThe asset property value timestamp.
valueIResolvable | AssetPropertyVariantPropertyThe value of the asset property.
quality?stringOptional.

timestamp

Type: IResolvable | AssetPropertyTimestampProperty

The asset property value timestamp.


value

Type: IResolvable | AssetPropertyVariantProperty

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 .