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