interface PutAssetPropertyValueEntryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnTopicRulePropsMixin.PutAssetPropertyValueEntryProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnTopicRulePropsMixin_PutAssetPropertyValueEntryProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnTopicRulePropsMixin.PutAssetPropertyValueEntryProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnTopicRulePropsMixin.PutAssetPropertyValueEntryProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnTopicRulePropsMixin » PutAssetPropertyValueEntryProperty |
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 putAssetPropertyValueEntryProperty: iot_mixins.CfnTopicRulePropsMixin.PutAssetPropertyValueEntryProperty = {
assetId: 'assetId',
entryId: 'entryId',
propertyAlias: 'propertyAlias',
propertyId: 'propertyId',
propertyValues: [{
quality: 'quality',
timestamp: {
offsetInNanos: 'offsetInNanos',
timeInSeconds: 'timeInSeconds',
},
value: {
booleanValue: 'booleanValue',
doubleValue: 'doubleValue',
integerValue: 'integerValue',
stringValue: 'stringValue',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| asset | string | The ID of the AWS IoT SiteWise asset. |
| entry | string | Optional. |
| property | string | The name of the property alias associated with your asset property. |
| property | string | The ID of the asset's property. |
| property | IResolvable | (IResolvable | Asset)[] | A list of property values to insert that each contain timestamp, quality, and value (TQV) information. |
assetId?
Type:
string
(optional)
The ID of the AWS IoT SiteWise asset.
You must specify either a propertyAlias or both an aliasId and a propertyId . Accepts substitution templates.
entryId?
Type:
string
(optional)
Optional.
A unique identifier for this entry that you can define to better track which message caused an error in case of failure. Accepts substitution templates. Defaults to a new UUID.
propertyAlias?
Type:
string
(optional)
The name of the property alias associated with your asset property.
You must specify either a propertyAlias or both an aliasId and a propertyId . Accepts substitution templates.
propertyId?
Type:
string
(optional)
The ID of the asset's property.
You must specify either a propertyAlias or both an aliasId and a propertyId . Accepts substitution templates.
propertyValues?
Type:
IResolvable | (IResolvable | Asset)[]
(optional)
A list of property values to insert that each contain timestamp, quality, and value (TQV) information.

.NET
Go
Java
Python
TypeScript