Interface SucceedProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SucceedProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-27T16:51:05.959Z")
@Stability(Stable)
public interface SucceedProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a Succeed state.
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.stepfunctions.*; SucceedProps succeedProps = SucceedProps.builder() .comment("comment") .inputPath("inputPath") .outputPath("outputPath") .stateName("stateName") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forSucceedProps
static final class
An implementation forSucceedProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic SucceedProps.Builder
builder()
default String
An optional description for this state.default String
JSONPath expression to select part of the state to be the input to this state.default String
JSONPath expression to select part of the state to be the output to this state.default String
Optional name for this state.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComment
An optional description for this state.Default: No comment
-
getInputPath
JSONPath expression to select part of the state to be the input to this state.May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}.
Default: $
-
getOutputPath
JSONPath expression to select part of the state to be the output to this state.May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}.
Default: $
-
getStateName
Optional name for this state.Default: - The construct ID will be used as state name
-
builder
- Returns:
- a
SucceedProps.Builder
ofSucceedProps
-