Interface CfnDetectorModel.IotEventsProperty

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

@Stability(Stable) public static interface CfnDetectorModel.IotEventsProperty extends software.amazon.jsii.JsiiSerializable
Sends an AWS IoT Events input, passing in information about the detector model instance and the event that triggered the action.

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.*;
 IotEventsProperty iotEventsProperty = IotEventsProperty.builder()
         .inputName("inputName")
         // the properties below are optional
         .payload(PayloadProperty.builder()
                 .contentExpression("contentExpression")
                 .type("type")
                 .build())
         .build();