@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:57.047Z") @Stability(value=Experimental) public interface SucceedProps 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.stepfunctions.*;
SucceedProps succeedProps = SucceedProps.builder()
.comment("comment")
.inputPath("inputPath")
.outputPath("outputPath")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
SucceedProps.Builder
A builder for
SucceedProps |
static class |
SucceedProps.Jsii$Proxy
An implementation for
SucceedProps |
| Modifier and Type | Method and Description |
|---|---|
static SucceedProps.Builder |
builder() |
default String |
getComment()
(experimental) An optional description for this state.
|
default String |
getInputPath()
(experimental) JSONPath expression to select part of the state to be the input to this state.
|
default String |
getOutputPath()
(experimental) JSONPath expression to select part of the state to be the output to this state.
|
@Stability(value=Experimental) @Nullable default String getComment()
Default: No comment
@Stability(value=Experimental) @Nullable default String getInputPath()
May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}.
Default: $
@Stability(value=Experimental) @Nullable default String getOutputPath()
May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}.
Default: $
@Stability(value=Experimental) static SucceedProps.Builder builder()
SucceedProps.Builder of SucceedPropsCopyright © 2022. All rights reserved.