Interface CfnTopicRule.IotAnalyticsActionProperty

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

@Stability(Stable) public static interface CfnTopicRule.IotAnalyticsActionProperty extends software.amazon.jsii.JsiiSerializable
Sends message data to an AWS IoT Analytics channel.

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.*;
 IotAnalyticsActionProperty iotAnalyticsActionProperty = IotAnalyticsActionProperty.builder()
         .channelName("channelName")
         .roleArn("roleArn")
         // the properties below are optional
         .batchMode(false)
         .build();
 

See Also: