Interface CfnDetectorModelPropsMixin.IotTopicPublishProperty

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

@Stability(Stable) public static interface CfnDetectorModelPropsMixin.IotTopicPublishProperty extends software.amazon.jsii.JsiiSerializable
Information required to publish the MQTT message through the AWS IoT message broker.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.iotevents.mixins.*;
 IotTopicPublishProperty iotTopicPublishProperty = IotTopicPublishProperty.builder()
         .mqttTopic("mqttTopic")
         .payload(PayloadProperty.builder()
                 .contentExpression("contentExpression")
                 .type("type")
                 .build())
         .build();
 

See Also: