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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTopicRule.StepFunctionsActionProperty
static final class
An implementation forCfnTopicRule.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.The ARN of the role that grants IoT permission to start execution of a state machine ("Action":"states:StartExecution").The name of the Step Functions state machine whose execution will be started.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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:
-
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:
-
builder
-