interface PropagatingAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnThingTypePropsMixin.PropagatingAttributeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnThingTypePropsMixin_PropagatingAttributeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnThingTypePropsMixin.PropagatingAttributeProperty |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnThingTypePropsMixin.PropagatingAttributeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » 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 { aws_iot as iot } from '@aws-cdk/cfn-property-mixins';
const propagatingAttributeProperty: iot.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