Interface CfnDetectorModel.IotTopicPublishProperty

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

@Stability(Stable) public static interface CfnDetectorModel.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.services.iotevents.*;
 IotTopicPublishProperty iotTopicPublishProperty = IotTopicPublishProperty.builder()
         .mqttTopic("mqttTopic")
         // the properties below are optional
         .payload(PayloadProperty.builder()
                 .contentExpression("contentExpression")
                 .type("type")
                 .build())
         .build();