Interface SucceedProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SucceedProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:39.944Z")
@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")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forSucceedPropsstatic final classAn implementation forSucceedProps -
Method Summary
Modifier and TypeMethodDescriptionstatic SucceedProps.Builderbuilder()default StringAn optional description for this state.default StringJSONPath expression to select part of the state to be the input to this state.default StringJSONPath expression to select part of the state to be the output to 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: $
-
builder
- Returns:
- a
SucceedProps.BuilderofSucceedProps
-