Interface CfnTopicRule.StepFunctionsActionProperty

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

@Stability(Stable) public static interface CfnTopicRule.StepFunctionsActionProperty extends software.amazon.jsii.JsiiSerializable
Starts execution of a Step Functions state machine.

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.*;
 StepFunctionsActionProperty stepFunctionsActionProperty = StepFunctionsActionProperty.builder()
         .roleArn("roleArn")
         .stateMachineName("stateMachineName")
         // the properties below are optional
         .executionNamePrefix("executionNamePrefix")
         .build();
 

See Also: