Interface CfnTopicRule.IotEventsActionProperty

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

@Stability(Stable) public static interface CfnTopicRule.IotEventsActionProperty extends software.amazon.jsii.JsiiSerializable
Sends an input to an AWS IoT Events detector.

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.*;
 IotEventsActionProperty iotEventsActionProperty = IotEventsActionProperty.builder()
         .inputName("inputName")
         .roleArn("roleArn")
         // the properties below are optional
         .batchMode(false)
         .messageId("messageId")
         .build();
 

See Also: