Interface CfnTopicRulePropsMixin.StepFunctionsActionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTopicRulePropsMixin.StepFunctionsActionProperty.Jsii$Proxy
- Enclosing class:
CfnTopicRulePropsMixin
@Stability(Stable)
public static interface CfnTopicRulePropsMixin.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.cfnpropertymixins.services.iot.*;
StepFunctionsActionProperty stepFunctionsActionProperty = StepFunctionsActionProperty.builder()
.executionNamePrefix("executionNamePrefix")
.roleArn("roleArn")
.stateMachineName("stateMachineName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTopicRulePropsMixin.StepFunctionsActionPropertystatic final classAn implementation forCfnTopicRulePropsMixin.StepFunctionsActionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default String(Optional) A name will be given to the state machine execution consisting of this prefix followed by a UUID.default StringThe ARN of the role that grants IoT permission to start execution of a state machine ("Action":"states:StartExecution").default StringThe name of the Step Functions state machine whose execution will be started.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExecutionNamePrefix
(Optional) A name will be given to the state machine execution consisting of this prefix followed by a UUID.Step Functions automatically creates a unique name for each state machine execution if one is not provided.
- See Also:
-
getRoleArn
The ARN of the role that grants IoT permission to start execution of a state machine ("Action":"states:StartExecution").- See Also:
-
getStateMachineName
The name of the Step Functions state machine whose execution will be started.- See Also:
-
builder
-