Interface ISucceedProps
Properties for defining a Succeed state.
Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ISucceedProps
Syntax (vb)
Public Interface ISucceedProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.StepFunctions;
var succeedProps = new SucceedProps {
Comment = "comment",
InputPath = "inputPath",
OutputPath = "outputPath",
StateName = "stateName"
};
Synopsis
Properties
Comment | An optional description for this state. |
InputPath | JSONPath expression to select part of the state to be the input to this state. |
OutputPath | JSONPath expression to select part of the state to be the output to this state. |
StateName | Optional name for this state. |
Properties
Comment
An optional description for this state.
virtual string Comment { get; }
Property Value
System.String
Remarks
Default: No comment
InputPath
JSONPath expression to select part of the state to be the input to this state.
virtual string InputPath { get; }
Property Value
System.String
Remarks
May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}.
Default: $
OutputPath
JSONPath expression to select part of the state to be the output to this state.
virtual string OutputPath { get; }
Property Value
System.String
Remarks
May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}.
Default: $
StateName
Optional name for this state.
virtual string StateName { get; }
Property Value
System.String
Remarks
Default: - The construct ID will be used as state name