Interface CfnThingType.Mqtt5ConfigurationProperty

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

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

See Also: