@Stability(value=Stable)
public static interface CfnTopicRule.IotAnalyticsActionProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnTopicRule.IotAnalyticsActionProperty.Builder
A builder for
CfnTopicRule.IotAnalyticsActionProperty |
static class |
CfnTopicRule.IotAnalyticsActionProperty.Jsii$Proxy
An implementation for
CfnTopicRule.IotAnalyticsActionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnTopicRule.IotAnalyticsActionProperty.Builder |
builder() |
default Object |
getBatchMode()
Whether to process the action as a batch.
|
String |
getChannelName()
The name of the IoT Analytics channel to which message data will be sent.
|
String |
getRoleArn()
The ARN of the role which has a policy that grants IoT Analytics permission to send message data via IoT Analytics (iotanalytics:BatchPutMessage).
|
@Stability(value=Stable) @NotNull String getChannelName()
@Stability(value=Stable) @NotNull String getRoleArn()
@Stability(value=Stable) @Nullable default Object getBatchMode()
When batchMode is true and the rule SQL statement evaluates to an Array, each Array element is delivered as a separate message when passed by BatchPutMessage The resulting array can't have more than 100 messages.
@Stability(value=Stable) static CfnTopicRule.IotAnalyticsActionProperty.Builder builder()
Copyright © 2022. All rights reserved.