interface PropagatingAttributeProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.IoT.CfnThingType.PropagatingAttributeProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnThingType_PropagatingAttributeProperty |
![]() | software.amazon.awscdk.services.iot.CfnThingType.PropagatingAttributeProperty |
![]() | aws_cdk.aws_iot.CfnThingType.PropagatingAttributeProperty |
![]() | aws-cdk-lib » aws_iot » CfnThingType » PropagatingAttributeProperty |
An object that represents the connection attribute, the thing attribute, and the MQTT 5 user property key.
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 propagatingAttributeProperty: iot.CfnThingType.PropagatingAttributeProperty = {
userPropertyKey: 'userPropertyKey',
// the properties below are optional
connectionAttribute: 'connectionAttribute',
thingAttribute: 'thingAttribute',
};
Properties
Name | Type | Description |
---|---|---|
user | string | The key of the MQTT 5 user property, which is a key-value pair. |
connection | string | The attribute associated with the connection details. |
thing | string | The thing attribute that is propagating for MQTT 5 message enrichment. |
userPropertyKey
Type:
string
The key of the MQTT 5 user property, which is a key-value pair.
connectionAttribute?
Type:
string
(optional)
The attribute associated with the connection details.
thingAttribute?
Type:
string
(optional)
The thing attribute that is propagating for MQTT 5 message enrichment.