Interface CfnThingType.PropagatingAttributeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnThingType.PropagatingAttributeProperty.Jsii$Proxy
Enclosing class:
CfnThingType

@Stability(Stable) public static interface CfnThingType.PropagatingAttributeProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.iot.*;
 PropagatingAttributeProperty propagatingAttributeProperty = PropagatingAttributeProperty.builder()
         .userPropertyKey("userPropertyKey")
         // the properties below are optional
         .connectionAttribute("connectionAttribute")
         .thingAttribute("thingAttribute")
         .build();
 

See Also: