interface Mqtt5ConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnThingTypePropsMixin.Mqtt5ConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnThingTypePropsMixin_Mqtt5ConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnThingTypePropsMixin.Mqtt5ConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnThingTypePropsMixin.Mqtt5ConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnThingTypePropsMixin » Mqtt5ConfigurationProperty |
The configuration to add user-defined properties to enrich MQTT 5 messages.
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 mqtt5ConfigurationProperty: iot_mixins.CfnThingTypePropsMixin.Mqtt5ConfigurationProperty = {
propagatingAttributes: [{
connectionAttribute: 'connectionAttribute',
thingAttribute: 'thingAttribute',
userPropertyKey: 'userPropertyKey',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| propagating | IResolvable | (IResolvable | Propagating)[] | An object that represents the connection attribute, the thing attribute, and the MQTT 5 user property key. |
propagatingAttributes?
Type:
IResolvable | (IResolvable | Propagating)[]
(optional)
An object that represents the connection attribute, the thing attribute, and the MQTT 5 user property key.

.NET
Go
Java
Python
TypeScript