public static interface CfnTopicRule.StepFunctionsActionProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnTopicRule.StepFunctionsActionProperty.Builder
A builder for
CfnTopicRule.StepFunctionsActionProperty |
static class |
CfnTopicRule.StepFunctionsActionProperty.Jsii$Proxy
An implementation for
CfnTopicRule.StepFunctionsActionProperty |
Modifier and Type | Method and Description |
---|---|
static CfnTopicRule.StepFunctionsActionProperty.Builder |
builder() |
default java.lang.String |
getExecutionNamePrefix()
(Optional) A name will be given to the state machine execution consisting of this prefix followed by a UUID.
|
java.lang.String |
getRoleArn()
The ARN of the role that grants IoT permission to start execution of a state machine ("Action":"states:StartExecution").
|
java.lang.String |
getStateMachineName()
The name of the Step Functions state machine whose execution will be started.
|
java.lang.String getRoleArn()
java.lang.String getStateMachineName()
default java.lang.String getExecutionNamePrefix()
Step Functions automatically creates a unique name for each state machine execution if one is not provided.
static CfnTopicRule.StepFunctionsActionProperty.Builder builder()