Interface CfnTopicRulePropsMixin.IotEventsActionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTopicRulePropsMixin.IotEventsActionProperty.Jsii$Proxy
- Enclosing class:
CfnTopicRulePropsMixin
@Stability(Stable)
public static interface CfnTopicRulePropsMixin.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.cfnpropertymixins.services.iot.*;
IotEventsActionProperty iotEventsActionProperty = IotEventsActionProperty.builder()
.batchMode(false)
.inputName("inputName")
.messageId("messageId")
.roleArn("roleArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTopicRulePropsMixin.IotEventsActionPropertystatic final classAn implementation forCfnTopicRulePropsMixin.IotEventsActionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectWhether to process the event actions as a batch.default ObjectThe name of the AWS IoT Events input.default StringThe ID of the message.default ObjectThe ARN of the role that grants AWS IoT permission to send an input to an AWS IoT Events detector.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBatchMode
Whether to process the event actions as a batch. The default value isfalse.When
batchModeistrue, you can't specify amessageId.When
batchModeistrueand the rule SQL statement evaluates to an Array, each Array element is treated as a separate message when Events by callingBatchPutMessage. The resulting array can't have more than 10 messages.Returns union: either
BooleanorIResolvable- See Also:
-
getInputName
- See Also:
-
getMessageId
The ID of the message. The defaultmessageIdis a new UUID value.When
batchModeistrue, you can't specify amessageId--a new UUID value will be assigned.Assign a value to this property to ensure that only one input (message) with a given
messageIdwill be processed by an AWS IoT Events detector.- See Also:
-
getRoleArn
The ARN of the role that grants AWS IoT permission to send an input to an AWS IoT Events detector.("Action":"iotevents:BatchPutMessage").
- See Also:
-
builder
-