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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnThingType.PropagatingAttributeProperty
static final class
An implementation forCfnThingType.PropagatingAttributeProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getUserPropertyKey
The key of the MQTT 5 user property, which is a key-value pair.- See Also:
-
getConnectionAttribute
The attribute associated with the connection details.- See Also:
-
getThingAttribute
The thing attribute that is propagating for MQTT 5 message enrichment.- See Also:
-
builder
-