interface PropagatingAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnThingTypePropsMixin.PropagatingAttributeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnThingTypePropsMixin_PropagatingAttributeProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnThingTypePropsMixin.PropagatingAttributeProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnThingTypePropsMixin.PropagatingAttributeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnThingTypePropsMixin » 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 { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const propagatingAttributeProperty: iot_mixins.CfnThingTypePropsMixin.PropagatingAttributeProperty = {
connectionAttribute: 'connectionAttribute',
thingAttribute: 'thingAttribute',
userPropertyKey: 'userPropertyKey',
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | string | The attribute associated with the connection details. |
| thing | string | The thing attribute that is propagating for MQTT 5 message enrichment. |
| user | 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.
userPropertyKey?
Type:
string
(optional)
The key of the MQTT 5 user property, which is a key-value pair.

.NET
Go
Java
Python
TypeScript