@Stability(value=Stable)
public static interface CfnTopicRule.StepFunctionsActionProperty
extends software.amazon.jsii.JsiiSerializable
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 String |
getExecutionNamePrefix()
(Optional) A name will be given to the state machine execution consisting of this prefix followed by a UUID.
|
String |
getRoleArn()
The ARN of the role that grants IoT permission to start execution of a state machine ("Action":"states:StartExecution").
|
String |
getStateMachineName()
The name of the Step Functions state machine whose execution will be started.
|
@Stability(value=Stable) @NotNull String getRoleArn()
@Stability(value=Stable) @NotNull String getStateMachineName()
@Stability(value=Stable) @Nullable default String getExecutionNamePrefix()
Step Functions automatically creates a unique name for each state machine execution if one is not provided.
@Stability(value=Stable) static CfnTopicRule.StepFunctionsActionProperty.Builder builder()
Copyright © 2022. All rights reserved.